@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

*, *:before, *:after{
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    position: relative;
}

body{
    font-family: Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.25;
    color: #716558;
    overflow-x: hidden;
}

.main{
    background: url("../img/bg.jpg") no-repeat center / cover;
    min-height: 100vh;
    overflow: hidden;
    padding: -webkit-calc((50 / 900) * 100vh) 0;
    padding: calc((50 / 900) * 100vh) 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.main:before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
    -webkit-transition: .75s;
    -o-transition: .75s;
    transition: .75s;
    background: rgba(0, 0, 0, 0);
}

.ticket_flipped_mode .main:before{
    background: rgba(0, 0, 0, .4);
}

.btn{
    height: -webkit-calc(((72 / 900) * 100vh));
    height: calc(((72 / 900) * 100vh));
    border-radius: -webkit-calc((((72 / 900) * 100vh) / 2));
    border-radius: calc((((72 / 900) * 100vh) / 2));
    width: -webkit-calc(((280 / 1920) * 100vw));
    width: calc(((280 / 1920) * 100vw));
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #EA5233;
    color: #fff;
    font-size: -webkit-calc(22px);
    font-size: calc(22px);
    border: 1px solid #EA5233;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.btn-alt{
    background: #fff;
    color: #EA5233;
    border-color: #fff;
}

.btn:hover{
    background: #fff;
    color: #EA5233;
    border-color: #EA5233;
}

.btn + .btn{
    margin-left: 8%;
}

.logo{
    display: block;
    line-height: 0;
    height: -webkit-calc((51 / 900) * 100vh);
    height: calc((51 / 900) * 100vh);
    min-height: 40px;
    margin-right: auto;
    margin-left: -webkit-calc((90 / 1920) * 100vw);
    margin-left: calc((90 / 1920) * 100vw);
    z-index: 3;
}
.logo img{
    height: 100%;
}
.logo-mob{
    display: none;
}

.tickets{
    width: 100%;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 0;
    z-index: 2;
}

.tickets::-webkit-scrollbar {
    width: 0;
}

.tickets::-webkit-scrollbar-thumb,
.tickets::-webkit-scrollbar-track {
    background: transparent;
}

.ticket{
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    height: -webkit-calc((418 / 900) * 100vh);
    height: calc((418 / 900) * 100vh);
    width: -webkit-calc((992.2/ 900) * 100vh);
    width: calc((992.2/ 900) * 100vh);
    opacity: 1;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 3%) rotate(90deg) scale3d(.4545, .4545, .4545);
    transform: translate(-50%, 3%) rotate(90deg) scale3d(.4545, .4545, .4545);
    overflow: hidden;
}

.ticket_showed_mode .ticket.default_view{
    opacity: 0;
    pointer-events: none;
}

.show_deck .ticket:nth-child(2){
    -webkit-transform: translate(-69.5%, 11%) rotate(75deg) scale3d(.4545, .4545, .4545);
    transform: translate(-69.5%, 11%) rotate(75deg) scale3d(.4545, .4545, .4545);
}
.show_deck .ticket:nth-child(4){
    -webkit-transform: translate(-30.5%, 11%) rotate(105deg) scale3d(.4545, .4545, .4545);
    transform: translate(-30.5%, 11%) rotate(105deg) scale3d(.4545, .4545, .4545);
}
.show_deck .ticket:first-child{
    -webkit-transform: translate(-86.5%, 29.5%) rotate(60deg) scale3d(.4545, .4545, .4545);
    transform: translate(-86.5%, 29.5%) rotate(60deg) scale3d(.4545, .4545, .4545);
}
.show_deck .ticket:last-child{
    -webkit-transform: translate(-13.5%, 29.5%) rotate(120deg) scale3d(.4545, .4545, .4545);
    transform: translate(-13.5%, 29.5%) rotate(120deg) scale3d(.4545, .4545, .4545);
}

.ticket.default_view {
    cursor: pointer;
}

.ticket.showed{
    z-index: 2;
    overflow: visible;
}

.show_deck .ticket.showed{
    -webkit-transform: translate(-50%, 3%) rotate(0deg) scale3d(1, 1, 1);
    transform: translate(-50%, 3%) rotate(0deg) scale3d(1, 1, 1);
}

.ticket__inner {
    -webkit-transition: ease-in .75s;
    -o-transition: ease-in .75s;
    transition: ease-in .75s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    width: 100%;
    height: 100%;
}

.ticket.flipped .ticket__inner {
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}

.ticket.default_view .ticket__back,
.ticket.flipped .ticket__front {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.ticket__front,
.ticket__back {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ticket__front{
    background: url("../img/ticket-front.png") no-repeat center / contain;
}

.ticket__back {
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
    background: url("../img/ticket-back.png") no-repeat center / contain;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    overflow: hidden;
}

.ticket__buttons{
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    position: absolute;
    width: 100%;
    height: -webkit-calc(((100vh) - 100%) / 2);
    height: calc(((100vh) - 100%) / 2);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 100%;
}

.ticket_flipped_mode .ticket__buttons{
    visibility: visible;
}

.ticket_buttons_visible_mode .ticket__buttons{
    opacity: 1;
}

.ticket__left_part{
    width: 77%;
}

.ticket__right_part{
    width: 23%;
}

.ticket__left_part__tourname,
.ticket__right_part__tourname{
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}
.ticket__left_part__tourname{
    font-size: -webkit-calc(((42 / 900) * 100vh));
    font-size: calc(((42 / 900) * 100vh));
    line-height: -webkit-calc(((100 / 900) * 100vh));
    line-height: calc(((100 / 900) * 100vh));
    height: -webkit-calc(((100 / 900) * 100vh));
    height: calc(((100 / 900) * 100vh));
    width: 63%;
}
.ticket__right_part__tourname{
    font-size: -webkit-calc(((20 / 900) * 100vh));
    font-size: calc(((20 / 900) * 100vh));
    line-height: -webkit-calc(((68 / 900) * 100vh));
    line-height: calc(((68 / 900) * 100vh));
    height: -webkit-calc(((64 / 900) * 100vh));
    height: calc(((64 / 900) * 100vh));
}

.offer{
    padding: -webkit-calc((30 / 900) * 100vh) -webkit-calc((240 / 900) * 100vh) 0 -webkit-calc((60 / 900) * 100vh);
    padding: calc((30 / 900) * 100vh) calc((240 / 900) * 100vh) 0 calc((60 / 900) * 100vh);
    text-transform: uppercase;
}

.offer__bonus,
.offer__game{
    font-size: -webkit-calc(((26 / 900) * 100vh));
    font-size: calc(((26 / 900) * 100vh));
    line-height: -webkit-calc(((28 / 900) * 100vh));
    line-height: calc(((28 / 900) * 100vh));
    font-weight: 500;
}

.offer__game{
    margin-top: -webkit-calc(((28 / 900) * 100vh));
    margin-top: calc(((28 / 900) * 100vh));
}

.offer__code_wrap{
    margin-top: -webkit-calc(((36 / 900) * 100vh));
    margin-top: calc(((36 / 900) * 100vh));
    line-height: -webkit-calc(((55 / 900) * 100vh));
    line-height: calc(((55 / 900) * 100vh));
    font-size: -webkit-calc(((48 / 900) * 100vh));
    font-size: calc(((48 / 900) * 100vh));
    font-weight: 700;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.offer__code{
    border: none;
    background: transparent;
    font-weight: 700;
    color: #716558;
    cursor: pointer;
    outline: none;
}

.offer__code.copied{
    color: #005bb5;
}

.ticket__terms{
    padding: -webkit-calc((22/ 900) * 100vh) -webkit-calc((22/ 900) * 100vh) 0;
    padding: calc((22/ 900) * 100vh) calc((22/ 900) * 100vh) 0;
    font-size: -webkit-calc(12px);
    font-size: calc(12px);
    line-height: -webkit-calc(16px);
    line-height: calc(16px);
}

.ticket__terms span{
    font-weight: 700;
    text-transform: uppercase;
    font-size: -webkit-calc(16px);
    font-size: calc(16px);
    line-height: -webkit-calc(20px);
    line-height: calc(20px);
    margin-bottom: .75em;
    display: block;
}

.bottom_text{
    margin-top: auto;
    height: -webkit-calc((222 / 900) * 100vh);
    height: calc((222 / 900) * 100vh);
    z-index: 1;
    opacity: 1;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.ticket_showed_mode .bottom_text{
    opacity: 0;
}

.portrait_terms{
    display: none;
    padding: 36px 18px 31px;
    line-height: 18px;
    color: #737A82;
    font-weight: 500;
}

.portrait_terms__title{
    color: #000;
}

.portrait_terms__text{
    display: none;
}

@media (max-width:1199px){
    .btn {
        width: -webkit-calc(((450 / 1920) * 100vw));
        width: calc(((450 / 1920) * 100vw));
    }
}

@media (max-height: 819px) {
    .ticket__terms {
        font-size: -webkit-calc(11px);
        font-size: calc(11px);
        padding: -webkit-calc((10 / 900) * 100vh) -webkit-calc((10 / 900) * 100vh) 0;
        padding: calc((10 / 900) * 100vh) calc((10 / 900) * 100vh) 0;
        line-height: -webkit-calc(14px);
        line-height: calc(14px);
    }
    .ticket__terms span {
        font-size: -webkit-calc(14px);
        font-size: calc(14px);
        line-height: -webkit-calc(16px);
        line-height: calc(16px);
    }
}

@media (max-height: 694px) {
    .ticket__terms {
        font-size: -webkit-calc(10px);
        font-size: calc(10px);
    }
    .ticket__terms span {
        font-size: -webkit-calc(12px);
        font-size: calc(12px);
        line-height: -webkit-calc(14px);
        line-height: calc(14px);
        margin-bottom: .25em;
    }
    .btn {
        font-size: -webkit-calc(20px);
        font-size: calc(20px);
    }
}

@media (orientation: landscape) and (max-aspect-ratio: 1300 / 927){
    .ticket {
        height: -webkit-calc((369.6 / 900) * 100vh);
        height: calc((369.6 / 900) * 100vh);
        width: -webkit-calc((880 / 900) * 100vh);
        width: calc((880 / 900) * 100vh);
    }

    .ticket__left_part__tourname {
        font-size: -webkit-calc(((36 / 900) * 100vh));
        font-size: calc(((36 / 900) * 100vh));
        line-height: -webkit-calc(((88 / 900) * 100vh));
        line-height: calc(((88 / 900) * 100vh));
        height: -webkit-calc(((88 / 900) * 100vh));
        height: calc(((88 / 900) * 100vh));
    }
    .offer {
        padding: -webkit-calc((22 / 900) * 100vh) -webkit-calc((210 / 900) * 100vh) 0 -webkit-calc((54 / 900) * 100vh);
        padding: calc((22 / 900) * 100vh) calc((210 / 900) * 100vh) 0 calc((54 / 900) * 100vh);
    }
    .offer__bonus, .offer__game {
        font-size: -webkit-calc(((22 / 900) * 100vh));
        font-size: calc(((22 / 900) * 100vh));
        line-height: -webkit-calc(((24 / 900) * 100vh));
        line-height: calc(((24 / 900) * 100vh));
    }
    .offer__code_wrap {
        margin-top: -webkit-calc(((30 / 900) * 100vh));
        margin-top: calc(((30 / 900) * 100vh));
        line-height: -webkit-calc(((44 / 900) * 100vh));
        line-height: calc(((44 / 900) * 100vh));
        font-size: -webkit-calc(((40 / 900) * 100vh));
        font-size: calc(((40 / 900) * 100vh));
    }
    .ticket__right_part__tourname {
        font-size: -webkit-calc(((16 / 900) * 100vh));
        font-size: calc(((16 / 900) * 100vh));
        line-height: -webkit-calc(((58 / 900) * 100vh));
        line-height: calc(((58 / 900) * 100vh));
        height: -webkit-calc(((54 / 900) * 100vh));
        height: calc(((54 / 900) * 100vh));
    }
    .ticket__terms {
        padding: -webkit-calc((10/ 900) * 100vh) -webkit-calc((10/ 900) * 100vh) 0;
        padding: calc((10/ 900) * 100vh) calc((10/ 900) * 100vh) 0;
        line-height: -webkit-calc(11px);
        line-height: calc(11px);
    }
    .ticket__terms span {
        font-size: -webkit-calc(10px);
        font-size: calc(10px);
        line-height: -webkit-calc(11px);
        line-height: calc(11px);
        margin-bottom: 0;
    }
}

@media (orientation: landscape) and (max-height: 599px){
    .main {
        min-height: 600px;
    }
    .main {
        padding: 30px 0;
    }
    .main:before {
        z-index: 2;
    }
    .ticket {
        height: 231px;
        width: 550px;
    }
    .ticket__left_part__tourname {
        line-height: -webkit-calc(55px);
        line-height: calc(55px);
        height: -webkit-calc(55px);
        height: calc(55px);
        font-size: 20px;
    }
    .ticket__right_part__tourname {
        line-height: -webkit-calc(33px);
        line-height: calc(33px);
        height: -webkit-calc(33px);
        height: calc(33px);
        font-size: 9.25px;
    }
    .offer__code_wrap {
        margin-top: 17.6px;
        line-height: 26.4px;
        font-size: 26.4px;
    }
    .offer{
        padding: 17.6px 132px 0 26.4px;
    }
    .offer__bonus, .offer__game {
        font-size: 15.4px;
        line-height: 15.4px;
    }
    .ticket__terms span {
        font-size: 10px;
        line-height: 13.65px;
        margin-bottom: .55em;
    }
    .ticket__terms {
        font-size: 8.8px;
        line-height: 11px;
    }
    .bottom_text {
        height: 148px;
    }
    .ticket_showed_mode .bottom_text {
        opacity: 1;
        z-index: 1;
    }
    .btn {
        height: -webkit-calc(42px);
        height: calc(42px);
        border-radius: -webkit-calc(21px);
        border-radius: calc(21px);
        font-size: -webkit-calc(18px);
        font-size: calc(18px);
    }
    .ticket__buttons{
        height: 79.2px;
    }
}

@media (orientation: portrait) {
    .main {
        padding: -webkit-calc((20 / 623) * 100vh) 0;
        padding: calc((20 / 623) * 100vh) 0;
    }
    .main:after {
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: -webkit-calc((127 / 623) * 100vh);
        height: calc((127 / 623) * 100vh);
        z-index: 0;
        top: 0;
        left: 0;
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0)));
        background: -o-linear-gradient(top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    }
    .logo{
        margin: 0 auto -webkit-calc((5 / 623) * 100vh);
        margin: 0 auto calc((5 / 623) * 100vh);
        height: -webkit-calc((64 / 623) * 100vh);
        height: calc((64 / 623) * 100vh);
        min-height: auto;
    }
    .logo-desktop{
        display: none;
    }
    .logo-mob {
        display: block;
    }
    .tickets{
        opacity: 1;
    }
    .tickets.show_deck{
        overflow: auto;
        overflow-y: hidden;
    }
    .ticket_showed_mode .tickets.show_deck{
        overflow: unset;
    }
    .tickets__wrap{
        width: -webkit-calc( (((226 / 623) * 100vh) * 3) + (((16 / 623) * 100vh) * 4) );
        width: calc( (((226 / 623) * 100vh) * 3) + (((16 / 623) * 100vh) * 4) );
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-animation-duration: .75s;
        animation-duration: .75s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        opacity: 0;
        padding-left: -webkit-calc((16 / 623) * 100vh);
        padding-left: calc((16 / 623) * 100vh);
    }
    .ticket{
        position: relative;
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        height: -webkit-calc((141 / 623) * 100vh);
        height: calc((141 / 623) * 100vh);
        width: -webkit-calc((226 / 623) * 100vh);
        width: calc((226 / 623) * 100vh);
        margin-top: -webkit-calc((20 / 623) * 100vh);
        margin-top: calc((20 / 623) * 100vh);
        margin-right: -webkit-calc((16 / 623) * 100vh);
        margin-right: calc((16 / 623) * 100vh);
    }
    .ticket__front {
        background-image: url("../img/ticket-front-mob.png");
    }
    .ticket__back {
        background-image: url("../img/ticket-back-mob.png");
        display: block;
        -webkit-transform: rotateX(-180deg) rotateZ(-90deg) translate(-30%, 19%);
        transform: rotateX(-180deg) rotateZ(-90deg) translate(-30%, 19%);
        width: -webkit-calc((141 / 623) * 100vh);
        width: calc((141 / 623) * 100vh);
        height: -webkit-calc((226 / 623) * 100vh);
        height: calc((226 / 623) * 100vh);
    }
    .show_deck .ticket:nth-child(2),
    .show_deck .ticket:nth-child(4),
    .show_deck .ticket:first-child,
    .show_deck .ticket:last-child{
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    .show_deck .ticket.showed {
        -webkit-transform: rotate(90deg) scale3d(1.5, 1.5, 1.5);
        transform: rotate(90deg) scale3d(1.5, 1.5, 1.5);
    }
    .ticket__left_part{
        width: auto;
    }
    .ticket__left_part__tourname {
        font-size: -webkit-calc(((18 / 623) * 100vh) / 1.5);
        font-size: calc(((18 / 623) * 100vh) / 1.5);
        line-height: -webkit-calc(((44 / 623) * 100vh) / 1.5);
        line-height: calc(((44 / 623) * 100vh) / 1.5);
        height: -webkit-calc(((44 / 623) * 100vh) / 1.5);
        height: calc(((44 / 623) * 100vh) / 1.5);
        width: 100%;
    }
    .offer {
        padding: -webkit-calc(((20 / 623) * 100vh) / 1.5) -webkit-calc(((20 / 623) * 100vh) / 1.5) 0;
        padding: calc(((20 / 623) * 100vh) / 1.5) calc(((20 / 623) * 100vh) / 1.5) 0;
    }
    .offer__bonus, .offer__game {
        font-size: -webkit-calc(((16 / 623) * 100vh) / 1.5);
        font-size: calc(((16 / 623) * 100vh) / 1.5);
        line-height: -webkit-calc(((22 / 623) * 100vh) / 1.5);
        line-height: calc(((22 / 623) * 100vh) / 1.5);
    }
    .offer__subtitle{
        font-size: -webkit-calc(((14 / 623) * 100vh) / 1.5);
        font-size: calc(((14 / 623) * 100vh) / 1.5);
        color: rgba(113, 101, 88, .7);
        display: block;
    }
    .offer__game {
        margin-top: -webkit-calc(((11 / 623) * 100vh) / 1.5);
        margin-top: calc(((11 / 623) * 100vh) / 1.5);
    }
    .offer__code_wrap {
        margin-top: -webkit-calc(((20 / 623) * 100vh) / 1.5);
        margin-top: calc(((20 / 623) * 100vh) / 1.5);
        line-height: -webkit-calc(((18 / 623) * 100vh) / 1.5);
        line-height: calc(((18 / 623) * 100vh) / 1.5);
        font-size: -webkit-calc(((18 / 623) * 100vh) / 1.5);
        font-size: calc(((18 / 623) * 100vh) / 1.5);
    }
    .ticket__right_part{
        display: none;
    }
    .ticket__buttons{
        width: -webkit-calc((141 / 623) * 100vh);
        width: calc((141 / 623) * 100vh);
        top: 0;
        left: 38%;
        height: -webkit-calc(((100vh / 1.5) - ((226 / 623) * 100vh)) / 2);
        height: calc(((100vh / 1.5) - ((226 / 623) * 100vh)) / 2);
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transform-origin: 100% 0;
        -ms-transform-origin: 100% 0;
        transform-origin: 100% 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: space-evenly;
        -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    }
    .btn {
        height: -webkit-calc(((46 / 623) * 100vh) / 1.5);
        height: calc(((46 / 623) * 100vh) / 1.5);
        border-radius: -webkit-calc(((23 / 623) * 100vh) / 1.5);
        border-radius: calc(((23 / 623) * 100vh) / 1.5);
        width: -webkit-calc(((200 / 623) * 100vh) / 1.5);
        width: calc(((200 / 623) * 100vh) / 1.5);
        font-size: -webkit-calc(((16 / 623) * 100vh) / 1.5);
        font-size: calc(((16 / 623) * 100vh) / 1.5);
    }
    .btn + .btn {
        margin-left: 0;
    }
    .ticket_buttons_visible_mode .portrait_terms{
        display: block;
    }
    .bottom_text {
        height: -webkit-calc((124 / 623) * 100vh);
        height: calc((124 / 623) * 100vh);
        margin-top: -webkit-calc((35 / 623) * 100vh);
        margin-top: calc((35 / 623) * 100vh);
    }
}

@media (orientation: portrait) and (max-width: 599px) {
    body {
        font-size: 12px;
    }
    .portrait_terms {
        padding: 20px 15px;
        line-height: 16px;
    }
}

/* Animations */
.animate__fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}
.animate__fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}