 /* -------------------------------------------------page-header---------------------------------- */
 body {
   background-color: #2e2e30;
   ;
 }

 .header-page img {
   height: 40px;
   width: auto;
   display: block;
   object-fit: contain;
 }

 .nav-links {
   color: #fff;
   font-size: 20px;
   padding: 0 30px;
   text-decoration: none;
   position: relative;
   transition: color 0.3s ease;
   font-family: 'Lato';
 }

 .nav-links.active {
   color: #A5F400;
   /* active text color */
   font-weight: 500;
   /* highlight active */

 }

 .icon-notification {
   position: relative;
   font-size: 21px;
   color: black;
   cursor: pointer;
   background: #A5F400;
   border-radius: 50%;
   padding: 0px 6px;
 }

 .notification-card {
   position: absolute;
   top: 56px;
   right: -79px;
   background-color: #494949;
   color: #fff;
   border-radius: 24px;
   padding: 15px;
   max-width: 350px;
   width: 380px;
   display: none;
   z-index: 1000;
   border: 1px solid #fff;
   padding: 24px 18px;
   font-size: 16px;
 }

 .notification-item {

   padding: 2px 0;

 }

 .notification-item:last-child {
   border-bottom: none;
 }

 .notification-text {
   flex: 1;
   margin-left: 10px;
 }

 .notification-date {
   font-size: 0.8rem;
   color: #bbb;
   white-space: nowrap;
   /* margin-left: 10px; */
   margin-bottom: 10px;
   padding: 0 25px;
 }

 .img-fluid {
   max-width: 100%;
   width: 37px;
   height: 37px;
 }

 .header-top {
   max-width: 100%;
   width: 95%;
 }

 /* -----------------------------------------slide-barfliter------------------------------- */
 .range_container {
   --thumb-size: 18px;
   --track-height: 6px;
   --active-color: #A5F400;
   --inactive-color: #666;
   width: 100%;
   max-width: 500px;
   display: flex;
   flex-direction: column;
   margin-top: 37px;
 }

 .sliders_control {
   position: relative;
   height: 50px;
 }

 .sliders_controls {
   position: relative;
   height: 47px;
   padding: 19px 1px 0 0px;
 }
div#fromSliderTooltip {
    margin-left: 14px;
}
div#toSliderTooltip {
    margin: 0px 0px 0px -13px;
}
div#heightFromTooltip {
    margin-left: 18px;
}
div#heightToTooltip {
    margin: 0 0 0 -16px;
}
 /* tooltips */
 .slider-tooltip {
   position: absolute;
   top: -22px;
   left: 0;
   background-color: var(--active-color);
   color: #2e2e30;
   font-size: 0.8rem;
   font-weight: 600;
   border-radius: 999px;
   padding: 0.2rem 0.6rem;
   white-space: nowrap;
   translate: -58% 0;
 }

 /* range inputs */
 input[type="range"] {
   -webkit-appearance: none;
   appearance: none;
   position: absolute;
   width: 100%;
   height: var(--track-height);
   background: transparent;
   pointer-events: none;
 }

 input[type="range"]::-webkit-slider-thumb {
   -webkit-appearance: none;
   width: var(--thumb-size);
   height: var(--thumb-size);
   background-color: var(--active-color);
   border-radius: 50%;
   cursor: pointer;
   pointer-events: all;
   border: none;
   position: relative;
   z-index: 3;
 }

 input[type="range"]::-moz-range-thumb {
   width: var(--thumb-size);
   height: var(--thumb-size);
   background-color: var(--active-color);
   border-radius: 50%;
   cursor: pointer;
   pointer-events: all;
   border: none;
   position: relative;
   z-index: 3;
 }

 #fromSlider {
   height: 48px;
   z-index: 0;
 }

 input#toSlider {
   height: 49px;

 }

 /* grey + green track behind sliders */
 .track {
   position: absolute;
   top: 50%;
   left: 0;
   width: 100%;
   height: var(--track-height);
   background: var(--inactive-color);
   border-radius: 5px;
   transform: translateY(-50%);
   z-index: 0;
 }

 .range {
   position: absolute;
   top: 50%;
   height: var(--track-height);
   background: var(--active-color);
   transform: translateY(-50%);
   z-index: 1;
 }

 /* grey dots */
 .dots {
   position: absolute;
   top: 50%;
   left: 0;
   width: 100%;
   transform: translateY(-50%);
   display: flex;
   justify-content: space-between;
   z-index: 0;
 }

 .dots span {
   width: 8px;
   height: 8px;
   background: #777;
   border-radius: 50%;
 }

 /* labels */
 .scale {
   display: flex;
   justify-content: space-between;
   margin-top: -0.5rem;
   font-size: 0.8rem;
   color: #ccc;
 }

 /* -----------------------------------------------------list-view------------------------------------- */
 .custom-table {
   /* background-color: #2c2c2c; */
   color: #fff;
   overflow: hidden;
   border-color: transparent !important;

 }

 /* For header row inside <thead> */
 .custom-table thead tr.list-header th {
   background-color: #727272 !important;
   color: #E5E5E5 !important;
   font-family: Lato, sans-serif;
   font-weight: 400;
   font-size: 14px;
 }

 /* For any body row marked as list-header */
 .custom-table tbody tr.list-header td {
   background-color: #727272 !important;
   color: #E5E5E5 !important;
   font-family: Lato, sans-serif;
   font-weight: 400;
   font-size: 14px;
 }

 .custom-table th,
 .custom-table td {
   vertical-align: middle;
   text-align: center;
   border-right: 1px solid #555;
   background: transparent;
   font-size: 14px;
   color: white;
   white-space: nowrap;
   /* text wrap stop */
   text-overflow: ellipsis;
   /* ... show */
   overflow: hidden;
   /* hide overflow */
   max-width: 200px;
 }

 .custom-table th:last-child,
 .custom-table td:last-child {
   border-right: none;
 }

 .custom-table td .d-flex {
   min-width: 150px;
   overflow: hidden;
   text-overflow: ellipsis;
 }

 .player-img {
   width: 32px;
   height: 32px;
   border-radius: 50%;
   object-fit: cover;
   margin-right: 8px;
   flex-shrink: 0;
 }

 .star-icon {
   color: #ccff00;
   font-size: 1.3rem;
 }

 .btn-contact {
   background-color: transparent;
   color: #fff;
   border: 1px solid #fff;

   border-radius: 20px;
   font-size: 0.85rem;
 }

 .btn-contact:hover {
   background-color: #444;
 }

 .table-rounded thead tr:first-child th:first-child {
   border-top-left-radius: 12px;
 }

 .table-rounded thead tr:first-child th:last-child {
   border-top-right-radius: 12px;
 }

 .list-header th {
   background-color: #727272 !important;
   color: #E5E5E5;
   font-family: Lato;
   font-weight: 400;
   font-size: 14px;
 }

 tr.list-header {
   background-color: #727272 !important;
 }

 .table-responsive {
   overflow-x: auto;

   white-space: nowrap;
 }

 /* -------------------------------------------login.css----------------------------------------------------- */
 /* body {
      background-color: #2E2E30;
    } */
.login-container {
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
    width: 91%;
    margin: 0 auto;
    min-height: 100vh;
}

 .login-left {
   flex: 1 1 50%;
   background-size: cover;
   background-position: center;
 }

 .login-left img {
   width: 100%;


 }

 p.para-login {
   color: #E5E5E5;
   font-size: 18px;
   font-family: Lato;
 }

 .login-right {
   flex: 1 1 50%;
   padding: 0px 0px 0 42px;
 }

 .login-right h2 {
   font-weight: 700;
   margin-bottom: 10px;
   font-size: 42px;
   font-family: Lato;
   color: #FFFFFF;
 }

 .form-control,
 .login-control {
   background-color: transparent;
   border: 1px solid #FFFFFF;
   color: #fff;
   border-radius: 16px;
   padding: 15px 11px;
 }

 .form-control::placeholder {
   color: #E5E5E5;
 }

 .form-control:focus {
   border-color: #a0ff00;
   box-shadow: none;
   background-color: #3a3a3a;
   color: #fff;
 }

 .btn-signin {
   background-color: #a0ff00;
   border: none;
   color: #2E2E30;
   font-weight: 600;
   border-radius: 17px;
   padding: 15px 0px;
   font-size: 20px;
 }

 .text-link {
   color: #A5F400;

 }

 .text-link:hover {
   text-decoration: underline;
 }

 .app-buttons img {
   width: 140px;
   margin-right: 10px;
 }

 .login-platform {
   background-color: #727272;
   border-radius: 24px;
   padding: 24px 35px;
 }

 .plans-head {
   font-family: Lato;
   font-weight: 700;
   font-size: 28px;
   color: #E5E5E5;
   text-align: left;
 }

 p.plans-para {
   font-size: 18px;
   font-family: Lato;
   color: #E5E5E5;
   text-align: left;
 }

 .sign-buttons.d-flex.gap-4 img {
   width: 100%;
 }

 /* -----------------------------------------------------------Sign-up---------------------------------------------------- */
 .sign-head {
   font-size: 42px;
   font-family: lato;
   font-weight: 700;
   color: white;
   text-align: left;
 }

 .para-sign {
   color: #E5E5E5;
   font-size: 18px;
   font-weight: 400;
   text-align: left;
 }

 .signup-container {
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 30px;
 }

.signup-box {
    background: #2E2E30;
    border-radius: 12px;
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    min-height: 100vh;
}

 .signup-box img {
   width: 100%;

 }

 .sign-buttons.d-flex.gap-4 img {
   width: 100%;
 }

 /* .form-control {
   background: #2E2E30;
   border: 1px solid #727272;
   color: #fff;
   border-radius: 16px;
   padding: 8px 16px;
 }

 .form-control:focus {
   background: #4a4a4a;
   color: #fff;
   box-shadow: none;
   border: 1px solid #999;
 } */

 .btn-signup {
   background: #A5F400;
   color: #2E2E30;
   font-weight: 500;
   width: 100%;
   font-size: 20px;
   padding: 9px 2px;
   border-radius: 40px;
 }

 .account-sign {
   color: #E5E5E5;
   text-align: center;
   font-size: 18px;
 }

 .btn-signup:hover {
   background: #b2f000;
   color: #2e2e30;
 }

 .form-text a {
   color: #c6ff1a;
   text-decoration: none;
 }

 .form-text a:hover {
   text-decoration: underline;
 }

 .terms-link {
   color: #A5F400;
 }

 .form-section {
   padding: 0px 0px 0 40px;
 }

 .sign-form::placeholder {
   color: #727272;
   /* your custom color */
   opacity: 1;
   /* makes sure the color is solid */
 }



 .top_list_downbtn {
    background: #3a3a3a;
    border: 2px solid #b6ff00;
    border-radius: 10px;
    overflow: hidden;
    min-width: 109px;
    padding: 6px;
}

.top_list_downbtn li {
    list-style: none;
}

.top_list_downbtn .dropdown-item {
    padding: 8px 12px;
    font-size: 14px;
    color: #fff;
    border-radius: 6px;
}

.top_list_downbtn li.active .dropdown-item {
    background: #1f1f1f;
}



.top_list_downbtn img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.top_list_downbtn li.active img {
    filter: brightness(0) saturate(100%) invert(82%) sepia(97%) saturate(544%) hue-rotate(31deg);
}


.hide_background {
    background: transparent;
    border: none;
}
 /* --------------------------------------------------user-login------------------------------------------------------------- */

 * {
   box-sizing: border-box
 }

 html,
 body {
   height: 100%
 }

 .frame {
   width: 100%;
   max-width: var(--max);
   text-align: center;
   padding: 0px 22px;
 }

 h1#almost-head {
   margin: 6px 0 8px;
   font-size: 42px;
   font-weight: 700;
   letter-spacing: 0.4px;
   font-family: lato;
 }

 .sub {
   text-transform: uppercase;
   font-weight: 400;
   font-size: 18px;
   color: #A5F400;
   margin-bottom: 28px;
   letter-spacing: 1px;
   padding: 0 23rem;
 }

 .card-language {
   background: var(--card);
   padding: 22px 18px 34px;
   border-radius: 12px;
   display: flex;
   flex-direction: column;
   gap: 14px;
   align-items: center;
   border: none;
 }

 .btn-login {
   display: inline-block;
   width: 100%;
   max-width: 384px;
   padding: 12px 18px;
   border-radius: 999px;
   background: #A5F400;
   border: 0;
   color: #0b0b0b;
   font-weight: 500;
   font-size: 16px;
   cursor: pointer;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
   text-decoration: none;
 }

 .small {
   color: #E5E5E5;
   font-size: 18px;
   margin-top: 6px;
 }

 .small a {
   color: #A5F400;
   /* text-decoration: none; */
   font-weight: 600
 }

 /* -------------------------------------------------------user-language------------------------------------------------- */


 .card-done {
   background: transparent;
   padding: 0px 12px 40px;
   display: flex;
   flex-direction: column;
   align-items: center;

 }

 .logo {
   font-weight: 700;
   color: transparent;
   -webkit-text-stroke: 2px rgba(255, 255, 255, 0.06);
   margin-bottom: 8px;
   background: linear-gradient(90deg, #9afc42, #60d4ff 60%);
   -webkit-background-clip: text;
   background-clip: text;
   font-size: 36px;
 }

 h1#almost-head {
   margin: 6px 0 8px;
   font-size: 42px;
   font-weight: 700;
   letter-spacing: 0.4px;
   font-family: lato;
   color: white;
 }

 h1#title {
   color: white;
 }

 .list {
   width: 100%;
   display: flex;
   flex-direction: column;
   gap: var(--gap);
   align-items: center;
 }

 .lang {
   width: 100%;
   max-width: 420px;
   background-color: #727272;
   border-radius: 24px;
   padding: 12px 16px;
   display: flex;
   gap: 12px;
   align-items: center;
   justify-content: flex-start;
   cursor: pointer;
   transition: box-shadow .18s, transform .08s, border-color .12s;
   border: 2px solid transparent;
   margin-bottom: 19px;
 }

 .lang:hover {
   transform: translateY(-2px)
 }

 .lang:active {
   transform: translateY(0)
 }

 .lang .flag {
   width: 30px;
   height: 30px;
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 16px;
   background: rgba(0, 0, 0, 0.12);
 }

 .lang .text {
   color: #eaeaea;
   font-weight: 500;
   font-size: 20px;
   font-family: lato;
 }

 .lang.selected {
   background-color: #727272;
   margin-bottom: 19px;
   border: 1px solid #A5F400;
 }

 .container {
   width: 100%;
   max-width: 100%;
   background: transparent;
   text-align: center;
 }

 .continue {
   max-width: 500px;
   width: 100%;
   padding: 14px 11rem;
   border-radius: 999px;
   background: #A5F400;
   border: 0;
   color: #111;
   font-weight: 500;
   cursor: pointer;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
   font-family: lato;
   font-size: 20px;
 }

 /* -------------------------------------------------------user-kyc-option-------------------------------------------- */
 .verify-container {
   min-height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
   margin-top: 3%;
 }

 .page-front {
   color: #E5E5E5;
 }

 .verify-box {
   border-radius: 12px;
   text-align: center;
   max-width: 660px;
   width: 100%;
   margin: auto;
 }

 .verify-logo {
   font-size: 32px;
   font-weight: bold;
   color: #77e646;
 }

 .verify-btn {
    border: 2px solid transparent; /* FIX */
    padding: 28px 0px 42px 0;
    border-radius: 24px;
    width: 100%;
    margin-bottom: 15px;
    color: #fff;
    transition: all 0.3s;
    background-color: #494949;
    box-sizing: border-box; /* extra safety */
}

.verify-btn.active {
    box-shadow: 0 0 0 2px #A5F400;
}

 .login-btn {
   background: #A5F400;
   border: none;
   padding: 12px;
   width: 80%;
   border-radius: 25px;
   font-weight: 500;
   margin-top: 20px;
   font-size: 20px;
   max-width: 100%;
 }

 .indetify-head {
   font-size: 42px;
   color: white;
 }

 p.para-indetify {
   font-size: 18px;
   color: #E5E5E5;
 }

 .page-front {
   color: #E5E5E5;
   font-size: 18px;
   font-family: 'Lato';
   font-weight: 400;
   margin-top: 10px;
   text-align: left;
 }

 .name-id {
   font-size: 28px;
   line-height: 1.3;
   font-weight: 700;
   font-family: 'Lato';

 }

 .passport-id {
   font-size: 29px;
   line-height: 1.3;
   font-weight: 700;
   font-family: 'Lato';
   text-align: left;
 }

 .have-account {
   color: #E5E5E5;
   font-size: 18px;
   font-family: 'Lato';
   font-weight: 400;
   margin-bottom: 14%;
 }

 .have-sign {
   color: #A5F400;
 }
 .down-droplang:hover{

 }
 /* --------------------------------------------------------passport-user---------------------------------------------- */
 .kyc-container {
   min-height: 100vh;
 
 }

 .kyc-box {
   border-radius: 12px;
   padding: 32px 32px;
   border: 1px solid #727272;
 }

 .kyc-box h4 {
   font-weight: 700;
   margin-bottom: 10px;
   font-size: 32px;
   color: #FFFFFF;
   font-family: lato;
   text-align: center;
 }

 .passport-control {
   border: 1px solid #444;
   color: #fff;
   /* typed text should be white */
   border-radius: 16px;
   padding: 12px;
   background: transparent;
   /* for dark theme look */
 }

 /* placeholder styling */
 .passport-control::placeholder {
   color: #727272;
   opacity: 1;
 }

 /* focus effect */
 .passport-control:focus {
   border-color: #77e646;
   box-shadow: none;
 }

 /* ------------------- */

 /* ------------ */

 .upload-box {
   border: 2px dashed #727272;
   border-radius: 24px;
   text-align: center;
   padding: 74px 20px;
   color: white;
   cursor: pointer;
   transition: 0.3s;
 }

 p.passport-para {
   color: white;
   text-align: center;
 }

 /* ---------------- */
 .drag-para {
   color: #727272;
 }

 .btn-passport {
   background: #A5F400;
   border: none;
   border-radius: 17px;
   padding: 11px 39px;
   font-weight: 500;
   color: #2e2e30;
   margin-top: 4rem;
   font-family: 'Lato';
   font-size: 20px;
 }

 .btn-residence {
   border: 1px solid white;
   border-radius: 17px;
   padding: 11px 56px;
   font-weight: 500;
   color: white;
   margin-top: 4rem;
   font-family: 'Lato';
   font-size: 20px;
 }

 /* KYC Steps */
 .steps-box {
   background: #494949;
   border-radius: 24px;
   padding: 24px;
   min-height: 632px;
   position: relative;
 }

 .step-item,
 .step-items {
   display: flex;
   align-items: center;
   margin-bottom: 34px;
   color: #bbb;
   position: relative;
 }

 .option-third {
   width: 35px !important;
   height: 35px !important;
 }

 .step-circle {
   border-radius: 50%;
   background: #555;
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 15px;
   font-size: 20px;
   border: 1px solid white;
   width: 40px;
   height: 40px;
   flex-shrink: 0;
 }

 .step-approve {
   border-radius: 50%;
   color: #fff;
   display: flex;
   align-items: center;
   margin-right: 15px;
   font-size: 20px;
   border: none !important;
   width: 40px;
   height: 40px;
   flex-shrink: 0;
 }

 .step-item.active,
 .step-circle {
   font-weight: bold;
   /* border: 1px solid #a5f400 !important; */
   color: #a5f400;
 }

 .step-item span,
 .step-items span {
   font-size: 20px;
 }

 .step-item.active span,
 .step-items.active span {
   color: #A5F400;
 }

 h5.kyc-head {
   font-size: 28px;
   font-weight: 700;
   font-family: lato;
   text-align: justify;
 }

 /* THIS IS THE RESPONSIVE DASHED LINE */
 .step-item:not(:last-child)::after {
   content: '';
   position: absolute;
   left: 20px;
   top: 2.9rem;
   transform: translateY(0);
   width: 0;
   height: calc(103% + -17px);
   border-left: 2px dashed white;
 }

 .step-items:not(:last-child)::after {
   content: '';
   position: absolute;
   left: 16px;
   top: 2.9rem;
   transform: translateY(0);
   width: 0;
   height: calc(103% + -17px);
   border-left: 2px dashed #A5f400;
 }

 /* --------------------------------------------user-id-residence----------------------------------------------------------- */
 .passport-residence {
   appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   color: #b6b5b5 !important;
   border: 1px solid #444;
   padding: 14px 13px;
 }

 .dropdown-icon {
   position: absolute;
   right: 15px;
   top: 50%;
   transform: translateY(-50%);
   pointer-events: none;
   /* Click passes through */
   font-size: 14px;
   color: #666;
 }

 /* ---------------------------------------------------------user-organization------------------------------------------------- */
 .legal-copy {
   color: #777777;
 }

 .Organization-icon {
   color: #A5F400;
 }

 .kyc-organization {
   border-left: 2px dashed #A5F400;
   height: 19px;
   position: absolute;
   top: 21%;
   left: 41px;
 }

 .organization-kyc {
   border-left: 2px dashed #A5F400;
   height: 19px;
   position: absolute;
   top: 14%;
   left: 38px;
 }

 .upload-box {
   border: 2px dashed #727272;
   border-radius: 24px;
   text-align: center;
   padding: 37px 20px;
   color: white;
   cursor: pointer;
   transition: 0.3s;
   min-height: 326px;
 }

 .user-busines {
   text-align: left;
 }

 span.head-proof {
   font-size: 18px;
 }

 /* --------------------------------------------------verification-process-------------------------------------------------- */

 .verification-box {

   padding: 20px;
 }

 .logo {
   font-size: 2rem;
   font-weight: bold;
   color: #8bc34a;
   margin-top: 22px;
   text-align: center;
 }

 button.coach-button {
   padding: 11px 55px;
   margin-top: 35px;
   border: none;
   border-radius: 24px;
   font-size: 20px;
   background: #A5F400;
   font-family: 'Lato';
   font-weight: 400;
 }

 .verification-place {
   border-radius: 24px;

 }

 .highlight-text {
   color: #8bc34a;
   font-size: 0.9rem;
 }

 .process-verify {
   font-family: Lato;
   font-weight: 700;
   font-size: 42px;
 }

 .para-verify {
   font-size: 18px;
   color: #A5F400;
 }

 /* --------------------------------------------------forgot-password------------------------------------- */
 .auth-box {

   padding: 20px;
   width: 100%;
 }



 /* .form-control {
   background-color: transparent;
   border: 1px solid #666;
   border-radius: 8px;
   color: #fff ;
   padding: 12px;
 } */

 /* .form-control:focus {
   box-shadow: none;
   border-color: #8bc34a;
 } */

 .btn-continue {
   background-color: #a4f30b;
   border: none;
   color: #2E2E30;
   padding: 12px;
   border-radius: 8px;
   font-weight: 500;
   width: 100%;
 }

 .forgot-pass {
   font-size: 42px;
   font-family: 'Lato';
   font-weight: 700;
 }

 input.required-mail {
   width: 100%;
   max-width: 465px;
   margin: 0 auto;
   border-radius: 16px;
   border-color: #FFFFFF;
 }

 .forgot-continue {
   background-color: #a4f30b;
   border: none;
   color: #2E2E30;
   padding: 12px;
   border-radius: 40px;
   font-weight: 500;
   width: 100%;
   max-width: 465px;
   font-size: 20px;
 }

 .para-forgot {
   font-size: 18px;
   color: #E5E5E5;
   font-family: 'Lato';
 }

 .id-forgot {
   width: 100%;
   max-width: 592px;
   margin: 0 auto;
   border-radius: 16px;
   border-color: #FFFFFF;
   margin-bottom: 6%;
 }

 .forgotid-continue {
   width: 100%;
   max-width: 592px;
   margin-bottom: 8%;
 }

 .id-newpass {
   width: 100%;
   max-width: 486px;
   margin: 0 auto;
   border-radius: 16px;
   border-color: #727272;
   margin-bottom: 4%;
 }

 .id-newpass::placeholder {
   color: #727272;
   /* change this to your preferred color */
   opacity: 1;
   /* ensures full visibility */
 }

 /* -------------------------------------------------user-reels------------------------------------------------ */
 .reels-screen {
   display: flex;
   justify-content: center;
   align-items: center;
   height: 100vh;
   color: #2e2e30;
 }
.reel-box{
  position:relative;
  width:100%;
  aspect-ratio:9/16;
  overflow:hidden;
  border-radius:16px;
  background:#000;
}

 .reel-media {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* margin-top: 20px; */
    border-radius: 9px;
    margin-bottom: 2rem;
}
 /* Play button */
 .reel-play {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   cursor: pointer;
   transition: opacity 0.3s;
 }

 .reel-play.playing {
   opacity: 0.3;
   /* slightly transparent while playing */
 }

 .reel-play img {
   width: 70px;
   opacity: 0.8;
 }

 /* Right-side actions */
 .reel-actions {
   position: absolute;
   right: 15px;
   top: 50%;
   transform: translateY(-50%);
   display: flex;
   flex-direction: column;
   gap: 20px;
   text-align: center;
   font-size: 20px;
 }

 .reel-action {
   color: white;
 }

 .reel-action span {
   font-size: 14px;
   display: block;
 }

 /* Bottom section */
.reel-footer {
    position: absolute;
    bottom: 109px;
    left: 15px;
    right: 15px;
    color: white;
}

 .reel-user img.profile-pic {
   width: 40px;
   height: 40px;
   border-radius: 50%;
 }

 .reel-username {
   font-size: 16px;
 }

 .reel-caption {
   margin-top: 8px;
   font-size: 14px;
 }

 /* Views */
 .reel-views {
   position: absolute;
   bottom: 141px;
   right: 22px;
   font-size: 14px;
   color: #ccc;
 }

 .reels-feed {
   overflow-y: auto;
   max-height: 100vh;

   /* Hide scrollbar for WebKit browsers (Chrome, Safari) */
   scrollbar-width: none;
   /* Firefox */
   -ms-overflow-style: none;
   /* IE and Edge */
 }

 .reels-feed::-webkit-scrollbar {
   display: none;
   /* Chrome, Safari, Opera */
 }

 /* -------------description---------- */

 .reel-caption {
   color: #fff;
   font-size: 16px;
   line-height: 1.4;
 }

 .reel-caption .more-info {
   color: #ffffff;
   cursor: pointer;
   font-weight: 700;
   display: inline-block;
   font-family: lato;

 }

 .reel-caption {
   position: relative;
   color: #fff;
   font-size: 15px;
   line-height: 1.5;
   max-width: 85%;
 }

 /* preview text */
 .caption-preview {
   display: inline;
 }

 /* full description box */
 .caption-full {
   display: none;
   max-height: 120px;
   /* height limit */
   overflow-y: auto;
   /* scroll inside */
   padding-right: 5px;
 }

 /* scrollbar */
 .caption-full::-webkit-scrollbar {
   width: 3px;
 }

 .caption-full::-webkit-scrollbar-thumb {
   background: #bbb;
   border-radius: 10px;
 }

 /* more button */
 .more-info {
   font-weight: 700;
   cursor: pointer;
   margin-left: 4px;
 }

 /* --------------------------------search-page-popup */

 /* --- popup background --- */
 .fav-popup {
   display: none;
   /* hidden by default */
   position: fixed;
   inset: 0;
   background-color: rgba(0, 0, 0, 0.6);
   z-index: 9999;
   justify-content: center;
   align-items: center;
 }

 /* --- popup box --- */
 .fav-popup-content {
   background: #111;
   color: #fff;
   padding: 20px 30px;
   border-radius: 10px;
   text-align: center;
   width: 320px;
   box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
 }

 /* --- buttons --- */
 .btn-confirm,
 .btn-cancel {
   border: none;
   padding: 10px 20px;

   border-radius: 8px;
   cursor: pointer;
   font-weight: 600;
 }

 .btn-confirm {
   background-color: #A5F400;
   color: #2e2e30;
 }

 .btn-cancel {
   background-color: #333;
   color: #fff;
 }

 /* --- animation (optional) --- */
 .fav-popup-content {
   transform: scale(0.8);
   opacity: 0;
   transition: all 0.3s ease;
 }

 .fav-popup.show .fav-popup-content {
   transform: scale(1);
   opacity: 1;
 }

 .select2-container .select2-search--inline .select2-search__field {
   height: 22px !important;
   margin-top: 2px !important;
   min-height: 21px;
 }

 .select2-container .select2-selection--multiple {

   min-height: 28px !important;

 }

 .location-search .tags,
 .position-search .tags {
   display: none;
 }

 .location-search.open .tags,
 .position-search.open .tags {
   display: flex;
 }

 .toggle-chev {
   transition: transform .3s;
 }

 .open .toggle-chev {
   transform: rotate(90deg);
 }

 /* Select2 multi select container */
 .select2-container--default .select2-selection--multiple {
   min-height: 40px;
   max-height: 80px;
   /* height limit */
   overflow-y: auto;
   /* scroll inside */
   display: flex;
   flex-wrap: wrap;
   /* tags wrap inside */
 }

 /* tags container */
 .select2-container .select2-selection--multiple .select2-selection__rendered {
   display: flex;
   flex-wrap: wrap;
   gap: 5px;
   max-width: 100%;
 }

 /* each tag */
 .select2-selection__choice {
   max-width: 100%;
   white-space: nowrap;
 }

 /* -----------------------------------------------------message-chat------------------------------------------------------ */
.chat-sidebar {
    background: transparent;
    min-height: 119vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border: 1px solid #fff;
    border-radius: 12px;
}

 /* nav.header-message {
   border-bottom: 1px solid #727272;
 } */

 .chat-sidebar::-webkit-scrollbar {
   display: none;
   /* Chrome, Safari */
 }

 .chat-sidebar .chat-user {
   padding: 12px;
   border-bottom: 1px solid #444;
   cursor: pointer;
 }

 .chat-sidebar .chat-user:hover {
   background: #383838;
 }



 .chat-sidebar::-webkit-scrollbar {
   display: none;
   /* Chrome, Safari */
 }

 .profile-card {
   background: transparent;
   padding: 12px 0px 6px 12px;
  
   color: white;
 }

 .profile-sidebar {
   background: transparent;
   overflow-y: auto;
   padding: 0px 0px;
   scrollbar-width: none;
   -ms-overflow-style: none;
   border: 1px solid #fff;
   border-radius: 12px;
 }

 .profile-height {
   background: #494949;
   border-radius: 17px;
   padding: 20px 18px;
 }

h6.probile-name {
    font-size: 17px;
    font-family: 'Lato';
    font-weight: 700;
    padding: 19px 17px 7px 15px;
    color: #A5F400;
}

 .recent-uploads img {
   width: 100%;
   border-radius: 8px;
 }

 .icon-btn i {
   color: black;
   font-size: 17px;
   background: #a4f30b;
   border-radius: 50%;
   padding: 7px 10px;
 }

 .profile-message {
   background: #494949;
   border-radius: 29px;
   padding: 5px 16px 5px 5px;
 }

 a.nav-link.active {
   color: #a4f30b;

 }

 span.badge-header {
   background: #a4f30b;
   top: -7px;
   left: 0px;
   position: relative;
   color: black;
   border-radius: 17px;
   padding: 2px 5px;
   font-size: 10px;
 }

 small.time-chat,
 i.chat-icon {
   color: #727272;
 }

 .message-section {
   background-color: #2e2e30;
   max-width: 100%;
   /* min-height: 612px; */
   background-size: cover;
   overflow: hidden;
   height: auto;
 }

 /* --------middle-chat------------------ */
.chat-window {
    background: transparent;
   
    padding: 0px 0 0 0;
    min-height: 117vh;
    display: flex;
    flex-direction: column;
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); */
  
  
}
.chat_box_input {
    border-radius: 16px;
}
.message_currernt{
    border: 2px dashed #A5F400;
     border-radius: 12px;
}
 .chat-messages {
   flex: 1;
   overflow-y: auto;
   padding-bottom: 15px;
   scrollbar-width: none;
   -ms-overflow-style: none;

 }

 .chat-sidebar::-webkit-scrollbar {
   display: none;
   /* Chrome, Safari */
 }

 /* .message {
   display: flex;
   align-items: flex-end;
   margin-bottom: 15px;
 } */
#messageInput {
    max-height: 120px;
    padding: 9px;
}
.message .bubble {
    background: #3a3b3c;
    border-radius: 17px;
     padding: 10px 20px 18px 18px;
    max-width: 100%;
    position: relative;
    color: white;
    font-size: 14px;
    line-height: 1.4;
    min-height: 53px;
    width: 100%;
}

 .message .bubble.you {
   margin-left: auto;
   background: #656565;
 }

.timestamp {
    position: absolute;
    bottom: 4px;
    right: 9px;
    font-size: 11px;
    color: #E5E5E5;
    display: flex;
    align-items: center;
    gap: 3px;
}

 .chat-input {

   padding-top: 10px;
 }

 /* .form-control {
   background: #3a3b3c;
   border: none;
   color: #fff;
 }

 .form-control:focus {
   background: #3a3b3c;
   color: #fff;
   box-shadow: none;
 } */

 h6.uploads-video {
    font-size: 19px;
    font-family: 'Lato';
    font-weight: 400;
    color: #A5F400;
}

 button.mic-icon {
   background: #A5F400;
   padding: 9px 14px;
   font-size: 19px;
 }

 .read-icon {
   width: 16px !important;
   /* adjust size */
   height: auto;
   margin-left: 4px;
   /* little spacing */
   vertical-align: middle;
   /* align with text */
 }

 span.clip-paper {
   font-size: 23px;
   border-radius: 17px;
 }

 input.search-person {
   border: 1px solid #727272 !important;
   border-radius: 17px !important;
   background: transparent !important;
 }

 /* Search wrapper must be relative for absolute icon */
 .search-wrapper {
   max-width: 461px;
   /* optional width */
   position: relative;
 }

 /* Position the search icon */
 .search-icon {
   position: absolute;
   top: 50%;
   left: 30px;
   transform: translateY(-50%);
   color: #727272;
   font-size: 18px;
   pointer-events: none;
 }

 /* Placeholder color */
 .search-person::placeholder {
   color: #727272;
   /* custom placeholder color */
   opacity: 1;
 }

 /* Input tweaks */
 .search-person:focus {
   box-shadow: none;
 }

 p.para-height {
   font-size: 14px;
   padding: 30px 0;
 }

 .list-chat {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   flex-direction: column;
   gap: 10px;
 }

 .list-chat .d-flex {
   display: flex;
   gap: 10px;
 }

.list-chat li {
    background: #e6e6e6;
    padding: 13px 15px;
    border-radius: 47px;
    font-size: 14px;
    color: #333;
    font-family: 'Lato';
    font-weight: 400;
    width: 100%;
}

li.foot-person {
    max-width: fit-content;
    width: 100%;
    word-wrap: break-word;
    padding: 8px 12px;
}

li.position-person {
    width: 100%;
    overflow-wrap: break-word;
    white-space: pre-wrap;
}

 .list-chat strong {
   margin-right: 5px;
   color: #494949;
   font-size: 12px;
   font-family: 'Lato';
   font-weight: 400;
 }

button.all-view {
    border-radius: 20px;
    padding: 0 18px;
    border: 1px solid #fff;
    background: transparent;
    color: #A5F400;
}

 i.icon-user {
   color: #727272;
 }

 /* -------------------------------------------------------------------search-message----------------------------- */
.filter-box {
    background: #494949;
    border-radius: 24px;
    padding: 23px;
    width: 100%;
    margin: 0px auto;
    height: 100%;
    border: 1px solid #fff;
}
 span.select2-search.select2-search--inline {
   width: 100%;
 }

 .filter-box h5 {
   font-weight: 700;
   margin-bottom: 5px;
   font-size: 28px;
   font-family: 'Lato';
 }

 .filter-box h6 {
   font-size: 20px;
   font-family: 'Lato';
   font-weight: 400;
   margin-bottom: 1px;
 }

 .tag {
   display: inline-block;
   background: #2E2E30;
   color: #A5F400;
   border-radius: 20px;
   padding: 5px 3px 5px 6px;
   margin: 5px 5px 0 0;
   font-size: 14px;
 }

 .tag button {
   border: none;
   background: none;
   color: #A5F400;
   font-size: 14px;
   margin-left: 5px;
 }

 
 .btn-toggle {
   border-radius: 25px;
   padding: 6px 16px;
   margin-right: 10px;
   border: none;
 }


 .btn-active {
   background: #A5F400;
   color: #2E2E30;
   padding: 6px 23px;
   font-size: 14px;
   font-family: 'Lato';
   font-weight: 400;
 }

 /* .btn-inactive {
  
   color: #2E2E30;
   font-size: 14px;
   font-family: 'Lato';
   font-weight: 400;
   padding: 6px 23px;
 } */

 img.message-video {
   border-radius: 8px;
 }

 span.applied-number {
   background: #2E2E30;
   color: #A5F400;
   padding: 9px 15px;
   font-size: 14px;
   font-family: 'Lato';
   font-weight: 400;
   border-radius: 20px;
 }

 /* Right-side floating icons */
 .video-container {
   position: relative;
   min-height: 450px;
   width: 100% !important;
   border-radius: 12px;
   overflow: hidden;
   margin: 0px auto;
   background-size: cover !important;
   background-position: center !important;
 }

.video_search {
    position: relative;
    min-height: 426px;
    width: 100% !important;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 19px;
    background-size: cover !important;
    background-position: center !important;
}
input#name-filter {
    background: transparent;
}
 .side-iconsreels {
   position: absolute;
   right: 15px;
   top: 37%;
   transform: translateY(-50%);
   display: flex;
   flex-direction: column;
   gap: 18px;
   text-align: center;
   font-size: 22px;
   color: #fff;
   align-items: center;
   /* makes icons/text visible */
 }

 .icon-textreels {
   display: flex;
   flex-direction: column;
   /* Stack icon above text */
   align-items: center;
   cursor: pointer;
 }

 .icon-textreels i {
   font-size: 24px;
   /* Icon size */
   margin-bottom: 5px;
   /* Space between icon and text */
 }

 .icon-textreels span {
   font-size: 14px;
   /* Text size */
 }

 .side-iconsreels i {
   color: white;
   font-size: 26px;
   cursor: pointer;
 }

 /* Bottom-left info */
 .bottom-info {
   position: absolute;
   bottom: 37px;
   left: 15px;
   color: white;
   font-size: 14px;
 }

 .bottom-info img {
   width: 32px;
   height: 32px;
   border-radius: 50%;
   margin-right: 8px;
 }

 .reels-span {
   position: absolute;
   bottom: 2%;
   left: 5%;
   color: white;
   font-size: 14px;
   font-family: 'Lato';
   font-weight: 400;
 }

 /* Views (bottom-right) */
 .views {
   position: absolute;
   bottom: 39px;
   right: 24px;
   color: white;
   font-size: 14px;
   font-family: 'Lato';
   font-weight: 400;
 }

 span.more-info {
    text-decoration: underline;
    position: absolute;
    bottom: 10px;
    left: 15rem;
    font-size: 13px;
}
 .person-name {
   font-size: 16px;
   font-family: 'Lato';
   font-weight: 400;
 }

 /* --------------------------search-message-popup */

 /* ---------------------------------------------top-list------------------------------------------- */
 :root {
   --page-bg: #2a2a2a;
   --panel-bg: #3a3a3a;
   --card-bg: #494949;
   --muted: #bdbdbd;
   --neon: #A5F400;
   --pill-bg: #f4f4f4;
   --chip-bg: #2f3d2a;
 }

 .modal-header {

   border-bottom: none;

 }

 .modal-footer {

   border-top: none;

 }
.fliter-less{
  width:32px;
  height:32px;
  cursor:pointer;
}
 .modal-header {
   border-bottom: none;
   justify-content: center;
 }

 button.btn.btn-danger.bootbox-cancel {
   display: none;
 }

 .bootbox-body {
   font-size: 18px;
   text-align: center;
 }

 .bootbox-accept {
   padding: 5px 35px;
   margin: 0 auto;
   background: #A5f400 !important;
   color: black !important;
   font-size: 17px;
   border: none;
 }

 span.select2-selection.select2-selection--multiple {
   background: transparent;
   border: none;
 }

 .bootbox-remove-toplist .modal-content {
   background-color: #494949;
   /* dark gray, for example */
   color: #fff;
 }

 .select2-container--default.select2-container--focus .select2-selection--multiple {
   border: none;
   outline: 0;
 }

 .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
   background-color: transparent;
   border: none;
   /* border-right: none; */

 }

 .select2-container--default .select2-selection--multiple .select2-selection__choice {
   background-color: transparent;
   border: 1px solid #aaa;

 }

 .select2-container--default .select2-search--inline .select2-search__field {
   color: white;
 }

 span.select2-results {
   background: #2E2E30;
   color: white;

 }
.main_head_fixed {
    min-height: 100vh;
}
 .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
   background-color: white;
   color: black;
 }

 .container-list {
   max-width: 100%;
   width: 95%;
   /* padding-left: 15px;
   padding-right: 15px; */
   margin: 0 auto;
       min-height: 100vh;
       margin-bottom: 4rem;
 }

 /* Layout */
 .layout {
   display: grid;
   grid-template-columns: 320px 1fr;
   gap: 28px;
 }

 /* Responsive stack on small screens */
 @media (max-width: 767.98px) {
  

.layout {
     grid-template-columns: 1fr;
   }

   .filters-panel {
     order: -1;
   }

   /* move filters above */
   .verify-container {
     min-height: auto;

   }

 }

 /* Filters */
 .filters-panel {
   background: #333;
   border-radius: 12px;
   padding: 18px;
   height: 100%;
 }

 .filter-heading {
   display: flex;
   align-items: center;
   gap: 10px;
   font-weight: 600;
   margin-bottom: 12px;
 }

 .filter-dot {
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: var(--neon);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #111;
   font-weight: 700;
 }

 .applied-badge {
   background: rgba(0, 0, 0, .25);
   color: var(--neon);
   padding: 4px 8px;
   border-radius: 12px;
   font-size: 12px;
   margin-left: auto;
 }

 .tag {
   display: inline-block;

   color: var(--neon);
   border-radius: 16px;
   padding: 6px 10px;
   margin: 6px 6px 6px 0;
   font-size: 13px;
 }

 .section-title {
   color: var(--muted);
   font-size: 13px;
   margin: 14px 0 8px;
   display: flex;
   align-items: center;
   gap: 8px;
 }

 .range-wrap {
   padding: 6px 0 2px;
 }

 .btn-toggletop {
   border-radius: 20px;
   padding: 8px 21px;
   font-size: 13px;
   border: none;
   margin-top: 6px;
   width: 100%;
 }

 .btn-togglesearch {
   border-radius: 20px;
   padding: 8px 51px;
   font-size: 13px;
   border: none;
   margin-top: 6px;
 }

 .btn-toggletop.active {
   background: var(--neon);
   color: #222;
   border: 0;
 }

 /* Player card */
 .player-panel {
   background: var(--card-bg);
   border-radius: 14px;
   padding: 20px;
   text-align: center;
   margin-bottom: 20px;
 }

 .player-top {
   display: flex;
   align-items: center;
   gap: 14px;
 }

 .avatar {
   width: 62px;
   height: 62px;
   border-radius: 14px;
   overflow: hidden;

   flex: 0 0 62px;
 }

 .avatar img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }

 .player-name {
   font-weight: 400;
   font-size: 24px;
   margin: 0;
   color: #fff;
   font-family: 'Lato';
   text-align: left;
 }

 .list-head {
   font-size: 28px;
  
   font-family: 'Lato';
   font-weight: 700;
 }

 .player-loc {
    color: #E5E5E5;
    font-size: 16px;
    margin-top: 2px;
    font-family: 'Lato';
    font-weight: 400;
    text-align: left;
}
 /* star select */
 .select-area {
   margin-left: auto;
   text-align: right;
 }

 span.star {
   color: #A5F400;
   font-size: 33px;
   cursor: pointer;
 }

 .star-btn .star {
   width: 20px;
   height: 20px;
   display: inline-block;
   background: linear-gradient(180deg, var(--neon), #9cff00);
   border-radius: 4px;
   box-shadow: 0 2px 0 rgba(0, 0, 0, .25);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #222;
   font-weight: 700;
 }

 .select-area small {
   display: block;
   color: var(--muted);
   margin-top: -6px;
   font-size: 12px;
 }

 .desc {
   color: #dcdcdc;
   font-size: 14px;
   margin: 12px 0 16px;
   line-height: 1.45;
   text-align: left;
 }

 /* info pills */
 .pills {
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    margin-top: 16px;
}

 .pill {
   background: #E5E5E5;
   color: #494949;
   border-radius: 40px;
   padding: 8px 12px;
   font-size: 12px;
   box-shadow: 0 2px 0 rgba(0, 0, 0, .08);
   font-family: 'Lato';
   font-weight: 400;
 }

 .pill strong {
   font-weight: 400;
   margin-left: 6px;
   color: #2E2E30;
   font-size: 14px;
   font-family: 'Lato';
 }

 /* videos */
 .video-grid {
   display: flex;
   gap: 12px;
   margin-top: 6px;
 }

 .card-video {
   flex: 1;
   border-radius: 10px;
   overflow: hidden;
   position: relative;
   min-width: 0;
   background: #222;
 }

 .card-video img {
   width: 100%;
   /* height: 160px; */
   object-fit: cover;
   display: block;
   height: 234px;
 }

 .play-circle {
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
   width: 43px;
   /* height: 40px; */
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   color: #111;
   box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
 }

 .play-circle img {
   width: 100%;
   /* make image fit container */
   height: 100%;
   /* maintain full height */
   object-fit: cover;
   /* crop/fit nicely inside circle */
   transition: transform 0.3s ease;
 }

 /* contact button */
 .contact-btn {
   margin-top: 18px;
   background: linear-gradient(180deg, var(--neon), #99ff00);
   border: none;
   color: #222;
   padding: 12px 22px;
   border-radius: 999px;
   font-weight: 600;
   width: 100%;
   box-shadow: 0 6px 18px rgba(182, 255, 0, .12);
 }

 .toplist-empty {
   font-size: 32px;
   color: white;
   width: 100%;
   text-align: center;
   margin-top: 13%;
   font-family: 'Lato';
   font-weight: 700;
 }

 /* ---------------- Small Helpers ---------------- */
 .small-muted {
   color: white;
   font-size: 16px;
   padding: 0 6px;
 }

 /* Dropdown styles */
 ul.dropdown-menu.p-0.show {
   border: 1px solid #A5F400;
 }

 button.btn.text-white.dropdown-toggle.d-flex.align-items-center.show {
   border: none;
 }

 a.dropdown-item.d-flex.align-items-center.view-option.bg-dark.text-white {
   border-radius: 4px;
 }





 .top-list-btn {
   background: #A5F400;
   border: none;
   font-weight: 500;
   padding: 14px 0px;
   border-radius: 17px;
   display: inline-block;
   color: #2E2E30;
   font-size: 20px;
   font-family: 'Lato';
   width: 76%;
   margin-top: 39px;
 }

 /* ---------------- Tag Styles ---------------- */
 .tag {
   display: inline-block;
   color: var(--neon);
   border-radius: 16px;
   padding: 4px 7px 8px 10px;
   margin: 6px 6px 6px 0;
   font-size: 12px;
 }

 .list-topimg {
   margin-top: 2px;
 }

 /* ---------------- Toggle Chevron ---------------- */
 .location-search .toggle-chev,
 .position-search .toggle-chev,
 .name-search .toggle-chev {
   cursor: pointer;
   font-size: 20px;
   color: white;
 }

 .location-search .toggle-chev:focus,
 .position-search .toggle-chev:focus {
   outline: 2px solid rgba(255, 255, 255, 0.08);
   outline-offset: 3px;
   border-radius: 4px;
 }

 /* ---------------- Container Styles ---------------- */
 .location-search,
 .name-search {
   border-radius: 16px;
   border: 1px solid #727272;
   padding: 8px 8px 11px 7px;
   height: auto;
   cursor: pointer;
 }

 .position-search {
   border-radius: 16px;
   border: 1px solid #727272;
   padding: 14px 10px 14px 7px;
   cursor: pointer;
 }

 /* ---------------- Tags Collapse ---------------- */
 .location-search .tags,
 .position-search .tags,
 .name-search .tags {
   max-height: 0;
   opacity: 0;
   overflow: hidden;
   transition: max-height 0.3s ease, opacity 0.25s ease;
   margin-top: 0;
 }

 .location-search.open .tags,
 .position-search.open .tags,
 .name-search.open .tags {
   max-height: 240px;
   /* adjust as needed */
   opacity: 1;
   margin-top: 0.5rem;
 }

 /* ---------------- Search Box ---------------- */
 /* .boxlist-top {
   font-size: 14px;
   border-radius: 8px;
   background: transparent;
 } */

.search-boxlist .input-group-text {
    border-radius: 16px;
    background: transparent;
    border: 1px solid #727272 !important;
    padding: 6px 0px 4px 10px;
    display: flex;
    align-items: center;
}
 i.list-searchicon {
   color: #727272;
   font-size: 19px;
 }

 /* ---------------- Checkbox List ---------------- */
 .checkbox-scroll-container {
   max-height: 132px;
   overflow-y: auto;
   padding: 7px 1px 3px 8px;
   background: #E5E5E5;
   width: 100%;
   border-radius: 16px;
   margin-top: 13px;
   margin-bottom: 7%;
   scrollbar-width: thin;
   /* Firefox */
   scrollbar-color: #424639 #2c2c2c;
   /* Firefox */
 }

 /* Webkit Scrollbar */
 .checkbox-scroll-container::-webkit-scrollbar {
   width: 8px;
 }

 .checkbox-scroll-container::-webkit-scrollbar-track {
   background: #2c2c2c;
   border-radius: 4px;
 }

 .checkbox-scroll-container::-webkit-scrollbar-thumb {
   background-color: #a5f400;
   border-radius: 4px;
   border: 2px solid #2c2c2c;
 }

 .checkbox-scroll-container::-webkit-scrollbar-thumb:hover {
   background-color: #7cc800;
 }

 /* Checkbox Items */
 .checkbox-item {
   display: flex;
   align-items: center;
   margin-bottom: 8px;
 }

 .checkbox-item input[type="checkbox"] {
   margin-right: 10px;
   accent-color: #a5f400;
   /* neon green checkmark */
 }

 i.fliter-less {
    background: #A5F400;
    border-radius: 50%;
    padding: 8px 12px;
    
    color: black;
    cursor: pointer;
  
}

 /* Helper class for hiding sidebar */
 .fliter-toggle,
 #backToFilter {
   cursor: pointer;
   font-size: 18px;
 }

 .hide-filter {
   display: none !important;
 }



 /* Filter column */
 .filter-col {
   width: 25%;
   /* same as col-md-3 */
   min-width: 250px;
   transition: transform 0.4s ease, opacity 0.4s ease;
 }

 /* When hidden → slide out left */
 .filter-col.hide-filter {
   transform: translateX(-100%);
   opacity: 0;
   position: absolute;
   /* take it out of layout */
   z-index: 10;
 }

 /* Content expands when filter hidden */
 .content-col {
   transition: all 0.4s ease;
 }


 /* -------- */




 /* -------------------------------------------profile-css------------------------------------------------------ */


 .sidebar .nav-link {
   color: #ccc;
   border-radius: 17px;
   margin: 5px 15px;
   padding: 10px 20px;
 }

 .sidebar .nav-link.active {
   background-color: #b9ff00;
   color: #2e2e30;
 }

 .profile-img {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   object-fit: cover;
 }

 .form-sectionprofile {
    background-color: #494949;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #fff;
}

 .change-pic {
   color: #A5F400;
   font-size: 16px;
   cursor: pointer;
   font-family: 'Lato';
   font-weight: 400;
 }

 img.person-profile {
   max-width: 100%;
   /* border-radius: 50%; */
   width: 75px;
   height: 75px;
   object-fit: cover;
 }

 .profile-control {
    background: transparent;
    border: 1px solid #727272;
    font-size: 18px;
    border-radius: 10px;
}

 .name-profile {
   font-family: Lato;
   font-weight: 400;
   font-size: 18px;
   ;
   color: #E5E5E5;
 }

 .profile-cancel {
   background: transparent;
   border: 1px solid white;
   padding: 8px 46px;
   font-size: 20px;
   border-radius: 25px;
   color: #ffffff;
 }
 .password-change_delete {
    color: #FFA1A1;
    font-size: 28px;
}
.password-changetext {
    font-size: 28px;
    line-height: 32px;
}

 .profile-save {
   background-color: #A5F400;
   color: #2e2e30;
   font-size: 20px;
   border: none;
   border-radius: 17px;
   padding: 15px 58px;
   line-height: normal;
   display: inline-flex;
   align-items: center;
   justify-content: center;
    height: 52px; 
   box-sizing: border-box;
   cursor: pointer;
   font-family: 'lato';
 }

 .profile-save:focus,
 .profile-save:active {
   outline: none;
   box-shadow: none;
 }

 .profile-save:hover{
  background-color: #b3e747;
 }
 .popup-cancel {
   background: #727272;
   padding: 9rem 0px;
   border-radius: 24px;
 }

 .custom-modal-width {
   max-width: 600px;
 }

 p.changes-save {
   font-size: 28px;
   font-weight: 700;
   font-family: 'Lato';
   color: white;
 }

 button#confirmCancel {
   background: #A5F400;
   padding: 9px 45px;
   border-radius: 40px;
   font-size: 20px;
   font-family: 'Lato';
   font-weight: 500;
 }

 

 h6.profile-head {
   font-size: 28px;
   font-family: 'Lato';
   font-weight: 700;
 }

 small.profile-para {
   color: #E5E5E5;
   font-size: 18px;
   font-family: 'Lato';
   font-weight: 400;
 }

 a.nav-linkprofile.active {
   color: white;
   background: #A5F400;
   text-decoration: none;
   padding: 16px 15px;
   border-radius: 24px;
   font-size: 18px;
   margin-bottom: 22px;
 }

 a.nav-linkgeneral,
 a.nav-linkkyc,
 a.nav-linknotify {
   color: white;
   background: #3a3a3a;
   text-decoration: none;
   padding: 16px 15px;
   border-radius: 24px;
   font-size: 18px;
   margin-bottom: 22px;
 }

 a.nav-linkout {
   background: #3a3a3a;
   text-decoration: none;
   padding: 16px 15px;
   border-radius: 24px;
   font-size: 18px;
   margin-bottom: 22px;
   color: #F61313;
 }

 .sidebar {
   width: 100%;
 }

 /* ---------------------------------------------setting-css------------------------------------------- */
.settings-card {
    background-color: #494949;
    border-radius: 12px;
    padding: 27px 31px 16px 29px;
    margin: 0px auto;
    color: white;
    border: 1px solid #fff;
}
 .settings-item {
   padding: 12px 10px;
   border-bottom: 1px solid #727272;
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
   font-size: 18px;
   font-family: lato;
   font-weight: 400;
 }

 .settings-item:last-child {
   border-bottom: none;
 }

 .settings-item:hover {
   background-color: #3a3a3a;
 }

 .settings-item span {
   font-size: 18px;
 }

.language-button {
    max-width: 353px;
    width: 100%;
    padding: 14px 2rem;
    border-radius: 999px;
    background: #A5F400;
    border: 0;
    color: #111;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 6px 18px rgb(0 0 0 / 22%);
    font-family: lato;
    font-size: 20px;
}
 /* ------------------------------------change-password----------------------------------------------- */
 .back-passwordchang {
  
   
   margin-bottom: 5%;

 }
.password-can {
    display: block;
    text-decoration: unset;
    color: #ED6767;
}
 .password-card {
   background-color: #494949;
   border-radius: 12px;
   padding: 30px;
   width: 100%;
   color: #fff;
   border: 1px solid #fff;
   /* box-shadow: 0 0 10px rgba(0,0,0,0.5); */
 }

 .back-change {
   background: #A5F400;
   border-radius: 50%;
   width: 32px;
   height: 32px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #2e2e30;
   font-weight: bold;
   border: none;
 }

 .password-change {
    font-size: 28px;
    font-family: 'Lato';
    font-weight: 700;
    color: #DAFF8D;
}

 .less-than {
   width: 30%;
   max-width: 100%;
 }



 .password-system {
   background-color: transparent;
   border: 1px solid #fff;
   color: #fff;
   border-radius: 12px;
   padding: 12px;
 }

 .password-system::placeholder {
   color: #ffffff;
 }

 .change-confirm {
   background-color: #A5F400;
   border: none;
   color: #2E2E30;
   border-radius: 50px;
   padding: 11px;
   width: 50%;
   margin-top: 15px;
   max-width: 100%;
   font-family: 'Lato';
   font-weight: 500;
   font-size: 20px;
 }

 .profile-language {
   width: 100%;
   max-width: 600px;
 }

 .forgot-link {
   color: #A5F400;
   display: block;
   text-align: center;
   margin-top: 10px;
   font-size: 14px;
   text-decoration: underline;
 }

 /* ------------------------------------------------delete-my account------------------------------------------------ */
 .delete-card {
   background-color: #494949;
   border-radius: 15px;
   padding: 31px 40px;
   max-width: 700px;
   width: 100%;
   color: #fff;
   text-align: center;
  border: 1px solid #fff;
 }

 button#togglePassword {
   border: none;
   position: absolute;
   top: 11px;
   right: 11px;
   background: none;
   color: white;
 }

 input#delete_password {
   border-radius: 12px;
 }

 .password-enter {
   background-color: transparent;
   border: 1px solid #727272;
   color: #E5E5E5;
   border-radius: 12px;
   padding: 12px;
 }

 .form-control::placeholder {
   color: #ccc;
 }

 .btn-cancel {
   background-color: transparent;
   border: 1px solid #fff;
   color: #fff;
   border-radius: 17px;
   padding: 10px 64px;
   margin-right: 10px;
   font-weight: 400;
   font-size: 20px;
 }

 .btn-cancel:hover {
   background-color: #555;
 }

 .btn-delete {
   background-color: #F61313;
   border: none;
   color: #fff;
   font-size: 20px;
   border: none;
   border-radius: 17px;
   padding: 13px 59px;
   line-height: normal;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-height: 52px;
   box-sizing: border-box;
   cursor: pointer;
 }

 .btn-delete:hover {
   background-color: #e60000b8 !important;
 }


 @keyframes fadeIn {
   from {
     opacity: 0;
     transform: translateX(30px);
   }

   to {
     opacity: 1;
     transform: translateX(0);
   }
 }

 .account-delect {
   background: #494949;
   color: white;
 }

 .heading-account {
   font-size: 23px;
   margin: 0 auto;

 }

 .type-account {
   background: #A5F400;
 }

 button#modalCancel {
   background: #727272;
   padding: 7px 23px;
 }

 .cross-btn {
   color: white;
   font-size: 20px;
 }

 .head-account {
   padding: 10px 1px;
 }

 .sidebar nav a.nav-linkprofile.active, .sidebar nav a.nav-linkgeneral.active, .sidebar nav a.nav-linkkyc.active, .sidebar nav a.nav-linknotify.active {
 
    border: 1px solid #fff;
}
 /* ------------------------------------------------change-email------------------------------------------------ */
 p.current-mail {
   margin-bottom: 1px;
 }

 .otp-input {
   width: 50px;
   height: 50px;
   font-size: 22px;
   font-weight: bold;
   text-align: center;
   border: 1px solid #727272;
   border-radius: 8px;
   background-color: transparent;
   color: #fff;
 }

 .otp-input:focus {
   border-color: #0d6efd;
   /* blue border on focus */
   outline: none;
 }

 .conifrm-otp {
   width: 53%;
 }

 .email-card {
   display: none;
   animation: fadeIn 0.4s ease-in-out;
 }

 .email-card.active {
   display: block;
 }

 .email-card {
   background-color: #3b3b3b;
   border-radius: 12px;
   padding: 30px 30px;
   max-width: 750px;
   width: 100%;
   color: #fff;
   border: 1px solid #fff;
   text-align: center;
   
 }

 /* --------------------------------------------------notification-perferences-------------------------------------- */
 .card-notification {
   background-color: #494949;
   border-radius: 12px;
   padding: 50px 28px;
   max-width: 700px;
   border: 1px solid #fff;
   
 }

 .received-message {
   font-size: 20px;
   font-weight: 400;
   font-family: lato;
 }

 .recieve-para {
   font-family: Lato;
   font-weight: 400;
   font-size: 14px;
 }

 .form-check {
   background-color: #727272;
   border-radius: 24px;
   padding: 15px;
   margin-bottom: 15px;
   display: flex;
   justify-content: space-between;
   align-items: center;
 }

 .form-check label {
   margin-bottom: 0;
   color: #fff;
 }

 .form-check small {
   display: block;
   color: #aaa;
   font-size: 0.85rem;
 }

 .form-switch .form-check-input {
   width: 54px;
   height: 28px;
   background-color: #727272;

 }

 .form-switch .form-check-input:checked {
   background-color: #727272;
   width: 54px;
   height: 28px;
 }

 .form-switch .form-check-input {

   background-color: #666;
   /* gray track */
   border-radius: 2em;
   border: 1px solid #fff;
   /* white outline */
   position: relative;
   cursor: pointer;
   appearance: none;
   -webkit-appearance: none;
   background-image: none !important;
   /* remove Bootstrap default knob */
   transition: background-color 0.3s ease;
 }

 /* track stays gray even when checked */
 .form-switch .form-check-input:checked {
   background-color: #666;
 }

 /* custom knob */
 .form-switch .form-check-input::before {
   content: "";
   position: absolute;
   top: 2px;
   left: 2px;
   width: 23px;
   height: 23px;
   border-radius: 50%;
   background-color: #fff;
   transition: all 0.3s ease;
 }

 /* knob when checked */
 .form-switch .form-check-input:checked::before {
   transform: translateX(1.6em);
   background-color: #A5F400;
 }

 /* ----------------------------------------kyc-update----------------------------------------- */
 .kyc-update {
   
   text-align: center;
   background: #494949;
   padding: 36px 31px;
   border-radius: 12px;
   max-width: 636px;
   border: 1px solid #fff;
 }

 /* ----------------------------step-2------------------ */
 .custom-input {
   background: transparent;
   border: 1px solid #727272;
   color: #fff;
   border-radius: 8px;
   padding: 8px 12px;
 }

 .custom-input:focus {
   outline: none;
   border-color: #00c853;
   box-shadow: none;
   background: transparent;
   color: #fff;
 }

 .form-label {
   font-weight: 500;
   margin-bottom: 4px;
 }

 .card-wrapper {
   position: relative;
   display: inline-block;
 }

 .card-wrapper img {
   border-radius: 10px;
   width: 100%;
   height: auto;

 }

 .close-btn {
   position: absolute;
   top: 8px;
   right: 8px;
   background: #00c853;
   color: #fff;
   border-radius: 50%;
   width: 22px;
   height: 22px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   cursor: pointer;
 }

 /* ----------------------------kyc-form---------------------------- */
 label.number-social {
   display: block !important;
   /* make sure label is full width */
   width: 100% !important;
   /* so text-align can work */
   text-align: left !important;
   /* force left alignment */
   color: #E5E5E5;
 }

 .card-preview {

   margin-top: 20px;
   border-radius: 8px;
   overflow: hidden;
 }

 .update-form {
   background: #494949;
  border: 1px solid #fff;
   border-radius: 12px;
 }

 h5.address-form {
   font-size: 16px;
 }

 span.address-legal {
   font-size: 13px;
   color: #777777;
 }

 .form-container {
   margin-top: 34px;
 }

 .btn-kyc {
   background-color: #A5F400;
   color: #2e2e30;
   font-size: 20px;
   border: none;
   border-radius: 25px;
   padding: 13px 63px;
   line-height: normal;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   /* height: 52px; */
   box-sizing: border-box;
   cursor: pointer;
   font-family: 'Lato';
   text-transform: capitalize;
 }

 .dropdown-kyc {
   position: absolute;
   right: 17px;
   top: 68%;
   transform: translateY(-50%);
   pointer-events: none;
   font-size: 14px;
   color: #666;
 }

 .step {
   display: none;
 }

 .step.active {
   display: block;
 }

 /* Optional slide animation using transform */
 .step {
   transition: transform 0.5s ease, opacity 0.5s ease;
 }

 .step.slide-out {
   transform: translateX(-100%);
   opacity: 0;
 }

 .step.slide-in {
   transform: translateX(0);
   opacity: 1;
 }

 /* -------------- */
 /* ------------------------------------user-profile------------------------------------------------- */
 .child-container {
   max-width: 100%;
   width: 98%;
   padding-left: 15px;
   padding-right: 15px;
   margin: 0 auto;
 }

 span.name-select {
   position: absolute;
   top: 75px;
   right: 13px;
   font-size: 14px;
   font-family: 'Lato';
   font-weight: 400;
 }

 p.child-para {
   font-size: 14px;
   font-family: 'Lato';
   font-weight: 400;
 }

.player-card {
    background-color: #494949;
    color: white;
    border-radius: 16px;
    padding: 35px 15px;
    max-width: 100%;
    margin: auto;
    position: relative;
    min-height: 100%;
    border: 1px solid #fff;
}

 .player-card img {
   width: 70px;
   height: 70px;
   border-radius: 50%;
   object-fit: cover;
 }

 .player-card h5 {
   margin: 0;
   font-weight: 400;
   font-size: 22px;
   font-family: 'Lato';
   text-align: justify;
 }

 .contactplay-btn {
    background: #A5F400;
    border: none;
    font-weight: 600;
    color: #2E2E30;
    width: 100%;
    padding: 12px 0px;
    border-radius: 34px;
    margin-top: 3rem;
    font-size: 20px;
}

 .select-iconplay {
   position: absolute;
   right: 15px;
   top: 30px;
   font-size: 35px;
   cursor: pointer;
   color: white;
 }

 small.name-child {
   color: #E5E5E5;
   font-size: 16px;
   font-weight: 400;
   font-family: 'Lato';
 }

 .info-pill {
   background: #E5E5E5;
   color: #2E2E30;
   border-radius: 20px;
   padding: 6px 7px;
   margin: 3px;
   display: inline-block;
   margin-top: 8px;
 }

 .info-pill .label {
   font-size: 12px;
   opacity: 0.8;
   /* makes label a bit lighter */
 }

 .info-pill .value {
   font-size: 14px;
   font-weight: 600;
   margin-left: 3px;
 }

 /* -------------------------------about-yourself------------------------- */

 .box-about {
   padding: 20px;
   border-radius: 12px;

 }

 textarea#desc {
   width: 100%;
   /* height: 120px; */
   padding: 13px 20px 7rem 17px;
   border-radius: 17px;
   border: 1px solid #727272;
   resize: none;
   font-size: 18px;
   background: transparent;
   color: white;
 }

 textarea#descs {
   width: 100%;
   /* height: 120px; */
   padding: 13px 20px 4rem 17px;
   border-radius: 17px;
   border: 1px solid #727272;
   resize: none;
   font-size: 18px;
   background: transparent;
   color: white;
 }

 .counter {
   margin-top: 8px;
   font-size: 13px;
   color: #666;
   text-align: right;
 }

.actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    width: 50%;
    margin: 0 auto;
    margin-bottom: 4%;
    margin-top: 9px;
    max-width: 100%;
}

 .actions button {
   flex: 1;
   padding: 14px 2px;
   margin: 0 5px;
   border: 1px solid white;
   border-radius: 49px;
   font-size: 20px;
   cursor: pointer;
   transition: 0.3s;

 }

 .skip {
   background: transparent;
   color: #FFFFFF;
 }

 .save {
   background: #A5F400;
   color: #2E2E30;
 }

 .actions button:hover {
   opacity: 0.8;
 }


 /* vikas 30-09-25 */
 .player-panel .desc {
   display: -webkit-box;
   -webkit-line-clamp: 4;
   -webkit-box-orient: vertical;
   overflow: hidden;
   position: relative;
   text-overflow: ellipsis;
   max-height: 6em;
   line-height: 1.5em;
   max-height: 200px;
   height: auto;
 }

 .player-panel .more-link {
   position: absolute;
   bottom: 0;
   right: 0;
   padding-left: 5px;
   background: white;
   /* match background to hide cutoff text */
   color: blue;
   font-weight: bold;
   text-decoration: none;
 }

 .btn-check:checked+.btn,
 .btn.active,
 .btn.show,
 .btn:first-child:active,
 :not(.btn-check)+.btn:active {
   color: black !important;
   background-color: #A5F400 !important;
   border-color: var(--bs-btn-active-border-color);
 }

 .btn:hover {
   color: black !important;
   background-color: #A5F400 !important;
   border: none;
   /* better than border-color:none */
 }

 /* override only for .top-list-drop buttons */
 .top-list-drop .btn:hover {
   color: var(--bs-btn-hover-color);
   background-color: var(--bs-btn-hover-bg);
   border-color: var(--bs-btn-hover-border-color);
 }

 /* -------------------------user-passport----------------- */
 .name-ids {
   font-size: 28px;
   text-align: justify;
   padding: 4px 0px 0px 52px;
   font-family: 'Lato';
   font-weight: 700;
 }

 .yes {
   padding: 0 0px 0 29px;
 }

 .page-fronts {
   color: #E5E5E5;
   padding: 0 40px 0 49px;
   text-align: left;
 }

 .page-fonts {
   color: #E5E5E5;
   padding: 0 63px 0 54px;
   text-align: left;
 }

 /* ----------------user-verfication---------- */
 .verification-place img {
   width: 100%;
   margin-bottom: 27px;
 }

 input#recovery_phone {
   width: 47%;
   max-width: 100%;
 }

 select#phone_country_select {
   padding: 1px 1px;
   background: transparent;
   border: 1px solid #727272;
 }

 /* ------------------------------- */
 /* Placeholder text color for single-select Select2 */
 .select2-container--default .select2-selection--single .select2-selection__placeholder {
   color: #fff !important;
 }

 /* Make selected text white too */
 .select2-container--default .select2-selection--single .select2-selection__rendered {
   color: #fff !important;
 }

 /* Optional: make the search input text white inside dropdown */
 .select2-container--default .select2-dropdown .select2-search__field {
   color: #e63f3f;
   /* or #fff if your dropdown is dark */
 }

 /* vikas 30-09-25 */
 /* ------------footer--------- */
 .after-footer {
   background: none;
   border: none;
 }

 .footer-text {
   margin-bottom: 0px;
 }

 .message.received {
   margin: inherit;
 }