/*Normal Css*/

.login_header_align {
    background-color: white;
    margin-left: -7.5px;
    margin-right: 7.5px;
    /* position: fixed; */
    width: 100%;
    z-index: 10;
    padding-left: 1%;
    padding-right: 1%;
    /* height: 5rem; */
    top: 0;
}

.login_wrapper {
    border-top: 4px solid rgb(134, 192, 82);
}

.login_role~.add_role_border_align>.selection>.select2-selection--single {
    border: 0px solid black !important;
}

.login_logos_align {
    /* padding-left: 5%;
padding-right: 5%; */
}

.fms_logo_navbar {
    /* width: 34%; */
}

.limg_dot_login {
    width: 100%;
}

.content-login_wrapper~.main-footer {
    margin-left: 0px !important;
}

.login_active {
    background-color: white;
    color: #24282e;
    font-weight: 600;
}

.login_active:hover {
    background-color: white;
    color: #495057;
    font-weight: 600;
}

.login_submit_align {
    background: #184e6e;
    color: white;
    font-weight: 600;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
    font-size: 600;
    z-index: 1;
}

.rimg_dot_login {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
}

.right_dot_images {
    bottom: 50px;
    position: fixed;
}


/* 
.login_form_left {
    margin-left: 8%;
} */

.login_submit_align:hover {
    background: black;
    color: white;
    font-weight: 600;
    z-index: 1;
}

.login_right_botttom_img_align {
    position: absolute;
    bottom: 0;
    right: 0;
}

.content-wrapper>.content {
    padding: 5px 7px 0% 7px;
}


/* 
.login_type_body_align {
    margin-top: 5rem;
} */

.login_left_logo {
    display: flex;
    align-items: center;
    /*Aligns vertically center */
    justify-content: start;
}

.logos1 {
    display: flex;
    align-items: center;
    /*Aligns vertically center */
    justify-content: space-evenly;
}

.login_header_right_logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-header {
    border-bottom: 0px solid #dee2e6;
}

.input-container_login {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}

.icon_login_align {
    padding: 10px;
    background: white;
    min-width: 40px;
    text-align: center;
    border: 2px solid #cfcfcf;
    border-right: 0;
    color: #606060;
    border-radius: 5px 0px 0px 5px;
}

.icon_pwd_eye_login_align {
    padding: 10px;
    background: white;
    min-width: 40px;
    cursor: pointer;
    text-align: center;
    border: 2px solid #cfcfcf;
    border-left: 0;
    color: #606060;
    margin-left: -5px;
    border-radius: 0px 5px 5px 0px;
    z-index: 1;
}
.icon_rules_info_login_align{
    padding: 10px;
    background: white;
    min-width: 30px;
    cursor: pointer;
    text-align: center;
    border: 2px solid #cfcfcf;
    border-left: 0;
    color: #606060;
    margin-left: -5px;
    border-radius: 0px 5px 5px 0px;
    z-index: 1;
}

.input-field_login {
    width: 100%;
    padding: 5px;
    outline: none;
    border: 2px solid #cfcfcf;
    border-left: 0;
    border-radius: 0px 5px 5px 0px;
}

.input-field_login_pwd {
    width: 100%;
    padding: 5px;
    outline: none;
    border: 2px solid #cfcfcf;
    border-left: 0;
    border-right: 0;
    border-radius: 0px 5px 5px 0px;
}

.input-field_login:focus {
    border: 2px solid #cfcfcf;
    border-left: 0;
}

.input-field_login_pwd:focus {
    border: 2px solid #cfcfcf;
    border-right: 0;
    border-left: 0;
}


/* animation */

img.login_girl_animation {
    -webkit-animation: move 1.5 infinite alternate;
    animation: move 1.5s infinite alternate;
    width: 80%;
}

@-webkit-keyframes move {
    0% {
        transform: translateY(90px);
    }
    100% {
        transform: translateY(90px);
    }
}

.login_zoomin_out_image_animation {
    -webkit-animation: zoomeffect 5s infinite;
    -moz-animation: zoomeffect 5s infinite;
    animation: zoomeffect 5s infinite;
    width: 90%;
}

@-webkit-keyframes zoomeffect {
    0% {
        background-position: center;
        transform: scale(0.5, 0.5);
    }
    50% {
        background-position: center;
        transform: scale(0.60, 0.60);
    }
    100% {
        background-position: center;
        transform: scale(0.5, 0.5);
    }
}

@keyframes zoomeffect {
    0% {
        background-position: center;
        transform: scale(0.5, 0.5);
    }
    50% {
        background-position: center;
        transform: scale(0.60, 0.60);
    }
    100% {
        background-position: center;
        transform: scale(0.5, 0.5);
    }
}

@keyframes move {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(20px);
    }
}

.login_left_clk_animation_image {
    animation: rotate 5s ease-in-out infinite;
    transform-origin: 50% 50%;
    width: 100%
}

@keyframes dash {
    0% {
        stroke-dashoffset: 63;
    }
    50% {
        stroke: #29B6F6;
        stroke-dashoffset: 0;
    }
    100% {
        stroke: #FF4081;
        stroke-dashoffset: 63;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(-0deg);
    }
}

img.login_girl_shadow_animation {
    -webkit-animation: move1 1.5s infinite alternate;
    animation: move1 1.5s infinite alternate;
    width: 80%;
}

@-webkit-keyframes move1 {
    0% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(-35px);
    }
}


/* --- */

.login_body_scroll::-webkit-scrollbar {
    background-color: #fff;
    width: 5px;
    border: 1px solid #184e6e;
}

.login_body_scroll::-webkit-scrollbar-track {
    background-color: #fff;
    border: 1px solid #184e6e;
}

.login_body_scroll::-webkit-scrollbar-track:hover {
    background-color: #fff;
    border: 1px solid #184e6e;
}

.login_body_scroll::-webkit-scrollbar-thumb {
    background: #184e6e;
    border-radius: 16px;
}

.login_body_scroll::-webkit-scrollbar-thumb:hover {
    background: #184e6e;
}

.login_body_scroll::-webkit-scrollbar-button {
    display: none
}

.faq_active_button {
    text-align: left;
    font-size: 0.9rem;
}

.login_body_scroll {
    overflow-y: scroll;
    overflow: auto;
    padding-right: 0.5%;
    margin-bottom: 0px;
    /* overflow: auto; */
    cursor: pointer;
    max-height: calc(100vh - 8.5rem);
    overflow-x: hidden;
}

.add_role_border_align {
    width: 100%;
    border: 2px solid #cfcfcf;
    border-radius: 0px 5px 5px 0px;
    border-left: 0;
}

.add_role_border_inner_align {
    border-left: 0 !important;
}

.login>.main-footer {
    margin-left: 0px !important;
}

.login_header_nav {
    display: flex;
    align-items: center;
    justify-content: start;
}

.layout-top-nav {
    overflow: hidden;
}


/*media Query Only*/

@media(min-width: 1800px) {}

@media(max-width:1799px) and (min-width:1500px) {}

@media(max-width:1199px) {}

@media (min-width:992px) {}

@media (min-width: 768px) {}

@media(min-width:992px) and (max-width:1200px) {}

@media(max-width:991px) {
    .login_left_clk_animation_image {
        animation: rotate 5s ease-in-out infinite;
        transform-origin: 50% 50%;
        width: 70%
    }
    @keyframes dash {
        0% {
            stroke-dashoffset: 63;
        }
        50% {
            stroke: #29B6F6;
            stroke-dashoffset: 0;
        }
        100% {
            stroke: #FF4081;
            stroke-dashoffset: 63;
        }
    }
    @keyframes rotate {
        0% {
            transform: rotate(0deg);
        }
        50% {
            transform: rotate(180deg);
        }
        100% {
            transform: rotate(-0deg);
        }
    }
}

@media (max-width: 768px) {
    .login_left_clk_animation_image {
        animation: rotate 5s ease-in-out infinite;
        transform-origin: 50% 50%;
        width: 50%
    }
    img.login_girl_animation {
        -webkit-animation: move 1.5 infinite alternate;
        animation: move 1.5s infinite alternate;
        width: 100%;
    }
    img.login_girl_shadow_animation {
        -webkit-animation: move1 1.5s infinite alternate;
        animation: move1 1.5s infinite alternate;
        width: 100%;
    }
    @-webkit-keyframes move1 {
        0% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(-15px);
        }
    }
    .login_header_align {
        padding-left: 0%;
        padding-right: 0%;
    }
}

@media (max-width: 767px) {
    .login_left_half_align {
        display: none !important;
    }
    .image_dot_inverse_login_align {
        display: none !important;
    }
}

@media (max-width: 690px) {
    .login_form_left {
        margin-left: 8%;
    }
}

@media (min-width:600px) {}

@media (max-width: 600px) {
    .login_header_nav {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 1%;
        padding-bottom: 1%;
    }
    .login_left_half_align {
        display: none !important;
    }
    .login_type_body_align {
        margin-top: 1rem;
    }
    .login_body_scroll {
        max-height: calc(100vh-1rem);
    }
    .image_dot_inverse_login_align {
        display: none !important;
    }
    .login_form_left {
        margin-left: 0% !important;
    }
    .login_left_logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .login_header_right_logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main-header {
        padding-bottom: 0.5rem;
    }
    .login_body_scroll {
        max-height: calc(100vh - 10rem);
    }
}

@media(min-width:576px) and (max-width:601px) {
    .fms_logos1 {
        width: 4.5rem;
    }
    .spi_logos {
        width: 5.5rem;
    }
    .login_type_body_align {
        margin-top: 1rem;
    }
    .login_body_scroll {
        max-height: calc(100vh - 10rem);
    }
    .main-header {
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 575px) {}

@media (max-width: 425px) {}

@media (max-width: 380px) {}

@media (max-width: 340px) {}