/* Form */
    .form-control {
        border: none !important;
        outline: none !important;
        background-color: #F3F3F3 !important;
        border-radius: 25px !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
        color: #717171 !important;
        font-size: 14px !important;
    }

    .form-control:not(textarea.form-control, .dataTables_filter .form-control){
        height: 67px;
    }

    #discountApply {
        border-radius: 0 25px 25px 0 !important;
    }

    #discount_code{
        border-radius: 25px 0 0 25px !important;
    }

    .rtl #discount_code {
        border-radius: 0 25px 25px 0 !important;
    }

    .rtl #discountApply {
        border-radius: 25px 0 0 25px !important;
    }

    .form-control:focus{
        box-shadow: 0 0 5px var(--site-color) !important;
    }

    textarea.form-control {
        padding-top: 30px;
        padding-left: 40px;
        border-radius: 50px !important;
    }

    .bootstrap-select {
        width: 100% !important;
    }

    .dropdown-toggle {
        height: 67px!important;
        width: 100%;
        border-radius: 25px !important;
        border: none !important;
        outline: none !important;
        background-color: #F3F3F3 !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
        position: relative;
    }

    .dropdown-toggle:focus {
        border: none !important;
        outline: none !important;
    }

    .bootstrap-select .dropdown-menu {
        background-color: #f8f9fa;
        /* Light gray background */
        color: #343a40;
        padding: 0;
        /* Dark gray text */
    }

    .bootstrap-select .filter-option {
        display: flex;
        align-items: center;
    }

    .bootstrap-select .dropdown-menu li {
        border-bottom: 1px solid #f8f9fa;
    }

    .bootstrap-select .dropdown-menu li a {
        display: flex;
        padding: 9px 20px;
        width: 100% !important;
        transition: .4s all ease;
    }

    .bootstrap-select .dropdown-menu li a .text {
        font-size: 16px;
        font-weight: 500;
    }

    .bootstrap-select .dropdown-menu li a:hover {
        background-color: var(--site-color);
        color: #fff;
    }

    .bootstrap-select .dropdown-menu li.selected {
        background-color: var(--site-color);
        color: #fff;
    }


    /* Image Dropify Styles */

    .dropify-wrapper {
        width: 200px !important;
        height: 200px !important;
        border-radius: 15px;
        position: relative;
        display: inline-block;
        background-color: #f0f0f0 !important;
        border: none !important;
    }

    .dropify-message {
        font-size: 14px;
    }

    .dropify-preview {
        height: 100%;
        border-radius: 15px;
    }

    .dropify-render img {
        height: auto;
        max-height: 100%;
        border-radius: 15px;
    }

    /* .btn-block {
    height: 67px;
    border-radius: 33.5px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px !important;
    max-width: 250px;

} */

    /* Checkbox */
    .form-check-input {
        opacity: 0;
        position: absolute;
    }

    /* Style the label to include a custom checkbox */
    .form-check-label {
        position: relative;
        padding-left: 30px;
        cursor: pointer;
        display: flex;
        align-items: center;
        margin-left: 10px;
    }

    /* Custom checkbox styling */
    .form-check-label::before {
        content: '';
        position: absolute;
        left: -20px!important;
        top: 50%!important;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50% !important;
        background-color: #f0f0f0;
    }

    .rtl .form-check-label::before {
        left: auto !important;
        right: -20px !important;
    }

    /* Style for checked state */
    .form-check-input:checked+.form-check-label::before {
        background-color: #fff;
    }

    /* Checkmark styling for checked state */
    .form-check-input:checked+.form-check-label::after {
        content: '\f058';
        font-family: 'FontAwesome';
        position: absolute;
        left: -7px!important;
        top: 50%!important;
        transform: translate(-50%, -50%);
        color: var(--site-color) !important;
        font-size: 30px;
        width: 100%;
        height: 100%;
        text-align: center;
        line-height: 20px;
    }
    .dropdown-menu {
        position: absolute;
        z-index: 1000;
    }

    /* Container for radio buttons */
    .radio-inline {
        position: relative;
        display: inline-block;
        margin-right: 15px;
        cursor: pointer;
        font-size: 14px;
        /* Adjust the font size as needed */
    }

    /* Hide the default radio button */
    .radio-inline input[type="radio"] {
        opacity: 0;
        position: absolute;
        width: 0;
        height: 0;
    }

    /* Custom radio button */
    .radio-inline:before {
        content: '';
        display: inline-block;
        width: 18px;
        height: 18px;
        border: 2px solid #ccc;
        /* Light grey border for the circle */
        border-radius: 50%;
        margin-right: 8px;
        vertical-align: middle;
        transition: border-color 0.3s, background-color 0.3s;
        box-sizing: border-box;
    }

    /* Selected radio button */
    .radio-inline input[type="radio"]:checked+span:before {
        display:inline-flex;
        border-color: #ff6666;
        /* Border color when selected */
        background-color: #ff6666;
        /* Background color when selected */
        content: '✓';
        /* Checkmark inside the circle */
        color: white;
        font-size: 12px;
        text-align: center;
        line-height: 18px;
        margin-left: -29px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        padding-left: 4px;
        margin-top: -3px;
    }

    /* Label text */
    .radio-inline span {
        vertical-align: middle;
        color: #333;
        /* Text color */
        font-weight: normal;
        /* Normal text weight */
    }

    /* Hover effect */
    .radio-inline:hover:before {
        border-color: #888;
        /* Change to a darker color on hover */
    }

    .btn-new {
        border-radius: 50px !important;
        font-size:16px!important;
        font-weight: 600!important;
        /* background-color: var(--site-color)!important; */
        /* color:#fff!important; */
    }
