<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#hotel__form .loader ,
#vacation__form .loader {
    position: relative;
}

#hotel__form .loading:before ,
#vacation__form .loading:before {
    background: rgba(255,255,255,.75);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

#hotel__form .hname {
    width: 100%;
}

#hotel__form .hname input {
    max-width: calc(50% - 15px);
    width: 100%;
}
#hotel__form.vertical .hname input {
    max-width: 100%;
}

#hotel__form .hname div {
    align-items: center;
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

#hotel__form .hname div:after {
    border-top: 1px solid var(--form_border_color);
    content: '';
    display: block;
    flex: 1;
}

#hotel__form div[data-lastpass-icon-root] {
    display: none;
}

@media (max-width: 1200px) {
    #hotel__form .hname input {
        max-width: 100%;
    }
}

.api-get {
    position: relative;
}
.api-get:before {
    background: rgba(255,255,255,.7);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10;
}

.check-availability label {
    display: block;
}

#map_panel #map {
    height: 100%;
    min-height: 400px;
    margin: 2rem 0;
}

#map_panel #map #content {
    width: 100%;
}

#map_panel #map #content h3 {
    margin: 10px 0;
}

/* Autocomplete things */
.ui-autocomplete-loading {
    background: white url("/wp-includes/images/spinner.gif") right center no-repeat;
}
.ui-autocomplete {
    border: 1px solid #ddd;
    display: block;
    list-style: none;
    margin: 0;
    outline: 0;
    padding: 0;
    position: absolute;
    z-index: 1000;
    background: #fff;
    border-radius: 0 6px 6px 6px;
}

.match-hl, .match-hl.ui-state-active {
    padding: 0 !important; font-weight: bold;
}
.ui-autocomplete .ui-menu-item {
    border-bottom:  1px solid #ddd;
    color: #222;
    cursor: pointer;
    padding: .2rem .5rem
}
.ui-autocomplete .ui-menu-item:first-child {
    padding-top: .5rem;
}
.ui-autocomplete .ui-menu-item:last-child {
    border-bottom:  0;
    padding-bottom: .5rem;
}
.ui-autocomplete .ui-menu-item:hover {
    background: #ddd;
}</pre></body></html>