<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">select.custom-select.hidden {
    display: none;
}
      
      
.custom-select {
    display: inline-block;
    position: relative;
    font-family: var(--font-family-2);
	font-size: 10px;
	color: var(--darkblue);
	letter-spacing: .15em;
	text-transform: uppercase;
    line-height: 1.4;
    width: 100%;
    z-index: 1;
    transition: z-index 0s .2s;
}
.custom-select:focus,
.custom-select *:focus {
    outline: none;
    border: none;
    box-shadow: none;
}
.custom-select.open {
    z-index: 2;
    transition: none;
}
.select-wrapper.darkblue .custom-select {
    color: white;
}

.custom-select .placeholder {
    position: relative;
	padding: 18px 20px;
	background-color: var(--white);
	border: none;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    resize: none;
    transition: var(--transition);
}
main .banner.bg-grey .listing-search .custom-select .placeholder {
	background-color: white;
}
main .banner .listing-search .select-wrapper.darkblue .custom-select .placeholder {
    background-color: var(--darkblue);
}
.custom-select .placeholder.has-img {
    padding-left: 35px;
}
.custom-select.not-filled + .custom-select .placeholder {
    border-bottom-color: var(--warning);
}

.custom-select:not(.has-reset) .placeholder::before {
    content: "";
	position: absolute;
	top: 0;bottom: 0;
	right: 20px;
	margin: auto;
	width: 13px;
	height: 9px;
	background-color: var(--darkblue);
	mask-image: url(/assets/img/arrow-sm.svg);
	-webkit-mask-image: url(/assets/img/arrow-sm.svg);
	mask-position: center;
	-webkit-mask-position: center;
	transform: rotate(90deg);
	pointer-events: none;
}
.custom-select .placeholder::after { /* HIDE OVERFLOWING TEXT */
    content: "";
    position: absolute;
    top: 0;bottom: 0;
    right: 0;
    width: 35px;
    height: 25px;
    margin: auto;
    background-color: inherit;
    pointer-events: none;
}

.custom-select.has-reset .placeholder &gt; div.reset {
	position: absolute;
	top: 0;bottom: 0;
	right: 20px;
	margin: auto;
	width: 13px;
	height: 9px;
	background-color: var(--darkblue);
	mask-image: url(/assets/img/arrow-sm.svg);
	-webkit-mask-image: url(/assets/img/arrow-sm.svg);
	mask-position: center;
	-webkit-mask-position: center;
	transform: rotate(90deg);
	pointer-events: none;
    z-index: 1;
}
.select-wrapper.darkblue .custom-select .placeholder &gt; div.reset {
    background-color: white;
}
.custom-select.has-reset.is-selected .placeholder &gt; div.reset {
    top: 0;
    pointer-events: auto;
    mask-image: none;
	-webkit-mask-image: none;
    background-color: transparent;
}

.custom-select.has-reset .placeholder &gt; div.reset::before,
.custom-select.has-reset .placeholder &gt; div.reset::after {
    content: "";
    position: absolute;
    top: 0;bottom: 0;
    left: 0;
    margin: auto;
    width: 12px;height: 1px;
    background-color: var(--darkblue);
    opacity: 0;
}
.select-wrapper.darkblue .custom-select .placeholder &gt; div.reset::before,
.select-wrapper.darkblue .custom-select .placeholder &gt; div.reset::after {
    background-color: white;
}
.custom-select.has-reset.is-selected .placeholder &gt; div.reset::before,
.custom-select.has-reset.is-selected .placeholder &gt; div.reset::after {
    opacity: 1;
}

.custom-select.has-reset .placeholder &gt; div.reset::before {
    transform: rotate(45deg);
}
.custom-select.has-reset .placeholder &gt; div.reset::after {
    transform: rotate(-45deg);
}

.custom-select .placeholder.has-img span {
    position: absolute;
    top: 0;bottom: 0;
    left: 0;
    margin: auto !important;
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: cover;
}

.custom-select .options-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    max-height: 0;
    transition: var(--transition);
    overflow: hidden;
    background-color: white;
    padding-right: 10px;
    border-left: 1px solid var(--white);
    border-right: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    opacity: 0;
    z-index: 2;
}
.select-wrapper.darkblue .custom-select .options-wrapper {
    background-color: var(--darkblue);
    border-color: var(--darkblue);
}
.custom-select.open .options-wrapper,
.custom-select.open .options {
    max-height: 250px;
    opacity: 1;
}

.custom-select .options {
    padding: 10px 0;
    overflow: auto;
    position: relative;
}
.custom-select .options::-webkit-scrollbar-track {
    background-color: transparent;
    margin: 15px 0;
}
.custom-select .options::-webkit-scrollbar {
    width: 2px;
    background-color: transparent;
}
.custom-select .options::-webkit-scrollbar-thumb {
    background-color: #d0d1d1;
}

.custom-select .options &gt; div {
    position: relative;
    padding: 5px 10px;
    transition: var(--transition);
    cursor: pointer;
    color: #888787;
}
.custom-select .options &gt; div.selected,
.custom-select .options &gt; div:hover {
    color: var(--black);
}
.custom-select .options &gt; div.disabled {
    opacity: .5;
    pointer-events: none;
}
.custom-select .options &gt; div[data-value=""] {
    display: none;
}

.select-wrapper.darkblue .custom-select .options &gt; div {
    color: rgba(255, 255, 255, .7);
}
.select-wrapper.darkblue .custom-select .options &gt; div.selected,
.select-wrapper.darkblue .custom-select .options &gt; div:hover {
    color: white;
}

.custom-select .options &gt; div.has-img {
    padding-left: 40px;
    padding-top: 8px;
    padding-bottom: 8px;
}
.custom-select .options &gt; div.has-img span {
    position: absolute;
    top: 0;bottom: 0;
    left: 10px;
    margin: auto;
    width: 20px;
    height: 20px;
    background-position: center;
    background-size: cover;
}
.custom-select .options &gt; div.has-img span::before {
    content: "";
    position: absolute;
    top: -3px;bottom: -3px;
    left: -3px;right: -3px;
    border: 1px solid transparent;
    transition: var(--transition);
    pointer-events: none;
}
.custom-select .options &gt; div.has-img.selected span::before {
    border-color: var(--black)
}


@media(min-width: 768px) {
    .custom-select .options &gt; div {
        padding: 5px 20px;
    }

    .custom-select .options &gt; div.has-img {
        padding-left: 55px;
    }
    .custom-select .options &gt; div.has-img span {
        left: 20px;
    }
    
}</pre></body></html>