@media screen and (min-width: 1200px) {
    .sFinalistsPage {
        margin-top: 72px !important;
    }
}
@media screen and (min-width: 1320px) {
    .sFinalistsPage {
        margin-top: 75px !important;
    }
}

.finalists-header {
    background: url("../img/bg.png");
    background-size: cover;
    padding: 24px 16px;
    color: #ffffff;
}

@media screen and (min-width: 768px) {
    .finalists-header {
        padding-top: 73px;
        padding-bottom: 73px;
    }


    .finalists-header h1 {
        font-weight: 400 !important;
        font-size: 72px !important;
        line-height: 110.00000000000001% !important;
        letter-spacing: 0 !important;
        margin-bottom: 32px;
    }

    .finalists-header p {
        font-weight: 400 !important;
        font-size: 24px !important;
        line-height: 140% !important;
        letter-spacing: 0 !important;

    }
}

.finalists-header h1 {
    font-weight: 400;
    font-size: 48px;
    line-height: 110%;
    letter-spacing: 0;
}

.finalists-header p {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
}

.finalists-header__content {
    max-width: 1048px;
}

.finalists-filters__reset {
    padding-top: 8px;
    padding-bottom: 16px;
    text-align: right;
}

.finalists-filters__reset a {
    background: url("../img/refresh-light.svg") no-repeat left center;

    padding-left: 30px;

    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;

}

.finalists-filters {
    /*padding-left: 28px;*/
    /*padding-right: 28px;*/
}

.finalist-filter-items__wrapper {
    margin-left: 6px;
    margin-right: 6px;
}

@media screen and  (min-width: 768px) {
    .finalist-filter-items__wrapper {
        margin-left: -16px;
        margin-right: -16px;
    }
}

.color-gray, .finalists-filters b, .finalists-filters__reset a {
    color: rgba(129, 129, 129, 1);
}

.finalist-filter-item {
    padding: 8px 16px;
    border: 1px solid rgba(213, 217, 220, 1);
    border-radius: 32px;
}

.finalist-filter-item:hover {
    cursor: pointer;
    border: 1px solid rgba(213, 217, 220, 1);
    background-color: rgb(244, 244, 246);
}

.finalist-filter-item input {
    display: none;
}

.finalist-filter-item__category.active {
    color: #ffffff;
}

.finalist-filter-item__nomination.active {

    border-color: rgba(44, 21, 81, 1);
    background: rgba(36, 29, 75, 0.15)
}

.finalist-filter-item__wrapper {
    padding-left: 4px;
    padding-right: 4px;
}

.finalists-filters__reset.active a {
    background: url("../img/refresh.svg") no-repeat left center;
    color: rgba(26, 18, 48, 1);
}

.section.finalists-list {
    background: rgba(245, 245, 245, 1);
}

/*.finalist-filters__wrapper {*/
/*    background: #ffffff;*/
/*}*/

.finalist-card {
    background: #ffffff;
    border-top-right-radius: 35px;
    padding: 32px;
    margin-bottom: 24px;
}

.finalist-card__category {
    padding: 5px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    margin-right: 18px;
    color: #ffffff;
    display: inline-block;
}

.finalist-card__nomination {
    padding: 5px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    background: rgba(235, 234, 237, 1);
    color: rgba(26, 18, 48, 1);
}

@media screen and (min-width: 345px) {
    .finalist-card__nomination {
        display: inline-block;
    }
}

.finalist-card__organization {
    color: rgba(26, 18, 48, 1);
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0;
    margin-bottom: 12px;
    max-width: 920px;
}

.finalist-card__location {
    margin-bottom: 12px;
    color: rgba(144, 104, 192, 1);
    background: url("../img/map-pin.svg") no-repeat left center;
    padding-left: 28px;
    font-size: 24px;
}

.finalist-card__video-link {
    background: url("../img/arrow-top-right.svg") no-repeat right center;
    padding-right: 28px;
    color: rgba(82, 4, 184, 1);
    font-size: 24px;
    background-size: 18px;
}

.finalist-card__video-link:hover {
    border-bottom: 1px solid;
}

.finalist-card__description {
    display: none;
    animation: unexpand 0.5s ease
}
.finalist-card__description p{
    font-size: 24px;
}

.expand .finalist-card__toggle-btn {
    transform: rotate(0deg);
    animation: spin 0.5s linear; /* Анимация вращения по часовой стрелке на 3 секунды */
}


@keyframes unexpand {
    0% { height: auto; } /* Начальная высота (спрятан) */
    100% { height: 0; } /* Конечная высота (раскрыт) */
}


@keyframes expand {
    0% { height: 0; } /* Начальная высота (спрятан) */
    100% { height: auto; } /* Конечная высота (раскрыт) */
}

.expand .finalist-card__description {
    display: block;
    max-width: 920px;

    animation: expand 0.5s ease forwards;

}
.expand .finalist-card__description p{
    margin-bottom: 24px;

}

@keyframes spin {
    0% { transform: rotate(-180deg); }
    100% { transform: rotate(0deg); }
}

@keyframes mspin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-180deg); }
}

.finalist-card__toggle-btn {
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url("../img/arrow.svg") no-repeat center;
    transform: rotate(-180deg);
    background-size: contain;
    animation: mspin 0.5s linear; /* Анимация вращения по часовой стрелке на 3 секунды */
}

.finalist-card__toggle-btn:hover {
    cursor: pointer;
}

.finalist-filter-item__top.active {
    color: #2C1551;
    background: linear-gradient(92.24deg, #E8A900 0%, #FFCC6D 112.93%);
    border: 1px solid rgba(255, 190, 85, 1);
}

.finalist-card__top {

    padding: 5px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    margin-right: 18px;
    display: inline-block;
    color: #2C1551;
    background: linear-gradient(92.24deg, #E8A900 0%, #FFCC6D 112.93%);
}

.finalist-place {
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    padding: 0;
}

.finalist-place img {
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .finalist-place {
        margin-top: 0;
        width: 118px;
        height: 118px;
        margin-right: 70px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

.finalist-card__info {
    max-width: calc(100% - 108px );
}

b.mb-2.mt-4.d-md-none.color-gray {
    padding-left: 6px;
}