.select2-selection__rendered{
    color: gray !important;
}
.app-sidebar{
    overflow-y: scroll !important;
}
/* Accordion CSS start*/
#accordion .panel{
    border: none;
    border-radius: 3px;
    box-shadow: none;
    margin-bottom: 15px;
}
#accordion .panel-heading{
    padding: 0;
    border: none;
    border-radius: 3px;
}
#accordion .panel-title a{
    display: block;
    /* padding: 12px 15px; */
    background: #fff;
    font-size: 18px;
    font-weight: 400;
    color: #3e21a8;
    /*border: 1px solid #ececec;*/
    box-shadow: 0 0 10px rgba(0,0,0,.05);
    position: relative;
    transition: all 0.5s ease 0s;
    box-shadow: 0 1px 2px rgba(53, 81, 141, 0.3);
}
#accordion .panel-title a.collapsed{
    box-shadow: none;
    color: #676767;
    box-shadow: 0 1px 2px rgba(43,59,93,0.30);
}
#accordion .panel-title a:before,
#accordion .panel-title a.collapsed:before{
    content: "\f067";
    font-family: "FontAwesome";
    width: 25px;
    height: 25px;
    line-height: 28px;
    font-size: 15px;
    font-weight: 900;
    color: #3e21a8;
    /* text-align: right; */
    position: absolute;
    top: 8px;
    right: 15px;
    transform: rotate(135deg);
    transition: all 0.3s ease 0s;
}
#accordion .panel-title a.collapsed:before{
    color: #676767;
    transform: rotate(0);
}
#accordion .panel-title a:after{
    content: "";
    width: 1px;
    height: 100%;
    background: #ececec;
    position: absolute;
    top: 0;
    right: 55px;
}
#accordion .panel-body{
    padding: 0px 15px;
    border: none;
    font-size: 15px;
    color: #615f5f;
    line-height: 27px;
}

/* Accordian CSS end*/

/* profile image upload avatar */
.avatar-upload {
    position: relative;
    max-width: 205px;
    margin: 0px auto 30px;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 52px;
    z-index: 1;
    top: 85px;
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}

.avatar-upload .avatar-edit input+label:after {
    content: "\f030";
    font-family: 'FontAwesome';
    color: black;
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    font-size: 18px
}

.avatar-upload .avatar-preview {
    width: 150px;
    height: 140px;
    position: relative;
    border-radius: 100%;
    border: 3px solid black;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/* profile image upload avatar  end*/

.portlet {
    box-shadow: 0 2px 3px 2px rgb(0 0 0 / 3%);
}



/* user status changed toggle switch */
.user-status {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.user-status input {
    opacity: 0;
    width: 0;
    height: 0;
}

.status-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.status-slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.status-slider {
    background-color: #2196F3;
}

input:focus+.status-slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.status-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.status-slider.status-round {
    border-radius: 34px;
}

.status-slider.status-round:before {
    border-radius: 50%;
}



/* auth pages background */

.bg-login {

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    min-height: 100vh;
    background-image: url("../images/media/Salveowell Thub.jpg");
}

.login-card {
    border-radius: 40px !important;
    box-shadow: 0 3px 30px rgb(0 0 0 / 0.5);
    background-color: white;
}

.login-form h3 {
    color: #454545;
    font-weight: 500;
}

.login-form input {
    padding: 22px 10px;
    border: 1px solid #C0C0C0;
    border-radius: 18px !important;
    background-color: #fff;
    color: black;
    text-indent: 9px;
}

.login-form input:focus {
    border: 0ch;
    background-color: white;
    color: black;
}

.login-form button {
    background-color: #F1A104;
    border-radius: 21.3841px;
    color: #FFFFFF;
    padding: 10px;
    border: #F1A104;
    font-size: 20px;
    font-weight: 700;
}

.custom-card{
    border-radius: 20px !important;
    height: 100%;
}
.custom-card .card-header{
    border-top-right-radius: 20px !important;
    border-top-left-radius: 20px !important;

}

#card_scroller_user::-webkit-scrollbar-track {
    background-color: white;
}

#card_scroller_user::-webkit-scrollbar {
    width: 6px;
    background-color: #705EC8;

}
#card_scroller_user::-webkit-scrollbar-thumb {
    background-color: #705EC8;
    border-radius: 20px;
}

.user-dashbaord-scrollbar {
    margin: 7px 4px ;
    max-height: 275px;
    overflow-x: hidden;
    overflow-y: auto;
}
.form-control:focus{
    border: 1px solid #C0C0C0 !important;
}
.form-custom-field-style{
    min-height: 44px !important;
    border-radius: 18px !important;
    -webkit-border-radius: 18px !important;
    -moz-border-radius: 18px !important;
    -ms-border-radius: 18px !important;
    -o-border-radius: 18px !important;
    border: 1px solid #C0C0C0;

}

.fs-12{
    font-size: 12px !important;
}

.fs-16
{
    font-size: 16px !important;
    font-weight: 600 !important;
}

.show-paasword {
    font-size: 17px;
    margin-top: 8px;
    z-index: 20;
    position: absolute;
    right: 4px;
    top: 4px;
    cursor: pointer;
}
