﻿.theme-header {
    background-color: #032e88 !important;
}
    .theme-header .theme-header-brand,
    .theme-header .theme-header-text {
        color: white;
    }

.theme-header-text:hover {
    color: #040437 !important;
}
.theme-header-text.active {
    color: #fecb0f !important;
}
.theme-header-dropdown-bg {
    background-color: #fecb0f !important;
}
.theme-header-brand {
    background-color: #fecb0f !important;
}
#nav-icon-lines {
    width: 20px;
    height: 16px;
    /*position: relative;*/
    /*margin: 2px auto;*/
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

    #nav-icon-lines span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #fecb0f;
        border-radius: 9px;
        opacity: 1;
        /*left: 0;*/
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    #nav-icon-lines span:nth-child(1) {
        top: 0px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    #nav-icon-lines span:nth-child(2) {
        top: 6px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

    #nav-icon-lines span:nth-child(3) {
        top: 12px;
        -webkit-transform-origin: left center;
        -moz-transform-origin: left center;
        -o-transform-origin: left center;
        transform-origin: left center;
    }

/*    #nav-icon-lines.collapsed span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: -2px;
    }

    #nav-icon-lines.collapsed span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    #nav-icon-lines.collapsed span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 12px;
    }*/

.center {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

textarea::-webkit-scrollbar {
    width: 12px;
}

textarea::-webkit-scrollbar-thumb {
    cursor: default;
    background-color: #D3D3D3;
    border-radius: 20px; /* roundness of the scroll thumb */
    border: 3px solid #ebeef4; /* creates padding around scroll thumb */
}

textarea:focus::-webkit-scrollbar-thumb {
    background-color: #696969;
    border-radius: 20px; /* roundness of the scroll thumb */
    border: 3px solid #ebeef4; /* creates padding around scroll thumb */
}
#overlayspinner {
    background: #ffffff;
    color: #032e88;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 25%;
    opacity: .50;
}
.overlayshow {
    display: block !important;
}
.overlayhide {
    display: none !important;
}
.spinner {
    margin: 0 auto;
    height: 60px;
    width: 60px;
    animation: rotate 0.8s infinite linear;
    border: 5px solid #032e88;
    border-right-color: transparent;
    border-radius: 50%;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}