/* basic color #207cca */
/* FONTS AND FONT WEIGHTS */
.f-20 {
    font-size: 20px !important;
}

.fw-900 {
    font-weight: 900 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-600 {
    font-weight: 600 !important;
}
.fw-500 {
    font-weight: 500 !important;
}

/* FONTS AND FONT WEIGHTS */

/* PRELOADER */
/* preloader */
.loader-div {
    background: #000;
    opacity: 0.5;
    height: 100vh;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999999;
}

.loader {
    border: 6px solid whitesmoke;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border-top: 6px solid #207cca;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {

        transform: rotate(360deg);
    }

}

/* PRELOADER */

/* SIDE BAR */
.sidebar-bg {
    background: linear-gradient(to right, #232526, #414345) !important;
}

li a {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

/* SIDE BAR */

/* TOP NAV BAR */
.navbar-modified {
    /*border-radius: 10px;*/
    height: 60px !important;
    background: linear-gradient(to top, #232526, #414345) !important;
}

.tnav-text {
    position: relative;
    left: 30%;
}

.top-nav-logo {
    height: 35px;
    width: 35px;
}

/* TOP NAV BAR */

/* GENERAL */

.txt-white {
    color: #fff !important;
}

.txt-center {
    text-align: center !important;
}

.border-shadows {
    border-radius: 5px;
    box-shadow: 0px 3px 8px rgb(0 0 0 / 30%);
    padding: 0px;
    transition: box-shadow .5s;
}

.mt-10percent {
    margin-top: 5%;
}

.login-dec {
    position: absolute;
    bottom: 0px;
    color: #207cca;
}

.login-logo {
    height: 90px;
    width: 80px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}

.border-shadows:hover {
    /* box-shadow: 10px 10px 10px 10px rgb(0 0 0 / 30%) */
    box-shadow: 0px 0px 8px 6px rgb(0 0 0 / 30%);
}

.traditional-input {
    display: none;
}

.image-border-shadows {
    border-radius: 5px;
    box-shadow: 0px 3px 8px rgb(0 0 0 / 30%);
    padding: 0px;
}

/* GENERAL */

/* MEDIA QUERIES */

@media screen and (min-width:800px) {
    .login-container {
        width: 30%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 6%;
    }
}

@media screen and (max-width:480px) {
    .login-container {
        margin-top: 30%;
    }

    .border-shadows {
        box-shadow: none !important;
    }
}

@media screen {
    #printSection {
        display: none;
    }
}

@media print {
    body * {
        visibility: hidden;
    }

    #printSection,
    #printSection * {
        visibility: visible;
    }

    #printSection {
        position: absolute;
        left: 0;
        top: 0;
    }

    #content-page {
        display: none;
    }
}

/* MEDIA QUERIES */

/* custom button */

/* custom button with transition starts*/
.butn-custom
{
    width: 95px;
    height: 33px;
    color: #fff;
    border-radius: 5px;
    padding: 6px 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    background: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .3),
        7px 7px 20px 0px rgba(0, 0, 0, .0),
        4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
}

.btn-11 {
    border: none;
    background: #ff7a29;
    color: #fff;
    overflow: hidden;
}

.btn-11:hover {
    text-decoration: none;
    color: #fff;
}

.btn-11:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}

.btn-11:hover {
    opacity: .7;
}

.btn-11:active {
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .3),
        -4px -4px 6px 0 rgba(116, 125, 136, .2),
        inset -4px -4px 6px 0 rgba(255, 255, 255, .2),
        inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

@-webkit-keyframes shiny-btn1 {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }

    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }

    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

.frame {
    width: 90%;
    margin: 40px auto;
    text-align: center;
}

/* custom button with transition ends */

/* dashboard icons */
.dash-icon
{  
    border-radius:5px;
    border:1px solid white;
    width:30px;
    padding:2px;
    margin-right:8px;
    background-color:whitesmoke;
}

.role-text
{
    border-bottom:2px solid var(--blue);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}