.booking-search-widget {
    --booking-bg: #30334b;
    --booking-bg-dark: #292c42;
    --booking-input-bg: #f3f3f3;
    --booking-input-text: #707070;
    --booking-placeholder: #a7a7a7;
    --booking-blue: #2877bd;
    --booking-blue-hover: #216aa9;
    --booking-white: #ffffff;

    position: relative;
    width: 100%;
    padding: 40px 0;
    box-sizing: border-box;
}

.booking-search-widget .events-card-booking-toolbar {
    position: relative;
    z-index: 4;

    width: min(840px, calc(100% - 48px));
    min-height: 138px;

    margin: 0 auto;
    padding: 18px 42px 19px;

    box-sizing: border-box;

    background: var(--booking-bg);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);

    overflow: hidden;
}

.booking-search-widget .events-card-booking-toolbar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    gap: 0;

    box-sizing: border-box;
}

.booking-search-widget .events-card-booking-eyebrow {
    margin: 0 0 5px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;

    letter-spacing: 2.6px;
    text-transform: uppercase;

    text-align: center;
}

.booking-search-widget .events-card-booking-title {
    width: auto !important;

    margin: 0 0 4px;

    color: var(--booking-white);

    font-size: 21px;
    font-weight: 600;
    line-height: 1.15;

    letter-spacing: 0;

    text-align: center;
}

.booking-search-widget .events-card-booking-subtitle {
    width: auto !important;
    max-width: 620px;

    margin: 0 0 10px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 10px;
    font-weight: 400;
    line-height: 1.35;

    text-align: center;
}

.booking-search-widget .events-card-booking-form {
    display: flex;
    align-items: center;

    width: min(398px, 100%);
    min-height: 30px;

    margin: 0;

    gap: 13px;
}

.booking-search-widget .events-card-booking-input-wrapper {
    position: relative;
    flex: 1 1 auto;

    min-width: 0;
}

.booking-search-widget .events-card-booking-form input {
    display: block;

    width: 100%;
    height: 30px;

    padding: 0 15px 0 34px;

    box-sizing: border-box;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;

    background: var(--booking-input-bg);
    color: var(--booking-input-text);

    font-family: inherit;
    font-size: 11px;
    font-weight: 400;

    line-height: 30px;
    text-align: left;

    outline: none;

    box-shadow: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.booking-search-widget .events-card-booking-form input::placeholder {
    color: var(--booking-placeholder);
    opacity: 1;
    text-transform: none;
}

.booking-search-widget .events-card-booking-form input:hover {
    background: #fafafa;
}

.booking-search-widget .events-card-booking-form input:focus {
    background: #ffffff;

    border-color: rgba(255, 255, 255, 0.5);

    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.booking-search-widget .events-card-booking-input-icon {
    position: absolute;
    z-index: 2;

    top: 50%;
    left: 12px;

    width: 13px;
    height: 13px;

    transform: translateY(-50%);

    pointer-events: none;

    background-image: url("data:image/svg+xml,%3Csvg width='13' height='13' viewBox='0 0 13 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='5.7' cy='5.7' r='3.9' stroke='%23C5C5C5' stroke-width='1.2'/%3E%3Cpath d='M8.6 8.6L11.5 11.5' stroke='%23C5C5C5' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.booking-search-widget .events-card-booking-form .events-card-booking-submit {
    position: relative;

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 82px;
    height: 30px;

    padding: 0 16px;
    margin: 0;

    box-sizing: border-box;

    border: 0;
    border-radius: 999px;

    background: var(--booking-blue);
    color: #ffffff;

    font-family: inherit;
    font-size: 10px;
    font-weight: 600;

    line-height: 1;
    letter-spacing: 0.1px;

    text-transform: uppercase;

    cursor: pointer;

    box-shadow: none;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.booking-search-widget .events-card-booking-form .events-card-booking-submit:hover {
    background: var(--booking-blue-hover);

    transform: translateY(-1px);

    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
}

.booking-search-widget .events-card-booking-form .events-card-booking-submit:active {
    transform: translateY(0);
    box-shadow: none;
}

.booking-search-widget .events-card-booking-form .events-card-booking-submit:focus-visible {
    outline: none;

    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.booking-search-widget .events-card-booking-submit-text {
    position: static;

    width: auto;
    height: auto;

    padding: 0;
    margin: 0;

    overflow: visible;

    clip: auto;

    white-space: nowrap;

    border: 0;
}

.booking-search-widget .events-card-booking-error {
    width: auto !important;

    margin: 0 0 8px;

    color: #ffbaba;

    font-size: 10px;
    line-height: 1.3;

    text-align: center;
}

@media (max-width: 795px) {
    .booking-search-widget {
        padding: 28px 0;
    }

    .booking-search-widget .events-card-booking-toolbar {
        width: calc(100% - 32px);

        min-height: 138px;

        padding: 18px 24px;
        border-radius: 20px;
    }

    .booking-search-widget .events-card-booking-title {
        font-size: 20px;
    }

    .booking-search-widget .events-card-booking-subtitle {
        max-width: 520px;
        font-size: 10px;
    }

    .booking-search-widget .events-card-booking-form {
        width: min(398px, 100%);
    }
}

@media (max-width: 520px) {
    .booking-search-widget {
        padding: 20px 0;
    }

    .booking-search-widget .events-card-booking-toolbar {
        width: calc(100% - 24px);

        min-height: auto;

        padding: 20px 18px 21px;

        border-radius: 18px;
    }

    .booking-search-widget .events-card-booking-eyebrow {
        margin-bottom: 6px;

        font-size: 9px;
        letter-spacing: 2.1px;
    }

    .booking-search-widget .events-card-booking-title {
        margin-bottom: 6px;
        font-size: 19px;
    }

    .booking-search-widget .events-card-booking-subtitle {
        max-width: 340px;

        margin-bottom: 13px;

        font-size: 10px;
        line-height: 1.4;
    }

    .booking-search-widget .events-card-booking-form {
        display: flex;

        width: 100%;

        gap: 8px;
    }

    .booking-search-widget .events-card-booking-form input {
        height: 34px;

        font-size: 11px;
    }

    .booking-search-widget .events-card-booking-form .events-card-booking-submit {
        width: 76px;
        height: 34px;

        font-size: 10px;
    }
}

@media (max-width: 360px) {
    .booking-search-widget .events-card-booking-toolbar {
        padding-left: 14px;
        padding-right: 14px;
    }

    .booking-search-widget .events-card-booking-form {
        gap: 6px;
    }

    .booking-search-widget .events-card-booking-form .events-card-booking-submit {
        width: 70px;
        padding-left: 10px;
        padding-right: 10px;
    }
}
