@import 'variables.css';


.user-img {
    width: 70px;
    height: 47px;
    border-radius: 50%;
}
.card_height_fix {
    height: 90vh;
}

.card-header {
    max-height: 67px;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #F0F4FD;
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.create_btn {
    background: var(--orange-color);
    color: #fff;
    border-radius: 15px;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
}
.cancel_btn {
    background: #FFFFFF;
    color: var( --purple-color);
    border-radius: 15px;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
}
.heading_txt {
    font-size: 18px;
    color: #24252D;
    font-weight: 500;
}

.card-body1 {
    background: url('../img/bg_img.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    margin-top: 26px;

}

.form-control-create {
    border: none !important;
    border-bottom: 1px solid #B3B3B3 !important;
    border-radius: 0px !important;
    background: transparent !important;
}

.paragraph {
    color: var(--text-color-2);
    font-size: 14px;
    font-weight: 500;
}

.img-fluid1 {
    width: 125px;
    height: 125px;
    border-radius: 50%;
}

.deletebtn,
.editbtn {
    box-shadow: none !important;
    background: transparent !important;
}

.profileHeading {
    line-height: 45px;
    font-weight: 600;
    font-size: 38px;
}

.btn-cancel {
    border-radius: 15px;
    background-color: transparent;
    box-shadow: none !important;
    border: 1px solid var(--text-color-2) !important;

}

.btn-create {
    border-radius: 15px;
    background-color: transparent;
    box-shadow: none !important;
    background-color: var(--orange-color);
    color: #fff;

}

.custom-scrollbar {
    max-height: 72vh;
    overflow-y: auto;
}

.min-width-200 {
    min-width: 200px;
}

.btn-create:hover {
    background: var(--orange-color) !important;
    color: #fff;
}

.btn-cancel:hover {
    background: #fff !important;
}

@media (max-width: 568px) {
    .breadcrumb-item {
        font-size: 12px !important;
    }
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    scroll-behavior: smooth;

}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--orange-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange-color);
}

.pagination .page-link {
    border: none;
    padding: 0.5rem 0.75rem;
    background-color: var(--pagination-active-page);
    color: var(--pagination-page-text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 10px !important;
    font-family: 'Poppins';
    font-size: 18px;
    font-weight: 500 !important;
    line-height: 27px;

}

.pagination .page-no .page-link{
    background-color: unset !important;
}

.pagination .dots .page-link{
    background-color: unset !important;
}

.pagination .page-link:focus{
    box-shadow: unset !important;
}

.pagination .page-no.active>.page-link{
    background-image: unset !important;
    background-color: var(--pagination-active-page) !important;
    color: var(--pagination-page-text-color);
    box-shadow: unset;
}

.pagination .page-link:hover {
    background-color: var(--pagination-active-page);
}

.pagination .page-item .page-link {
    background-color: var(--pagination-active-page);
    font-weight: bold;
}

.pagination .page-link[aria-disabled="true"] {
    opacity: 0.5;
}

.switches-container {
    width: 130px;
    position: relative;
    display: flex;
    padding: 0;
    position: relative;
    background: #F37A20;
    line-height: 3rem;
    border-radius: 3rem;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.switches-container input {
    visibility: hidden;
    position: absolute;
    top: 0;
}

.switches-container label {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
    cursor: pointer;
}

.switch-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    padding: 0.15rem;
    /* z-index: 3; */
    transition: transform .5s cubic-bezier(.77, 0, .175, 1);
}


.switch {
    border-radius: 3rem;
    background: #fff;
    height: 100%;
}

.switch div {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    color: var(--switch-text-color);
    transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
    will-change: opacity;
    position: absolute;
    top: 0;
    left: 0;
}

.switches-container input[type="radio"]:checked + label {
    color: #F37A20 !important;
    /* background: #fff; */
    /* border-radius: 3rem; */
    transition: background 0.3s, color 0.3s;
}

.switches-container input:nth-of-type(1):checked~.switch-wrapper {
    transform: translateX(0%);
}

.switches-container input:nth-of-type(2):checked~.switch-wrapper {
    transform: translateX(100%);
}

.switches-container input:nth-of-type(1):checked~.switch-wrapper .switch div:nth-of-type(1) {
    opacity: 1;
}

.switches-container input:nth-of-type(2):checked~.switch-wrapper .switch div:nth-of-type(2) {
    opacity: 1;
}
.invalid-feedback{
    display: block !important;
}
.form-control-create:focus{
    box-shadow: none !important;
    border-bottom: 1px solid #B3B3B3 !important;
}
.modal_btn{
    box-shadow: none !important;
    border: 1px solid #A6A6A6 !important;
    border-radius: 15px;
    width: 100%;
    height: 150px;
}
.modal_btn:hover{
    box-shadow: none !important;
    transform: none !important;
}
.modal_btn img{
    border-radius: 15px;
}
.modal_btn p{
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.idimg{
    height: 146px !important;
}



.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.label {
    position: absolute;
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none; 
}

.form-control-create:focus + .label,
.form-control-create:not(:placeholder-shown) + .label {
    opacity: 1;
    top: -10px;
   
}

.form-control-create:focus::placeholder {
    opacity: 0;
}



.form-control-create:focus {
    /* border-color: none !important;  */
    border-bottom: 1px solid #B3B3B3 !important;
    box-shadow: none !important;
}

.form-control-create::placeholder {
    color: gray; 
}
.selectlable{
    position: absolute;
    top: -38%;
    left: 0px;
    transition: all 0.3s ease;
    pointer-events: none;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] , .select2-results__option{
    background-color: var( --bg-color) !important;
    color: #3E3E3E !important;
  
  }
  
  .select2-selection__placeholder{
    color: #181818 !important;
  }
  .select2-dropdown, .select2-results__options{
    background: var( --bg-color) !important;
    border: none !important;
    border-radius: 10px !important;
    margin-top: 10px;
  }
  .select2-container--default .select2-selection--single {
    background-color: transparent !important;
  }
  
  .select2-selection{
    border: none !important;
    border-bottom: 1px solid #B3B3B3 !important;
    border-radius: 0px !important;
  }
  
  .select2-search.select2-search--dropdown, .select2-selection__clear{
    display: none !important;
  }
  .min-height-146{
    min-height: 146px !important;
}

/* .input-group .form-control, .input-group.focused{
    border: 1px solid #BABABA;
} */

.input-group.focused .input-group-text{
    border: none !important;
}

@media (max-width:450px) {
    .create_btn {
        font-size: 12px;
      }
      .heading_txt {
        font-size: 14px;
      } 
      
      .paddingfix{
        padding-left: 0px;
        padding-right: 0px;
        overflow-x: hidden;
      }
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

.create_btn:hover {
    color: #fff;
}

@media (max-width: 769px) {
    .breadcrumb-item+.breadcrumb-item:before {
        content: '';
    }

    .breadcrumb-item{
        display: none;
    }
    .navbar-nav.justify-content-end{
        justify-content: start !important;
    }
}
@media (max-width: 850px) {
  
    .breadcrumb-item{
        font-size: 12px !important;
    }
}

@media (min-width:769px) and (max-width: 1300px) {
    .main-drop span{
        font-size: 12px !important;
    }
}

@media (max-width: 769px) {
    .navbar-collapse .navbar-nav {
        width: 100%;
    }
    .navbar div nav{
        display: none;
    }
}

.select2-dropdown--above{
    margin-top: -1px !important;
}