﻿
header {
    border-bottom: 1px solid lightgray;
    height: 72px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9;

}

header .logo {
    max-width: 180px;
    height: auto;
    width: 100%;
    outline: 0;
    position: absolute;
    top: -21px;
    left: 0;
    padding-left:30px;
    padding-bottom: 20px;
}

.btn-primary {
    color: #fff;
}
    .btn-primary:hover, .btn-primary:focus {
        color: #fff;
    }

.link {
    font-size: 11px;
}
 .link-gray {
        color: #606060;
}

.link-red {
    color: #dc161b;
}

.para {
    margin: 20px;
}

#btn-login {
    background-color: #D3151A !important;
    border-color: #D3151A !important;
}

#btn-login:hover, .btn-login:focus {
    color: #fff;
    background-color: #D3151A !important;
    border-color: #a50f12 !important;
}

@media screen and (max-width: 725px) {
    .container .row .col-sm-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}
@media screen and (min-width: 726px) {
    .container .row .col-md-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

.margin32 {
    margin-bottom: -32px !important;
}

.loader {
    border: 6px solid #f3f3f3; /* Light grey */
    border-top: 6px solid #D3151A;
    border-radius: 50%;
    margin: 0 auto 0 auto;
    width: 80px;
    height: 80px;
    animation: spin 1.4s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 999; 
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader {
    z-index: 1000;
}

.userLink {
    background-color: transparent !important;
    color: #817171 !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}