/* Extracted from city-page.php */

.input {
        width: -webkit-fill-available;
        height: 56px;
        background-color: transparent;
        border: none;
        outline: none;
        color: #000 !important;
    }

    .highlight:after,
    input[type="radio"]:checked + .radio-wrapper {
        background-color: #1ECB15 !important;
    }

    .wrv76wo,
    .radio-wrapper {
        border: 2px solid #1ECB15 !important;
    }

    input[type=text]:not(.browser-default) {
        height: 28px !important;
        margin: 0 !important;
    }

    .modal {
        background-color: unset !important;
        max-height: unset !important;
    }

.radio-container {
        display: flex;
        justify-content: left;
        gap: 10px;
        margin-bottom: 10px;
    }

    .radio-wrapper {
        display: block;
        border-radius: 10px;
        border: 2px solid #c1f11d;
        padding: 8px 20px;
        background-color: #fff;
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease;
        font-size: 16px;
        text-align: center;
        user-select: none;
        color: #000;
    }

    input[type="radio"]:checked + .radio-wrapper {
        background-color: #c1f11d;
        color: #000;
    }

    input[type="radio"] + .radio-wrapper {
        color: #000;
    }

    .radio-wrapper:hover {
        background-color: #f0f0f0;
    }

    input[type="radio"] {
        display: none;
    }

    button:focus {
        background-color: #1ECB15 !important;
    }
