<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.smp-searchbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 16px;
}

.smp-tabs.tabs {
    display: flex;
    flex-direction: row;
    width: auto;
    margin: 0;
    box-shadow: 0 2px 8px 0 var(--smp-shadow);
    clip-path: inset(-8px -8px 0px -8px);
    -webkit-clip-path: inset(-8px -8px 0px -8px);
}

.smp-tabs.tabs .tab {
    text-transform: unset;
}

.smp-tabs.tabs .tab a {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    padding: 12px;
    margin: 0;
    color: var(--smp-grey-500);
    background: var(--smp-grey-50);
}

.smp-tabs.tabs .tab a.active, .smp-tabs.tabs .tab a:focus, .smp-tabs.tabs .tab a.active:focus, .smp-tabs.tabs .tab a.active:hover {
    color: var(--smp-primary-color);
    background-color: var(--smp-white);
}
.smp-tabs.tabs .tab a:hover {
    color: var(--smp-grey-500);
    background: var(--smp-grey-100);
}


.smp-tabs.tabs .indicator {
    display: none;
}

.smp-search-field {
    padding: 12px;
    box-shadow: 0 2px 8px 0 var(--smp-shadow);
    background: var(--smp-white);
    width: 100%;
}

.smp-search-field form {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
}

.smp-search-field__input {
    flex-grow: 1;
    position: relative;
}

.smp-search-field .smp-search-field__input input[type=text] {
    margin: 0;
    border: none;
}

.smp-search-field__input input[type=text]::placeholder {
    color: var(--smp-grey-500);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;

}

.autocompletetable {
    position:absolute;
    padding:0 !important;
    border-radius: 0px 2px 2px 2px;
    box-shadow: 0 2px 28px 0 rgba(0,0,0,0.12);
    z-index: 10000 !important;
    cursor: pointer;
    width: 100%;

}

#form-city:focus ~ .city-autocompleted, .city-autocompleted:hover {
    display: flex !important;
}


.city-autocompleted {
    display: none;
    flex-direction: column;
    position: absolute;
    z-index: 1;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 1px 10px rgb(0 0 0 / 20%), 0 2px 4px 0 rgb(0 0 0 / 10%);
    border-radius: 3px;
    margin-top: 3px;
    overflow: hidden;
}

.city-autocompleted &gt; a {
    cursor: pointer;
    color: #000000;
    height: 46px;
    line-height: 46px;
    padding-left: 18px;
    overflow: hidden;
    text-transform: capitalize;
}
.city-autocompleted &gt; a &gt; em {
    font-weight: bold;
    font-style: normal;
}

.city-autocompleted &gt; a &gt; span {
    font-size: smaller;
    margin-left: 12px;
    color: #aaaaaa;
}

.city-autocompleted &gt; a:hover {
    background: #ececec;
}

.smp-search-field__action__text {
    display: none;
}

@media only screen and (min-width: 576px) {
    .smp-search-field__action__text {
        display: inline-block;
    }
}

@media screen and (min-width: 768px) {
    .smp-searchbar {
        padding: 0;
    }
}</pre></body></html>