<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*&lt;editor-fold desc="votes-section-intro"&gt;*/
.votes-section-intro {
    padding-bottom: 15px;
}
.votes-section-intro__container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}
@media screen and (min-width: 360px) {
    .votes-section-intro__container {
        max-width: 326px;
        padding: 0;
    }
}
@media screen and (min-width: 576px) {
    .votes-section-intro__container {
        max-width: 500px;
    }
}
@media screen and (min-width: 768px) {
    .votes-section-intro__container {
        max-width: 676px;
    }
}
@media screen and (min-width: 1024px) {
    .votes-section-intro__container {
        max-width: 792px;
    }
}
@media screen and (min-width: 1280px) {
    .votes-section-intro__container {
        max-width: 1200px;
    }
}
/*.votes-section-intro__inner {*/
/*    background-color: #F9F9F9;*/
/*    padding: 25px;*/
/*    border-radius: 18px;*/
/*}*/
.votes-section-intro__image-wrapper {
    /*display: flex;*/
    display: none;
    align-items: center;
    justify-content: center;
    margin-bottom: 29px;
}
.votes-section-intro__image-container {
    width: 143px;
    height: 99px;
    position: relative;
}
.votes-section-intro__image-container::before, .votes-section-intro__image-container::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 1px;
    background-color: #E31E24;
    top: 50%;
}
.votes-section-intro__image-container::before {
    left: -71px;
}
.votes-section-intro__image-container::after {
    right: -71px;
}
.votes-section-intro__image {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.votes-section-intro__title {
    font-family: "Gotham Pro", sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #E31E24;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4px;
    padding-top: 0 !important;
}
.votes-section-intro__subtitle {
    font-family: "Gotham Pro", sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #A5A5A5;
    text-align: center;
    margin-bottom: 8px;
}
.votes-section-intro__info {
    font-family: "Gotham Pro", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}
.votes-section-intro__info span {
    color: #E31E24;
}

@media screen and (min-width: 768px) {
    .votes-section-intro__info {
        max-width: 100%;
    }
}
/*&lt;/editor-fold&gt;*/
/*&lt;editor-fold desc="filter"&gt;*/
.filter {
    position: relative;
}
.filter_nominations .filter__option {
    padding-left: 48px;
    position: relative;
}
.filter_nominations .filter__option::before {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 22px;
    top: 10px;
    left: 10px;
    background: url("images/icon_cup_empty.svg") center/contain no-repeat;
}
.filter_nominations .filter__option_chosen::before {
    background: url("images/icon_cup_plain.svg") center/contain no-repeat;
}
.filter_nominations .filter__option_no-worthy::before {
    background: url("images/icon_cup_crossed.svg") center/contain no-repeat;
}
.filter__header {
    display: flex;
    align-items: center;
    width: -moz-max-content;
    width: max-content;
    cursor: pointer;
    height: 34px;
}
.filter__title {
    font-family: "Gotham Pro", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #A5A5A5;
    pointer-events: none;
}
.filter__dropdown {
    max-height: 400px;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 100%;
    background-color: #FFFFFF;
    padding-bottom: 20px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s linear 0.3s, opacity 0.3s;
    z-index: 997;
    pointer-events: none;
}
.filter__dropdown.active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
    pointer-events: auto;
}
.filter__current {
    font-family: "Gotham Pro", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    position: relative;
    padding: 8px 24px 8px 12px;
    pointer-events: none;
}
.filter__current::after {
    content: "";
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    top: calc(50% + 2px);
    right: 0;
    transform: translateY(-50%);
    background: url("images/icon_arrow_down_red.svg") center/contain no-repeat;
}
.filter__option {
    padding: 10px;
}

@media screen and (min-width: 576px) {
    .filter__dropdown {
        min-width: 355px;
    }
}
@media screen and (min-width: 768px) {
    .filter {
        max-width: 355px;
    }
}
/*&lt;/editor-fold&gt;*/
/*&lt;editor-fold desc="tooltip"&gt;*/
.tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    z-index: 10;
    pointer-events: none;
    background-color: #F9F9F9;
    border-radius: 8px;
    padding: 4px 8px;
    width: -moz-max-content;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.tooltip__text {
    display: block;
    font-family: "Gotham Pro", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #000000;
}
/*&lt;/editor-fold&gt;*/
/*&lt;editor-fold desc="input"&gt;*/
.input-field_radio label {
    cursor: pointer;
}
.input-field_radio {
    position: relative;
}
.input-field_checkbox {
    width: 24px;
    height: 24px;
}
.input-field__input_radio {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    visibility: hidden;
}
.input-field__input_radio:checked ~ label {
    color: #E31E24;
}
.input-field__input_checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
}
.input-field__input_checkbox:checked ~ .input-field__checkbox-point {
    border-color: #E31E24;
    background: url("../../images/icons/icon_tick_white.svg") center/18px 12px no-repeat, #E31E24;
}
.input-field__label_radio {
    font-family: "Gotham Pro", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    line-height: 22px;
    display: block;
    transition: color 0.3s;
}
.input-field__label_radio:hover {
    color: #E31E24;
}
.input-field__checkbox-point {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background: url("../../images/icons/icon_tick_white.svg") center/18px 12px no-repeat, #FFFFFF;
    border: 1px solid #CCCCCC;
    transition: all 0.3s;
}
/*&lt;/editor-fold&gt;*/</pre></body></html>