@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@100..900&display=swap");

.s-hero {
    background-color: #E20515;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.s-hero > img,
.s-hero > picture {
    width: 170%;
    max-width: 170%;
    min-height: 260px;
    min-height: 81.46vw;
}

@media all and (min-width: 768px) {
    .s-hero > img,
    .s-hero > picture {
        width: 150%;
        max-width: 150%;
        min-height: 71.875vw;
    }
}

@media all and (min-width: 1024px) {
    .s-hero > img,
    .s-hero > picture {
        width: 100%;
        max-width: 1920px;
        min-height: 0;
    }
}

.s-hero p {
    padding: 0 15px;
    bottom: 0;
    max-width: 800px;
    font-family: "Roboto Condensed", sans-serif;
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    margin: 0 0 5px;
    line-height: 1.2;
    position: relative;
}

@media all and (min-width: 768px) {
    .s-hero p {
        position: absolute;
        padding: 0 30px;
        margin: 0 0 25px;
    }
}

@media all and (min-width: 1024px) {
    .s-hero p {
        margin: 0 0 20px;
    }
}

@media all and (min-width: 1280px) {
    .s-hero p {
        padding: 0;
        margin: 0 0 20px;
        font-size: 20px;
        text-wrap: balance;
    }
}

.s-hero p::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 20px;
    background-color: #E20515;
    background-image: linear-gradient(180deg, rgba(226, 5, 21, 0) 0%, #E20515 100%);
}

@media all and (min-width: 768px) {
    .s-hero p::before {
        display: none;
    }
}

.s-voting {
    background-color: #E20515;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Roboto Condensed", sans-serif;
}

.s-voting__title {
    font-family: "tallicamedium";
    color: #000;
    text-transform: uppercase;
    line-height: 1.8;
    font-size: 32px;
    font-weight: normal;
    letter-spacing: 0.8px;
    display: flex;
    gap: 0 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0;
    padding: 0 20px 30px;
    background-image: url(../images/s2024-arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
}

@media all and (min-width: 768px) {
    .s-voting__title {
        margin: 50px 0 30px;
    }
}

.s-voting__title span {
    transform: skew(-18deg, 0);
}

.s-voting__title span span {
    color: #fff;
}

.s-voting__columns {
    width: calc(100% - 30px);
    max-width: 1260px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 20px;
}

@media all and (min-width: 768px) {
    .s-voting__columns {
        width: calc(100% - 60px);
        grid-template-columns: 1fr 1fr;
        gap: 30px 12px;
    }
}

@media all and (min-width: 1280px) {
    .s-voting__columns {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 12px;
    }
}

.s-voting__col.voted .s-voting__col__nominees__item label {
    cursor: default;
}

.s-voting__col.voted .s-voting__col__nominees__item label input {
    display: none;
}

.s-voting__col.voted .s-voting__col__nominees__item .s-progress-bar {
    display: flex;
}

.s-voting__col.voted .s-vote-button {
    display: none;
}

.s-voting__col__title {
    text-align: center;
    font-family: "tallicamedium";
    color: #fff;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 0.25px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.75;
    margin-bottom: 15px;
}

.s-voting__col__title::before, .s-voting__col__title::after {
    content: "";
    display: block;
    width: 44px;
    height: 82px;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    background-size: 44px;
}

.s-voting__col__title::before {
    background-image: url(../images/s2024-laur-stanga.svg);
    margin-right: -5px;
}

.s-voting__col__title::after {
    background-image: url(../images/s2024-laur-dreapta.svg);
    margin-left: -5px;
}

.s-voting__col__title span {
    padding-top: 5px;
}

.s-voting__col__nominees {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.s-voting__col__nominees__item {
    border-bottom: 1px solid #D5D7D7;
}

.s-voting__col__nominees__item label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0;
    cursor: pointer;
}

.s-voting__col__nominees__item label input {
    margin-top: -2px;
}

.s-voting__col__nominees__item label div {
    line-height: 1.2;
}

.s-voting__col__nominees__item label span {
    font-size: 14px;
    display: inline-block;
}

.s-voting__col__nominees__item .s-progress-bar {
    margin-top: -5px;
    margin-bottom: 15px;
    display: none;
}

.s-voting__col__nominees__item:last-child, .s-voting__col__nominees__item:nth-last-child(2) {
    border-bottom: none;
}

.s-progress-bar {
    width: 100%;
    background-color: #D5D7D7;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    overflow: hidden;
}

.s-progress-bar__graph {
    height: 25px;
    background-color: #E20515;
    background-image: linear-gradient(180deg, #FF6C00 0%, #EB003C 100%);
}

.s-progress-bar__value {
    font-size: 16px;
    font-weight: 500;
    padding-top: 2px;
    letter-spacing: -0.5px;
}

.s-vote-button {
    background-color: #000;
    width: 100%;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    font-family: "Roboto Condensed", sans-serif;
    padding-top: 14px;
    background-image: linear-gradient(180deg, #FF6C00 0%, #EB003C 100%);
}

.s-vote-button:hover {
    background-image: linear-gradient(180deg, #EB003C 0%, #FF6C00 100%);
}

.s-winners-show {
    background-color: #000;
    font-family: "Roboto Condensed", sans-serif;
    text-transform: none;
    letter-spacing: 0;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    padding-top: 16px;
    padding-bottom: 16px;
    width: calc(100% - 30px);
    max-width: 1260px;
}

@media all and (min-width: 768px) {
    .s-winners-show {
        width: calc(100% - 60px);
    }
}

.s-winners {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #E20515;
    padding-top: 20px;
    padding-bottom: 40px;
}

.s-winners .s-voting__columns {
    margin-top: 30px;
    display: none;
    padding-bottom: 0;
}

.s-winners .s-voting__col__nominees {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    box-shadow: none;
}

.s-winners .s-voting__col__nominees__item {
    border-bottom: 1px solid rgba(213, 215, 215, 0.25);
}

.s-winners .s-voting__col__nominees__item label {
    padding-top: 13px;
    cursor: default;
}

.s-winners .s-voting__col__nominees__item:nth-last-child(2) {
    border-bottom: 1px solid rgba(213, 215, 215, 0.25);
}

.s-winners .s-voting__col__nominees__item:last-child {
    border-bottom: none;
}

.s-winners--active .s-voting__columns {
    display: grid;
}

.s-prizes {
    background-color: #E20515;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    font-family: "Roboto Condensed", sans-serif;

    background-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 50%);
    background-size: 3000px 3000px;
    background-position: center calc(100% - 1500px);
}

.s-prizes > * {
    position: relative;
    z-index: 1;
}

.s-prizes .s-voting__title {
    color: #fff;
}

.s-prizes .s-winners-show {
    background-color: #E20515;
    background-image: linear-gradient(180deg, #FF6C00 0%, #EB003C 100%);
    box-shadow: 0 3px 10px #000;
    margin-bottom: 30px;
    max-width: 800px;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

@media all and (min-width: 768px) {
    .s-prizes .s-winners-show {
        margin-bottom: 50px;
    }
}

.s-prizes .s-winners-show:hover {
    background-image: linear-gradient(180deg, #EB003C 0%, #FF6C00 100%);
}

.s-prizes__listing {
    width: calc(100% - 30px);
    max-width: 1260px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-bottom: 50px;
}

@media all and (min-width: 768px) {
    .s-prizes__listing {
        width: calc(100% - 60px);
    }
}

@media all and (min-width: 1024px) {
    .s-prizes__listing {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media all and (min-width: 1280px) {
    .s-prizes__listing {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}

.s-prize {
    background-color: rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    position: relative;
}

.s-prize::before {
    content: "";
    display: block;
    position: absolute;
    top: -30px;
    background-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
    width: 500px;
    height: 500px;
    z-index: 0;
}

.s-prize > * {
    position: relative;
    z-index: 2;
}

.s-prize__no {
    font-family: "tallicamedium";
    line-height: 1.8;
    font-size: 32px;
    font-weight: normal;
    letter-spacing: 0.8px;
    transform: skew(-18deg, 0);
    margin-bottom: -15px;
}

.s-prize__img {
    width: 100%;
}

.s-prize__img img {
    width: 100%;
}

.s-prize__title {
    font-size: 20px;
    font-weight: 450;
    line-height: 1.2;
    text-align: center;
    padding: 0 15px;
    text-wrap: balance;
}

.s-prize--main {
    grid-column: 1/-1;
    padding-top: 40px;
}

.s-prize--main::before {
    top: auto;
    bottom: -750px;
    width: 1500px;
    height: 1500px;
}

.s-prize--main .s-prize__img {
    position: relative;
    width: 150%;
    padding-top: 40px;
}

@media all and (min-width: 768px) {
    .s-prize--main .s-prize__img {
        padding-top: 50px;
    }
}

@media all and (min-width: 1024px) {
    .s-prize--main .s-prize__img {
        width: 100%;
        padding-top: 0;
    }
}

@media all and (min-width: 1280px) {
    .s-prize--main .s-prize__img {
        width: 75%;
    }
}

.s-prize--main .s-prize__img .s-prize__no {
    position: absolute;
    left: 50%;
    translate: -50%;
    top: -20px;
}

@media all and (min-width: 768px) {
    .s-prize--main .s-prize__img .s-prize__no {
        top: -10px;
    }
}

@media all and (min-width: 1024px) {
    .s-prize--main .s-prize__img .s-prize__no {
        left: 120px;
        translate: none;
        top: auto;
        bottom: 94px;
        font-size: 90px;
    }
}

.s-prize--main .s-prize__title {
    margin-top: -30px;
}

@media all and (min-width: 768px) {
    .s-prize--main .s-prize__title {
        margin-top: -70px;
        font-size: 24px;
    }
}

.s-sponsors {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 50px;
    padding-bottom: 30px;
}

@media all and (min-width: 768px) {
    .s-sponsors {
        padding-bottom: 50px;
    }
}

.s-sponsors img {
    height: 50px;
}

.s-small-print {
    width: calc(100% - 60px);
    max-width: 800px;
    font-family: "Roboto Condensed", sans-serif;
    line-height: 1.3;
    margin-bottom: 50px;
    text-align: center;
    font-size: 14px;
}

@media all and (min-width: 768px) {
    .s-small-print {
        width: calc(100% - 60px);
        font-size: 18px;
    }
}

.s-form {
    width: calc(100% - 30px);
    max-width: 1260px;
    background-color: #E20515;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 3px 10px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    display: none;
}

@media all and (min-width: 768px) {
    .s-form {
        width: calc(100% - 60px);
        margin-bottom: 50px;
    }
}

.s-form form {
    width: calc(100% - 40px);
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
}

@media all and (min-width: 768px) {
    .s-form form {
        width: calc(100% - 60px);
    }
}

.s-form form .s-winners-show {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 3px 10px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 100%;
    width: 100%;
    margin-bottom: 20px;
}

@media all and (min-width: 768px) {
    .s-form form .s-winners-show {
        margin-bottom: 30px;
    }
}

@media all and (min-width: 1024px) {
    .s-form form .s-winners-show {
        margin-bottom: 40px;
    }
}

@media all and (min-width: 1280px) {
    .s-form form .s-winners-show {
        margin-bottom: 50px;
    }
}

.s-form__logo {
    width: 160vw;
    margin-left: 3vw;
    max-width: none;
}

@media all and (min-width: 768px) {
    .s-form__logo {
        width: 900px;
        margin-bottom: 20px;
    }
}

.s-form__line {
    width: 100%;
}

@media all and (min-width: 768px) {
    .s-form__line {
        display: flex;
        align-items: center;
    }
}

@media all and (min-width: 768px) {
    .s-form__line label {
        width: 100px;
        margin-bottom: 15px;
        flex-shrink: 0;
    }
}

.s-form__consent {
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin: 15px 0;
}

@media all and (min-width: 768px) {
    .s-form__consent {
        padding-left: 100px;
    }
}

.s-form__consent input {
    margin: 0;
}

.s-form__consent label {
    width: auto !important;
    margin: 0 !important;
    line-height: 1.3;
}

.s-form__consent label a {
    text-decoration: underline;
}

/*# sourceMappingURL=superlativele.css.map */


.s2024-desktop {
    display: block !important;
    @media all and (max-width: 768px) {
        display: none !important;
    }
}

.s2024-mobile {
    display: none !important;
    @media all and (max-width: 768px) {
        display: block !important;
    }
}