/* input(714,1): run-time error CSS1019: Unexpected token, found '@'
input(724,1): run-time error CSS1019: Unexpected token, found '@' */
@font-face {
    font-family: 'roboto-regular';
    src: url('../fonts/roboto/roboto-regular.ttf?v=uTcUNY8Nqvvgc9JSwG-wL-rV984') format('truetype');
}

.notification-danger{
    background-color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

.notification-danger .notification-icon{
    background-color: var(--danger-color);
    background-image: url('../img/error.svg?v=uTcUNY8Nqvvgc9JSwG-wL-rV984');
}

.notification-danger .notification-title {
    color: var(--danger-color);    
}

.notification-success{
    background-color: var(--success-color);
    border: 1px solid var(--success-color);
}

.notification-success .notification-icon{
    background-color: var(--success-color);
    background-image: url('../img/success.svg?v=Oy5r1REjS15HcWwBvrWv7l6UALs');
}

.notification-success .notification-title {
    color: var(--success-color);    
}

.notification-content{    
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;    
    border-radius: 3px;
}

.notification-content p {    
    margin-bottom: 0px !important;
}

.notification-content .notification-icon {    
    display: flex;
    align-items: center;
    justify-content: center;    
    background-repeat: no-repeat;
    background-position: center;
    /* border-radius: 10px; */
}

.notification-content .notification-title {    
    margin-bottom: 0px !important;
    margin-top: 5px;
    margin-left: 17px;
    font-weight: bold;
    font-size: 13px;
    background-color: var(--background-login-box);  
}

.notification-content .notification-message {
    color: var(--text);
    font-size: 13px;
    margin-left: 17px;
    margin-bottom: 5px;
    background-color: var(--background-login-box);  
}

.notification-content .notification-text-col {
    background-color: var(--background-login-box);  
    border-radius: 3px;
}

.notification-icon {
    width: 70px !important;
}

.not-allowed {
    cursor: not-allowed;    
    pointer-events: all !important;
}

.btn-form{
    margin: 20px 0px 20px 0px;
}

.hypertext-form{
    margin-top: 13px;
}

.validation-summary-errors ul {
    padding-left: 18px;
}

.card-footer {
    padding: .5rem 1rem;
    background-color: var(--background-footer);
    border-top: 1px solid rgba(0,0,0,.125);
}

#index_logo{
    content: var(--image);
}

.text-danger {
    color: var(--text-danger-color) !important;
}

body {
    background-image: var(--background-img);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    font-family: 'roboto-regular', sans-serif;
}

.login-logo {
    padding-bottom: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-logo--img {
    background-image: var(--image);
    background-repeat: no-repeat;
    width: 100%;
    height: 5em;
    background-size: contain;
    background-position: center center;
}

.white-box {
    background-color: var(--background-login-box);
    border-radius: 20px;
    -webkit-box-shadow: 1px 1px 30px 0px rgba(91, 97, 106, 0.2);
    box-shadow: 1px 1px 30px 0px rgba(91, 97, 106, 0.2);
}

.section-center {
    padding: 3em 4em;
}

.login-form {
    padding: 16px 60px;
    padding-bottom: 40px;
    padding-top: 40px;
}

.login-form--field {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .login-form--field label {
        color: var(--text);
        font-weight: normal;
        margin-bottom: 8px;
        font-size: 16px;
    }

    .login-form--field input {
        border: 1px solid var(--border);
        -webkit-box-shadow: 1px 1px 5px 0px rgba(204, 204, 204, 0.2);
        box-shadow: 1px 1px 5px 0px rgba(204, 204, 204, 0.2);
        border-radius: 6px;
        color: var(--text);
        background: var(--background-alt);
        margin-bottom: 20px;
    }

        .login-form--field input:focus {
            outline: none;
            -webkit-box-shadow: 2px 2px 8px 0px var(--border);
            box-shadow: 2px 2px 8px 0px var(--border);
        }

    .login-form--field button {
        width: 100%;
        border-radius: 6px;
        color: #fff;
        padding: 11.5px 15px;
        margin-bottom: 0px;
        font-size: 18px;
    }

        .login-form--field button:focus {
            box-shadow:none !important;
        }

        .login-form--field button:hover {
            -webkit-transition: background-color 100ms ease-out;
            transition: background-color 100ms ease-out;
        }

  .login-form--field a {
    font-size: 16px;
    font-weight: 500;
    color: var(--link) !important;
    text-decoration: underline !important;
    cursor: pointer;
    display: inline-flex;
  }

    .login-form--field img {
        width: 1.5em;
        height: 1.5em;
        border-right: 1em;
        padding-right: 0.1em;
    }

    .login-form--field meter {
        width: 100%;
        margin-top: -18px;
        position: absolute;
        /* Applicable only to Firefox */
        background: none;
    }

        .login-form--field meter::-moz-meter-bar {
            appearance: auto;
            box-sizing: border-box;
            display: inline-block;
            height: 0.4em;
            -webkit-user-modify: read-only !important;
            background: none;
            margin-top: 4px;
        }

        .login-form--field meter:-moz-meter-optimum::-moz-meter-bar {
            border-radius: 9px;
        }


        /* Webkit based browsers */

        .login-form--field meter[value="1"]::-webkit-meter-optimum-value {
            background: OrangeRed;
        }

        .login-form--field meter[value="2"]::-webkit-meter-optimum-value {
            background: Orange;
        }

        .login-form--field meter[value="3"]::-webkit-meter-optimum-value {
            background: Olive;
        }

        .login-form--field meter[value="4"]::-webkit-meter-optimum-value {
            background: OliveDrab;
        }


        /* Gecko based browsers */

        .login-form--field meter[value="1"]::-moz-meter-bar {
            background: OrangeRed;
        }

        .login-form--field meter[value="2"]::-moz-meter-bar {
            background: Orange;
        }

        .login-form--field meter[value="3"]::-moz-meter-bar {
            background: Olive;
        }

        .login-form--field meter[value="4"]::-moz-meter-bar {
            background: OliveDrab;
        }

.show-pass {
    margin-bottom: 20px;
    padding: 7px !important;
}

.pass-content {
    position: relative;
}

/*480x272*/
@media (max-width: 480px) and ( max-height: 272px) {
    .login-logo {
        display: none !important;
    }

    .card-footer {
        font-size: 12px;
    }
}

/*800x600*/
@media (max-width: 800px) {
    .login-form {
        padding: 3em;
    }

    .section-center {
        padding: 3em;
    }
}

@media (max-height: 600px) {
    .login-form {
        margin-top: 4em;
    }

    .section-center {
        margin-top: 4em;
    }
}


/*640x480*/

@media (max-width: 640px) {
    .login-form {
        padding: 2.5em;
    }

    .login-logo--img {
        height: 3.5em;
    }

    .section-center {
        padding: 2.5em;
    }
}

@media (max-height: 480px) {
    .login-form {
        margin-top: 3em;
    }

    .section-center {
        padding: 3em;
    }
}


/*384x288*/
/*380x272*/
/*480x272*/
@media (max-width: 480px) {
    .container {
        background-color: var(--background-alt);
        padding: 0px;
        color: var(--text) !important;
    }

    .login-form {
        background-color: var(--background-alt);
        border: none;
        margin-top: 0px !important;
        padding-top: 0px !important;
    }

    .white-box {
        box-shadow: none;
    }

    .custom-padding {
        padding: 0px !important;
    }

    .card-footer {
        background-color: var(--background-alt);
        border-top: 0px;
    }

    body {
        background-image: none;
        background-color: var(--device-background-color);
    }

    .custom-margin {
        margin-bottom: 15px !important;
    }

  .btn-primary {
    padding: 10px !important;
  }
}


@media (max-height: 288px) {
    .login-form {
        margin-top: 2em;
    }

    .section-center {
        margin-top: 2em;
    }
}


/*320x240*/

@media (max-width: 320px) {
    html {
        min-width: 320px;
    }

    .login-form {
        padding: 1em;
    }

    .section-center {
        padding: 1em;
    }

    .login-logo--img {
        margin: 0;
        padding: 0;
        height: 3em;
        margin-bottom: 0.5em;
    }

    .login-logo {
        margin: 0;
        padding: 0;
    }

    .form-group {
        margin: 0;
        padding: 0;
    }

    .login-form--field label {
        padding: 0;
        margin: 0;
        font-size: 1.1em;
        margin-bottom: 0.5em;
    }

    .login-form--field button {
        font-size: 1.1em;
        padding: 8px 10px;
    }

    .custom-margin {
        margin-bottom: 0px !important;
    }
}

@media (max-height: 240px) {
    .login-form {
        margin-top: 1em;
    }

    .section-center {
        margin-top: 1em;
    }
}

.menu-nav {
    border-bottom: 1px solid rgb(204, 204, 204);
    margin-bottom: 20px
}

ul.underline {
    display: flex;
    list-style-type: none;
}

@media (max-height: 280px) {
    .login-form {
        padding-bottom: 0.15em;
        margin-top: 0.5em;
    }

    .section-center {
        margin-top: 0.5em;
    }

    .login-logo--img {
        width: 30%;
    }

    .login-logo {
        margin-bottom: 0px;
    }

    .login-form--field button {
        padding: 0.1em;
        margin-bottom: 0.5em;
    }

    .login-form--field {
        padding-bottom: 0em;
    }
}


/*ul:hover li:not(:hover) a {
  opacity: 0.2;
}*/

ul.underline li {
    position: relative;
    /* padding: 30px 25px 30px 25px; */
    cursor: pointer;
}

    ul.underline li::after {
        position: absolute;
        content: "";
        top: 100%;
        left: 0;
        width: 100%;
        height: 2px;
        background: #0d6efd;
        transform: scaleX(0);
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    ul.underline li:hover::after,
    ul li.active::after {
        transform: scaleX(1);
        color: black !important;
    }

    ul.underline li a {
        position: relative;
        display: flex;
        /* font-family: Lato, sans-serif; */
        text-decoration: none;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

a.active {
    font-weight: 500;
    color: var(--text) !important;
}

.white-box-margin {
    margin-top: 1em !important;
    min-height: 500px;
}

.account-form {
    margin-top: 0 !important;
}


/* NEW LOGIN */

.input-control-frm {
    border-style: solid;
    border-width: 2px;
    border-color: #ccc;
    padding: 6px 10px;
    padding-left: 0;
    border-width: 1px;
    outline: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    background-color: transparent;
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    width: 100%;
    margin-top: 1em;
    border-radius: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background: linear-gradient(90deg, #0d6efd, #0d6efd) center bottom/0 0.25em no-repeat;
    transition: background-size 0.4s ease;
    color: var(--text);
}

    .input-control-frm.dirty,
    .input-control-frm:focus {
        background-size: 100% 0.15em, 100% 0.15em, 100%;
    }

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btns {
    border-radius: 0 !important;
}

.show-pass-2 {
    margin-top: 1em;
    position: absolute;
    right: 26px;
    top: 2px;
}

.button-login {
    display: flex;
    justify-content: flex-end;
    margin-top: 1em;
}

.login-others {
    padding: 1em;
    margin-top: 1em;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.arrow-left-icon {
    background-image: var(--left-arrow-icon);
    height: 24px;
    width: 24px;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.h4, h4 {
    color: var(--text);
}

.normaltext {
    color: var(--text);
}

.img-login {
    max-width: 400px;
    max-height: 500px;
}

.btn-extlog {
    color: var(--btn-color-ext);
    background-color: var(--btn-backcolor-ext);
    border-color: var(--btn-backcolor-ext);
}

    .btn-extlog:hover {
        color: var(--btn-color-ext);
        background-color: var(--btn-backcolorh-ext);
        border-color: var(--btn-backcolorh-ext);
    }

.key-solid-icon {
    background-image: var(--key-icon);
    width: 20px;
    height: 20px;
    padding-right: 3em;
    background-position: center;
    background-repeat: no-repeat;
}

.user-lock-solid-icon {
    background-image: var(--user-lock-icon);
    width: 20px;
    height: 20px;
    padding-right: 3em;
    background-position: center;
    background-repeat: no-repeat;
}

.right-to-bracket-icon {
    background-image: var(--right-to-bracket);
    width: 20px;
    height: 20px;
    padding-right: 3em;
    background-position: center;
    background-repeat: no-repeat;
}

.modal-header, .modal-body, .modal-footer {
    background-color: var(--background);
    color: var(--text);
}


.spinner {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
    /* Center vertically and horizontally */
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    display: block;
    margin: auto;
    width: 4rem;
    height: 4rem;
}

.inner-div {
    background-color: white;
    border-radius: 15px;
    margin: auto;
    padding: 2%;
    width: 150px;
}

@@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.custom-margin {
    margin-bottom: 45px;
}

.vertical-item-align {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.help-icon {
    margin-right: 5px;
}

.form-control {
    margin-bottom: 10px;
}

.text {
    margin-bottom: 10px;
}

.btn-primary {
  font-size: 16px !important;
  background-color: var(--btn-backcolor);
  color: var(--btn-color);
  border-color: var(--btn-backcolor);
}

.accountText {
    padding-bottom: 20px !important;
}

.listInfo {
    margin-bottom: 0;
}

.btn-primary:active {
  background-color: var(--link-hover);
  color: var(--white);
  border-color: var(--link-hover);
}

.btn-primary:hover {
  background-color: var(--btn-backcolorh);
  color: var(--white);
  border-color: var(--btn-backcolorh);
}

.icon-eye {
  background-color: var(--eye-backcolor) !important;
  border-color: var(--border) !important;
}

.icon-eye::before {
  color: var(--eye-color) !important;
}

.login-form--field a:hover {
  color: var(--link-hover) !important;
}

a {
  color: var(--link) !important;
}

a:hover {
  color: var(--link-hover) !important;
}

.btn-outline-primary {
  color: var(--btn-backcolor) !important;
  background-color: transparent !important;
  border-color: var(--btn-backcolor) !important;
}

  .btn-outline-primary:hover {
    color: var(--btn-backcolorh) !important;
    background-color: var(--btn-backcolorh-out) !important;
    border-color: var(--btn-backcolorh) !important;
  }

  .btn-outline-primary:focus {
    box-shadow: none !important;
  }

ul.underline li::after {
  background: var(--btn-backcolor) !important;
}