﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px; /* Vertically center the text there */
}

/*
    validation 
*/

.input-validation-error {
    border-color: #c4183c !important;
    box-shadow: 0 5px 11.5px rgba(196, 24, 60, 0.1) !important;
}

.invalid-feedback {
    display: block;
    text-align: left;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}



/*TABS 2*/


.tabbed-content {
    background: #fff;
    /* box-shadow: 1px 1px 6px #ccc; */
    /* max-width: 600px; */
    padding: 1em;
    /*margin: 1em auto;*/
}

.tabs ul {
    margin: 0;
    padding: 0 0 1em 0;
    font-weight: bold;
    margin-right: 20px;
}

    .tabs ul li {
        /*background: #eee;*/
    }

        .tabs ul li a {
            line-height: 24px;
            font-size: 12px;
            font-weight: 500;
            min-width: 100px;
            color: #555;
            transition: all .3s;
            border-radius: 30px;
            padding: 10px 15px;
            text-align: center;
            border-radius: 4px;
            padding: .5em 1em;
        }

            .tabs ul li a.active {
                color: #fff;
                background-color: #bd3758;
                box-shadow: 0 5px 20px 0 rgba(0,0,0,.2), 0 13px 24px -11px rgba(160, 126, 138, 0.6);
            }

            .tabs ul li a:hover {
                background-color: #bd3758;
                box-shadow: 0 5px 20px 0 rgba(0,0,0,.2), 0 13px 24px -11px rgba(160, 126, 138, 0.6);
                color: #fff;
            }


.item {
    margin-bottom: 2px;
    color: #eee;
}

    .item::before {
        cursor: pointer;
        font-weight: bold;
        background: #bd3758;
        padding: .5em;
        display: block;
    }

    .item.active::before {
        background: #bd3758;
        color: #eee;
    }

    .item.active .item-content {
        padding: 1em;
        -webkit-transition: opacity 0.3s ease-in-out;
        -moz-transition: opacity 0.3s ease-in-out;
        -o-transition: opacity 0.3s ease-in-out;
        -ms-transition: opacity 0.3s ease-in-out;
        transition: opacity 0.3s ease-in-out;
    }

@media all and (min-width: 800px) {
    .item.active .item-content {
        padding-top: 0;
    }

    .tabs-side .tabs li {
        margin-bottom: 2px;
    }
}
/* 
The project specific CSS starts here
This is the minimum CSS that you will need in order for this to work
*/
.tabbed-content .tabs {
    display: none;
}

.tabbed-content .item {
    min-height: 2em;
}


    .tabbed-content .item::before {
        content: attr(data-title);
    }

  


    .tabbed-content .item .item-content {
        opacity: 0;
        visibility: hidden;
        height: 0;
    }

    .tabbed-content .item.active .item-content {
        color: black;
        opacity: 1;
        visibility: visible;
        height: auto;
    }

@media all and (min-width: 800px) {
    .tabbed-content .tabs {
        display: block;
    }

        .tabbed-content .tabs li {
            display: inline-block;
        }

            .tabbed-content .tabs li a {
                display: block;
            }

    .tabbed-content .item {
        min-height: 0;
    }

        .tabbed-content .item::before {
            display: none;
        }

    .tabbed-content.tabs-side .tabs {
        width: 150px;
        float: left;
    }

        .tabbed-content.tabs-side .tabs li {
            display: block;
        }

    .tabbed-content.tabs-side .item {
        margin-left: 150px;
    }
}

hr {
    margin-top: .125rem;
    margin-bottom: .725rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/*navs */

.input-group {
    min-width: 8rem !important;
}

/* custom loader*/
.loader {
    top: calc(50vh/2);
    position: relative;
    margin: 0px auto;
    height: 50px;
    width: 50px;
    border: 6px solid #fff;
    border-right-color: #c30;
    border-top-color: #c30;
    border-radius: 100%;
    -moz-box-shadow: 31px 26px 18px -26px rgba(214,211,214,1);
    animation: spin 800ms infinite linear;
}


@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}


.btn-group-xs > .btn, .btn-xs {
    padding: .25rem .4rem;
    font-size: .875rem;
    line-height: .5;
    border-radius: .2rem;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 0.2386rem 0.675rem;
    font-size: 0.6875rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}

/*.dataTables_scrollHeadInner {
    width: 100% !important;
}

    .dataTables_scrollHeadInner table {
        width: 100% !important;
    }*/


/* fim custom loader */

.toolbar {
    background: #f5f6f8;
    float: left;
    padding-top: 3px;
    padding-bottom: 3px;
}

.main-sidebar {
    height: calc(100vh - 1%);
}

.sticky-footer {
/*height: 50px; */
    position: fixed;
    left: 185px;
    bottom: 0px;
    width: 80%;
    z-index: 1999;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.05);
}

.overlay {
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.1);
    z-index: 2;
    cursor: pointer;
}

.dataTables_wrapper table.dataTable tbody td {
    padding: .175rem .625rem;
    border: 1px solid #e1e5eb;
    text-align: center;
    vertical-align: middle;
}


.dataTables_wrapper table.dataTable {
    border-top: 1px solid #e1e5eb;
    font-size: 0.6925rem;
    display: table !important;
    width: 100% !important;
}

table.dataTable thead .sorting:before, table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:before, table.dataTable thead .sorting_asc:after, table.dataTable thead .sorting_desc:before, table.dataTable thead .sorting_desc:after, table.dataTable thead .sorting_asc_disabled:before, table.dataTable thead .sorting_asc_disabled:after, table.dataTable thead .sorting_desc_disabled:before, table.dataTable thead .sorting_desc_disabled:after {
    position: absolute;
    bottom: 12px !important;
    display: block;
    opacity: 0.3;
    font-size: 1.3em;
}

div.dataTables_wrapper div.dataTables_filter {
    text-align: right;
    float: right;
}

div.dataTables_wrapper div.dataTables_info {
    padding-top: 10px;
    white-space: nowrap;
    width: 35%;
    float: left;
}

.dataTables_info, .dataTables_paginate {
    padding: 20px;
    background: #FBFBFB;
    border-radius: 0 0 0.375rem 0.375rem;
    margin-bottom: 5px;
    padding-top: 12px;
    width: 65%;
    margin-bottom: 0px;
    float: right;
}

.card-small .card-header, .card-small .card-body, .card-small .card-footer {
    padding: 0.3rem 1rem;
}

.dataTables_wrapper {
    background: #fff;
    border-radius: 0.375rem;
    box-shadow: none;
    /* box-shadow: 0 2px 0 rgba(90, 97, 105, 0.11), 0 4px 8px rgba(90, 97, 105, 0.12), 0 10px 10px rgba(90, 97, 105, 0.06), 0 7px 70px rgba(90, 97, 105, 0.1); */
}


.custom-toggle.custom-toggle-sm {
    padding-left: 2.625rem;
    margin-left: 0.5rem;
    margin-top: 0.1rem;
}

/*i.material-icons {
    font-size: initial !important;
    position: relative;
    top: 2px;
}*/