/* For Webkit (Chrome, Safari, etc.) */
::-webkit-scrollbar {
    width: 4px; /* Reduced width of the entire scrollbar for a thinner appearance */
}

::-webkit-scrollbar-track {
    background: transparent; /* Keeps the background of the scrollbar track transparent */
}

::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scrollbar handle */
    border-radius: 3px; /* Slightly rounded corners for the handle */
}

::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color of the scrollbar handle on hover */
}

/* For other browsers */
body {
    scrollbar-width: thin; /* Makes the scrollbar thin */
    scrollbar-color: #888 transparent; /* Colors for the thumb and track */
}

.bg-dark {
    background-color: #212529 !important;
}

.fw-100 {
    font-weight: 100 !important;
}

.fw-200 {
    font-weight: 200 !important;
}

.fw-300 {
    font-weight: 300 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.fw-800 {
    font-weight: 800 !important;
}

.fw-900 {
    font-weight: 900 !important;
}
.ffs-1 {
    font-size: 10px !important;
}

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

.ffs-3 {
    font-size: 14px !important;
}

.ffs-4 {
    font-size: 16px !important;
}

.ffs-5 {
    font-size: 18px !important;
}

.ffs-6 {
    font-size: 20px !important;
}

.ffs-7 {
    font-size: 22px !important;
}

.ffs-8 {
    font-size: 24px !important;
}

.ffs-9 {
    font-size: 26px !important;
}

.ffs-10 {
    font-size: 28px !important;
}
/* mobile ffs */
@media (max-width: 768px) {
    .ffs-m-1 {
        font-size: 10px !important;
    }

    .ffs-m-2 {
        font-size: 12px !important;
    }

    .ffs-m-3 {
        font-size: 14px !important;
    }

    .ffs-m-4 {
        font-size: 16px !important;
    }

    .ffs-m-5 {
        font-size: 18px !important;
    }

    .ffs-m-6 {
        font-size: 20px !important;
    }

    .ffs-m-7 {
        font-size: 22px !important;
    }

    .ffs-m-8 {
        font-size: 24px !important;
    }

    .ffs-m-9 {
        font-size: 26px !important;
    }
    

}
.primary-color {
    color: #212529;
}
.btn-dark{
    background-color: #212529 !important;
    border: none;
}
.secondary-color{
    color: #D5FF00;
}
.border-primary-color {
    border: 2px solid #212529 !important;
}
.border-secondary-color {
    border: 2px solid #000000 !important;
}
.border-secondary-color :hover{
    border: 2px solid #000000 !important;
    color: #000000 !important;
    background: #212529;
}
.primary-bg-color {
    background-color: #212529 !important;
    border: none;
}
.secondary-bg-color{
    background-color: #D5FF00 !important;
    border: none;
    color: rgb(0, 0, 0) !important;
}
/* .primary-bg-light-color {
    background-color: #f8e19f;
    border: none;
} */
.url{
    text-decoration: none;
}

.url:hover{
    text-decoration: none;
}

.secondary-bg-color {
    background-color: #EFEFEF;
    border: none;
}
.tertiary-bg-color {
    background-color: #f0f0f0;
    border: none;
}
.m-auto{
    margin-right: auto !important;
    margin-left: auto !important;
}

.primary-bg-light-color {
    background-color: #fcefcb;
    border: none;
}

.primary-dotted-border {
    border: 2px dotted #212529;
}

.rounded-0 {
    border-radius: 0 !important;
}

.rounded-5 {
    border-radius: 5px !important;
}

.rounded-10 {
    border-radius: 10px !important;
}

.rounded-15 {
    border-radius: 15px !important;
}

.rounded-20 {
    border-radius: 20px !important;
}

.rounded-25 {
    border-radius: 25px !important;
}

.border-white{
    border-color: white !important;
}

.wh-10{
    width: 10px !important;
    height: 10px !important;
}

.wh-15{
    width: 15px !important;
    height: 15px !important;
}

.wh-20{
    width: 20px !important;
    height: 20px !important;
}

.wh-25{
    width: 25px !important;
    height: 25px !important;
}

.wh-30{
    width: 30px !important;
    height: 30px !important;
}

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

.wh-40{
    width: 40px !important;
    height: 40px !important;
}

.wh-45{
    width: 45px !important;
    height: 45px !important;
}

.wh-50{
    width: 50px !important;
    height: 50px !important;
}

.wh-55{
    width: 55px !important;
    height: 55px !important;
}

.wh-60{
    width: 60px !important;
    height: 60px !important;
}

.wh-100{
    width: 100px !important;
    height: 100px !important;
}

.wh-150{
    width: 150px !important;
    height: 150px !important;
}

.flex-grow-1{
    flex-grow: 1 !important;
}

.w-20{
    width: 20% !important;
}
.bg-black{
    background-color: #000 !important;
}
.overflow-hidden{
    overflow: hidden !important;
}
.text-black{
    color: #000 !important;
}

.btn-sucess{
    background-color: #00D54F !important;
}

.bg-success{
    background-color: #00D54F !important;
}

.bg-success-light{
    background-color: #d3f6d1 !important;
}

.text-success{
    color: #00D54F !important;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: #00D54F;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #00D54F;
  }
  
  /* input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  } */

  /* mobile */
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  .border-none{
    border: none !important;
  }
  .flex-shrink-0{
    flex-shrink: 0 !important;
  }
  
  /* mobile */
  /* @media (max-width: 768px) { */
    .card--pay--text{
      font-size: 15px !important;
    }
    .switch {
        width: 40px; /* Reduced width for mobile */
        height: 23px; /* Reduced height for mobile */
    }

    .switch .slider:before {
        height: 17px; /* Adjust the knob height for mobile */
        width: 17px; /* Adjust the knob width for mobile */
        bottom: 3px; /* Adjust vertical position for mobile */
        left: 3px; /* Adjust horizontal position for mobile when off */
    }

    .switch input:checked + .slider:before {
        -webkit-transform: translateX(17px);
        -ms-transform: translateX(17px);
        transform: translateX(17px); /* Adjust translation for mobile when on */
    }    
  /* } */
  .iti--separate-dial-code .iti__selected-flag {
    background-color: rgba(0, 0, 0, 0) !important;
}