@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary-color: #ffd638;
    --dark-bg: #121111;
    --light-bg: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --font-sans: 'Roboto', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--light-bg);
}

.p-5 {
    padding: 3rem 15px !important;
}

.ml-5{
  margin-left: 5px;
}
.main-container {
    display: flex;
    min-height: 100vh;
    float: left;
    width: 100%;
     background-color: var(--dark-bg);
     padding: 25px 15px;
}

.left-pane {
    flex: 3;
    background-color: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-login {
    float: left;
    width: 200px;
}

.right-pane {
    flex: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    position: relative;
    background-color: #fff;
    border-radius: 25px;
}

.form-container {
    width: 100%;
    max-width: 400px;
    /* display: none; */
    flex-direction: column;
}

.form-container.active {
    display: flex;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(240, 196, 32, 0.2);
}
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    height: 70px;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(240, 196, 32, 0.2);
}

.phone-input-group, .password-input-group {
    display: flex;
    position: relative;
    float: left;
    width: 100%;
}

.country-code {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background-color: #f9f9f9;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 8px 0 0 8px;
}

.country-code img {
    margin-right: 0.5rem;
}

.phone-input-group input {
    border-radius: 0 8px 8px 0;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
}

.btn {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #e0b418;
}

.btn-primary:active {
    transform: scale(0.98);
}

.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.auth-switch a, .forgot-password, .terms, .resend-link a, .verification-subtext a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover, .forgot-password:hover, .resend-link a:hover, .verification-subtext a:hover {
    text-decoration: underline;
}

.forgot-password {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.terms {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Verification Page */
.verification-container {
    text-align: center;
}
.verification-header{
    margin-bottom: 2rem;
}

.verification-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    position: relative;
}
.verification-icon .bi-phone {
    color: var(--text-dark);
}
.chat-bubble {
    position: absolute;
    top: 5px;
    right: -10px;
    background-color: #fff;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.chat-bubble svg {
    display: block;
    color: var(--text-dark);
}

.verification-subtext {
    color: var(--text-light);
    /* max-width: 250px; */
    margin: 0.5rem auto 0;
}

.otp-form {
    width: 100%;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
        position: relative;
}
.otp-inputs input.error{
    border: solid 1px #f00;
}

.otp-inputs label.error{
       position: absolute;
    font-size: 12px;
    bottom: -20px; 
    color:#f00;
}

.otp-input {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.otp-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(240, 196, 32, 0.2);
}

.resend-link {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}



.more_filter_wpr{
  width: 100%;
  float: left;
  margin-bottom: 15px;
}
.more_filter_wpr .more_filter{
     width: auto;
    float: left;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 500;
    background-color: #d7d7d7;
    color: #000000;
    letter-spacing: 1px;
    border-radius: 25px;
    cursor: pointer;
}




/* Responsive */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }

    .left-pane {
        flex: 0;
        padding: 3rem 1rem;
    }

    .logo {
        font-size: 3rem;
    }

    .right-pane {
        flex: 1;
        padding: 2rem 1.5rem;
    }
}



.dashboard_count_wpr{
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.dashboard_count_wpr .col_count_blk{
  width: 25%;
  float: left;
  /* min-width: 250px; */
  padding: 5px;
}
.dashboard_count_wpr .col_count_inblk{
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  background-color: #ffd638;
  padding: 5px;
  border-radius: 12px;
  background: #020024;
  background: linear-gradient(90deg, rgb(233 240 255) 0%, rgb(255 245 203) 100%);
}

.dashboard_count_wpr .col_count_inblk.bg_1{
    background: linear-gradient(90deg, rgb(255 185 185) 0%, rgb(255 245 203) 100%);
}
.dashboard_count_wpr .col_count_inblk.bg_2{
      background: linear-gradient(90deg, rgb(216 191 255) 0%, rgb(255 245 203) 100%);
}
.dashboard_count_wpr .col_count_inblk.bg_3{
      background: linear-gradient(90deg, rgb(233, 255, 191) 0%, rgb(255 245 203) 100%);
}


.dashboard_count_wpr .col_icon{
  width: 80px;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dashboard_count_wpr span{
      width: 45px;
    float: left;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff8a;
    border-radius: 50%;
    color: #000000;
    font-size: 22px;
}
.dashboard_count_wpr .col_text{
  width: 100%;
  float: left;
  padding: 5px;
  font-weight: 500;
}
.dashboard_count_wpr .label{
  width: 100%;
  float: left;
  font-size: 14px;
}
.dashboard_count_wpr .count{
  width: 100%;
  float: left;
  font-size: 25px;
  font-weight: 400;
}




/* ------- */
  .main-content {
            flex-grow: 1;
            padding: 20px;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .card {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .card h3 {
            margin-top: 0;
        }

        .interviews-list {
            /* background-color: white; */
            /* padding: 20px; */
            padding-top: 25px;
            border-radius: 8px;
            /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
        }

        .interviews-list h3 {
            margin-top: 0;
            margin-bottom: 15px;
            font-size: 20px;
        }

        .interview-item {
          display: flex;
          justify-content: space-between;
          align-items: baseline;
          flex-wrap: wrap;
          background-color: #fff6d2;
          background: linear-gradient(90deg, rgb(255 239 214) 0%, rgb(231 231 231) 100%);
          margin-bottom: 10px;
          color: #000000;
          border-radius: 10px;
          padding: 15px;
          /* box-shadow: 0 0 6px 0px #00000036; */
        }
        .interview-item.upcoming {
             background: linear-gradient(90deg, rgb(234 232 255) 0%, rgb(227 227 227) 100%);
        }
        .interview-item.rejected {
          background: linear-gradient(90deg, rgb(255 221 221) 0%, rgb(255 238 230) 100%);
        }
        .interview-item.completed {
             background: linear-gradient(90deg, rgb(232 255 238) 0%, rgb(233 216 206) 100%);
        }
        .interview-item.expired {
          filter: grayscale(1);
          pointer-events: none;
          opacity: 0.8;
        }
        .interview-item.closed {
          filter: grayscale(0.65);
          pointer-events: none;
        }

        .row_project_close{
          width: auto;
    float: left;
    padding: 5px 15px;
    background: linear-gradient(90deg, rgb(253 26 26) 0%, rgb(255 0 0) 100%);
    color: #fff;
    font-size: 12px;
    margin-top: 11px;
    font-weight: 500;
    border-radius: 3px;
        }

        .interview-item:last-child {
            border-bottom: none;
        }

        .interview-details {
            display: flex;
            align-items: center;
        }

        .interview-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #e0e0e0;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .interview-actions .btn {
            padding: 8px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            color: white;
            font-size: 14px;
            font-weight: 500;
        }



        .btn.accept {
            background-color: #108728;
            background: #2A7B9B;
            background: linear-gradient(90deg, rgb(255 216 67) 0%, rgb(255 205 12) 50%);
            color: #000000;
        }

        .btn.reject {
            background-color: #c0392b;
            margin-left: 10px;
            background: linear-gradient(90deg, rgb(120 0 0) 0%, rgb(129, 6, 6) 50%);
        }

        .interview-actions{
            width: 100%;
            max-width: 280px;
            float: right;
            display: flex;
            margin-top: 15px;
            display: flex;
            justify-content: flex-end;
            
        }


        .interview-details .row_info_head{
          width: 100%;
          float: left;
          font-size: 1rem;
          font-weight: 600;
          margin-bottom: 5px;
        }
        .interview-details .row_info{
          width: 100%;
          float: left;
          color: #262626;
          font-size: 13px;
          font-weight: 600;
          padding: 1px 0;
        }
        .interview-details .row_info span{
             color: rgb(21 0 100);
             float: left;
             min-width: 50px;
             font-size: 13px;
        }


        

 .interview-details .btn_wpr{
  width: 100%;
  float: left;
  padding-top: 10px;
 }
 .interview-details .btn_view{
      width: auto;
    float: left;
    font-size: 14px;
    background-color: #fff;
    color: #000;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 15px;
 }

 
.interview-details  .talent_card_small {
     justify-content: space-between;
    margin: 4px 0;
    box-shadow: none;
    margin-right: 15px;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 5px;
}
.interview-details .talent_card_small .col_wpr{
  width: auto;
}
.interview-details .talent_card_small .col_img{
  max-width: 110px;
  margin-bottom: 5px;
}
.interview-details .talent_card_small .action_wpr{
  width: auto;
  padding: 15px;
  margin: 0;
}
.interview-details .talent_card_small h3{
 width: 100%;
 float: left;
 font-size: 14px;
 text-align: center;
 margin-bottom: 0;
}




 .no_data_wpr{
      background-color: #f1f1f1;
    width: 100%;
    float: left;
    height: 100px;
    padding: 15px;
    display: flex
;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    margin-bottom: 15px;
    border-radius: 15px;
    color: #0000003d;
    font-weight: 600;
 }
        
.dropdown-menu-blk{
    width: 100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5px;
    position: relative;
}
.dropdown-menu-blk .icon{
    width: 100%;
    float: left;
  width: 35px;
  float: left;
  text-align: center;
}
.dropdown-menu-blk .icon img{
    width: 100%;
    float: left;
  padding-right: 10px;
}.dropdown-menu-blk .title-icon{
    width: 100%;
    float: left;
  width: 10px;
  float: left;
  margin-right: 5px;
}
.dropdown-menu-blk .down-arrow{
    width: 100%;
    float: left;
     font-size: 10px;
    margin-left: 10px;
}

.dropdown-menu-blk .dropdown-blk{
    position: absolute;
    min-width: 230px;
    right: 0;
    float: left;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    top: 46px;
    z-index: 999;
    border-radius: 8px;
    box-shadow: 0 0 7px 2px rgb(0 0 0 / 19%);
    display: none;
    animation: animate_dropdown linear .2s;
    animation-iteration-count: 1;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
}

.dropdown-menu-blk .dropdown-blk:before{
    width: 100%;
    float: left;
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 6px solid white;
    top: -6px;
    position: absolute;
    right: 20px;
}

@keyframes animate_dropdown {
 0% {
    width: 100%;
    float: left;
       transform: translate(0px, -10px);
       opacity: 0;
    }
 90% {
    width: 100%;
    float: left;
       transform: translate(0px, 5px);
       opacity: 1;
    }
 100% {
    width: 100%;
    float: left;
       transform: translate(0px, 0px);
    }
 
  
}

.dropdown-menu-blk:hover .dropdown-blk{
    width: 100%;
    float: left;
  display: block;
}

.dropdown-menu-blk .dropdown-ul {
    width: 100%;
    float: left;
    width: auto;
    float: left;
    max-height:60vh;
    overflow: auto;
    min-width: 200px;
    margin-bottom: 5px;
    margin-top: 5px;
    display: block;
}

.dropdown-menu-blk .dropdown-blk .li-selection{
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin: 0;
    cursor: pointer;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    margin: 0;
}
.dropdown-menu-blk .dropdown-blk .li-selection:hover{
   
  background-color: #f9f9f9;
  color: #242260;
}


.dropdown-menu-blk .dropdown-blk .li-selection .img{
    width: 100%;
    float: left;
    width: 35px;
    height: 35px;
    float: left;
    background-color: #e7e1d9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgb(155,83,209);
    background: linear-gradient(167deg, rgb(255 214 56) 0%, rgb(255 214 56) 100%);
    color: #000000;
    font-size: 15px;
}
.dropdown-menu-blk .dropdown-blk .li-selection .img img{
    width: 100%;
    float: left;
  width: 35px;
  float: left;
  min-width: 35px;
}


.dropdown-menu-blk .dropdown-blk .li-selection .title{
    width: 100%;
    float: left;
  width: auto;
  padding: 0 15px;
  float: left;
}

.dropdown-menu-blk .head-label{
    width: 100%;
    float: left;

padding: 8px 15px;

border-bottom: solid 1px #e7e7e7;
}


.menu-auth{
    width: 100%;
    float: left;
    background-color: #040404;
    border-radius: 27px;
    padding: 2px;
}
.menu-auth .icon-blk{
    width: 100%;
    float: left;
    min-width: 45px;
    height: 45px;
    max-width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    color: #ffd638;
    overflow: hidden;
}
.menu-auth label{
    width: 100%;
    float: left;
    font-weight: 500;
    font-size: 14px;
    padding-right: 15px;
    color: #fff;
}




.profile-card-wpr{
  width:100%;
  float:left;
  border:solid 1px #e9e9e9;
  border-radius:6px;
}

.profile-card-wpr .profle-head-wpr{
  width:100%;
  float:
  left;
  padding: 35px 15px;
}.profile-card-wpr .profile-img-wpr{
  width:100%;
  float:
  left;
  display:
  flex;
  justify-content:
  center;
  align-items:
  center;
  margin-bottom: 15px;
}
.profile-card-wpr .profile-img-blk{
  width: 80px;
  height: 80px;
  float:
  left;
  position:
  relative;
  border-radius:50%;
}
.profile-card-wpr .profile-img-blk img{
  border-radius:50%;
  overflow: hidden;

}

.profile-card-wpr .profile-img-blk .img-blk{
        width: 75px;
    height: 75px;
    float: left;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffd638;
    font-size: 34px;
}

.profile-card-wpr .edit-btn{
  width:30px;
  height:30px;
  float:
  left;
  position:
  absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -5px;
  right: -5px;
  background-color: #fff;
  border-radius: 50%;
  color: #7a7a7a;
  box-shadow: 0 0 7px 2px rgb(0 0 0 / 20%);
  cursor: pointer;
}.profile-card-wpr .profile-name{
  width:100%;
  float:left;
  text-align:center;
  font-size:16px;
  font-weight:600;
}


.profle-body-wpr{
  width:100%;
  float:left;
  padding-bottom:15px;
}
.profle-body-wpr ul{
  width:100%;
  float:left;
  padding: 0 15px;
}

.profle-body-wpr ul li{
     width:100%;
  float:left; 
  margin-bottom: 5px;
}

.profle-body-wpr ul li a{
      width: 100%;
    float: left;
    cursor: pointer;
    /* height: 30px; */
    padding: 2px;
    border-radius: 30px;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.profle-body-wpr ul li.active a{
     color: #000000;
     background-color: #ffd638;
}

.profle-body-wpr ul li a .icon{
      width: 40px;
    height: 40px;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
    border-radius: 50%;
    margin-right: 10px;
}
.profle-body-wpr ul li.active  a .icon{
  background-color: #ffffff;
}


.profile-form-wpr{
  width:100%;
  float:left;
}

.profile-form-wpr .head-title{
  width:100%;
  float:left;
}

.profile-form-wpr .head-wpr{
  width:100%;
  float:left;
  display: flex;
  justify-content: space-between;
      position: relative;
      flex-wrap: wrap;
        border-bottom:solid 1px #e9e9e9;
          margin-bottom:10px;
          padding:10px 0;
}
.profile-form-wpr .head-wpr .edit_btn{
      width: auto;
    float: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    height: max-content;
    padding: 5px 15px;
    border: solid 1px #ffd638;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    /* position: absolute; */
    white-space: nowrap;
    right: 0;
    top: 5px;
    margin-left: 15px;
}

.profile-form-wpr .head-title{
  width:100%;
  float:left;
  


  font-size:18px;
  font-weight:600;

}
.head_top_btn_wpr{
  width: auto;
  float: left;
  display: flex;
  justify-content: flex-end;
}


.profile-form-wpr h4{
  font-size:16px;
  margin-bottom:15px;

}
.profile-form-wpr .desc{
  font-size:14px;
  color:#7a7a7a;
  width:100%;
  float:left;
  margin-bottom:15px;
}


    .profile-form-wpr .col-md-3 {
        background: #ffffff;
        border: solid 1px;
        padding: 0;
        margin: 5px;
        border-radius: 6px;
        border: solid 1px #ffd638;
        padding: 2px;
    }

    .profile-form-wpr .col-md-4 {
            background: #ffffff;
    border: solid 1px;
    padding: 0;
    margin: 5px;
    border-radius: 8px;
    border: solid 1px #ebebea;
    padding: 4px;
    background: #e9e9e9;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    }
.profile-form-wpr .card{
 padding: 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}


.btn-account{
  width:
  auto;
  float:
  left;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #cbcbcb;
  padding-right: 10px;
  cursor: pointer;
  border-radius: 2px;
}
.btn-account .icon{
  width:35px;
  float:
  left;
  padding: 5px;
}

.btn-deactive{
      width: auto;
    float: left;
    padding: 10px 15px;
    background-color: #d5d5d5;
    border-radius: 6px;
    color: #555;
    font-size: 14px;
    cursor: pointer;
}


.paymant-btn{
  width:100%;
  float:left;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:10px 0;
  cursor:pointer;
  height:50px;
}
.paymant-btn .icon{
  width:50px;
  float:left;
}
.paymant-btn .title{
  width:calc(100% - 100px);
  float:left;
  padding:0px 10px;
}


.payment-edit-card{
     width: 100%;
    float: left;
    position: relative;
    border: solid 1px #ededed;
    padding: 15px;
    border-radius: 6px;
}
.payment-edit-card .edit-btn{
  position:absolute;
  right:10px;
  top:10px;
  z-index:9;
  cursor:pointer;
}
.payment-edit-card .icon-img{
  width:50px;
  float:left;
}
.payment-edit-card h5{
  font-size:16px;
  font-weight:600;
  margin-bottom:5px;
}
.pay-card-no-wpr{
  width:100%;
  font-size:14px;
  float:left;
  padding:5px 0px;
  color:#7a7a7a;
}
.pay-card-no-wpr b{
  color:#000;
}




.switch-checkbox[type="checkbox"] {
    position: relative;
    width: 55px;
    height: 25px;
    -webkit-appearance: none;
    background: #c6c6c6;
    outline: none;
    border-radius: 20px;
    box-shadow: inset 0 0 5px rgba(255, 0, 0, 0.2);
    transition: 0.7s;
}

.switch-checkbox:checked[type="checkbox"] {
  background: #03a9f4;
}

.switch-checkbox[type="checkbox"]:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  top: 2px;
  left: 3px;
  background: #ffffff;
  transform: scale(1.1);
  transition: .5s;
  cursor: pointer;
}

.switch-checkbox:checked[type="checkbox"]:before {
  left: 32px;
}

.booking-wpr hr{
      width: 100%;
    float: left;
}

.booking-wpr{
    width: 100%;
    float: left;
    color: #505050;
    padding: 15px 15px;
    border: solid 1px #b7b7b7;
    border-radius: 6px;
    min-height: calc(100% - 25px);
}
.booking-wpr .amount{
  color: #1877f2;
  font-size: 35px;
  font-weight: 600;
  width: 100%;
  float: left;
  margin-bottom: 10px;
}
.booking-wpr .label{
  font-size: 14px;
  width: 100%;
  float: left;
}

.book-group-wpr{
    width: 100%;
    float: left;
    margin-bottom: 15px;
    /* border: solid 1px #ededed; */
    padding: 5px;
    border-radius: 5px;
}
.book-group-wpr label{
      width: 100%;
    float: left;
    color: #2e2e2e;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}
.book-group-wpr .txt-input-wpr{
  width: 100%;
  float: left;
  position: relative;
}
.book-group-wpr .txt-input{
     width: 100%;
    float: left;
    padding: 10px;
    border-radius: 6px;
    border: solid 1px #b9b9b9;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}
.book-group-wpr .txt-input-wpr  i{
     position: absolute;
    right: 10px;
    top: calc(50% - 10px);
    font-size: 20px;
    color: #b9b9b9;

}
.booking-wpr h4{
  font-size: 14px;
  width: 100%;
  float: left;
}

.booking-wpr p{
  width: 100%;
  float: left;
  font-size: 12px;
  margin-bottom: 15px;
}



.btn-form-defult {
       width: 100%;
    float: left;
    display: flex;
    cursor: pointer;
    border-radius: 6px;
    border: solid 1px #e7e7e7;
    margin-bottom: 15px;
    background-color: #1877f2;
    border-color: #1877f2;
    color: #fff;
    padding: 10px;
    align-items: center;
    justify-content: center;
}


.radio_blk{
     width: auto;
    float: left;
    margin-right: 5px;
    display: flex
;
    align-items: center;
    justify-content: center;
    border: solid 1px #e9e9e9;
    padding:  5px;
    border-radius: 5px;
    margin-bottom: 5px;
}
.radio_blk input{
    padding: 0 5px;
}
.radio_blk label{
    padding: 0 5px;
    margin: 0;
}
/* =============== */

.txt-input-checkbox-wpr{
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.txt-input-checkbox-wpr .form-check{
     width: auto;
    float: left;
    padding: 15px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: solid 1px #b9b9b9;
    margin: 5px;
    padding-left: 35px;
    border-radius: 6px;
    cursor: pointer;
}
.txt-input-checkbox-wpr .form-check .form-check-label{
  font-size: 14px;
  white-space:nowrap;
  margin: 0;
  float: left;
  width: auto;
  padding: 0 5px ;

}

.btn-wpr{
  width: 100%;
  float: left;
}
.d-center{
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-next{
    width: auto;
    float: left;
    padding: 15px;
    background-color: #ffd638;
    color: #000;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    min-width: 200px;
    text-align: center;
    border-radius: 6px;
    border: none;
    display: flex;
    justify-content: center;
}
.btn_loading{
  display: none;
}
.btn-next.show_loading{
      opacity: 0.7;
}
.btn-next.show_loading .btn_loading{
  display: block;
}

label.error{
  font-size: 12px;
  color: #f00;
}

.txt-input-checkbox-wpr label.error{
    position: absolute;
    bottom: -30px;
    left: 5px;
}

.user_category{
     width: auto;
    float: left;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    margin: 2px;
    background-color: #f3f3f3;
    color: #000000;
    border-radius: 8px;
}
.select2-container--default .select2-selection--multiple{
  min-height: 45px;
}

.card-plan{
  background: linear-gradient(48deg, rgb(255 238 174) 0%, rgb(255 250 240) 100%);
}
.card-plan h2{
  font-size: 24px;
  color: #000;
}
.card-plan h2 .text-muted{
  font-size: 16px;
  
}
.card-plan  p{
  width: 100%;
  float: left;
  font-size: 14px;
  margin-bottom: 15px;
}
.card-plan  .bg-success{
  background: #020024;
    background: linear-gradient(90deg, rgb(7 35 60) 0%, rgb(42 114 90) 35%, rgb(92 183 71) 100%);
}


.img_col_crop{
  width: 100%;
  float: left;
  padding: 0 15px;
  padding-bottom: 15px;
}
.upload_image_wpr{
  width: 100%;
  float: left;
}
.head_title{
    width: 100%;
    float: left;
    font-size: 14px;
    font-weight: 500;
  
}
.img_col_crop small{
      font-size: 12px;
    width: 100%;
    float: left;
    margin-bottom: 15px;
}

 #img_corp_wpr{
      display: none;
    }#img_corp_wpr.show{
      display: block;
    }
    #img_corp_wpr_edit{
      display: none;
    }#img_corp_wpr_edit.show{
      display: block;
    }
    .upload_image_wpr{
      height: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      /*min-height: 270px;*/
    }

    .panel-body{
     background: #ecf2f4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    border: solid 2px #92a7aa;
    border-style: dashed;
    border-radius: 5px;
    width: 100%;
    }

    .img_col_crop{
    min-height: 350px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    border: solid 2px #e5e5e5;
    border-style: dotted;
    /* background-color: #f2f2f2; */
    border-radius: 4px;
    overflow: hidden;
    }

     .cropper-container,
  .cropper-bg {
    max-height: 360px !important;
  }
   
#upload_image{
  margin-bottom: 15px;
}

/* gallery */
    .gallery_wpr{
      width: 100%;
      float: left;
    }
    .gallery_wpr h5{
          width: 100%;
      float: left;
    }


    .media_status{
      width: 100%;
      float: left;
    background: #ffffff;
    /* border: solid 1px #e1e1e1; */
    padding: 0px;
    text-align: left;
    border-radius: 35px;
    margin-top: 5px;
    /* max-width: 200px; */
    position: relative;
    padding: 5px 15px;
    letter-spacing: 1px;
    }
    .s_pending {
  color: #ff9800; /* orange */
  font-weight: 500;
  font-size: 14px;
}
.media_status .delete_btn{
      width: 30px;
      max-width: 30px;
      min-width: 30px !important;
    height: 30px;
    float: left;
    position: absolute;
    right: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffd1cd;
    border-radius: 50%;
    color: #f00;
    top: 3px;
    cursor: pointer;
}

.s_approved {
  color: #4caf50; /* green */
  font-weight: 500;
  font-size: 14px;
}

.s_rejected {
  color: #f44336; /* red */
   font-weight: 500;
  font-size: 14px;
}

.s_unknown {
  color: #9e9e9e; /* gray */
}

#user_galery_audio .list-group-item span{
  min-width: 200px;
}
#user_galery_audio .list-group-item audio{
  min-width: 200px;
}

#user_galery_audio .list-group-item {
  flex-wrap: wrap;
}



.profile_accordion{
     width: 100%;
    float: left;
    border: solid 1px #e7e7e7;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.head_category{
       font-weight: 600;
    padding: 10px 15px;
    width: 100%;
    float: left;
    background: #e9e9e9;
    display: flex;
    justify-content: space-between;
    color: #000000;
    cursor: pointer;
}

.p-15{
  padding: 15px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #000000;
    border: 2px solid #000000;
    color: #fff;
    font-size: 14px;
}

.error_required{
  color: #f00;
}
a{
  color: #000;
}
.nav-link{
  color: #303030 !important;
      font-size: 14px;
      font-weight: 500;
}
.nav-link.active{
         color: #000000 !important;
}
.warning_note{
     width: 100%;
    float: left;
    padding: 10px 15px;
    color: #ffffff;
    font-size: 14px;
    background-color: #f5950c;
    margin-bottom: 10px;
    font-weight: 400;
    border-radius: 6px;
}

.ft_app_download_wpr{
  width: 100%;
  float: left;
  
}
.ft_app_download_wpr .app_blk{ 
  width: 100%;
  float: left;
  margin: 5px;
}

.mob-menu-popup{
  overflow: auto;
}
 .mobmenu_auth_wpr{
     width: 100%;
    float: left;
    padding: 5px;
    background-color: #404040;
    border-radius: 8px;
    margin-bottom: 15px;
 }
 .mobmenu_label{
        width: 100%;
    float: left;
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffd638;
    padding: 5px;
    margin-bottom: 5px;
    font-weight: 500;
 }
 .mobmenu-blk{
  width: 100%;
  float: left;
 }
 .mobmenu-ul{
   width: 100%;
   float: left;
  }
  .mobmenu-ul .li-selection{
        background-color: #48474775;
    margin-bottom: 1px;
    border-radius: 5px;
  }
  
  .mob_pro_menu{
    display: none;
  }

  .profle-mob-close{
    display: none;
  }



  .not_edit_wpr .txt-input{
        pointer-events: none;
    border: none;
    background-color: #f3f3f3;
  }



.ui_tab_wpr{
  display: flex;
  flex-wrap: nowrap;
}


.change_btn{
          width: auto;
    float: right;
    background: #ffffff;
    color: #000000;
    padding: 2px 10px;
    font-weight: 400;
    font-size: 13px;
    border-radius: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 0 2px 1px #ffd638;
}

input.error{
  border: solid 1px #f00;
}

.datatable_wpr{
  font-size: 12px;
}

.datatable_wpr table th{
  font-size: 14px;
}
.datatable_wpr table td{
  font-size: 14px;

}





.page_head{
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
  margin: 15px 0;
  align-items: center;
}
.page_head h2{
  width: 100%;
  float: left;
  font-size: 20px;
}
.action_btn{
  width: auto;
  float: left;
  white-space: nowrap;
  padding: 8px 15px;
  background-color: #040404;
  color: #fff;
  font-size: 14px;
  border-radius: 35px;
  font-weight: 500;
  cursor: pointer;
  border: solid 2px #ffffff;
  box-shadow: 0 0 1px 2px #ffd638;
}

.action_btn_back{
  padding: 8px 15px;
  background-color: #e9e9e9;
  color: #000000;
  font-size: 14px;
    border-radius: 35px;
}


.project_card{
  width: 100%;
  float: left;
  padding: 10px;
  background-color: #ffffff;
  box-shadow: 0 0 2px 2px #0000001f;
  border-radius: 8px;
  margin-bottom: 8px;
}

.project_card.closed{
    filter: grayscale(1);
}


.project_card .project_head{
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project_card .project_left{
  width: 100%;
  float: left;
}
.project_card h4{
  width: 100%;
  float: left;
  font-size: 18px;
}
.project_card .info_row{
  width: 100%;
  float: left;
  font-size: 14px;
}
.project_card .project_right{
  width: auto;
  float: left;
  display: flex;
}
.project_card .btn_action{
  width: 35px;
  float: left;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  background-color: #ffd638;
  margin-left: 5px;
  border-radius: 50%;
  cursor: pointer;
}


.project_card .btn_wpr{
  width: 100%;
  float: left;
  display: flex;
  justify-content:flex-end;
  margin-top: 5px;
}

.project_card .btn_action_view{
  width: auto;
  float: left;
  height: 35px;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  background-color: #ffd638;
  margin-left: 5px;
  border-radius: 8px;
  cursor: pointer;
}
.project_card .project_body{
  width: 100%;
  float: left;
  font-size: 13px;
  margin-top: 5px;
  font-style: italic;
}

.pagination {
    display: flex;
    list-style: none;
    padding-left: 0;
}

.pagination .page-item {
    margin: 0px;
}

.pagination .page-link {
    display: block;
    padding: 5px !important;
    width: 35px !important;
    height: 35px !important;
    color: #000 !important;
    background-color: #d1d1d1 !important;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
}

/* Active page styling */
.pagination .page-item.active .page-link {
       background-color: #ffd638 !important;
    color: #000000;
    border-color: #000 !important;
    opacity: 1;
}

.pagination .page-link:hover {
     color: #ffffff !important;
}

/* Disabled page styling */
.pagination .page-item.disabled .page-link {
    color: #aaa;
    cursor: not-allowed;
    background-color: #f9f9f9;
}




.invite_wpr {
     width: 100%;
    float: left;
    margin-top: 15px;
    min-height: 50vh;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
}
.invite_wpr .invite_head_wpr{
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #e3e3e3;
  padding-bottom: 15px;
  margin-bottom: 15px;

}
.invite_wpr h4{
  width: 100%;
  float: left;
  font-size: 16px;
}
.invite_wpr .btn_add{
      width: auto;
    float: left;
    white-space: nowrap;
    font-size: 14px;
    width: auto;
    float: left;
    white-space: nowrap;
    padding: 8px 15px;
    background-color: #ffd638;
    color: #000000;
    font-size: 14px;
    border-radius: 35px;
    font-weight: 500;
    cursor: pointer;
    border: solid 2px #ffffff;
    box-shadow: 0 0 1px 2px #ffd638;
}
.invite_wpr .invite_body_wpr{
  width: 100%;
  float: left;
}



/* ------------------- */
.talent_card{
    width: 100%;
    float: left;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 0 5px 1px #0000002e;
    margin-bottom: 15px;
    border-radius: 8px;
}
.talent_card h3{
   width: 100%;
   float: left;
   font-size: 16px;
   margin-bottom: 5px;
}
.talent_card .col_img{
  width: 100%;
  float: left;
  max-width: 200px;
  padding: 5px;
}
.talent_card .img_blk{
  width: 100%;
  float: left;
  border-radius: 6px;
  overflow: hidden;
}
.talent_card .col_info{
  width: auto;
  float: left;
  padding: 15px;
  min-width: 200px;
  max-width: 800px;
}
.talent_card .h3{
  width: 100%;
  float: left;
}
.talent_card .tal_cate{
  width: 100%;
  float: left;
}
.talent_card .tal_cate span{
  width: auto;
  float: left;
  margin: 2px;
  margin-left: 0;
  font-size: 12px;
  font-weight: 500;
  background-color: #ededed;
  color: #000000;
  padding: 2px 10px;
  border-radius: 15px;
}
.talent_card .row_info{
  width: 100%;
  float: left;
  margin-top: 15px;
}
.talent_card label{
  width: 100%;
  float: left;
  font-size: 13px;
}
.talent_card .info_value{
  width: 100%;
  float: left;
  font-size: 14px;
  font-weight: 500;
}
.talent_card .action_wpr{
  width: 100%;
  float: left;
  margin-top: 15px;
}
.talent_card .action_wpr .btn_favourite{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f44336;
    background-color: #ffe9e8;
    border-radius: 50%;
    margin-left: 15px;
    float: left;
}
.talent_card .action_wpr .btn_favourite_1{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    background-color: #ffd638;
    border-radius: 50%;
    margin-left: 15px;
    float: left;
}
 .btn_video{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #000000;
    border-radius: 50%;
    margin-left: 15px;
    float: left;
    cursor: pointer;
}
.talent_card .btn_view{
  width: auto;
  float: left;
  white-space: nowrap;
  padding: 8px 15px;
  background-color: #040404;
  color: #fff;
  font-size: 14px;
  border-radius: 35px;
  font-weight: 500;
  cursor: pointer;
  border: solid 2px #ffffff;
  box-shadow: 0 0 1px 2px #ffd638;
}



.talent_card_small {
      justify-content: space-between;
    margin: 4px 0;
    box-shadow: none;
    background-color: #fff;
}
.talent_card_small .col_wpr{
  width: auto;
}
.talent_card_small .col_img{
  max-width: 110px;
}
.talent_card_small .action_wpr{
  width: auto;
  padding: 15px;
  margin: 0;
}
.talent_card_small .btn_favourite{
  margin-right: 15px;
}





.btn_search{
  background-color: #ffd638;
  color: #000000;
  font-size: 14px;
  letter-spacing: 1px;
}
.btn_search:hover{
  background-color: #faca08;

}

.filter_wpr{
  width: 100%;
  float: left;
  background-color: #f3f3f3;
  padding: 15px;
  padding-bottom: 0;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* ------------------- */



.profile_details_wpr{
  width: 100%;
  float: left;
}
.profile_details_wpr .profile_card{
  padding: 0;
}
.profile_details_wpr .img-fluid {
       max-width: 125px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 4px 3px #ffd638;
    border: solid 2px #fff;
}

.profile_details_wpr  .card h3 {
  font-size: 16px;
  margin: 10px 0;
}

.profile_details_wpr  .bg-success{
    background-color: #e9e9e9 !important;
    color: #000 !important;
    border-radius: 15px;
    padding: 5px 15px !important;
}
.profile_details_wpr  .list-group{
  margin-top: 15px;
}
.profile_details_wpr  .list-group-item{
    font-size: 14px;
    border: none;
    padding: 5px;
    margin-bottom: 5px;
}
.profile_details_wpr .profile_accordion_body {
  padding: 15px !important;
}
.profile_details_wpr .txt-input-wpr{
  font-weight: 500;
  color: #000;
}
.profile_details_wpr .tab-content .card{
  padding: 0;
}

.aboutme_wpr{
  width: 100%;
  float: left;
  min-height: 100px;
  background-color: #f3f3f3;
    border-radius: 5px;
     padding: 5px 15px;
     font-size: 14px;

}
.scoal_link_wpr{
    width: 100%;
  float: left;


   display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.social_row{
  width: 100%;
  float: left;
  display: flex;
  align-items:center;
  margin-bottom: 15px;
}
.social_row .icon{
     width: 35px;
     min-width: 35px;
    float: left;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffd638;
    border-radius: 50%;
    margin-right: 5px;
}
.social_row .web_link{
    width: 100%;
    float: left;
    height: 35px;
    padding: 5px 15px;
    background-color: #f3f3f3;
    border-radius: 25px;
    width: 100%;
    float: left;
    display: grid
;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    overflow: hidden
}

.web_link_wpr{
width: 100%;
    float: left;
   
}

.user_social_wpr{
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.user_social_wpr.disabled_link{
  pointer-events: none;
  filter: grayscale(0.3);
}
.user_social_wpr .col_social{
  width: 50px;
  float: left;
}

.user_social_wpr .col_social a{
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffd638;
  border-radius: 50%;
}


.user_about_blk {
    max-height: 100px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
        font-style: italic;
    font-size: 13px;
}

.user_about_blk.expanded {
    max-height: none;
}

.show-more-btn {
       display: inline-block;
    margin-top: 10px;
    color: #060500;
    cursor: pointer;
    background-color: #efefef;
    padding: 2px 10px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
  
}


.invite_action_wpr{
  width: 100%;
  float: left;
  margin-bottom: 15px;
  display: flex;
  justify-content: flex-end;
}
.invite_action_wpr .btn_invite{
  width: auto;
  float: left;
  padding: 5px 15px;
  background-color: #ffd638;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin-right: 15px;
  cursor: pointer;
}
.invite_action_wpr .btn_invite_sent{
  width: auto;
  float: left;
  padding: 5px 15px;
  background-color: #e9e9e9;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 35px;
  margin-right: 15px;
  cursor: pointer;
}
.invite_action_wpr .btn_favourite{
  width: 40px;
  float: left;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: solid 1px #d3d3d3;
  border-radius: 50%;
  cursor: pointer;
}
.invite_action_wpr .btn_favourite .fa-solid {
  color: #f44336;
}


.invitation_view{
  width: 100%;
  float: left;
  padding: 15px;
}
.invitation_view .row_invitation{
  width: 50%;
  float: left;
  /* display: flex;
  align-items: baseline; */
  margin-bottom: 10px;
}
.invitation_view .label{
  width: 100%;
  float: left;
  font-size: 12px;
  min-width: 150px;
}
.invitation_view .value{
  width: 100%;
  float: left;
  font-size: 14px;
  font-weight: 500;
}





.partner_card{
  width: 100%;
  float: left;
  border: solid 1px #ededed;
  border-radius: 5px;
  padding: 5px;
}
.partner_card .partner_head{
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.partner_card .col_img{
  width: 125px;
  float: left;
  margin-right: 15px;
  border-radius: 10px;
  overflow: hidden;
}
.partner_card .col_text{
  width: 100%;
  float: left;
}
.partner_card .col_text h3{
    width: 100%;
    float: left;
    font-size: 1rem;
    margin-bottom: 10px;
}
.partner_card .row_info{
  width: 100%;
  float: left;
  font-size: 14px;
  font-weight: 400;
  color: #282828;
  margin: 2px 0;
}
.partner_card .partner_body{
  width: 100%;
  float: left;
  margin-top: 5px;
  font-size: 14px;
}





.btn_pdf_wpr{
  width: 100%;
  float: left;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
}
.btn_pdf_wpr .btn_pdf{
    width: auto;
    float: left;
    padding: 5px 15px;
    font-weight: 500;
    font-size: 14px;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #0000003b;
    cursor: pointer;

}


.page_tab_head_wpr{
  width: 100%;
  float: left;
}
.page_tab_link{
    width: auto;
    float: left;
    margin: 5px;
    background-color: #f1f1f1;
    padding: 5px 15px;
    border-radius: 15px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
}

.page_tab_link.active{
  background-color: #ffd638;
}


.s_head_blk{
  width: 100%;
  float: left;
    display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.s_head_blk h3{
width: 100%;
  float: left;
}
.s_head_blk .btn_wpr{
  width: auto;
  float: left;

}
.s_head_blk .btn_view{
       width: auto;
    float: left;
    white-space: nowrap;
    padding: 8px 15px;
    background-color: #040404;
    color: #fff;
    font-size: 14px;
    border-radius: 35px;
    font-weight: 500;
    cursor: pointer;
    border: solid 2px #ffffff;
    box-shadow: 0 0 1px 2px #ffd638;
}



/* oline video call */

.online_audition_main_wpr{
  width: 100%;
  float: left;
}
.online_audition_main_wpr .online_audition_wpr{
  width: 100%;
  float: left;
  display: flex;
}
.online_audition_main_wpr .col_video{
  width: 100%;
  float: left;
}
.online_audition_main_wpr .col_info{
    padding: 15px;
    float: left;
    max-width: 250px;
    width: 100%;
    border: solid 1px #ffd63852;
    background-color: #fffcf0;
    border-radius: 15px;
}

.online_audition_main_wpr .user_info_wpr{
  width: 100%;
  float: left;
}
.online_audition_main_wpr .user_img_blk{
     width: 100%;
    float: left;
    padding: 0;
    display: flex
;
    justify-content: center;
    align-items: center;
}
.online_audition_main_wpr .img_round{
       width: 100%;
    float: left;
    border-radius: 50%;
    overflow: hidden;
    max-width: 100px;
    margin-bottom: 5px;
    border: solid 5px #fff;
    box-shadow: 0 0 0 2px #fff0b5;
}
.online_audition_main_wpr .profile-user-img{
  width: 100%;
  float: left;
}
.online_audition_main_wpr .user_name{
  width: 100%;
  float: left;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.online_audition_main_wpr .row_invitation{
  width: 100%;
  float: left;
   margin-bottom: 10px;
}
.online_audition_main_wpr .label{
  width: 100%;
  float: left;
  font-size: 12px;
}
.online_audition_main_wpr .value{
  width: 100%;
  float: left;
  font-size: 14px;
  font-weight: 500;
}


.video_preview_wpr{
  width: 100%;
  float: left;
  padding: 15px;
  position: relative;
}
.video_controls{
     width: 100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin: 10px 0; */
}
.btn_controls{
  width: 40px;
  height: 40px;
  float: left;
  border: none;
  margin: 5px;
    border-radius: 12px;
    background-color: #ffd638;
  }
.btn_controls_call{
  width: auto;
  height: 40px;
  float: left;
  border: none;
  margin: 5px;
    border-radius: 12px;
    background-color: #ffd638;
    padding: 5px 15px;
  }
  .btn_controls.disable_ctrl{
    background-color: #db190b;
    color: #fff;
  }


/* oline video call--- */






@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
}


@media (max-width: 768px) {
  .ft_app_download_wpr{
    width: 100%;
      float: left;
    display: flex;
  }
  .p-5{
    padding: 15px !important;
  }

  .dashboard_count_wpr .col_count_blk{
    width: 50%;
  }

  .profle-mob-close{
            display: block;
        width: auto;
        float: left;
        position: absolute;
        right: 15px;
        top: 15px;
        font-size: 22px;
        color: #000000;
        cursor: pointer;
  }
  .profile-card-wpr{
    display: none;
     animation: animate_dropdown linear .2s;
    animation-iteration-count: 1;
  }
  .profile-card-wpr.show_mob{
    height: 100vh;
    position: fixed;
    z-index: 989;
    background-color: #ffffff;
    top: 0;
    left: 0;
    overflow: auto;
    border-radius: 0;
    display: block;

  }

   .mob_pro_menu{
          display: block;
        z-index: 988;
        position: fixed;
        bottom: 15px;
        right: 15px;
        width: 100%;
        float: left;
  }
  .mob_pro_menu_inwpr{
    width: 100%;
    float: left;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
    .mob_pro_menu_inwpr .menu_profile_action{
                    width: 60px;
        float: left;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        border: solid 2px #ffd638;
        box-shadow: 0 0 7px 0px #00000080;
        cursor: pointer;
        background-color: #ffffff;
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 500;
    }

    .profile-form-wpr .col-md-3{
      width: 50%;
    }
    .profile-form-wpr .col-md-4{
      width: calc(50% - 10px);
    }



    .scoal_link_wpr{
          grid-template-columns: repeat(1, 1fr);
    gap: 4px;
    }


    .online_audition_main_wpr .online_audition_wpr{
      flex-wrap: wrap;
    }
    .online_audition_main_wpr .col_info{
      max-width: 100%;
      margin-top: 25px;
    }


    .video_preview_wpr{
          padding: 0;
    /*left: -20px;*/
    }

}

@media (max-width: 460px) {
   .dashboard_count_wpr .col_count_blk{
    width: 100%;
  }
  .head_top_btn_wpr{
  width: 100%;
}
}

