/*  С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: 'Montserrat', Helvetica, Arial, sans-serif;
}



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



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

article > h2{
    margin-top: 3em;
}

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

.btn{
    display: inline-block;
    padding: .7em 1.6em .6em;
    border-radius: 4px;
    background-color: #00bacb;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    box-shadow: rgba(35,1,50,.2) 0 1px 3px 0;
    transition: background-color .4s ease-in-out ;
}
.btn:hover{
    color: #fff;
    background-color: #24a82beb;
}

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

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


/* Navigation*/
.nav-btn{
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0);
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
    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{
    border: 1px solid rgba(255, 255, 255, .5);
    background-color: rgba(255, 255, 255, .2);
}


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: #dcacfa;
}
.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 */
#home{
    position: relative;
    padding: 0;
    min-height: 100vh;
}

#home:before{
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    background: url("../img/home_background.jpg") no-repeat 50% 50%;
    background-size: cover;
}

.home-screen{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100vh;
    position: relative;
    overflow: visible;
    max-width: calc(100% - 60px);
    margin: 0 30px;
    padding: 10vh 5ch;
}

.home-h1{
    color: #00bacb;
    font-size: 4.5em;
    font-weight: 800;
    margin: 0;
    text-align: left;
    line-height: 1em;
    text-shadow: 1px 1px 1px #000;
}

.home-h1_span,
.home-h1_date{
    color: #fff;
    font-size: 3em;
    text-shadow: 0 0 2px #000;
    font-weight: 700;
    margin-left: 5px;
}

.home-h1_date{
    font-size: 4.5em;
    margin: 0;
    font-weight: 800;
}

@media screen and (max-width: 50em) {
    #home:before {
        background-position: 18% 100%;
    }
    .home-screen{
        max-width: 100%;
        margin: 0;
        padding: 10vh 3ch 10vh 0;
    }
    .home-h1{
        font-size: 3.2em;
        line-height: 1.2em;
        text-align: right;
    }

    .home-h1_span{
        font-size: 1.6em;
        white-space: nowrap;
    }
    .home-h1_date{
        font-size: 2.2em;
        font-weight: 700;
    }
}


/* About */
#about{
    background-color: #d3e8fe;
}
.about{
    position: relative;
}

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

@media screen and (max-width: 50em) {
    .about-img{
        margin: .5em auto;
    }
}

.logos-view{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3em 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) {
    .logos-org{
        position: static;
        max-width: 100%;
        max-height: initial;
        margin: .5em 0;
    }
    .logos-org_mimp{
        margin: 1.5em auto 0;
    }
    .logos-org_mma{
        max-width: 80%;
        margin: 1.5em auto 0;
    }
}

.link {
    color: #00bacb;
    text-decoration: none;
    border-bottom: 1px dotted rgba(82, 114, 11, 0.9);
    transition: border-bottom-color .3s ease-in-out, color .3s ease-in-out;
}
.link:hover {
    color: #24a82beb;
    border-bottom-color: transparent;
}



#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;
    }
}



/* Location */
#location {
    background: #05094c url(../img/about/holliday.png) 110% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
}

@media screen and (max-width: 50em) {
    #location {
        background-position: 100% 100%;
        background-attachment: scroll;
        background-size: 105%;
        padding-bottom: 16em;
    }
}

.location-images{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-start;
}

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

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

.location-img{
    max-width: 45%;
    margin: 1em 1em 1em 0;
    border-radius: 4px;
}

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

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

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




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

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

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

.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;
}

#schedule:before{
    content: "";
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;

}

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

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


.schedule__i{
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    position: relative;
}
@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: 25px;
    top: 55px;
    bottom: 25px;
    width: 1px;
    background-color: #00bacb;
}

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

.schedule-h4__date{
    display: inline-block;
    width: 100%;
    font-size: .8em;
    font-weight: 500;
    opacity: .8;
}

.schedule-block{
    margin: 1em 0;
    position: relative;
    padding-left: 60px;
    line-height: 1.1em;
}


.schedule-block__icon{
    display: inline-flex;
    width: 50px;
    height: 50px;
    border:1px solid #00bacb;
    color: #00bacb;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -25px;
    background-color: #fff;
    font-weight: 800;
    padding-top: .2em;
    border-radius: 50%;
}

.schedule-block__icon i{
    font-size: 1.2em;
    margin-top: -.1em;
}
.schedule-block__time{
    font-weight: 700;
    font-size: .8em;
}

.schedule-block__name{
    font-size: .8em;
    font-weight: 500;
    opacity: .8;
}



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

#programs h2{
    color:#fff
}
.block-h3{
    text-align: center;
    margin-top: 2em;
    color:#fff
}

.programs-p{
    color:#fff
}
@media screen and (max-width: 50em) {
    .programs-p{
        padding: 1em;
    }
}


.block-time{
    text-align: center;
    opacity: .5;
    font-weight: 600;
    margin-top: 0;
    color:#fff
}

.block{
    width: calc(100% + 9px);
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-right: -9px;
}

.block__i{
    flex: 0 1 300px;
    height: 316px;
    margin: 0 9px 9px 0;
    border-radius: 4px;
    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;
    box-shadow: rgba(0, 0, 0, .15) 0 1px 3px 0;
    transition: box-shadow .3s ease-in-out;
}

.block__i:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: rgba(255,255,255,.4);
    transition: opacity .3s ease-in-out;
    opacity: 0;
}

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

.block__i[data-source]{
    cursor: pointer;
}
.block__i[data-source]:hover{
    box-shadow: rgba(0, 0, 0, .3) 0 1px 3px 0;
}
.block__i[data-source]:hover:before{
    opacity: 1;
}

.block__i_2w{
    flex-basis: 609px;
}
.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-title{
    width: 100%;
    position: relative;
    padding: 30px 20px 15px 20px;
    transition: all .3s ease-in-out;
    white-space: normal;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(0deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.75) 50%, rgba(255,255,255,.5) 75%, rgba(255,255,255,0) 100%);
}
.block__i_white .block-title{
    color: #fff;
    background: linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.75) 50%, rgba(0,0,0,.5) 75%, rgba(0,0,0,0) 100%)
}
.block__i_none .block-title{
    background: transparent;
}


.block-zal{
    position:absolute;
    right: 10px;
    top: 10px;
    display: inline-flex;
    background: rgba(255,255,255,.6);
    border: 1px solid #999;
    border-radius: 20px;
    font-size: .8em;
    font-weight: 800;
    padding: 6px 10px 4px;
    align-items: center;
    justify-content: center;
    line-height: normal;
}

@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: 75vw;
        max-width: 320px;
    }
    .block .block__i:first-child{
        margin-left: 6vw;
    }
    .block .block__i:last-child:after {
        content: "";
        display: block;
        position: absolute;
        right: -2rem;
        width: 2rem;
        height: 1px;
    }
}


.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: #00bacb;
    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: #00bacb;
    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: 15px 5px 14px;
    background: #eee;
    font-size: .8em;
    font-weight: 600;
    color: #444;
    text-align: center;
    border: 1px solid #dedede;
    border-radius: 4px;
}




/* Блок лекторы */

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


@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%;
}

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

.reader[data-source] .reader__image:hover{
    border-color: #fff;
    box-shadow: 0 0 1px 6px rgba(5,114,11,.8);
}

@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: center;
    font-weight: 600;
    font-size: .8em;
    margin-top: .8em;
}
.reader[data-source] .reader__title:hover{
    cursor: pointer;
    color: #52057b;
}
@media screen and (max-width: 50em) {
    .reader__title{
        text-align: left;
        font-size: .9em;
        margin-top: 0;
    }
    .reader:nth-child(even) .reader__title{
        text-align: right;
    }
}



/* Лотерея */

#lottery{
    position: relative;
    min-height: auto;
    padding-bottom: 6em;
    background-color: #c9e9cb;
}

@media screen and (max-width: 50em) {
    #lottery{
        padding-bottom: 3em;
    }
}
/*
#lottery:before{
    content: "";
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    background: url("../img/fuchsia.jpg") no-repeat 50% 50%;
    background-size: cover;
}
*/
.lottery-block{
    display: flex;
    align-items: center;
    width: calc(100% + 2em);
    margin-left: -2em;
}

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

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

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

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




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

#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;
    padding-bottom: 0;
}

@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: 1em 1em 0 0;
}

.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,
#presentations{
    min-height: auto;
    background-color: #d3e8fe;
    padding-bottom: 4em;
}

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


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

#presentations a{
    color: #05720b;
    text-decoration: none;
    border-bottom: 1px dotted #05720b;
    transition: border-bottom-color .3s ease-in-out, color .3s ease-in-out;
}

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

.presentations__block{
    margin-bottom: 0;
}

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



/*  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: #dcacfa;
    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: #dcacfa;
}

.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: #d3e8fe;
}
/*
#registration:before{
    content: "";
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;
    background: url("../img/home_background.jpg") no-repeat 50% 50%;
    background-size: cover;
}
*/
header{
    padding: 1em;
    max-width: 100%;
    display: flex;
    align-items: center;
}

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

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

.registration-h1{
    color: #00bacb;
    font-size: 2.5em;
    margin: 0;
    line-height: 1em;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .3);
    opacity: .9;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 800;
}
@media screen and (max-width: 50em) {
    .registration-h1{
        font-size: 2.2em;
    }
}

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

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

#registration h2{
    margin-top: 1em;
}

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

@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;
}

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



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

.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-weight: 600;
    font-size: .8em;
}

.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: 2em 0 0;
}

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


/* 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: calc(100% - 44px);
    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{

}

.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;
}

.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;
}


.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;
    }
}


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


.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 {
    border: 1px solid #d4d0c1;
    padding: 1.4em 2em 1.2em 6em;
    font-style: normal;
    background-color: rgba(251, 242, 209, 0.7);
    position: relative;
}
.info_speed i{
    font-size: 3em;
    opacity: .2;
    margin: -.6em 0 0;
    position: absolute;
    top: 50%;
    left: 0.6em;
}


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


.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;
    }
}


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

.fancybox-content a{
    text-decoration: none;
    border-bottom: 1px dotted #209fe0;
    color: #209fe0;
    outline: none;
    cursor: pointer;
}
.fancybox-content a:hover{
    border-bottom-color: transparent;
    color: #4cbffe;
}




.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;
        padding: 1cm 2cm !important;
        border: initial;
        border-radius: initial;
        width: 21cm;
        min-height: initial;
        box-shadow: initial;
        background: initial;
        page-break-after: always;
    }
    .registration-h1{
        font-size: 18pt;
        box-shadow: none;
    }
    .title-input{
        width: 100%;
        font-size: 21pt;
        border: none;
        background: transparent;
        padding: 0;
    }
    #registration h2{
        font-size: 14pt;
        margin: 0;
        text-align: center;
    }
    .form-group + .form-group{
        margin-top: 3mm;
    }
    .form-group-label + .dd-container{
        margin-top: 0;
    }
    .form-group-label {
        color: #aaaaaa;
    }

    .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;
    }
}

