 
 .subcategory-btn {
    height: 39px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border: 1px solid #ccc;
    padding: 8px;
    display: flex;
    align-items: center;
}

 #addressSelect option {
            background-color: white; /* White background for options */
        }
 
 .form-step {
            display: none;
        }
        .form-step.active {
            display: block;
        }
        #statesFields{
            display: none;
        }
        #pincodeFields{
            display: none;
        }
        #indstatesFields{
            display: none;
        }
        #indpincodeFields{
            display: none;
            position: relative;
        }

        .card {
            border: 1px solid #ddd;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }
        .card-header {
            background-color: #007bff;
            color: #fff;
            font-weight: bold;
            text-align: center;
            border-radius: 10px 10px 0 0;
        }
        .plan-price {
            font-size: 2rem;
            color: #007bff;
            font-weight: bold;
            text-align: center;
        }
        .plan-price sup {
            font-size: 1.2rem;
            vertical-align: center;
        }
        .plan-price span {
            font-size: 1rem;
            color: #6c757d;
        }
        .list-unstyled {
            font-size: 0.9rem;
            line-height: 1.6;
            color: #555;
        }
        .btn-buy {
            background-color: #007bff;
            color: #fff;
            font-size: 1rem;
            font-weight: bold;
            width: 100%;
            border: none;
            border-radius: 5px;
            padding: 10px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .btn-buy:hover {
            background-color: #0056b3;
            transform: scale(1.05);
        }
        .best-option-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: #ffc107;
            color: #000;
            font-size: 0.8rem;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 10px;
            text-transform: uppercase;
        }
        #addressSelects {
            border: 1px solid #ccc;
            max-height: 200px;
            overflow-y: auto;
            padding: 10px;
            display: none; /* Initially hidden */
            position: absolute;
            background-color: #fff;
            z-index: 1000;
           
        }

        .form-check {
            margin-bottom: 5px;
        }
        .dropdown-container {
            position: relative;
            width: 300px;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            width: auto;
            max-height: 245px;
            overflow-y: auto;
            border: 1px solid #ccc;
            background-color: #fff;
            z-index: 1000;
            padding: 1px;
        }


.subcategorydropdown{
    width: auto;
}



        .dropdown-menu.show {
            display: block;
        }

        .dropdown-item {
            margin-bottom: 5px;
        }
        
        .is-invalid {
    border: 1px solid red;
}

.is-invalid + span {
    color: red;
    font-size: 16px;
}

.is-invalid + span::before {
    content: "This field is required. ";
    font-weight: bold;
}
  #okButton{
                   position: absolute;
    /* float: right; */
    /* top: 0; */
    right: 12px;
    bottom: 0;
        }


        .form-check-inputs {
    margin-right: 5px; /* Adjust the value as needed */
}
.dropdown-container {
    position: relative;
    width: 100%;
}

.dropdown-input {
    width: 390px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    height: 39px;
}

.dropdown-content {
    position: absolute;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background-color: #fff;
    z-index: 1000;
    display: none;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 5px;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
}

.dropdown-list {
    max-height: 150px;
    overflow-y: auto;
}

#termsModal .termsmodalbtn{
    position: fixed;
    right: 40px;
    z-index: 1;
    background-color: #0d6efd;
    color: #fff!important;
}
.okbtnsection{
    display: flex;
    flex-wrap: wrap;
}
.okbtnsection .form-label{
    width: 100%;
}
.okbtnsection .dropdown{
    width: 89%;
}
.okbtnsection #selectedDays{
    width: 89%;
    float: left;
}
.okbtnsection .dropdown-menu.show{
    margin-top: 40px;
}
.okbtnsection button.okbtn{
    width: 10%!important;
    padding: 0!important;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    min-height: 38px;
}
.dropdown#subCategoryButton{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

@media screen and (min-width: 991px){
    /*.okbtnsection button.okbtn{
        display: none!important;
    }*/
    #termsModal .termsmodalbtn{
        left: 80%;
        transform: translateX(-100%);
    }
}
@media screen and (max-width: 991px){
    .dropdown-menu.subcategorydropdown::-webkit-scrollbar {
        width: 10px;  /* scrollbar thickness */
    }

    .dropdown-menu.subcategorydropdown::-webkit-scrollbar-thumb {
        background-color: #888;  /* scrollbar color */
        border-radius: 5px;
    }

    .dropdown-menu.subcategorydropdown::-webkit-scrollbar-thumb:hover {
        background-color: #555;
    }

    /* For Firefox */
    .dropdown-menu.subcategorydropdown {
        scrollbar-width: thick;  /* auto | thin | none | thick */
        scrollbar-color: #888 #f1f1f1;  /* thumb | track */
    }
} 