.select2-container--default .select2-selection--single {
        background: transparent;
        height: 42px;
        border: 1px solid #484848;
        border-radius: 6px;
        color: rgba(127, 127, 127, 1);
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered{
            line-height: 42px;
            color: #999;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow{
        height: 42px;
    }

    .select2-container--open .select2-dropdown--below,
    .select2-container--open .select2-dropdown--above{
        background: #222;
    }
    .select2-container--default .select2-results__option[aria-selected=true]{
        background-color: #5d5959 !important;
    }


    .calculator-container {
        width: 100%;
    }

    .slider-container {
        margin-bottom: 25px;
    }
    
    .range-field {
        -webkit-appearance: none;
        width: 100%;
        height: 2px;
        border-radius: 5px;
        outline: none;
        margin-bottom: 10px;
        background: #e0e0e0;
    }
    .range-field::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        background: #ffffff;
        border: 2px solid #0066cc;
        border-radius: 50%;
        cursor: pointer;
        margin-top: 0;
        transition: background 0.3s, transform 0.3s;
    }
    .range-field::-webkit-slider-thumb:hover {
        background: #0066cc;
        transform: scale(1.2);
    }
    .range-field::-moz-range-thumb {
        width: 20px;
        height: 20px;
        background: #ffffff;
        border: 2px solid #0066cc;
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s, transform 0.3s;
    }
    .range-field::-moz-range-thumb:hover {
        background: #0066cc;
        transform: scale(1.2);
    }
    .slider-value {
        font-size: 14px;
        color: #ffffff;
        text-align: right;
    }
    .result-item {
        display: flex;
        justify-content: space-between;
        color: #ffffff;
        padding-top: 10px;
        border-bottom: 1px solid #514f4f;
        padding-bottom: 10px;
    }
    .result-item-last{
        display: flex;
        justify-content: center;
        gap: 15px;
        padding-top: 10px;
        border-bottom: 1px solid #514f4f;
        padding-bottom: 10px;
        color: #64d97b;
        align-items: center;
    }

    .faq-question {
        background: #242425;
        padding: 6px;
    }

    /*side widget*/
    .side-widget {
        display: flex;
        gap: 10px;
    }

    .side-widget-img-box {
        width: 30%;
        height: auto;
        flex: 0 0 auto;
    }
    .side-widget-content-box {
        padding: 5px;
    }