<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* c-search
------------------------------------------------------------------- */

.c-search {
    position: relative;
    max-width: 80rem;
    margin: 0 auto 1rem 0;
    -ms-flex: 1;
    flex: 1;
}

.c-search__container {
    position: relative;
}



.c-search__form {
    display: flex;
    width: 100%;
    border: 1px solid transparent;
    background: #ffffff44;
    border-radius: 5px;
    padding: 1rem 10rem 1rem 2rem;
    font-size: 1.3rem;
    line-height: 2.4rem;
    font-weight: 400;
    height: 4.6rem;
    color: var(--secondary-text-color);
    transition: background 0.25s, border-color 0.25s;
}

.c-search input[type="search"] {
    display: flex;
    color: var(--secondary-text-color);
    font-weight: 400;
    height: 100%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
    background: none;
}

.c-search input::-webkit-input-placeholder {
   color: var(--secondary-text-color);
   opacity: 0.6;
}

.c-search input::-moz-placeholder {
    color: var(--secondary-text-color);
    opacity: 0.6;
}

.c-search input:-ms-input-placeholder {
    color: var(--secondary-text-color);
    opacity: 0.6;
}

.c-search input::-ms-input-placeholder {
    color: var(--secondary-text-color);
    opacity: 0.6;
}

.c-search input::placeholder {
    color: var(--secondary-text-color);
    opacity: 0.6;
}

.c-search__button {
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 9rem;
    height: 3.8rem;
    position: absolute;
    top: 50%;
    right: 0.4rem;
    margin: -1.9rem 0 0;
    border-radius: 5px;
    background: var(--accent-color);
    color: var(--secondary-text-color);
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.c-search__button:hover {
    background: var(--main-background-color);
    color: var(--main-text-color);
}

.c-search__icon {
    max-height: 100%;
    max-width: 100%;
    fill: var(--main-text-color);
    display: none;
}

.c-search__dropdown {
    position: absolute;
    z-index: 99;
    top: calc(100% + 15px);
    left: 0;
    width: 100%;
    min-width: 400px;
    max-height: 35rem;
    background: #fff;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
    border-radius: 5px;
}

.fastResult {
    max-height: 35rem;
    overflow: auto;
}

.c-search__dropdown ul {
    overflow: auto;
    max-height: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 300px;
}

.c-search__dropdown li {
    border-bottom: 1px solid var(--border-color);
}

.c-search__dropdown .fast-result-img {
    position: relative;
    min-width: 60px;
    max-width: 60px;
    height: 100%;
    margin-right: 16px;
}

.c-search__dropdown .fast-result-img img {
    max-width: 100%;
    object-fit: cover;
    margin: auto;
}

.c-search__dropdown .fast-result-info {
    transition: all 0.4s ease-in-out;
    color: var(--main-text-color);
}
.c-search__dropdown li:hover .fast-result-info { 
    color: var(--accent-color);
}

.c-search__dropdown .fast-result-info span {
    font-size: 12px;
    font-weight: 500;
    display: block;
    width: 100%;
    color: #cd4449;
}

.c-search__dropdown .fast-result-info span.variant-text {
    font-weight: 400;
    color: #666;
}

.search-item__right {
    display: flex;
    align-items: center;
}</pre></body></html>