.deznav .deznav-scroll {
    position: relative;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.profile {
    display: flex;
    gap: 10px;
    padding: 25px;
}

.profile img{
    width: 50px;
    height: 50px;
}

.profile .text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: center;;
    line-height: 5px;
}

.menu-toggle .profile{
    /* flex-direction: column; */
    padding: 0px 13px;
}

.menu-toggle .profile img{
    width: 54px;
    height: 54px;
}

/* .menu-toggle .profile .text{
    display: none;
} */

.mb-5, .my-5 {
    margin-bottom: 5rem !important;
}

.parent-login{
background-image: url('../images/background/background.png');
}

.parent-login .login-header{
    display: flex;
    justify-content: space-between;
    padding-top: 3%;
}

.parent-login .h-100 {
    height: 95% !important;
}

.parent-login .authincation-content
{
    background: none !important;
    box-shadow: none !important;
}

.parent-login .form-control{
    border: 1px solid #949AA6 !important;
    height: 45px !important;
    border-radius: 10px !important;
}

.parent-login .btn-primary{
    background-color: #15B999;
    border-color: #15B999;
    padding: 10px 40px;
    height: 50px;
    font-weight: 600;
}

/* .parent-login .btn{
    border-radius: 10px !important;
} */

.parent-login b {
    color: #1F1F1F !important;
}

.parent-login .text-primary{
    color: #15B999 !important;
}

.parent-login a.text-primary:hover, a.text-primary:focus {
    color: #15B999 !important;
}

.form-control{
    border: 1px solid #949AA6 !important;
    height: 45px !important;
    border-radius: 10px !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    background: none;
    border: none;
    /* border-color: #f0f1f5; */
    /* background: #fff; */
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: #fff;
    border: 1px solid #949AA6;
    height: 45px !important;
    width: 60% !important;
    border-radius: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    display: flex;
    gap: 20px;
    background-color: #f8ebfa;
    color: #C046D3;
    border-radius: 10px;
    cursor: default;
    float: left;
    margin-right: 20px;
    margin-top: 5px;
    padding: 0px 10px 0px 20px;
    height: 45px !important;
    align-items: center;
    flex-direction: row-reverse;
    font-weight: 700;
    border: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #FFFFFF;
    cursor: pointer;
    margin-left: 15px;
    background-color: #C046D3;
    border-radius: 50%;
    width: 27px;
    height: 27px;
    text-align: center;
    padding: 0px 0px 0px 1px;
    font-size: 18px;
    font-weight: bolder;
}

@media only screen and (max-width: 900px){
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
        padding: 1px 0px 0px 1px !important;
        gap: 0;
    }
  }

.input-group {
    margin: 2rem 0;
}

/* Button */
.btns-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.btns-single{
    display: grid;
}

.parent-login .otpsecction{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0px;
}

.parent-login .otp-field{
    height: 65px !important;
    padding: 0 !important;
    font-size: 22px;
    font-weight: 900;
    text-align: center !important;
    color: #1F1F1F !important;
}

.otp-field{
    height: 65px !important;
    padding: 0 !important;
    font-size: 22px;
    font-weight: 900;
    text-align: center !important;
    color: #1F1F1F !important;
}

/* #otpnum1{
    border-radius: 0 !important;
    border-bottom-left-radius: 10px !important;
    border-top-left-radius: 10px !important;
    border-right: none !important;
}

#otpnum2{
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
}

#otpnum3{
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
}

#otpnum4{
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
}

#otpnum5{
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
}

#otpnum6{
    border-radius: 0 !important;
    border-bottom-right-radius: 10px !important;
    border-top-right-radius: 10px !important;
    border-left: none !important;
} */

.form-control.is-invalid {
    border-color:  #949AA6 !important;
    background-image: none;
}

.form-check-label input {
    display: none;
}

.checkbox-btn {
    /* margin: 10px; */
    width: 70px;
    height: 70px;
    border: 3px solid transparent;
    display: inline-block;
    border-radius: 50px;
    position: relative;
    text-align: center;
    /* box-shadow: 0 0 10px #c3c3c367; */
    cursor: pointer;
}

.checkbox-btn .checkbox-image {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-btn .checkbox-image img {
    width: 50px;
}

.checkbox-btn .checkbox-name {
    font-size: 12px;
    font-weight: 400;
    color: black;
    position: absolute;
    top: 110%;
    /* left: 8%; */
}

.form-check-label input:checked + .checkbox-btn {
    border: 3px solid #15B999 ;
}

.form-check-label input:checked + .checkbox-btn > i {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 13px 20px !important;
    border-radius: 10px !important;
}

.dropdown-toggle{
    padding: 0.375rem 0.75rem !important;
}

.btn-input{
    border: 1px solid #949AA6 !important;
    height: 45px;
    margin-bottom: 20px;
    width: 100%;
}

.btn-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(232, 232, 232, 0.5);
}

[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .deznav .notificationbadge {
    position: absolute;
    margin-top: -40px;
}

[data-headerbg="color_1"] .nav-header .hamburger.is-active .line, [data-headerbg="color_1"] .nav-header .hamburger .line {
    background: #15B999 !important;
}

[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .nav-header .nav-control .hamburger .line {
    background: #15B999 !important;
}

[data-sidebar-style="full"][data-layout="vertical"] .deznav .metismenu > li.mm-active > a .inactive {
    display: none;
}

[data-sidebar-style="full"][data-layout="vertical"] .deznav .metismenu > li.mm-active > a .active {
    display: inline !important;
}

[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .deznav .metismenu > li.mm-active > a .active {
    display: none !important;
}

[data-sidebar-style="full"][data-layout="vertical"] .menu-toggle .deznav .metismenu > li.mm-active > a .white {
    display: inline !important;
}

.rememberme{
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 400px) {
    .rememberme{
        flex-direction: column;
    }

    .fogetpw{
        padding-left: 0.5rem;
    }
}
