/*  Сreator Evgeny Smirnov  */



/*-- Reset css --*/
/* Указываем box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
    padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class */
ul[class],
ol[class] {
    list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
    max-width: 100%;
    display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
    margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
    font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/*-- End Reset css --*/


body {
    font-family: 'RF Tone', Helvetica, Arial, sans-serif;
    font-size: 1.2em;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Fira Sans Condensed', Helvetica, Arial, sans-serif;
}



section{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 4em;
}
@media screen and (max-width: 50em) {
    section{
        padding: .5em;
    }
    section#programs{
        padding: 0;
    }
    section#programs h2{

    }
}

article{
    width: 100%;
    max-width: 96%;
    padding: 2px;
    flex: 1 1 auto;
    overflow: hidden;
}

article > h2{
    margin-top: 2em;
    font-size: 3em;
    font-weight: 600;
}

@media screen and (max-width: 50em) {
    article > h2{
        margin-top: 1em;
        font-size: 2em;
        text-align: left;
    }
}

.btn{
    font-size: 1.2em;
    display: inline-block;
    padding: .7em 1.6em .6em;
    border-radius: 10px;
    background-color: #0292dc;
    border: 1px solid #0292dc;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    box-shadow: none;
    transition: all .4s ease-in-out ;
    font-family: 'Fira Sans Condensed', Helvetica, Arial, sans-serif;
    font-weight: 500;
    letter-spacing: .01em;
    text-shadow: none;
}
.btn:hover{
    color: #000;
    background-color: #ffff83;
    border: 1px solid #aeae00;
}

@media screen and (max-width: 50em) {
    .btn{
        width: 100%;
        text-align: center;
    }
}

.btn.disabled,
.btn.disabled:hover{
    pointer-events: none;
    cursor: default;
    opacity: .5;
}


/* Navigation*/
.nav-btn{
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 10px;
    color: #fff;
    border: 1px solid transparent;
    position: fixed;
    left: 20px;
    top: 20px;
    font-size: 1.2em;
    z-index: 20;
    transition: all .3s ease-in-out;
}
@media screen and (max-width: 50em) {
    .nav-btn{
        left: 5px;
        top: 5px;
    }
}

.nav-btn i{
    transform: scaleX(1.3);
}

.nav-btn:hover{
    color: #ffff83;
    background-color: #ffff8331;
    border-color: #ffff83;
}


.nav-btn.light{
    color:#000;
}
.nav-btn.light:hover {
    color: #000;
    background-color: #ffff83;
    border: 1px solid #aeae00;
}

nav{
    position: fixed;
    left: 0;
    width: 340px;
    top: 0;
    bottom: 0;
    background-color: rgba(11,3,15,.9);
    color: #fff;
    z-index: 10;
    padding-top: 3em;
    transform: translateX(-100%);
    transition: all .2s ease-in-out;

}
.nav-open{
    transform: translateX(0);
    box-shadow: 1px 0 3px 1px rgba(0,0,0,.5);
}
nav a{
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 50em) {
    nav{
        width: 80%;
    }
}

.nav-btn-close{
    position: absolute;
    left: 35px;
    top: 32px;
    font-size: .8em;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}
.nav-btn-close:hover{
    color: #ffff83;
}
.nav-btn-close i{
    font-size: 1.8em;
    margin-right: .3em;
}

ul.navigation{
    margin: 0;
    padding: 1em;
    list-style: none;
    overflow-y: auto;
    max-height: 100%;
}

.navigation-link{
    display: inline-block;
    width: 100%;
    padding: .6em 1em .4em;
    white-space: nowrap;
    text-decoration: none;
    color: #fff;
    background-color: rgba(255,255,255, 0);
    border: 1px solid rgba(255,255,255, 0);
    border-radius: 4px;
    transition: all .4s ease-in-out;
}

.navigation-link:hover{
    background-color: rgba(255,255,255, .1);
    border-color: rgba(255,255,255, .5);
}




/* Home screen */


.horizontal-scroll {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    height: 100vh;  
    margin: 0;
    padding: 0;
    display: block;
}


.screen{
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    float: left;
    position: relative;
    overflow: hidden;
}

.home-screen-h1{
    color: #000;
    font-size: 22em;
    font-weight: 800;
    margin: 0;
    text-align: left;
    line-height: .9em;
    margin: 0 .3em 0 .1em;
}

.time{
    display: flex;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 144px;
}

.time__i{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
    flex: 1 1 10%;
    position: relative;
}

.time__i::after{
    content: '';
    width: 1px;
    background-color: #999;
    position: absolute;
    bottom: 0;
    right: 0;
    top: -100vh;
}

.time-year{
    color: #000;
    font-size: 4em;
    line-height: .7em;
    font-weight: 900;
    padding-right: .1em;
}

.time-year_date{
    font-size: 3em;
    line-height: 1.2em;
    opacity: .5;
}
.time-lines_date{
    background: transparent;
}


.time-lines{
    display:inline-block;
    width: 100%;
    height: 20px;
    background-image: linear-gradient(90deg, #ffffff 47.30%, #000000 47.30%, #000000 50%, #ffffff 50%, #ffffff 97.30%, #000000 97.30%, #000000 100%);
    background-size: 73.00px 73.00px;
}


.time-img{
    position: absolute;
    z-index: -1;
    top: 0;
    margin-top: 140px;
    transition: top 0.3s ease-out;
}


.time-img_2016{
    margin-top: 180px;
}
.time-img_2017{
    margin-top: 300px;
}
.time-img_2018{
    margin-top: 600px;
}
.time-img_2019{
    margin-top: 900px;
}
.time-img_2020{
    margin-top: 1200px;
}
.time-img_2021{
    margin-top: 1500px;
}
.time-img_2022{
    margin-top: 1800px;
}
.time-img_2023{
    margin-top: 2100px;
}


@media screen and (max-width: 50em) {   
    .horizontal-scroll {
        height: 90dvh;  
    }
    .home-screen-h1{
        font-size: 10.4em;
        line-height: .9em;
        margin-right: 0;
    }
    .time {
        height: 88px;
    }
    .time-year{
        font-size: 3em;
        line-height: .7em;
        padding-right: .05em;
    }
    .time-year_date{
        font-size: 1.6em;
        line-height: 2.5em;
    }

    .time-img{
        margin-top: 70px;
    }


    .time-img_2016{
        margin-top: 100px;
    }
    .time-img_2017{
        margin-top: 200px;
    }
    .time-img_2018{
        margin-top: 300px;
    }
    .time-img_2019{
        margin-top: 400px;
    }
    .time-img_2020{
        margin-top: 500px;
    }
    .time-img_2021{
        margin-top: 600px;
    }
    .time-img_2022{
        margin-top: 700px;
    }
    .time-img_2023{
        margin-top: 900px;
    }
        
}





#home{
    position: relative;
    padding: 0;
    min-height: 100%;
}

#home:before{

}

.home-screen{
    max-width: 100%;
    position: relative;
    padding: 0;
    margin-top: -350px;
    background-color: #fff;
    overflow: visible;
}

.time-line{
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: visible;
}

.time-line__year{
    display: flex;
    width: 100%;
    border-bottom: 1px solid #666;
    height: 350px;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
}
.time-line__year_2024{
    position: sticky;
    top: -50px
}
.time-line__year_date .year-date{
    color: #999;
}
.year-line{
    width: 24px;
    height: 100%;
    background-image: linear-gradient(0deg, #999 1.85%, #fff 1.85%, #fff 50%, #999 50%, #999 51.85%, #fff 51.85%, #fff 100%);
    background-size: 54.00px 54.00px;
}

.year-date{
    color: #000;
    font-size: 7em;
    font-weight: 800;
    padding: 0 8px 0 20px;
    margin: 0;
    line-height: .8em;
    flex: 1 1 auto;
    text-align: right;
}

.vesna-img{
    width: 30%;
    height: auto;
    border-radius: 4px;
    position: relative;
    box-shadow: 1px 1px 4px rgba(0,0,0,.2);
    align-self: center;
    margin-left: 2%;
}

.home-h1{
    color: #000;
    font-size: 7em;
    margin: 0;
    text-align: right;
    line-height: .9em;
    font-weight: 800;
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    padding-right: 25%;
    height: 350px;
    text-shadow: 2px 2px 0 #fff, 2px 0 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, -2px 0 0 #fff, -2px -2px 0 #fff
}


/* for big screen*/
@media only screen and (min-width: 1024px)  {
   
}

@media only screen and (min-width: 1300px)  {
   
}


@media screen and (max-width: 50em) {   
    section{
        overflow: hidden;
    }
    .home-screen{
        margin-top: -120px;
    }
    .home-h1{
        font-size: 2.2em;
        line-height: 1.2em;
        color: #fff;
        text-shadow: none;
        padding: 0;
        align-items: center;
        height: 120px;
        padding-right: 10px;
    }
    .year-date{
        font-size: 2em;
        color: #fff;
    }
    .time-line__year{
        height: 60px;
        color: #fff;
        background-color: #000;
        border-color: #eee;
        padding: 1px 0;
        overflow: hidden;
    }
    .year-date{
        text-align: left;
        font-size: 1.4em;
    }
    .year-line{
        display: none;
    }
    .vesna-img{
        opacity: .5;
        margin: 0;
        height: 60px;
        border-radius: 0;
        box-shadow: 0;
    }
        
}


/* About */
#about{
    position: relative;
}
.about{
    position: relative;
}

#about:before{
    content: "";
    opacity: 0.4;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    background: url(../img/home_background2.jpg) repeat-y 0 0;
    background-size: cover;
    background-attachment: fixed;
}

#about p{
    font-size: 2.2em;
    font-weight: 600;
    line-height: 1.2em;
    margin-top: 20vh;
    text-align: center;
}

#about p:first-child{
    text-align: left;
}

#about p:last-child{
    margin-bottom: 20vh;
    text-align: left;
}


.about-img{
    margin: 2em auto;
}

.logos-view{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5em 0;
}

.logos-org{
    display: block;
    max-width: 240px;
    max-height: 55px;
    border: none;
}

.logos-org_mimp{
    max-width: 340px;
    margin-left: 3em;
}

@media screen and (max-width: 50em) {
    #about:before{
        background: url(../img/home_background_mobile2.jpg) repeat-y 0 0;
        background-size: contain;
    }
    .about-img{
        margin: .5em auto;
    }

    .logos-view{
        flex-direction: column;
    }

    .logos-org{
        position: static;
        max-width: 100%;
        max-height: initial;
        margin: .5em 0;
    }
    .logos-org_mimp{
        margin: 20vh auto 0;
    }
    .logos-org_mma{
        max-width: 80%;
        margin: 20vh auto 0;
    }
    #about p{
        font-size: 2em;
        text-align: left;
    }
    #about p:first-child{
        margin-top: 20vh;
    }
}

.link {
    text-decoration: none;
    border-bottom: 1px dotted transparent;
    color: #126a97;
    transition: border-bottom-color .3s ease-in-out, color .3s ease-in-out;
}
.link:hover {
    color: #0292dc;
    border-bottom-color: #0292dc;
}



#corona{
    min-height: auto;
    padding: 0;
}
.corona{
    padding: 3em 0;
}

.corona-block{
    display: flex;
    align-items: center;
}

.corona-block__text{
    margin: 0 .5em 0 0;
}

@media screen and (max-width: 50em) {
    .corona-block{
        flex-direction: column;
    }
    .corona-block__text{
        margin: 0 1em;
    }
}


.h2_programs,
.h2_lectors,
.h2_location,
.h2_residence,
.h2_schedule,
.h2_lottery,
.h2_furshet,
.h2_ticket{
    font-size: 7em;
    line-height: 1em;
    margin: .5em 0 0;
    font-weight: 800;
    color: #fff;
    letter-spacing: .01em;
}


@media screen and (max-width: 50em) {   
    .h2_programs,
    .h2_lectors,
    .h2_location,
    .h2_residence,
    .h2_schedule,
    .h2_lottery,
    .h2_furshet,
    .h2_ticket{
        font-size: 4em;           
    }
        
}


/* Location */
#location {
    background: #140b09 url(../img/about/october.jpg) 100% 100%;
    background-repeat: no-repeat;
    background-size: contain;
    color: #fff;
    padding-bottom: 500px;
}

@media screen and (max-width: 50em) {
    #location {
        background-position: 90% 103%;
        background-size: 240%;
        padding-bottom: 11em;
    }
}

.h2_location{
    font-size: 7em;
    
}
@media screen and (max-width: 50em) {   
    .h2_location{
        font-size: 2.4em;       
    }
        
}

#location p{
    font-size: 1.4em;
}
@media screen and (max-width: 50em) {   
    #location p{
        font-size: 1.2em;
        line-height: 1.3em;
    }
        
}

#location a{
    color: #ffff83;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 2px dotted #ffff83;
    transition: border-bottom-color .3s ease-in-out, color .3s ease-in-out;
    align-self: flex-start;
}

#location a:hover{
    color: #fafadb;
    border-bottom-color: transparent;
}

@media screen and (max-width: 50em) {
    #location a{
        white-space: normal;
    }
}



#location_photo{
    min-height: auto;
    background: #140b09;
    padding: 0;
    margin: 0;
    border-top: 8px solid #fff;
    border-bottom: 8px solid #fff;
}
#location_photo article{
    width: 100%;
    max-width: 100%;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.location-img{
    flex: 1 1 25%;
    margin: 0;
}

.location-img + .location-img{
    border-left: 8px solid #fff;
}


@media screen and (max-width: 95em) {
    .location-images{
       width: 75%;
    }
}

@media screen and (max-width: 50em) {
    .location-images{
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    .location-img{
        max-width: 80%;
    }
}




/* Residence */
#residence{
    padding-bottom: 4em;
    background-color: #d3e8fe;
 }

.h2_residence{
    font-size: 7em;
    margin-top: 1em;
    color: #000;
    text-shadow: none;
} 
@media screen and (max-width: 50em) {
    .h2_residence{
        font-size: 3em;
        margin-top: 1em;
    } 
}

#residence p{
    font-size: 1.2em;
    line-height: 1.3em;
    color: #000;
}

#residence a{
    text-decoration: none;
    border-bottom: 1px dotted #0292dc;
    color: #0292dc;
    outline: none;
    cursor: pointer;
}

#residence a:hover{
    border-bottom-color: transparent;
    color: #ffff83;
}

.residence-images{
    display: flex;
    align-items: flex-start;
}

.residence-map-hotels{
    display: inline-block;
    border: none;
    height: 250px;
    margin: 0 0 0 2em;
}
.residence-map-hotels > img{
    height: 100%;
    width: auto;
    border: 4px
}

.hotels{
    display: flex;
    justify-content: space-between;

}

.residence-hotels{
    display: flex;
    flex-direction: column;
    width: 32%;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: rgba(255,255,255,.7);
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 0;
    margin: 0 0 2em 0;
}

.residence-hotels__img{
    flex: 0 0 auto;
    margin: 1px;
    width: calc(100% - 2px);
    align-self: center;
}

.residence-hotels-img{
    overflow: hidden;
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

.residence-hotels__txt{
    padding: 1em;
}
.residence-hotels__txt p + p{
    margin-top: .7em;
    
}
#residence .residence-hotels-disc{
    font-size: 1.3em;
}
@media screen and (max-width: 50em) {
    .hotels{
        width: 100%;
        overflow-x: auto;
    }
    .residence-hotels{
        width: 80%;
        flex: 1 0 auto;
    }
    .residence-hotels + .residence-hotels{
        margin-left: 1em;
    }
    .residence-hotels__txt p,
    #residence .residence-hotels-disc{
        font-size: 1.2em;
        line-height: 1.2em;
    }
}

@media screen and (max-width: 50em) {
    .residence-images{
        flex-direction: column;
    }
   
    .residence-hotels__img {
        flex: 0 0 auto;
        max-width: 100%;
    }
    .residence-hotels-img {
        overflow: hidden;
        border-radius: 10px 10px 0 0;
        margin: 0;
    }
    .residence-hotels__txt {
        padding: 1em;
    }
}

.residence-img{
    border-radius: 4px;
    width: calc((100% - 2em) / 3);
}

.residence-img + .residence-img{
    margin-left: 1em;
}

@media screen and (max-width: 50em) {
    .residence-img{
        width: 100%;
        margin: 0;
    }
    .residence-img + .residence-img{
        margin: 1em 0 0;
    }
}


.cost-living{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

@media screen and (max-width: 50em) {
    .cost-living{
        flex-direction: column;
        margin: 0;
    }
}

.cost-living__i{
    flex: 1 1 auto;
    padding: 1em 0;
    width: calc((100% - 2em) / 3);
}


.cost-living__i_prise{
    text-align: center;
    background-color: rgba(225,225,225,.1);
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 1em;
    margin-left: 1em;
}

@media screen and (max-width: 50em) {
    .cost-living__i{
        width: 100%;
        margin: 0;
    }
    .cost-living__i + .cost-living__i{
        margin-top: 1em;
    }
}

.cost-living__i ul{
    margin: 0;
    padding: 0;
}

.cost-living__i li{
    padding: .6em;
    list-style: none;
    display: flex;
    min-height: 52px;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

@media screen and (max-width: 50em) {
    .cost-living__i li{
        padding: .2em;
        list-style: none;
    }
}

.cost-living__name li{
    opacity: .7;
    font-weight: 600;
    font-size: .9em;
    justify-content: flex-start;
}

@media screen and (max-width: 50em) {
    .cost-living__name{
        order: 3;
        margin: 1em 0 0;
        padding: 0;
    }
    .cost-living__name > p{
        display: none;
    }
    .cost-living__name li{
        min-height: auto;
    }
}

.cost-living__i .btn{
    font-size: .8em;
}

@media screen and (max-width: 50em) {
    .cost-living__i .btn{
        margin: .4em 0;
    }
}

.cost-living__i li i{
    opacity: .3;
    margin-right: .5em;
}
.cost-living__name li i{
    opacity: .6;
}



/* Расписание */
#schedule{
    position: relative;
    background: #fff;
    color: #000;
    border-top: 8px solid #fff;
    border-bottom: 8px solid #fff;
    padding-bottom: 6em;

}

.schedule{
    display: flex;
    margin-bottom: 1em;
}

@media screen and (max-width: 50em) {
    .schedule{
        flex-direction: column;
    }
}

.h2_schedule{
    font-size: 7em;
    margin-top: 1em;
    color: #000;
    text-shadow: none;
}
@media screen and (max-width: 50em) {
    .h2_schedule{
        font-size: 3.4em;
    }
}

.schedule-p{
    font-size: 1.2em;
    line-height: 1.2em;
    margin-top: .5em;
}

.schedule__i{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1 1 auto;
    position: relative;
    font-size: 1.4em;
}
@media screen and (max-width: 50em) {
    .schedule__i + .schedule__i{
       margin-top: 1em;
    }
    .schedule__i:empty{
        display: none;
    }
}

.schedule__i:before{
    content: '';
    position: absolute;
    left: 38px;
    top: 140px;
    bottom: 30px;
    width: 1px;
    border-left:3px dashed #999;
}

.schedule__i:empty:before{
    display: none;
}

.schedule-h4{
    font-size: 1.8em;
    line-height: 1em;
    margin-bottom: .3em;
}
.schedule-h4__date{
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    font-size: .8em;
    font-weight: 700;
    opacity: .5;
}


.schedule-block{
   display: flex;
   position: relative;
}

.schedule-block + .schedule-block{
    margin-top: 1.2em;
}

.schedule-block__icon{
    display: flex;
    width: 80px;
    height: 80px;
    flex: none;
    border: 1px solid #182431;
    color: #182431;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #dcf3ff;
    font-weight: 800;
    font-size: 1.1em;
    padding-top: .2em;
}

.schedule-block__icon i{
    font-size: 0.8em;
}


.schedule-block__text{
    display: flex;
    flex-direction: column;
    padding: 27px 0 0 20px;
}

.schedule-time{
    font-weight: 700;
    font-size: .9em;
    line-height: .9em;
}

.schedule-name{
    font-size: .8em;
    font-weight: 500;
    opacity: .7;
    line-height: 1.2em;
    margin-top: .2em;
}

@media screen and (max-width: 50em) {
    .schedule-block__icon{
        width: 70px;
        height: 70px;
    }
    .schedule__i:before {
        left: 33px;
    }
    .schedule-h4 {
        font-size: 1.4em;
        margin-top: 1em;
    }
    .schedule-name {
        font-size: .7em;
        line-height: 1.1em;
    }
    
}



/* Блок программы */
#programs{
    background-color: #182431;
}


#programs article{
    max-width: 96%;
    overflow: visible;
}


.programs-title{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: flex-end;
}

.programs-ai{
    font-size: 1.2em;
    font-weight: 600;
    border: 2px dashed #ffffb3;
    color: #ffffb3;
    border-radius: 16px;
    padding: .2em .4em;
    margin: 3em 0 0;
}
@media screen and (max-width: 50em) {
    .programs-title{
        display: flex;
        flex-direction: column;
        margin-top: 3em;
        justify-content: flex-end;
        
    }
    .h2_programs{
        font-size: 4em;
        margin: 0;
    }
    .programs-ai{
        font-size: 1.1em;
        line-height: 1em;
        margin: 0;
        align-self: flex-end;
        max-width: 85%;
        padding: .4em .8em;
    }
}

.name-time-block{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: 6em;
}

.block-h3{
    text-align: left;
    color: #fff;
    font-size: 6em;
    line-height: initial;
    white-space: nowrap;
}

@media screen and (max-width: 50em) {
    .name-time-block{
        flex-direction: column;
        margin-top: 2em;
    }

    .block-h3{
        font-size: 2.8em;
        line-height: 1em;
    }
}

.programs-p{
    color: #fff;
    width: 100%;
    clear: both;
}
@media screen and (max-width: 50em) {
    .programs-p{
        padding: .5em 0;
    }
}

.block-time{
    text-align: right;
    opacity: .5;
    font-size: 3em;
    font-weight: 700;
    margin-top: 0;
    color: #fff;
}

.block-time_time{
    white-space: nowrap;
    padding-left: 20px;
}

@media screen and (max-width: 50em) {
    .block-time{
        text-align: left;
        font-size: 1.4em;
    }
}

.block{
    width: 103%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 -1.5%;
}

.block__i{
    flex: 1 1 27%;
    height: 516px;
    margin: 1.5%;
    max-width: 50%;
    border-radius: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    background-color: #e2e2e2;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .3s ease-in-out;
    overflow: hidden;
    border: 1px solid #ccc;
}

.block__i:before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 9px;
    background: inherit;
    background-size: cover;
    transform-origin: center;
    transition: transform 0.4s ease-in-out;
}

.block__i_white:before{
    background-color: rgba(0,0,0,.4);
    cursor: pointer;
}

.block__i[data-source]{
    cursor: pointer;
}
.block__i[data-source]:hover{
    border-color: #ffff83;
    outline: 7px solid #ffff83;
}
.block__i[data-source]:hover:before{
    transform: scale(1.1);

}

.block__i_2w{
    flex-basis: 609px;
}
.block__i_1-5w{
    flex-basis: 30%;
}
.block__i_2h{
    height: 641px;
}

.block__i_ted{
    overflow: hidden;
}
.block__i_ted:after{
    content: 'TED';
    position: absolute;
    top: 12px;
    right: -46px;
    color: #b30505;
    font-size: .9em;
    background-color: #fff;
    border: 1px solid #9c9c9c;
    font-weight: 800;
    padding: .2em 3em 0em;
    transform: rotate(45deg);
}

.block_shadow{
    margin: 1% 0 0;
    padding: 1%;
    width: 100%;
    background: #000;
    border: 2px dashed #666;
    border-radius: 16px;
    position: relative;
}


.block-title{
    width: 100%;
    font-size: 2em;
    line-height: 1.1em;
    font-weight: 600;
    position: relative;
    padding: 30px 5px 20px 20px;
    transition: all .3s ease-in-out;
    white-space: normal;
    border-radius: 0 0 9px 9px;
    color: #fff;
    background: linear-gradient(0deg, rgba(24,36,49,.9) 0%, rgba(24,36,49,.75) 50%, rgba(24,36,49,.5) 75%, rgba(24,36,49,0) 100%)
}
.block__i_white .block-title{
    color: #000;
    background: linear-gradient(0deg, rgba(255,255,255) 0%, rgba(255,255,255,.85) 50%, rgba(255,255,255,.75) 75%, rgba(255,255,255,0) 100%);
}
.block__i_none .block-title{
    background: transparent;
}

.block__i:hover .block-title{
    background: linear-gradient(0deg, rgba(24,36,49) 0%, rgba(24,36,49,.8) 50%, rgba(24,36,49,.5) 75%, rgba(24,36,49,0) 100%)
}


@media screen and (max-width: 50em) {
    .block{
        width: 100%;
        flex-wrap: nowrap;
        overflow: auto;
        padding: .5em 0 1em;
        margin: 0;
        overflow-x: scroll;
    }
    .block__i{
        margin: 0 3vw;
        flex: none;
        width: 80vw;
        max-width: 320px;
    }
    .block .block__i:first-child{
        margin-left: 3vw;
    }
    .block .block__i:last-child:after {
        content: "";
        display: block;
        position: absolute;
        right: -2rem;
        width: 2rem;
        height: 1px;
    }
    .block_shadow + .block_shadow{
        margin-top: .5em;
    }
    .block-title{
        font-size: 1.8em;
    }
}


.block-web{
    position: absolute;
    top: 0;
    right: 0;
    border: 30px solid rgba(255,255,255, .9);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 0 4px 0 0;
    display: inline-flex;
    align-items: flex-end;
}
.web{
    color: #05720beb;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
    position: absolute;
}

.block-close{
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: #0292dc;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.icon-close{
    color: fff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
    position: absolute;
}
.close-p{
    padding: 1em;
    background: #ffffe3;
    line-height: 1.2em;
    font-size: .9em;
    font-weight: 600;
    color: #333;
    text-align: center;
    border: 1px solid #c3c33a;
    border-radius: 10px;
}




/* Блок лекторы */
#lectors{
    background-color: #182431;
}

#lectors article {
    max-width: 96%;
    overflow: visible;
}


.lectors__p{
    color: #fff;
    font-size: 1.2em;
}

.readers{
    display: flex;
    flex-wrap: wrap;
    margin-top: 2em;
}
@media screen and (max-width: 50em) {
    .readers{
        flex-direction: column;
    }
}
.reader{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 2em;
    flex: 1 1 auto;
    width: 33%;
}


@media screen and (max-width: 50em) {
    .reader{
        width: 100%;
        flex-direction: row;
        margin: 1em 0;
    }
    .reader:nth-child(even){
       flex-direction: row-reverse;
    }
}

.reader__image{
    width: 180px;
    height: 180px;
    flex: 0 0 auto;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin-right: 1em;
}

.reader[data-source] .reader__image{
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.reader[data-source] .reader__image:hover{
    border-color: #ffff83;
    box-shadow: 0 0 1px 6px #ffff83;
}

@media screen and (max-width: 50em) {
    .reader__image{
        width: 100px;
        height: 100px;
        margin: -10px 1em -10px 0;
    }
    .reader:nth-child(even) .reader__image{
        margin: -10px 0 -10px 1em;
    }
}

.reader__title{
    text-align: left;
    font-weight: 500;
    color: #fff;
    font-size: 1.4em;
    line-height: 1.2em;
    margin-right: 8%;
}
.reader[data-source] .reader__title:hover{
    cursor: pointer;
    color: #ffff83;
}
@media screen and (max-width: 50em) {
    .reader__title{
        text-align: left;
        font-size: 1.2em;
        margin: 0;
    }
    .reader:nth-child(even) .reader__title{
        text-align: right;
    }
}




/*  Telegram */
#telegram{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #d3e8fe;
    color: #000;
    padding: 8em 1em;
    min-height: auto;
    height: auto;
    font-size: 1.3em;
    text-align: center;
    border-top: 8px solid #fff;
    border-bottom: 8px solid #fff;
}
@media screen and (max-width: 50em) {
    #telegram{
        padding: 4em 1em;

    }
}

#telegram a{
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    color: #0292dc;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

#telegram a:hover{
    color: #ffff83;
}

#telegram a i{
    font-size: 1.8em;
}

#telegram a span{
    display: inline-block;
    border-bottom: 1px dotted #0292dc;
    margin-left: 5px;
}

#telegram a:hover span{
    border-bottom-color: transparent;
}

@media screen and (max-width: 50em) {
    #telegram{
        font-size: 1.0em;
        text-align: left;
    }
}


/* Лотерея */

#lottery{
    position: relative;
    min-height: auto;
    padding-bottom: 6em;
    background: #ebf3f9;
    font-size: 1.2em;
    line-height: 1.2em;
}

@media screen and (max-width: 50em) {
    #lottery{
        padding-bottom: 3em;
    }
}

.h2_lottery{
    color: #000;
}

.lottery-block{
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 50em) {
    .lottery-block{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
    }
}

.lottery-img{
    border-radius: 10px;
    height: 516px;
}

.lottery-block__text{
    margin: 0 0 0 2em;
}

.lottery-block__text p + p,
.lottery-block__text p + .btn{
    margin-top: 1em;
}

@media screen and (max-width: 50em) {
    .lottery-block__text{
        margin: 1em 0 0;
    }
    .lottery-img{
         height: auto;
    }
}


/* Фуршет */
#furshet{
    background: #0c0906;
    min-height: auto;
    padding: 0 0 60vh;
    position: relative;
    color: #fff;
    border-top: 8px solid #fff;
}
#furshet::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .8;
    background: url('../img/furshet.webp') 50% 200px no-repeat;
    background-size: 100% auto;
    z-index: 0;
    mask-image: linear-gradient(transparent 30%, #000 50%);
}
#furshet::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .2;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c8TV1mAAAAG3RSTlNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAvEOwtAAAFVklEQVR4XpWWB67c2BUFb3g557T/hRo9/WUMZHlgr4Bg8Z4qQgQJlHI4A8SzFVrapvmTF9O7dmYRFZ60YiBhJRCgh1FYhiLAmdvX0CzTOpNE77ME0Zty/nWWzchDtiqrmQDeuv3powQ5ta2eN0FY0InkqDD73lT9c9lEzwUNqgFHs9VQce3TVClFCQrSTfOiYkVJQBmpbq2L6iZavPnAPcoU0dSw0SUTqz/GtrGuXfbyyBniKykOWQWGqwwMA7QiYAxi+IlPdqo+hYHnUt5ZPfnsHJyNiDtnpJyayNBkF6cWoYGAMY92U2hXHF/C1M8uP/ZtYdiuj26UdAdQQSXQErwSOMzt/XWRWAz5GuSBIkwG1H3FabJ2OsUOUhGC6tK4EMtJO0ttC6IBD3kM0ve0tJwMdSfjZo+EEISaeTr9P3wYrGjXqyC1krcKdhMpxEnt5JetoulscpyzhXN5FRpuPHvbeQaKxFAEB6EN+cYN6xD7RYGpXpNndMmZgM5Dcs3YSNFDHUo2LGfZuukSWyUYirJAdYbF3MfqEKmjM+I2EfhA94iG3L7uKrR+GdWD73ydlIB+6hgref1QTlmgmbM3/LeX5GI1Ux1RWpgxpLuZ2+I+IjzZ8wqE4nilvQdkUdfhzI5QDWy+kw5Wgg2pGpeEVeCCA7b85BO3F9DzxB3cdqvBzWcmzbyMiqhzuYqtHRVG2y4x+KOlnyqla8AoWWpuBoYRxzXrfKuILl6SfiWCbjxoZJUaCBj1CjH7GIaDbc9kqBY3W/Rgjda1iqQcOJu2WW+76pZC9QG7M00dffe9hNnseupFL53r8F7YHSwJWUKP2q+k7RdsxyOB11n0xtOvnW4irMMFNV4H0uqwS5ExsmP9AxbDTc9JwgneAT5vTiUSm1E7BSflSt3bfa1tv8Di3R8n3Af7MNWzs49hmauE2wP+ttrq+AsWpFG2awvsuOqbipWHgtuvuaAE+A1Z/7gC9hesnr+7wqCwG8c5yAg3AL1fm8T9AZtp/bbJGwl1pNrE7RuOX7PeMRUERVaPpEs+yqeoSmuOlokqw49pgomjLeh7icHNlG19yjs6XXOMedYm5xH2YxpV2tc0Ro2jJfxC50ApuxGob7lMsxfTbeUv07TyYxpeLucEH1gNd4IKH2LAg5TdVhlCafZvpskfncCfx8pOhJzd76bJWeYFnFciwcYfubRc12Ip/ppIhA1/mSZ/RxjFDrJC5xifFjJpY2Xl5zXdguFqYyTR1zSp1Y9p+tktDYYSNflcxI0iyO4TPBdlRcpeqjK/piF5bklq77VSEaA+z8qmJTFzIWiitbnzR794USKBUaT0NTEsVjZqLaFVqJoPN9ODG70IPbfBHKK+/q/AWR0tJzYHRULOa4MP+W/HfGadZUbfw177G7j/OGbIs8TahLyynl4X4RinF793Oz+BU0saXtUHrVBFT/DnA3ctNPoGbs4hRIjTok8i+algT1lTHi4SxFvONKNrgQFAq2/gFnWMXgwffgYMJpiKYkmW3tTg3ZQ9Jq+f8XN+A5eeUKHWvJWJ2sgJ1Sop+wwhqFVijqWaJhwtD8MNlSBeWNNWTa5Z5kPZw5+LbVT99wqTdx29lMUH4OIG/D86ruKEauBjvH5xy6um/Sfj7ei6UUVk4AIl3MyD4MSSTOFgSwsH/QJWaQ5as7ZcmgBZkzjjU1UrQ74ci1gWBCSGHtuV1H2mhSnO3Wp/3fEV5a+4wz//6qy8JxjZsmxxy5+4w9CDNJY09T072iKG0EnOS0arEYgXqYnXcYHwjTtUNAcMelOd4xpkoqiTYICWFq0JSiPfPDQdnt+4/wuqcXY47QILbgAAAABJRU5ErkJggg==);
    background-color: #0c0906;
    z-index: 0;
}

#furshet article{
    position: relative;
    z-index: 1;
    font-size: 1.2em;
    line-height: 1.3em;
}

.btn_furshet{
    margin-top: 1em;
}


@media screen and (max-width: 50em) {
    #furshet{
       padding: .5em .5em 30vh .5em;
    }
    #furshet::before{
        background: url('../img/furshet.webp') 50% 100% no-repeat;
        background-size: 120% auto;
        mask-image: linear-gradient(transparent 70%, #000 80%);
    }
}




/* Стол выставка */

#freetable{
    position: relative;
    min-height: auto;
    padding-bottom: 10em;
    background-color: #000;
    color: #fff;
}

@media screen and (max-width: 50em) {
    #freetable{
        padding-bottom: 6em;
    }
}

#freetable:before{
    content: "";
    opacity: 0.8;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    background: url("../img/home_background3.jpg") no-repeat 50% 100%;
}

.freetable-block{
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 2;
    position: relative;
}

@media screen and (max-width: 50em) {
    .freetable-block{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
    }
}

.freetable-block__text{
    margin: 2em 0 0;
}

.freetable-block__text p + p{
    margin-top: 1em;
}

@media screen and (max-width: 50em) {
    .freetable-block__text{
        margin: 1em 0 0;
    }
}




/* Exponent */
#exhibitors{
    min-height: auto;
    position: relative;
}

@media screen and (max-width: 50em) {
    #exhibitors{
        padding-bottom: 1em;
    }
}


.exhibitors-block{
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 50em) {
    .exhibitors-block{
        flex-direction: column;
    }
}

.exhibitors-block__text{
    margin: 0 1em 0 0;
    font-size: 1.4em;
}

.exhibitors-block__text p + p{
    margin-top: 1em;
}

@media screen and (max-width: 50em) {
    .exhibitors-block__text{
        margin: 0 0 1em 0;
    }

}

.exponent{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1em;
}

.exponent__i{
    flex: 1 1 auto;
    flex-basis: 25%;
    text-align: center;
    padding: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 50em) {
    .exponent__i{
        flex-basis: 50%;
    }

}

.exponent-img{
    max-height: 100px;
    width: auto;
    margin: 0 auto;
}


/* Регистрация */
#ticket,
#video-records{
    min-height: auto;
    background-color: #d3e8fe;
    padding-bottom: 4em;
    border-top: 8px solid #fff;
    border-bottom: 8px solid #fff;
}

#presentations{
    min-height: auto;
    background-color: #14071b;
    padding-bottom: 4em;
}

.h2_ticket{
    font-size: 7em;
    color: #000;
    text-shadow: none;
}

#ticket p {
    font-size: 1.3em;
}

@media screen and (max-width: 50em) {
    #ticket,
    #presentations{
        padding-bottom: 3em;
    }
    #ticket p {
        font-size: 1.2em;
    }
    .h2_ticket{
        font-size: 3em;
    }
}

#presentations h2{
    color: #fff;
    line-height: 1.1em;
}

#presentations strong{
    font-size: .8em;
}

#presentations a{
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-bottom: 1px dotted #fff;
    transition: border-bottom-color .3s ease-in-out, color .3s ease-in-out;
}

#presentations a:hover{
    color: #fff;
    border-bottom-color: transparent;
}

.presentations__block{
    margin-bottom: 0;
}

.presentations__block + .presentations__link{
    margin-top: .1em;
}
.presentations__link + .presentations__link{
    margin-top: 1.1em;
}



/*  Footer */
footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #14071b;
    color: #fff;
    padding: 2em 0;
    font-size: .9em;
}

footer article {
    display: flex;
    overflow: visible;
    align-items: flex-start;
    justify-content: space-between;
}

.footer__i{
    flex: 1 1 33%;
    margin: 0;
}


.footer__i_festival{
    margin: 0 2em;

}

.footer-info{
    opacity: .6;
    font-weight: 700;
    font-size: .8em;
}

p + .footer-info{
   margin-top: 3em;
}

.old-festival{
    display: flex;
    flex-direction: column;
}

.old-festival a{
    color: #fff;
    white-space: nowrap;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255,255,255,.4);
    margin: .4em 0;
    transition: border-bottom-color .3s ease-in-out, color .3s ease-in-out;
    align-self: flex-start;
}

.old-festival a:hover{
    color: #ffff83;
    border-bottom-color: transparent;
}


footer ul.navigation{
    padding: 0;
    margin-left: -1em;
}

.navigation-link{

}

.nowrap{
    white-space: nowrap;
}

ul.social-buttons{
    display: flex;
    margin-top: .5em;
}

.social-buttons li + li{
   margin-left: 1.2em;
}

.social-buttons .fab{
    color: #fff;
    font-size: 2em;
    transition: color .4s ease-in-out;
}

.social-buttons a:hover .fab{
   color: #ffff83;
}

.copyright{
    font-size: .8em;
    margin: 1em 0 -1em;
}

@media screen and (max-width: 50em) {
    footer {
        padding: 0;
    }
    footer article {
        flex-direction: column;
    }
    .footer__i{
        flex: 1 1 auto;
        width: 100%;
        padding: 1.5em 2em;
    }
    .footer__i_festival{
        margin: 0;
    }
    .copyright{
        margin: 1em 2em;
        text-align: center;
    }

}



/* Modal window */
#registration{
    position: relative;
    background-color: #000;
}
/*
#registration:before{
    content: "";
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    background: url("../img/home_background2.jpg") no-repeat 50% 50%;
    background-size: cover;
}
*/
header{
    padding: 1em;
    max-width: 100%;
    display: flex;
    align-items: center;
    color: #fff

}

@media screen and (max-width: 50em) {
    header{
        padding: 0;
    }
}

#registration article{
    max-width: 1024px;
}

.registration-h1{
    color: #fff;
    font-size: 3em;
    margin: 0;
    line-height: 1.2em;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .02em;
}
@media screen and (max-width: 50em) {
    .registration-h1{
        font-size: 2.2em;
    }
}

.registration-h1 span{
    color: #fff;
    text-shadow: 0 0 1px #fff;
}

.registration-h1 a{
    text-decoration: none;
    color: inherit;
}

#registration h2{
    margin-top: 1em;
    font-size: 2em;
    line-height: 1.2em;
    color: #fff

}

.registration-block{
    display: flex;
    align-items: center;
    margin: 1em 0 2em;
    color: #fff
}

@media screen and (max-width: 50em) {
    .registration-block{
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
    }
}

.registration-block__text{
    margin: .3em 0 0;
}

.registration-block__text p + p{
    margin-top: 1em;
}

@media screen and (max-width: 50em) {
    .registration-block__text{
        margin: 1em 0 0;
    }
}

.registration-img{
    width: 25%;
}

.article-ticket{
    overflow: visible;
}

#registration .tickets-instruction{
    padding: 0 0 0 1.5em;
    list-style: decimal;
    color: #fff;
}

.tickets-instruction li{
    margin: 1em 0;
}



/* ddSlick */
.form-group + .form-group{
    margin-top: 1.2em;
}

.form-group .dd-select {
    border-radius: 4px;
}
.form-group .empty {
    opacity: .6;
    font-size: .8em;
    margin: 0 0 0 -70px;
    display: inline-block;
}

.form-group .dd-selected-text {
    font-weight: 400;
}

.form-group .dd-selected {
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    padding: 3px 30px 0 95px;
    height: 70px;
    justify-content: center;
    position: relative;
}

.form-group .dd-option {
    display: flex;
    flex-direction: column;
    padding: 3px 5px 0 95px;
    height: 70px;
    justify-content: center;
    position: relative;
}

.form-group .dd-option-description,
.form-group .dd-selected-description {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 50em) {
    .form-group .dd-selected,
    .form-group .dd-option{
        font-size: .8em;
        line-height: 1.1em;
    }
    .form-group .dd-option-text,
    .form-group .dd-selected-text{
        font-weight: 500;
    }
    .form-group .dd-option-description,
    .form-group .dd-selected-description {
        padding-top: 3px;
    }
}

.form-group .dd-desc {
    line-height: initial;
}

.form-group-label{
    font-size: 1.2em;
    font-weight: 600;
    color: #fff

}

.form-group-label + .dd-container{
    margin-top: .2em;
}

.form-group .dd-option-image,
.form-group .dd-selected-image {
    margin-right: 0.7em;
    display: inline-block;
    width: 80px;
    max-width: 80px;
    background-size: cover;
    border-radius: 4px 0 0 4px;
    background-position: center center;
    border: 2px solid #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.form-group .dd-option-image{
    border-radius: 0;
}

dd-option-selected {
    background: #f6f6f6;
}

.form-group .dd-container.disabled {
    opacity: .6;
    pointer-events: none;
}
.form-group .dd-container.disabled .dd-select{
    background: #f9f9f9 !important;
}
.form-group .dd-container.disabled .dd-pointer{
    visibility: hidden;
}
.form-group .dd-option.disabled,
.form-group .dd-option.disabled:hover{
    opacity: .5;
    cursor: default;
    background-color: #fff;
    pointer-events: none;
}
.form-group .dd-option.disabled .dd-option-image,
.form-group .dd-option.disabled .dd-option-text,
.form-group .dd-option.disabled .dd-option-description{
    opacity: .6;
    cursor: default;
}
.form-group .dd-option.disabled:after{
    content: 'Регистрация закрыта';
    position: absolute;
    right: 5px;
    top: 5px;
    color: #333;
    font-size: 12px;
    font-weight: bold;
}

.tickets-btns-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 3em 0 0;
}

.and-soo{
    margin: 3em 0;
    font-size: .7em;
    font-weight: 600;
    opacity: .6;
    position: relative;
    color: #fff;
}
.and-soo:before{
    content: '';
    width: 50px;
    height: 1px;
    position: absolute;
    left: -60px;
    top: 10px;
    background: #fff;
    opacity: .4;
}
.and-soo:after{
    content: '';
    width: 50px;
    height: 1px;
    position: absolute;
    right: -60px;
    top: 10px;
    background: #fff;
    opacity: .4;
}


.tickets-btns-block__dop{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tickets-btns-block__dop .btn + .btn{
    margin-top: 2em;
}

/* Timepad */
.timepad-article,
#registration .timepad-article{
    max-width: 922px;
}

body {
    min-height: auto;
}

.i-page {
    background-color: rgba(255,255,255,.7)!important;
    padding: 1.5em 3em;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, .15) 0 1px 3px 0;
}

@media screen and (max-width: 50em) {
    .i-page {
        padding: .5em 0;
    }
}

.b-registration__acquirings{
    display: none !important;
}

.b-registration__question{
    font-weight: 800 !important;
    font-size: 16px !important;
}
.b-registration__label span{
    font-size: 16px !important;;
    font-weight: 400 !important;
}
.b-registration__section.section-submit{
    text-align: center;
}
.b-registration__label {
    padding: 10px 12px;
}
.b-registration__label:focus,
.b-registration__label:hover {
    background-color: #e1e1e1;
    border-radius: 4px;
}

.lote-tickets{
    margin-top: 2em;
}


    /* Modal window */
.modal {
    border-radius: 4px 4px 0 0;
    transform: translateY(100px);
    transition: all .7s;
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    display: none;
}
@media screen and (max-width: 50em) {
    .modal {
        padding: 24px;
    }
}

.modal article{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.modal article  > div + div{
    margin-top: 2em;
}

.modal__requisition > div + div{
    margin-top: 1em;
}


.modal__title{
    display: flex;
    justify-content: flex-start;
    flex-flow: row-reverse;
}

@media screen and (max-width: 50em) {
    .modal__title{
        flex-direction: column;
        flex-flow: column;
        align-items: center;
    }
}

.modal-title-data{
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding-right: 1.5vw;
    line-height: normal;
}
@media screen and (max-width: 50em) {
    .modal-title-data{
        padding: 2vh 0 0;
        align-items: flex-start;
    }
}

.requisition-image{
    width: 300px;
    min-height: 200px;
    border-radius: 4px;
    background-color: #e2e2e2;
    background-position: 50% 50%;
    background-size: cover;
    flex: 0 0 auto;
}
@media screen and (max-width: 50em) {
    .requisition-image{
        width: 100%;
        margin: 0 auto;
    }
}

.modal-title-data strong{
    font-size: .8em;
    opacity: .5;
}
.modal-title-data span{
   display: inline-block;
    width: 100%;
}
.modal-title-data p + p{
    margin-top: 1em;
}




.modal-anons p + p{
    margin-top: .75em;
}
.modal-anons ul{
    margin-top: .5em;
}

.modal__anons > strong,
.modal__targeting > strong{
    font-size: .8em;
    opacity: .5;
}


.modal__video:empty{
    display: none;
}


.video{
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

@media screen and (max-width: 50em){
    .modal__video{
        position: relative;
        padding-bottom: 56.25%;
        padding-top: 30px;
        height: 0;
        overflow: hidden;
        display: block;
    }
    .modal__video iframe {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        position: absolute;
    }
}


.modal__lector{
    display: flex;
    justify-content: flex-start;
    flex-flow: row-reverse;
    align-items: flex-start;
    margin-top: 2em;
}
@media screen and (max-width: 50em) {
    .modal__lector{
        flex-direction: column;
        align-items: center;
        margin-top: auto;
    }
}

.lector-image{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid #dcdcdc;
    flex: 0 0 auto;
    margin-top: .3em;
}

.modal-lector-data{
    display: flex;
    flex-direction: column;
    padding-right: 1.5vw;
    flex: 1 1 auto;
    align-items: flex-start;
}
@media screen and (max-width: 50em) {
    .modal-lector-data{
        padding: 0;
    }
}

.lector-name > strong{
    font-size: .8em;
    opacity: .5;
}

.social-links > strong{
    font-size: .8em;
    opacity: .5;
}

.social-links > a,
.fancybox-content .social-links a{
    border-bottom: none;
    outline: none;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
}
.social-links a i{
    position: relative;
    top: 5px;
    font-size: 1.5em;
}
.social-links a span{
    display: inline-block;
    font-size: .8em;
}

.lector-skills{
    margin-top: 1em;
}
.lector-skills p + p{
    margin-top: 1em;
}
.info{
    padding: 1.5em;
    font-style: italic;
    background-color: #fbf2d1;
    border-radius: 4px;
}
.empty-info{
    padding: 3em;
    text-align: center;
    opacity: .5;
}
.info_center{
    text-align: center;
}

.info_speed {
    padding: 0;
    margin: 1% 0 1.5%;
    background: none;
    border: none;
    position: relative;
    display: flex;
    color: #fff;
    border-radius: 0;
}

.speed-text{
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    font-style: normal;
    padding-left: 1%;
}

ul.speed-text__ul{
    margin: 0;
    list-style: disc;
    padding-left: 2%;
}


@media screen and (max-width: 50em){
    .info_speed {
        margin: 0;
        align-items: flex-start;
    }
    .speed-icon{
        width: 48px;
        margin-right: .5em;
    }
    .speed-text{
        font-size: .9em;
    }
}


.modal_lector .modal__lector:first-child{
    margin-top: 0;
}

.modal_lector .modal__requisition{
    order: 2;
    margin-top: 2em;
}
@media screen and (max-width: 50em) {
    .modal_lector .modal__requisition{
        margin-top: 1em;
    }
}


.lector-material{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 1em;
    flex-wrap: wrap;
}

.lector-material__img{
    flex: 1 1 auto;
    border-radius: 10px;
    max-width: 320px;
}
@media screen and (max-width: 50em) {
    .lector-material{
        flex-direction: column;
    }
    
    .lector-material__img{
        max-width: 100%;
        margin: 10px 0;
    }
}



.fancybox-toolbar .fancybox-button{
  background-color: transparent;
  width: 64px;
  height: 64px;
  color: #000;
  margin: 6px 6px 0 0;
}
.fancybox-toolbar .fancybox-button:hover{
    color: #999;

}

.fancybox-slide--current .modal{
    transform: translateY(0);
    opacity: 1;
}
.fancybox-button svg {
    transform: scale(1.5);
}

.requisition-name__data,
.lector-name__data{
    font-size: 1.6em;
    font-weight: 500;
}

.fancybox-content a{
    text-decoration: none;
    border-bottom: 1px dotted #0292dc;
    color: #0292dc;
    outline: none;
    cursor: pointer;
}
.fancybox-content a:hover{
    border-bottom-color: transparent;
    color: #58c6fd;
}


@media screen and (max-width: 50em) {
    .fancybox-container article{
        overflow: visible;
        padding: 0;
    }
    .fancybox-container .fancybox-content{
        padding: 1em;
    }
    .requisition-name__data,
    .lector-name__data{
        font-size: 1.4em;
        line-height: 1em;
    }
    .modal-title-data strong,
    .modal__anons > strong,
    .lector-name > strong{
        font-size: 1em;
        font-weight: 500;
    }
    .modal-title-data span,
    .modal-anons,
    .lector-skills{
        font-size: 1.1em;
    }
    .fancybox-content .requisition-image{
        width: calc(100% + 2.7em);
        margin: -1em -1em 1em -1em;
        border-radius: 4px 4px 0 0;
        overflow: hidden;
    }
    .fancybox-toolbar .fancybox-button{
        background-color: rgba(255,255,255,.5);
    }
}


.page {
    padding-bottom: 30em;
}

.title-input{
    width: 100%;
    font-size: 1.2em;
    border-radius: 4px;
    border: solid 1px #ccc;
    background: rgb(244, 250, 251);
    padding: .5em;
}

@page {
    size: A4;
    margin: 0;
}
@media print {

    .article-ticket * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
        print-color-adjust: exact !important;

    }
    .page {
        margin: 0 !important;
        padding: 1cm 2cm !important;
        border: initial;
        border-radius: initial;
        width: 21cm;
        min-height: initial;
        height: 29cm;
        box-shadow: initial;
        background: initial;
        page-break-after: always;
        overflow: hidden;
    }
    .registration-h1{
        font-size: 18pt;
        box-shadow: none;
        color: #000;
    }
    .title-input{
        width: 100%;
        font-size: 21pt;
        border: none;
        background: transparent;
        padding: 0;
    }
    #registration{
        background-color: #fff;
        color: #000;
    }
    #registration h2{
        font-size: 14pt;
        margin: 0;
        text-align: center;
        color: #000;
    }
    .form-group + .form-group{
        margin-top: 6mm;
    }
    .form-group + .form-group_1{
        margin-top: 2mm;
    }
    .form-group-label + .dd-container{
        margin-top: 0;
    }
    .form-group-label {
        color: #666666;
        font-size: 13pt;
        font-weight: 500;
    }

    .dd-select{
        box-shadow: none !important;
        border: none !important;
        background-color: transparent !important;
    }
    .form-group .dd-selected{
        height: 14mm;
    }
    .dd-selected .dd-desc{
        color: #666666;
    }
    .dd-pointer.dd-pointer-down{
        display: none;
    }
    .empty{
        color: #cccccc;
        font-weight: normal;
    }
    .btn{
        display: none;
    }
}
