

/* Start:/local/templates/2025/assets/js/analytics.js?17351999703552*/
(function () {
var dataArr = [
    {
        selector: '.header button[data-target="#sign-in"]',
        eventAction: 'buttonClick / Стать участником',
        eventLabel: '{SLUG} / menuButton'
    },
    /** Ниже идет для шаблона _copy */
    {
        selector: '.navbar-text button[data-target="#sign-in"]',
        eventAction: 'buttonClick / Стать участником',
        eventLabel: '{SLUG} / menuButton'
    },
    {
        selector: '.welcome button[data-target="#sign-in"]',
        eventAction: 'buttonClick / Стать участником',
        eventLabel: '{SLUG} / firstScreen'
    },
    {
        selector: '.reg2021-socials__link[href*="t.me"]',
        eventAction: 'iconClick / Telegram',
        eventLabel: '{SLUG} / Регистрация'
    },
    {
        selector: '.reg2021-socials__link[href*="wa.me"]',
        eventAction: 'iconClick / WhatsApp',
        eventLabel: '{SLUG} / Регистрация'
    },
    {
        selector: '.reg2021-socials__link[href*="vk.me"]',
        eventAction: 'iconClick / Vkontakte',
        eventLabel: '{SLUG} / Регистрация'
    },
    {
        selector: '.reg2021-socials__link.js-show-signForm',
        eventAction: 'iconClick / E-mail',
        eventLabel: '{SLUG} / Регистрация'
    },

    {
        selector: '#addregform .tabs div[data-step="reg"]',
        eventAction: 'tabClick / Регистрация',
        eventLabel: '{SLUG} / Регистрация'
    },
    {
        selector: '#addregform .tabs div[data-step="auth"]',
        eventAction: 'tabClick / Вход',
        eventLabel: '{SLUG} / Вход'
    },
    {
        selector: 'button.js-restore-password-btn',
        eventAction: 'tabClick / Вход',
        eventLabel: '{SLUG} / Вход'
    },
];

var currentPage = window.location.href;
var slug = currentPage.replace(window.location.origin, '');

dataArr.forEach(function (item) {
    var element = document.querySelector(item.selector);
    if (!element) {
        return;
    }

    element.addEventListener('click', function () {
        window.dataLayer.push({
            event: 'GAevent',
            eventCategory: 'formRegistration',
            eventAction: item.eventAction,
            eventLabel: item.eventLabel.replace('{SLUG}', slug)
        });
    });
})

var nameField = document.querySelector('.reg2021-form input[name="USER_FIO"]');
var emailField = document.querySelector('.reg2021-form input[name="USER_LOGIN"]');
var isRegister = function () {
    var formEl = document.querySelector('.reg2021-form');
    var attribute = formEl.getAttribute('data-step');
    return attribute === 'reg';
}

if (nameField) {
    nameField.addEventListener('click', function () {
        var label = isRegister() ? 'Регистрация' : 'Вход';
        window.dataLayer.push({
            event: 'GAevent',
            eventCategory: 'formRegistration',
            eventAction: 'inputFocus / Name',
            eventLabel: slug + ' / ' + label,
        });
    });
}

if (emailField) {
    emailField.addEventListener('click', function () {
        var label = isRegister() ? 'Регистрация' : 'Вход';
        window.dataLayer.push({
            event: 'GAevent',
            eventCategory: 'formRegistration',
            eventAction: 'inputFocus / E-mail',
            eventLabel: slug + ' / ' + label,
        });
    });
}

})()
/* End */


/* Start:/local/templates/2025/assets/css/common.css?17351999701399*/
p.p_def {
    font-family: CirceLight, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #191919;
}

ul.ul_def {
    list-style-type: none;
}

ul.ul_def > li {
    position: relative;
    padding-left: 24px;
    font-family: CirceLight, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    text-align: left;
    color: #191919;
}

ul.ul_def > li:not(:last-child) {
    margin-bottom: 10px;
}

ul.ul_def > li:before {
    content: "—";
    display: inline-block;
    position: absolute;
    left: 0;
    line-height: inherit;
    content: "";
    top: 8px;
    width: 6px;
    height: 6px;
    margin-top: auto;
    margin-bottom: auto;
    background: #ffe400;
    border-radius: 50%;
}

strong.strong_def {
    font-family: CirceBold, sans-serif;
    font-weight: 500;
}

b.b_def {
    font-family: CirceBold, sans-serif;
    font-weight: 500;
}

a.a_def {
    display: inline;
    padding-left: 0;
    padding-right: 0;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    border: none;
    color: #010100;
    cursor: pointer;
    font-family: CirceBold,sans-serif;
    background: linear-gradient(0deg,rgba(25,25,25,.2) 1px,hsla(0,0%,100%,0));
    background-repeat: repeat-x;
    background-size: 1px 1px;
    background-position: 0 bottom;
}

a.a_def:hover {
    background: hsla(0,0%,100%,0);
}
/* End */


/* Start:/local/templates/2025/assets/css/custom.css?175680343427108*/
:root {
    --black: #191919;
    --gray: #6C757D;
    --gray-light: #D9D9D9;
    --yellow: #FFE400;
    --white: #fff;
}

.btn.btn--white {
    background: var(--white);
    color: var(--black);
}

.btn.btn--white:hover {
    background: var(--yellow);
    color: var(--black);
}

.btn.btn--yellow {
    background: var(--yellow);
    color: var(--black);
}

.btn.btn--yellow:hover {
    background: var(--white);
    color: var(--black);
}

.header-container.header-sticky {
    /*position: sticky;*/
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.header-sticky + main {
    padding-top: 109px;
}

@media (max-width: 1199px) {
    .header-sticky + main {
        padding-top: 89px;
    }
}

.optimization-container{
    max-width: 1087px;
    margin: 0 auto;
}
@media (max-width: 1280px) {
    .optimization-container{
        padding: 0 38px 0 38px;
    }
}
@media (max-width: 660px) {
    .optimization-container{
        padding: 0 20px;
    }
}
.banner{
    background-color: #FBE54C;
    position: relative;
    overflow: hidden;
    font-family: ProximaNovaBlack, sans-serif;
}

.banner--online {
    font-family: ProximaNovaExtrabold, sans-serif;
    text-align: center;
}

.banner h1{
    font-weight: 800;
    font-size: 80px;
    line-height: 96px;
    z-index: 2;
    position: relative;
    text-transform: uppercase;
}
.banner h2{
    font-weight: 800;
    font-size: 80px;
    line-height: 80px;
    z-index: 2;
    position: relative;
    text-transform: uppercase;
}
.banner__container{
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.banner--online .banner__container {
    max-width: unset;
}

.banner__size{
    margin-top: 122px;
    padding-top: 43px;
    width: 100%;
    height: 510px;
}
.banner__circle{
    position: absolute;
    top: 0;
    left: 77px;
    transform: translateY(-57%);
}
.banner__fence{
    position: absolute;
    bottom: 97px;
    left: 0;
    transform: translateX(-147px);
}
.banner__eye{
    position: absolute;
    top: 196px;
    left: 213px;
}
.banner__stairs{
    position: absolute;
    bottom: 47.4px;
    left: 281px;
}
.banner__zero{
    position: absolute;
    bottom: -223px;
    right: -229px;
}
.banner__cross{
    position: absolute;
    top: 123px;
    right: 258.9px;
}
.banner__triangles{
    position: absolute;
    bottom: 59.08px;
    right: 176px;
}
.banner__text{
    max-width: 350px;
    margin: 41px auto 50px;
}

.banner--online .banner__text{
    max-width: unset;
    margin: 20px 0 0;
}

.banner__description {
    font-family: ProximaNova, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 47px;
}

.banner__date{
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
    font-family: ProximaNovaRegular,Verdana,sans-serif;
    margin: 0 auto 18px;
}

.banner--online .banner__date {
    font-family: ProximaNova, sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner__event {
    font-size: 40px;
    line-height: 33px;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid #000000;
    display: inline-block;
    font-family: ProximaNovaExtrabold,sans-serif;
    transition: opacity 0.2s;
}
.banner__event:hover{
    opacity: 0.8;
}
.banner__btn{
    font-family: ProximaNovaBold,Verdana,sans-serif;
    font-weight: 500;
    border-color: transparent;
    background-color: #FFFFFF;
    font-size: 24px;
    line-height: 25px;
    padding: 20px 40px;
    box-sizing: border-box;
    border-radius: 50px;
    cursor: pointer;
}
.banner__btn:hover{
    border-color: black;
    background-color: #FBE54C;
}

.banner .btn--online{
    font-family: ProximaNova, sans-serif;
    font-size: 24px;
    padding: 20px 40px;
    border-radius: 40px;
    background: #fff;
    border: none;
}

@media (max-width: 1280px) {
    .banner__cross{
        right: 205px;
    }
    .banner__zero{
        right: -282px;
    }
    .banner__triangles{
        right: 125px;
    }
}
@media (max-width: 1199px) {
    .banner__size{
        margin-top: 88px;
    }
    .banner__circle svg{
        width: 236.38px;
        height: 236.38px;
    }
    .banner__circle {
        left: 19px;
    }
    .banner__fence svg{
        width: 198px;
        height: 88px;
    }
    .banner__fence{
        transform: translateX(-102px);
    }
    .banner__eye{
        left: 100px;
        top: 138px;
    }
    .banner__eye svg{
        width: 97.23px;
        height: 44px;
    }
    .banner__stairs svg{
        width: 98.45px;
        height: 98.45px;
    }
    .banner__stairs {
        left: 157px;
    }
    .banner__cross svg{
        width: 63px;
        height: 63px;
    }
    .banner__cross{
        right: 116.83px;
        bottom: initial;
        top: 93px;
    }
    .banner__triangles svg{
        width: 80.13px;
        height: 78.64px;
    }
    .banner__triangles{
        right: 68.3px;
        bottom: 39.8px;
    }
    .banner__zero svg{
        width: 457.17px;
        height: 457.17px;
    }
    .banner__zero{
        right: -222.17px;
        bottom: -169.17px;
    }
    .banner h1{
        font-size: 60px;
        line-height: 66px;
    }
    .banner h2{
        font-size: 40px;
        line-height: 44px;
    }
    .banner__container{
        max-width: 350px;
    }
    .banner__size{
        height: 370px;
        padding-top: 30px;
    }
    .banner__date{
        font-size: 18px;
        line-height: 22px;
    }
    .banner__btn{
        padding: 15px 30px;
        font-size: 18px;
        line-height: 18px;
        min-width: 0;
    }
    .banner__text{
        margin: 20px auto 32px;
    }
    .banner__description {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 28px;
    }
    .banner__event{
        font-size: 24px;
        line-height: 20px;
    }
}

@media (max-width: 767px) {
    .banner h1 {
        font-size: 40px;
        line-height: 44px;
    }

    .banner__description {
        font-size: 22px;
    }

    .banner .btn--online {
        font-size: 22px;
    }
}

@media (max-width: 680px) {
    .banner__circle svg{
        width: 157.61px;
        height: 157.61px;
    }
    .banner__circle {
        left: -74px;
        top: -76px;
        transform: inherit;
    }
    .banner__fence svg{
        width: 108.29px;
        height: 48.24px;
    }
    .banner__fence{
        bottom: 36.76px;
        transform: translateX(-50px);
    }
    .banner__size{
        height: 300px;
    }
    .banner__eye{
        left: 47px;
        top: 132px;
    }
    .banner__eye svg{
        width: 53.17px;
        height: 24.06px;
    }
    .banner__stairs svg{
        width: 53.84px;
        height: 53.84px;
    }
    .banner__stairs {
        left: initial;
        bottom: initial;
        top: 51px;
        right: -14.84px;
    }

    .banner__zero svg{
        width: 194.26px;
        height: 194.26px;
    }
    .banner__zero{
        right: -104.26px;
        bottom: -73.26px;
    }
    .banner__cross svg{
        width: 28px;
        height: 27px;
    }
    .banner__cross{
        right: 38.99px;
        top: initial;
        bottom: 87.74px;
    }
    .banner__triangles svg{
        width: 34.05px;
        height: 33.42px;
    }
    .banner__triangles{
        right: 19.16px;
        bottom: 15.53px;
    }
    .banner h1{
        font-size: 28px;
        line-height: 32px;
    }
    .banner h2{
        font-size: 28px;
        line-height: 32px;
    }
    .banner__text {
        margin-top: 23px;
    }
    .banner__description {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 16px;
    }
    .banner__date{
        font-size: 16px;
        line-height: 20px;
        margin-top: 21px;
    }
    .banner--online .banner__date {
        margin-bottom: 24px;
    }
    .banner__btn{
        padding: 10px 20px !important;
        font-size: 16px;
        line-height: 19px;
    }
    .banner .btn--online {
        font-size: 18px;
    }
}

.opt{
    background-color: #000000;
    padding-bottom: 53px;
    position: relative;
    overflow: hidden;
}
.opt__img-container{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25.74%, #000000 69.42%), url("/antica/photo.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    height: 746px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.opt__about{
    width: 100%;
}

.opt__container--first{
    padding-top: 50px;
}
.opt__about-text-block{
    width: 100%;
    background-color: #FFFFFF;
    padding: 50px 105px;
    box-sizing: border-box;
    position: relative;
    /*height: 336px;*/
    display: flex;
    flex-direction: column;
}
.opt__about-text{
    font-weight: 800;
    font-family: ProximaNovaExtrabold,sans-serif;
    text-align: center;
    margin: 0 auto 51px;
    font-size: 24px;
    line-height: 29px;
}
.opt__btn{
    margin: auto auto 0 auto;
    background-color:#FBE54C;
    display: block !important;
}

.opt__about-icon{
    position: absolute;
    bottom: 50.06px;
    left: -39px;
}
@media (max-width: 780px) {
    .opt{
        padding-bottom: 29.76px;
    }
    .opt__about-text-block{
        padding: 30px 38px;
    }
    .opt__container--first {
        padding-top: 50px;
    }
    .opt__about-icon{
        bottom: 40px;
        left: -23px;
    }
    .opt__about-icon svg{
        width: 70px;
        height: 72px;
    }

    .opt__img-container{
        height: 432.95px;
    }
    .opt__container--first{
        padding-top: 30px;
    }
    .opt__about-text{
        font-size: 18px;
        line-height: 21.92px;
        margin-bottom: 30px;
    }



}

@media (max-width: 660px) {
    .opt{
        padding-bottom: 19.54px;
    }
    .opt__img-container{
        height: 199.82px;
    }
    .opt__about{
        /*height: 199.82px;*/
    }
    .opt__about-icon{
        display: none;
    }
    /*.opt__container{*/
    /*    padding: 0 20px;*/
    /*}*/
    .opt__container--first{
        padding-top: 20px;
    }
    .opt__about-text-block{
        padding: 20px;
        /*height: 262px;*/
    }
    .opt__about-text{
        font-size: 16px;
        line-height: 19.49px;
        margin-bottom: 12px;
    }
    .opt__btn{
        /*margin-top: 12px;*/
        width: min-content;
    }
}

.opt h3{
    color: var(--yellow);
    font-weight: 800;
    font-size: 40px;
    line-height: 49px;
    text-transform: uppercase;
}
.opt__gallery{
    position: relative;
    /*top: -360px;*/
    padding-top: 44px;
}
.opt__pluses-container{
    margin-top: 30px;
    position: relative;
}
.opt__pluses{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.opt__pluses-img{
    height: 300px;
    position: relative;
    z-index: 2;
}
.opt__pluses:nth-of-type(2n) .opt__pluses-img{
    order: 2;
}
.opt__pluses-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.opt__pluses-text{
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.opt__pluses-content{
    max-width: 444px;
    text-align: center;
}
.opt__pluses-svg-stairs{
    position: absolute;
    bottom: -54px;
    left: 50%;
    transform: translate(-71%);
}
.opt__pluses-svg-cross{
    position: absolute;
    top: -45px;
    right: 0;
}
.opt__pluses-svg-eye{
    position: absolute;
    top: -95px;
    right: -55.1px;
}
.opt__pluses-svg-zero{
    position: absolute;
    top: -128px;
    right: -193.4px;
    z-index: -1;
}
.opt__pluses-svg-circles{
    position: absolute;
    bottom: 68px;
    left: -185px;
    z-index: -1;
}
.opt__pluses-svg-arrows{
    position: absolute;
    bottom: -34.94px;
    right: 94.6px;
}
@media (max-width: 1000px) {
    .opt__pluses-text{
        font-size: 18px;
        line-height: 22px;
    }
}
@media (max-width: 780px) {
    .opt__gallery{
        padding-top: 30px;
        /*top: -172.95px;*/
    }
    .opt h3{
        font-size: 24px;
        line-height: 29px;
    }
    .opt__pluses-container{
        margin-top: 20px;
    }
    .opt__pluses-text{
        padding: 30px;
    }
    .opt__pluses-img{
        height: 194.12px;
    }
    .opt__pluses-svg-stairs svg{
        width: 65.24px;
        height: 65.24px;
    }
    .opt__pluses-svg-stairs{
        transform: translate(-85%);
        bottom: -32.12px;
    }
    .opt__pluses-svg-cross svg{
        width: 58.24px;
        height: 58.24px;
    }
    .opt__pluses-svg-cross{
        top: -29.12px;
        right: 3.24px;
    }
    .opt__pluses-svg-eye svg{
        width: 80.95px;
        height: 39.79px;
    }
    .opt__pluses-svg-eye{
        right: -35.65px;
        top: calc(-23.62px - 39.79px);
    }
    .opt__pluses-svg-zero{
        right: -114.92px;
        top: -112.35px;
    }
    .opt__pluses-svg-zero svg{
        width: 223.92px;
        height: 224px;
    }
    .opt__pluses-svg-circles svg{
        width: 283px;
        height: 283px;
    }
    .opt__pluses-svg-circles{
        bottom: 53.29px;
        left: -142px;
    }
    .opt__pluses-svg-arrows{
        right: 22.61px;
        bottom: -22.61px;
    }
    .opt__pluses-svg-arrows svg{
        width: 57.85px;
        height: 59.49px;
    }
}
@media (max-width: 660px) {
    .opt{
        padding-bottom: 19.54px;
    }
    .opt__gallery{
        /*top: 102.18px;*/
        padding-top: 20px;
    }
    .opt__btn{
        padding: 8px 20px !important;
    }
    .opt__pluses-text{
        padding: 10px;
        font-size: 12px;
        line-height: 14.62px;
    }
    .opt h3{
        line-height: 26px;
        max-width: 270px;
    }
    .opt__pluses-img{
        height: 140px;
    }

    .opt__pluses-svg-stairs svg{
        width: 29.65px;
        height: 29.65px;
    }
    .opt__pluses-svg-stairs{
        bottom: initial;
        top: 0;
        left: initial;
        right: -21.65px;
        transform: unset;
    }
    .opt__pluses-svg-cross svg{
        width: 26.47px;
        height: 26.47px;
    }
    .opt__pluses-svg-cross{
        top: -13px;
        right: 10.53px;
    }
    .opt__pluses-svg-eye svg{
        width: 36.79px;
        height: 18.09px;
    }
    .opt__pluses-svg-eye{
        top: 7px;
        right: -10.79px;
    }
    .opt__pluses-svg-zero{
        top: -53.71px;
        right: -72.95px;
    }
    .opt__pluses-svg-zero svg{
        width: 129.95px;
        height: 130px;
    }
    .opt__pluses-svg-circles svg{
        width: 128px;
        height: 128px;
    }
    .opt__pluses-svg-circles{
        bottom: initial;
        top: -74px;
        left: -82px;
    }
    .opt__pluses-svg-arrows{
        bottom: 1.96px;
        right: -7.29px;
    }
    .opt__pluses-svg-arrows svg{
        width: 26.29px;
        height: 27.04px;
    }

}

.opt__slider{
    margin-top: 50px;
}
.opt__slider-container{
    position: relative;

}
.opt__slider h3{
    color: #FFFFFF;
    line-height: 80px;
}
.opt__slider-wrapper{
    cursor: pointer;
    /*grid-template-rows: 1fr 1fr;*/
    /*display: grid;*/
    /*gap: 0;*/
    /*grid-template-columns: 1fr 1fr 1fr;*/
}
.opt__slider .opt__slider-slide{
    overflow: hidden;
	height: auto;
}
.opt__slider-slide img{
    height: 100%;
    object-fit: cover;
	width: 100%;
}
.opt__slider-btn-prev{
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.opt__slider-btn-next{
    position: absolute;
    transform: rotate(-180deg) translateY(50%);
    right: -70px;
    top: 50%;
    cursor: pointer;
}
.opt__slider-btn-prev, .opt__slider-btn-next > svg > path{
    transition: fill 0.3s;
}
.opt__slider-btn-prev:hover > svg > path{
    fill: var(--yellow);
}
.opt__slider-btn-next:hover > svg > path{
    fill: var(--yellow);
}

@media (max-width: 1160px) {
    .opt__slider-btn-prev svg, .opt__slider-btn-next svg{
        width: 15px;
        height: 30px;
    }
    .opt__slider-btn-prev{
        left: -25px;
    }
    .opt__slider-btn-next{
        right: -25px;
    }
}
@media (max-width: 780px) {
    .opt__slider{
        margin-top: 29.71px;
    }
    .opt__slider-slide{
        max-height: 194.12px;
    }
    .opt__slider h3{
        line-height: 29px;
        margin-bottom: 20px;
    }
}

@media (max-width: 660px) {
    .opt__slider{
        margin-top: 20px;
    }
    .opt__slider h3{
        line-height: 26px;
        margin-bottom: 10px;
    }
    .opt__slider-btn-prev{
        left: -9px;
        z-index: 2;
    }
    .opt__slider-btn-next{
        right: -9px;
        z-index: 2;
    }
    .opt__slider-slide{
        max-height: 132.23px;
    }

}

.tickets{
    background:#FFFFFF;
    padding-top: 50px;
    padding-bottom: 44px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.tickets__text{
    color: #000000;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    max-width: 1070px;
    margin: 0 auto 43px;
}
.tickets__text--second{
    max-width: 790px;
    margin: 50px auto;
}
@media (max-width: 780px) {
    .tickets{
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .tickets__text{
        margin-bottom: 30px;
        font-size: 18px;
        line-height: 21.92px;
    }
    .tickets__text--second{
        margin-bottom: 30px;
        margin-top: 30px;
        max-width: 590px;
    }
}
@media (max-width: 660px) {
    .tickets__btn{
        width: max-content;
    }
    .tickets{
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .tickets__text{
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 19.49px;
    }
    .tickets__text--second{
        margin-bottom: 20px;
        margin-top: 20px;
    }
}

.swiper-button-disabled{
    opacity: 0.3;
}
.contacts{
    background: #FFFFFF;
    padding-bottom: 50px;
}
.contacts__item-title{
    font-family: ProximaNovaBold,Verdana,sans-serif;
    font-weight: 800;
}
.contacts h3{
    font-size: 40px;
    line-height: 48.72px;
    font-weight: 800;
    text-transform: uppercase;
}
.contacts__map{
    height: 400px;
}
.contacts__map ymaps[class$="ground-pane"] {
    filter: grayscale(1);
}

.contacts .ymaps-2-1-79-gotoymaps{
    display: none;
}
.contacts .ymaps-2-1-79-gototech{
    display: none;
}
.contacts .ymaps-2-1-79-copyright__content{
    display: none;
}
.contacts .ymaps-2-1-79-gototaxi{
    display: none;
}
.contacts__blocks{
    padding-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
    align-items: flex-start;
}
.contacts__addresses{
    font-size: 18px;
    line-height: 22px;
    display: grid;
    grid-template-columns: 1fr;
    padding-right: 50px;
}
.contacts__item{
    margin-bottom: 25px;
    position: relative;
}
.contacts__item:first-child{
    margin-bottom: 15px;
}
.contacts__address-link{
    position: absolute;
    margin-left: 10px;
}
.contacts__item-address{
    line-height: 40px;
}
.contacts__item--phone a{
    text-decoration: none;
}

@media (max-width: 780px) {
    .contacts__address-link svg{
        width: 26px;
        height: 26px;
    }
    .contacts__address-link{
        margin-left: 5px;
    }
    .contacts__item-address{
        line-height: 26px;
    }
    .contacts__map{
        height: 256px;
    }
    .contacts h3{
        font-size: 24px;
        line-height: 29px;
    }
    .contacts__blocks{
        padding-top: 20px;
    }
    .contacts{
        padding-bottom: 30px;
    }
}
@media (max-width: 660px) {
    .contacts__blocks{
        grid-template-columns: 1fr;
        grid-row-gap: 20px;
        padding-top: 3px;
    }
    .contacts{
        padding-bottom: 18px;
    }
    .contacts__addresses{
        font-size: 16px;
        line-height: 19.49px;
    }
}

.fancybox-toolbar .fancybox-button:not(.fancybox-button--close) {
    display: none !important;
}



/* main page */

.welcome__btn {
	position: absolute;
}

@media (max-width: 1199px) {
	.welcome__btn {
		position: relative;
	}
	.welcome__append {
		margin-bottom: 50px;
	}
}

@media (max-width: 767px) {
	.welcome--main {
		background-position-x: right -130px;
	}
}

@media (max-width: 767px) {
	.welcome--main {
		background-position-x: right -130px;
	}
}

@media (max-width: 660px) {
	.welcome--main {
		background-position-x: 80%;
	}
}

/* main page */

.online-day .container {
    max-width: 1184px;
}

.about-conf--online .text-resume {
    font-family: CirceLight, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

@media (max-width: 991px) {
    .about-conf--online .text-resume {
        font-size: 22px;
        line-height: 28px;
    }
}

@media (max-width: 767px) {
    .about-conf--online .text-resume {
        font-size: 18px;
        line-height: 26px;
    }
}

.reasons--online {
    padding: 0 0 80px;
}

.reasons__title {
    font-family: 'Proxima Nova', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 64px;
    letter-spacing: unset;
}

.reasons__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px;
    margin-top: 23px;
}

.reasons__item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(100, 100, 100, 0.1);
}

.reasons__item-top {
    position: relative;
    height: 120px;
}

.reasons__item-image {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 121%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.reasons__item:nth-child(2) .reasons__item-image {
    object-position: top;
}

.reasons__item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 19px 24px 32px;
}

.reasons__item-title {
    font-family: 'Proxima Nova', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 29px;
}

.reasons--online .reasons__item-title span {
    position: relative;
    display: inline-block;
    background: #fff;
    z-index: 1;
}

/*.reasons__item-title span:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: -13px;*/
/*    width: 800px;*/
/*    height: 1px;*/
/*    border-bottom: 12px solid #fff;*/
/*    z-index: 1;*/
/*}*/

.reasons--online .reasons__item-title span:after {
    content: "";
    display: block;
    width: 136px;
    max-width: 56%;
    position: absolute;
    bottom: -13px;
    border-bottom: 6px solid var(--yellow);
}

.reasons__item:nth-child(2) .reasons__item-title span:after {
    border-bottom-color: #212529;
}

.reasons__item-description {
    font-family: CirceLight, Verdana, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: unset;
}

.reasons__item-button {
    margin-top: auto;
}

.reasons__item-button a {
    font-family: 'Proxima Nova', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    background: #FFE400;
    display: block;
    border-radius: 40px;
}

.reasons__item:nth-child(2) .reasons__item-button a {
    color: #fff;
    background: #212529;
}

@media (max-width: 991px) {
    .reasons__title {
        font-size: 32px;
        line-height: 48px;
    }

    .reasons__items {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 660px) {
    .reasons__title {
        font-size: 24px;
        line-height: 32px;
    }

    .reasons__items {
        grid-template-columns: 1fr;
    }
}





.program-section {
    padding: 26px;
    border: 6px solid var(--yellow);
    margin: 0 20px 16px 0;
    width: 100%;
    position: relative;
}

.program-section--party.program--online {
    padding: 74px 40px;
    border: none;
    background: var(--yellow);
}

.program__day {
    margin-top: 32px;
}

.program-section__background {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.program-section__background picture {
    display: inline;
}

.program-section__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program--online .program-section__content {
    position: relative;
    display: grid;
    grid-template-columns: 8fr 9fr;
    gap: 40px;
    font-family: CirceRegular, sans-serif;
    font-size: 20px;
    line-height: 24px;
}

.program-section__button {
    margin-top: 20px;
    position: relative;
}

.program--online .program-section__button a {
    display: inline-block;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    padding: 20px 40px;
    background: var(--white);
    border-radius: 60px;
    text-decoration: none;
    text-transform: uppercase;
}

.online-day .cta-wrap {
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .online-day .become-member-btn {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .program-section--party .program-section__background {
        display: none;
    }

    .program-section--party.program--online {
        padding: 50px 20px;
    }

    .program--online .program-section__content {
        grid-template-columns: 1fr;
        font-size: 18px;
        line-height: 24px;
    }
}

.btn.btn--workshop {
    padding: 10px 19px;
    border-color: var(--yellow);
}

.welcome.welcome--main {
    height: 520px;
}
.welcome--main .btn.welcome__btn {
    max-width: 270px;
    width: 100%;
}
.welcome--main a.btn.welcome__btn {
    margin-top: -40px;
}
@media (max-width: 577px) {
    .welcome--main a.btn.welcome__btn {
        margin-top: 10px;
    }
}
/* End */


/* Start:/local/components/ad/auth.button/templates/.default/style.css?1617703147513*/
.broadcast .welcome__tabs.nav {
    justify-content: space-between;
}
.broadcast .welcome__tabs .nav-item:not(:last-child) {
    margin-right: 0;
}
#addregform .modal__btn-wrapper {
    width: 100% !important;

}
#addregform button.modal__primary-btn.btn.reg {
   margin: 0 auto;
    width: auto;
}
#addregform button.modal__primary-btn.btn.auth {
   margin: 0 auto;
    width: auto;
}
.hide {
  display: none !important;
}
.reg .modal__primary-btn {
    min-width: unset;
    width: unset;
    margin: 0 auto;
}

/* End */


/* Start:/local/components/ashmanov/popup.notify.block/templates/.default/style.css?17573337693861*/
.b-block-form__wrapper {
    background-color: #ffffff;
    border: 3px solid #c4262e;
}

.b-block-fixed.b-block-form {
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    pointer-events: none;
    touch-action: none;
    opacity: 0;
}

.b-block-fixed.showed {
    animation: showedBlock .5s linear forwards;
    pointer-events: auto;
    touch-action: auto;
}

.b-block-fixed.hide {
    transition: .15s linear;
    transform: translateY(100%);
    pointer-events: none;
    touch-action: none;
    opacity: 0;
}

.b-block-fixed.b-block-form {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    margin-bottom: 0;
    z-index: 888;
}

.b-block-fixed .b-block-form__close {
    cursor: pointer;
    width: 16px;
    height: 16px;
    z-index: 20;
    position: absolute;
    top: 10px;
    right: 10px;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPUlEQVQ4jY2Ty0qDMRCF8yjWXtCl1uL5MtPhf9Zu+galRaGCLroQvJXuiw9SFybwU+1lIBAy+c4kk5Mk6RaYmNldOjPM7A6YSLpNwFzSDvgCbk7BwA3wVZh5Aq4kvUraSXrPOY8OwTnnkaSPsvc1Iq5roitp1RLhH5gWvMo5d/c3dCU9l6O9mdm4decx8Fbg5z9wjYjoS1pWkZzzKOc8asHLiOgfbVJE9IGHIrIFtmX+cBKuAfSARam6AxZA7yw4pZSaprmQNKsCkmZN01ycDVdvSPouYwfMT4pERAd4LMCnu9+7+z3wWdYeI6JzDH6qrnT3pubcvWm57+mPiLtfAi8t2PcLuLu3RF7c/bImBtWFwNrMdOiKZiZgXd3o7oPUatjG3YdHm/RbcChpU583mZkkTY99ov0on2pqZvoBQaSscHCPDkIAAAAASUVORK5CYII=') center center no-repeat;
}

.b-block-fixed.b-block-form .b-block-form__wrapper {
    margin: 0;
    max-width: 100%;
    min-height: 98px;
    padding: 20px 172px;
}

.b-block-fixed.b-block-form .b-block-form__wrapper:after,
.b-block-form__right:after {
    content: '';
    display: block;
    clear: both;
}

.b-block-fixed.b-block-form .b-block-form__inner {
    max-width: 1152px;
    margin: 0 auto;
}

.b-block-form__left {
    width: calc(100% - 502px);
    float: left;
}

.b-block-form__right {
    width: 502px;
    float: right;
}

.b-block-fixed.b-block-form .b-block-form__title {
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin: 0;
}
.b-block-form__title {
    font-family: Vela, sans-serif;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    color: #383838;
    margin: 0 auto 32px auto;
}

.b-block-fixed.b-block-form .b-block-form__text {
    font-size: 16px;
    line-height: 19px;
    margin: 8px 0 0;
}

.b-block-form__text {
    font-family: Vela, sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 19px;
    text-align: center;
    color: #383838;
    margin: 32px auto;
}

.b-block-fixed.b-block-form .b-block-form-form__input {
    display: block;
    float: left;
    width: calc(50% - 11px);
    max-width: 240px;
    margin: 0 11px 0 0;
    box-sizing: border-box;
    text-align: center;
    font-size: 12px;
}

.
.b-block-fixed.b-block-form .b-block-form-form__input ::-webkit-input-placeholder,
.b-block-fixed.b-block-form .b-block-form-form__input ::-moz-placeholder,
.b-block-fixed.b-block-form .b-block-form-form__input :-moz-placeholder,
.b-block-fixed.b-block-form .b-block-form-form__input :-ms-input-placeholder {
    font-size: 10px;
}

.b-block-fixed.b-block-form .b-block-form-form__submit {
    max-width: 240px;
    margin: 0;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
}

.b-block-fixed.b-block-form .b-block-form-form__wrapper {
    display: block;
}

@media (max-width: 1152px) {
    .b-block-fixed.b-block-form .b-block-form__wrapper {
        padding: 25px 40px;
    }
}

@keyframes showedBlock {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.b-block-form-form__submit {
    width: 100%;
    height: 40px;
    line-height: 36px;
    display: block;
    margin: 8px 0 0 0;
    color: #383838;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid #383838;
    outline: none;
}
/* End */


/* Start:/local/templates/2025/components/ad/reg.adduser.form/2024/style.css?173519997010127*/
.broadcast .welcome__tabs.nav {
    justify-content: space-between;
}
.broadcast .welcome__tabs .nav-item:not(:last-child) {
    margin-right: 0;
}
#addregform .modal__btn-wrapper {
    width: 100% !important;

}
#addregform button.modal__primary-btn.btn.reg {
   margin: 0 auto;
    width: auto;
}
#addregform button.modal__primary-btn.btn.auth {
   margin: 0 auto;
    width: auto;
}
.hide {
  display: none !important;
}

.btn.wait {
    background-image: url(/static/img/wait.gif) !important;
    background-size: cover;
}

.modal__primary-btn {
    color: var(--black);
}

.reg .modal__primary-btn {
    min-width: unset;
    width: unset;
    margin: 0 auto;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background: rgba(0,0,0,.85);
    outline: none
}

.modal-dialog {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 100%;
    max-height: 576px;
    margin: auto;
    padding-top: 56px;
    padding-bottom: 52px;
    background: #fff;
    overflow: hidden
}

.modal--sign-in .modal-dialog {
    height: auto;
    margin: 1.75rem auto;
    padding: 0 16px;
    transform: none!important;
    max-width: 512px;
    max-height: none;
    background: transparent
}
.modal--sign-in .modal-content {
    width: 100%;
    position: relative;
    background-color: #fff;
    padding-right: 0;
    border: none;
    padding-left: 0;
    border-radius: 0;
}
div#sign-in .modal-body {
    padding: 0;
}

div#sign-in .modal-body .container{

}

div#sign-in .modal-body .container.tabs .tab{
    padding: 1.5em  2em;
    text-align:center;
    font-family: ProximaNovaBold,Verdana,sans-serif;
    color: #ccc;
    font-weight: bold;
    cursor: pointer;
}
div#sign-in .modal-body .container.tabs .tab.active{
    color: #000;
    background: #ffe400;
}
.text-center {
	text-align: center !important;
}

div#sign-in .modal-body .container.content, div#sign-in .modal-body .container.islogin{
    border: 3px solid #ffe400;
    padding: 15px;
}
div#sign-in .modal-body .container.content div.row>div{
    display: none;
}
div#sign-in .modal-body .container.content div.row>div.active{
    display: block;
}

.modal__restore-password {
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 16px;
    text-align: left;
    font-family: ProximaNovaBold,Verdana,sans-serif;
    cursor: pointer
}

.modal__restore-password:hover span {
    background: hsla(0,0%,100%,0)
}

.modal__restore-password span {
    background: linear-gradient(270deg,rgba(25,25,25,.3) 3px,#fff 0);
    background-repeat: repeat-x;
    background-size: 6px 1px;
    background-position: -3px bottom
}

.form__group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 16px
}

.form__group--left.col-6 {
    padding-right: 16px
}

.form__group--right.col-6 {
    padding-left: 16px
}

.form__group--align-bottom {
    -ms-flex-pack: end;
    justify-content: flex-end
}

.form__group--btn {
    margin-top: 10px;
    margin-bottom: 0
}

.form__group label {
    display: block;
    width: 100%;
    margin-bottom: 4px;
    font-family: ProximaNovaBold,Verdana,sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    color: #191919
}

input.form-control,.form__group input:not([type=checkbox]),.form__group textarea {
    display: block;
    width: 100%;
    padding: 16px;
    background: #ffffff;
    border: none;
    outline: none;
    /*box-shadow: inset 0 0 0 100px #f1f1f1;*/
    border: 1px solid #E5E5E5;
    font-family: CirceLight,Verdana,sans-serif;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all .2s linear
}

.form__group input::-ms-clear,.form__group textarea::-ms-clear {
    display: none
}

.form__group input:focus,.form__group textarea:focus {
    border-color: #ffe400;
    background: #fff;
/*    box-shadow: inset 0 0 0 100px #fff*/
}

.form__group input:focus.error,.form__group textarea:focus.error {
    border-color: #ffe400
}

.form__group input.error,.form__group textarea.error {
    border-color: #f5c6cb
}

.form__group input.bold,.form__group textarea.bold {
    padding-top: 14px;
    padding-bottom: 14px;
    font-size: 20px;
    font-family: ProximaNovaBold,Verdana,sans-serif
}

.form__group textarea {
    height: 184px;
    resize: none
}

.form__group button {
    min-width: 286px
}

.form__section {
    border: none;
    padding: 0;
    margin-bottom: 4px
}

.form__title {
    margin-bottom: 24px;
    line-height: 1.17;
    letter-spacing: .7px;
    font-size: 24px;
    font-family: ProximaNovaBold,Verdana,sans-serif;
    text-transform: uppercase
}

.form__text {
    font-family: CirceLight,Verdana,sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #191919
}

.form__text:not(:last-child) {
    margin-bottom: 22px
}

.form__text>a,.form__text>button {
    padding: 0;
    background: transparent;
    text-decoration: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    border: 0;
    background: linear-gradient(0deg,rgba(25,25,25,.2) 1px,hsla(0,0%,100%,0));
    background-repeat: repeat-x;
    background-size: 1px 1px;
    background-position: 0 20px;
    transition: background-color .1s linear;
    cursor: pointer
}

.form__text>a:focus,.form__text>a:hover,.form__text>button:focus,.form__text>button:hover {
    background: hsla(0,0%,100%,0)
}

.form label.form__checkbox {
    margin-bottom: 0
}

.form__checkbox {
    position: relative;
    margin-bottom: 0;
    line-height: 1.75;
    font-size: 16px;
    font-family: ProximaNovaBold,Verdana,sans-serif;
    padding-left: 0px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.reg2021 {
    display: block;
}
.reg2021--is-hidden {
    display: none;
}
.reg2021__title {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    font-family: Proxima Nova;
    line-height: 24px;
}

.reg2021__description {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    font-family: Proxima Nova;
    line-height: 18px;
}

@media all {
    .reg2021__title,
    .reg2021__description {
        margin-bottom: 16px;
    }
}

@media all and (min-width: 640px) {
    .reg2021 {
        padding: 0 0 25px 0;
    }
}

.reg2021-socials {
    display: flex;
}

.reg2021-socials__list {
    margin: 0;
    padding: 0;

    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.reg2021-socials__item {
    width: fit-content;
    list-style-type: none;
}

.reg2021-socials__link {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;
    background-color: #ffe400;
    transition: all 0.25s ease-in-out;
}

.reg2021-socials__icon {
    max-width: 16px;
    max-height: 16px;
    transition: all 0.25s ease-in-out;
}

.reg2021-socials__link:hover {
    background-color: #ffe619;
}
.reg2021-socials__link:hover .reg2021-socials__icon {
    transform: scale(1.1);
}

@media all {
    .reg2021-socials__item {
        margin-right: 20px;
    }
    .reg2021-socials__item:last-of-type {
        margin-right: 0;
    }
}

@media all and (min-width: 640px){
    .reg2021-socials__item {
        margin-right: 40px;
    }
    .reg2021-socials__link {
        width: 40px;
        height: 40px;
    }
    .reg2021-socials__icon {
        max-width: 20px;
        max-height: 20px;
    }
}

.reg2021-pseudolink {}
.reg2021-pseudolink__wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}
.reg2021-pseudolink__text {
    margin: 0 0 0 8px !important;

    color: #000 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: Proxima Nova !important;
    line-height: 20px !important;
}

.reg2021-socials__item:last-of-type {
    border-bottom: 3px solid #fee400;
    padding-bottom: 3px;
}

.widget-vk__open {
    cursor: pointer;
}
.auth-form-errors {
	color: red;
    font-family: CirceRegular,sans-serif;
    font-size: 16px;
    line-height: 1.5;
	margin-top: 10px;
}

tb-notification-widget.tb-no-api-call {
    width: fit-content;
}

tb-notification-widget #tb-notification-widget-inner.tb-notification-widget-inner .tb-widget-buttons.tb-btn-style-icons {
    display: flex;
    width: fit-content;
}

.modal--sign-in tb-notification-widget #tb-notification-widget-inner.tb-notification-widget-inner .tb-widget-buttons.tb-btn-style-icons tb-notification-button {
    margin: 0 40px 0 0;
}

.modal--sign-in tb-notification-widget #tb-notification-widget-inner.tb-notification-widget-inner .tb-widget-buttons.tb-btn-style-icons tb-notification-button > a {
    min-width: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: #ffe400;
    transition: all 0.25s ease-in-out;
    width: 40px;
    height: 40px;
    position: relative;
}

tb-notification-widget tb-notification-button > a:before {
    content: "";
    display: block;
    transition: all 0.25s ease-in-out;
    width: 20px;
    height: 20px;
}

tb-notification-widget tb-notification-button[channel="tg"] > a:before {
    background: url("/static/2021/img/svg/icon-telegram.svg");
    background-size: 100%;
}

tb-notification-widget tb-notification-button[channel="vk"] > a:before {
    background: url("/static/2021/img/svg/icon-vk.svg");
    background-size: 100%;
}

tb-notification-widget tb-notification-button > a:hover:before {
    transform: scale(1.1);
}

.modal--sign-in tb-notification-widget #tb-notification-widget-inner.tb-notification-widget-inner .tb-widget-buttons.tb-btn-style-icons tb-notification-button__icon,
.modal--sign-in tb-notification-widget #tb-notification-widget-inner.tb-notification-widget-inner .tb-widget-buttons.tb-btn-style-icons tb-notification-button__text {
    display: none;
}
/* End */


/* Start:/local/templates/2025/styles.css?17351999701446*/
div.member__img img, div.member-profile__img > img {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray; /* IE 6-9 */
    transition: all 0.5s ease;
}

div.member__img:hover img, div.member-profile__img:hover > img {
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
    filter: none;
    filter: none; /* IE 6-9 */
}

.error {
    color: #f1361b!important;
    font-weight: bold;
}

.future_date {
    display: block;
    font-weight: 700;
    font-family: ProximaNovaBold,Verdana,sans-serif;
    font-size: 18px;
    line-height: 2.08;
    line-height: 1;
    margin-bottom: 6px;
}

.btn.yellow_big_btn {
    background-color: #ffe400;
    font-size: 18px;
}
div#sign-in .modal-body {
    padding: 0;
}

div#sign-in .modal-body .container.tabs .tab{
    padding: 1.5em  2em;
    text-align:center;
    font-family: ProximaNovaBold,Verdana,sans-serif;
    color: #ccc;
    font-weight: bold;
    cursor: pointer;
}
div#sign-in .modal-body .container.tabs .tab.active{
    color: #000;
    background: #ffe400;
}

div#sign-in .modal-body .container.content {
    border: 3px solid #ffe400;
    padding: 15px;
}
div#sign-in .modal-body .container.content div.row>div{
    display: none;
}
div#sign-in .modal-body .container.content div.row>div.active{
    display: block;
}

/* End */


/* Start:/local/templates/2025/template_styles.css?17351999702783*/
@font-face {
    font-family: 'Proxima Nova';
    src: url('/static/2021/fonts/proxima_nova/ProximaNovaT-Thin.woff') format('woff'),
    url('/static/2021/fonts/proxima_nova/ProximaNovaT-Thin.ttf') format('truetype');
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/static/2021/fonts/proxima_nova/ProximaNova-Light.woff') format('woff'),
    url('/static/2021/fonts/proxima_nova/ProximaNova-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/static/2021/fonts/proxima_nova/ProximaNova-Regular.woff') format('woff'),
    url('/static/2021/fonts/proxima_nova/ProximaNova-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/static/2021/fonts/proxima_nova/ProximaNova-Semibold.woff') format('woff'),
    url('/static/2021/fonts/proxima_nova/ProximaNova-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/static/fonts/ProximaNova/ProximaNova-Bold.woff2') format("woff2"), url('/static/fonts/ProximaNova/ProximaNova-Bold.woff') format("woff");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/static/2021/fonts/proxima_nova/ProximaNova-Extrabld.woff') format('woff'),
    url('/static/2021/fonts/proxima_nova/ProximaNova-Extrabld.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('/static/2021/fonts/proxima_nova/ProximaNova-Black.woff') format('woff'),
    url('/static/2021/fonts/proxima_nova/ProximaNova-Black.ttf') format('truetype');
    font-weight: 900;
    font-display: swap;
}

.header2021 {}
.header2021 .hamburger {
    width: 32px;
    height: 32px;
}
.header2021 .hamburger span:before {
    top: -9px;
}
.header2021 .hamburger span:after {
    bottom: -9px;
}
.header2021 .registration-form__sign-in {
    width: auto !important;
    min-width: auto !important;
}
.header2021 .header__nav {
    margin: 0;
}

@media all and (min-width: 1200px) {
    .header2021 .header {
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-start;
        align-items: center;
    }
    .header2021 .header__info {
        flex: 0 0 auto;
        order: 1;
    }
    .header2021 .header__nav {
        order: 2;
        margin: 0 2.49em;
    }
    .header2021 .registration-form__sign-in {
        order: 3;
    }
}

.center-yellow-line__title {
    margin-bottom: 16px;
}
@media all and (min-width: 992px) {
    .center-yellow-line__title {
        margin-bottom: 0;
    }
}
/* End */
/* /local/templates/2025/assets/js/analytics.js?17351999703552 */
/* /local/templates/2025/assets/css/common.css?17351999701399 */
/* /local/templates/2025/assets/css/custom.css?175680343427108 */
/* /local/components/ad/auth.button/templates/.default/style.css?1617703147513 */
/* /local/components/ashmanov/popup.notify.block/templates/.default/style.css?17573337693861 */
/* /local/templates/2025/components/ad/reg.adduser.form/2024/style.css?173519997010127 */
/* /local/templates/2025/styles.css?17351999701446 */
/* /local/templates/2025/template_styles.css?17351999702783 */
