#searchForm {
    position: absolute;
    width: 100%;
    bottom: 48px;
    z-index: 2;
}

.search_box {
    width: 66%;
    padding: 20px 20px;
    border-radius: 16px;
    background: rgba(27, 27, 27, 0.25);
    backdrop-filter: blur(8px);
    margin: 0 auto;
}

.search_box .advantages {
    width: 100%;
    margin-bottom: 12px;
    border-radius: 16px;
    border: 1px solid rgba(27, 27, 27, 0.05);
    background: rgba(27, 27, 27, 0.15);
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    padding: 4px 12px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}

.search_box .items {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
}

.search_box .items.first {
    width: 24%;
    justify-content: start;
    text-transform: uppercase;
    font-style: italic;
}

.search_box .items.first p {
    font-size: 12px;
}

.search_box .items.first span:nth-child(1),
.search_box .items.first span:nth-child(even) {
    font-weight: bold;
    font-size: 16px;
}

.search_box .items.first span:nth-child(1) {
    color: #ffcf57;
}

.search_box .items.first span:nth-child(even) {
    color: #41cacf;
}

.search_box .items .icon {
    display: flex;
    width: max-content;
    align-items: center;
    margin-right: 5px;
    border: 0 solid #ffffff;
    border-radius: 100%;
}

.search_box .items .icon img {
    width: 33px;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

.search_box .items p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1px;
}

.search_box .search {
    width: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.search_box .field {
    width: 25%;
    display: flex;
    max-height: 40px;
    padding: 12px 16px 12px 12px;
    align-items: center;
    gap: 12px;
    flex: 1 0 0;
    border-radius: var(--Radius-sm, 8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.00);
    color: #fff;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
}

.search_box .field.destination-searcher-container::after,
.search_box .field.dates::after,
.search_box .field.guests::after,
.search_box .field.promocode-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    width: 20px;
    height: 20px;
    background-size: contain;
    filter: brightness(0) invert(1);
}

.search_box .field.destination-searcher-container::after {
    background-image: url('../../../images/icons/search.svg');
}

.search_box .field.dates::after {
    background-image: url('../../../images/icons/calendar.svg');
}

.search_box .field.guests::after {
    background-image: url('../../../images/icons/people.svg');
}

.search_box .field.promocode-container::after {
    background-image: url('../../../images/icons/promo-code.svg');
}

.search_box .field .form-control {
    color: #fff !important;
    height: 30px;
    letter-spacing: 1px;
    padding: 0 5px;
    padding-left: 32px;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: right 5px center;
    font-size: 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.search_box .field .form-control::placeholder {
    color: #fff !important;
}

.search_box .field .form-control:hover,
.search_box .field:hover .form-control {
    color: black !important;
}

.search_box .field:hover {
    background-color: white;
}

.search_box .field:hover .form-control::placeholder,
.search_box .field:hover #guestsFake {
    color: black !important;
}

.search_box .field:hover::after {
    filter: brightness(0) saturate(100%);
}

.search_box .field .form-control option {
    color: #000;
}

.search_box .field #dateinout {
    background-image: url(../../images/design/date_icon.png);
    background-size: 16px;
}

.search_box .field:has(.btn-book) {
    border: 0px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-left: 0;
    padding-right: 0;
    border-right: none;
}

.search_box .btn-book {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 12px;
    font-weight: bold;
}


@media (max-width: 1340px) {
    .search_box {
        width: 80%;
    }
}

@media screen and (max-width: 992px) {
    #innerBanner:not(:has(.claim--hotel)) #searchForm {
        top: 25%;
        bottom: unset;
    }

    #searchForm {
        width: 90%;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 25%);
        border: 1px solid #97999B;
        border-radius: 16px;
    }

    .search_box {
        background: #fff;
        width: 100%;
        padding: 14px;
    }

    .search_box .search {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .search_box .mobile-best-price-mask {
        display: none;
    }

    .search_box .field {
        width: 100%;
        height: 48px;
        border: 1px solid #97999B;
        border-radius: 57px;
        font-weight: bold;
    }

    .search_box .field.destination-searcher-container::after,
    .search_box .field.dates::after,
    .search_box .field.guests::after,
    .search_box .field.promocode-container::after {
        filter: none;
        filter: brightness(0) saturate(100%) invert(65%) sepia(7%) saturate(97%) hue-rotate(169deg) brightness(94%) contrast(86%);
    }

    .search_box .field .form-control,
    .search_box .field .date-mobile-container__date__label {
        color: #000;
        width: 100%;
    }

    .search_box .field .form-control {
        width: 100%;
        height: 100%;
        border: 0;
        padding-left: 24px;
    }

    .search_box .field .form-control::placeholder,
    .form-control .guestsFake::placeholder {
        color: black;
        font-weight: bold;
    }

    .search_box .btn-book {
        text-transform: uppercase;
        height: 45px;
        font-size: 16px;
    }

    .search_box .field .form-control {
        color: black !important;
        font-weight: bold;
        height: 30px;
        padding: 0 5px;
        padding-left: 32px;
        border: none;
        background-color: transparent;
        background-repeat: no-repeat;
        background-position: right 5px center;
        font-size: 14px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .search_box .field .form-control::placeholder,
    .search_box .field .form-control:hover {
        color: black !important;
    }
}

/********* POP-UPS ********/
.search_box .destination-searcher-container {
    position: relative;
}

.search_box .destination-pop-up {
    position: absolute;
    bottom: 32px;
    display: block;
    background-color: #fff;
    padding: 16px;
    width: 350px;
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #2CCCD3 white;
}

.search_box .destination-pop-up::-webkit-scrollbar {
    width: 6px;
}

.search_box .destination-pop-up::-webkit-scrollbar-track {
    background: white;
    border-radius: 3px;
}

.search_box .destination-pop-up::-webkit-scrollbar-thumb {
    background-color: #2CCCD3;
    border-radius: 3px;
}

.search_box .destination-pop-up.hidden {
    display: none;
}

.search_box .destination-pop-up ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.search_box .destination-pop-up li {
    color: #000;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: normal;
}

.search_box .destination-pop-up li.zone {
    font-weight: bold;
    color: #2CCCD3;
}

.search_box .destination-pop-up li.subzone {
    padding-left: 8px;
    color: #2CCCD3;
}

.search_box .destination-pop-up li.hotel {
    padding-left: 16px;
}

.search_box .destination-pop-up li.hotel.selected {
    background-color: #2CCCD3;
    color: #fff;
    font-weight: 600;
    padding: 4px 4px 4px 16px;
    border-radius: 4px;
}

.search_box .destination-pop-up li.hotel.selected::before {
    content: "✓ ";
    margin-right: 4px;
}

@media (max-width: 992px) {
    .search_box .destination-pop-up {
        z-index: 200;
        position: fixed;
        top: 0;
        left: 0;
        bottom: auto;
        right: auto;
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }
}

@media (max-width: 1400px) and (min-width: 992px) {
    .search_box .items.first p {
        font-size: 8px;
    }

    .search_box .items p {
        font-size: 12px;
        line-height: 15px;
    }

    .search_box .items.first span:nth-child(1),
    .search_box .items.first span:nth-child(even) {
        font-weight: bold;
        font-size: 10px;
    }
}