@import url("mulish/stylesheet.css");
@import url("vasek/stylesheet.css");
body {
	padding: 0;
	margin: 0;
	height: 100vh;
    overflow: hidden;
    font-family: mulish;
}

* {
    box-sizing: border-box;
}

/* Стиль для всего скроллбара */
::-webkit-scrollbar {
    width: 8px; /* Ширина вертикального скроллбара */
    height: 12px; /* Высота горизонтального скроллбара */
}

/* Стиль фона скроллбара */
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0); /* Прозрачный фон */
}

/* Стиль бегунка скроллбара */
::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.5); /* Белый полупрозрачный бегунок */
    border-radius: 6px; /* Скругление углов бегунка */
}

/* Стиль при наведении на бегунок */
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.7); /* Бегунок становится менее прозрачным при наведении */
}

section#main {
    background: url(img/bg.webp);
    background-size: cover;
    background-position: center right;
    height: calc(100vh - 150px);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

footer {
	position: sticky;
	bottom: 0;
	height: 150px;
	background: #95231D;
	padding: 0px 100px 0px 170px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

img#logo {
    margin-top: 100px;
    margin-bottom: 95px;
    width: 100%;
}

div#subtitle {
    font-size: 64px;
    color: #fff;
    font-family: Vasek;
    text-align: center;
    width: 100%;
    line-height: 69%;
    margin-bottom: 75px;
    padding: 0px 150px;
}

div#description {
    font-size: 25px;
    color: #fff;
    font-family: mulish;
    height: 180px;
    overflow: auto;
    width: 100%;
}

p {
    margin-top: 0;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

span#ampersand {
    font-size: 24px;
    color: #fff;
    font-family: mulish;
    margin-left: 62px;
    margin-right: 55px;
}

span#collab {
    font-size: 24px;
    color: #fff;
    font-family: mulish;
    margin-left: auto;
}

img#logo_broadway {
    margin-left: auto;
}

div#main-left {
    width: 50%;
    padding-left: 95px;
}

div#main-right {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

#main-right .container {
    margin-right: 50px;
    margin-bottom: 60px;
    filter: drop-shadow(0px 0px 10px black);
    transform: scale(0.9);
    transform-origin: bottom right;
}

div#datetime-heading {
    color: #E30613;
    font-weight: bold;
    font-size: 86px;
    text-align: center;
}

div#datetime-date {
    color: #fff;
    font-size: 46px;
    line-height: 1;
    text-align: right;
}

div#datetime-time {
    font-size: 60px;
    color: #fff;
    border-left: solid 3px #fff;
    padding-left: 18px;
    margin-left: 24px;
}

div#datetime-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

div#tickets {
    margin-top: 35px;
    text-align: center;
}

div#tickets-heading {
    color: #E30613;
    font-size: 48px;
    font-weight: bold;
}

a#tickets-number {
    color: #fff;
    font-size: 28px;
    text-decoration: none;
}

div#foot-logos-and {
    display: flex;
    align-items: flex-end;
}

span#ampersand {
    align-self: center;
}

a.logo-clickable {
    position: absolute;
    right: 50px;
    top: 60px;
}


div#main-video {
    width: calc(100% / 3);
    height: 100%;
    position: relative;
}

div#main-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

div#main-video:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(90deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 100%);
    height: 100%;
    width: 100%;
}

div#main-left {
    width: calc(100% / 3);
    padding: 0;
}

div#main-right {
    width: calc(100% / 3);
}

div#subtitle {
    padding: 0px 10px;
}

div#video-control {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

div#video-control img {
    width: 60px;
    opacity: .5;
    transition: all .3s ease;
    pointer-events: none;
}

div#video-control:hover img {
    opacity: .7;
}


#unmutebtn {
	display: none;
}
#mutebtn {
	display: block;
}

#video-control.isUnmuted #unmutebtn {
	display: block;
	opacity: 0;
}

#video-control.isUnmuted #mutebtn {
	display: none;
}

div#video-control.isUnmuted img {
    opacity: 0;
}

div#video-control.isUnmuted:hover img {
    opacity: .5;
}

.twf-popup-container {
    overflow: auto;
    max-height: 90vh;
    scrollbar-color: #95231D #fff    ;
    scrollbar-width: thin;
}




@media screen and (min-width: 2000px) {
    div#description {
        height: auto;
    }
}

@media screen and (max-width:  1600px) {
	section#main {
	    background-position: 65% 0%;
	}
}

@media screen and (min-width: 1500px) and (max-width: 1600px) {
	img#logo {
	    margin-top: 50px;
	    margin-bottom: 45px;
	}

	div#subtitle {
	    margin-bottom: 40px;
	}
}

@media screen and (max-width: 1400px) {
	div#subtitle {
	    padding: 0px;
	    margin-bottom: 30px;
	}

	div#description {
	    font-size: 18px;
	    height: 135px;
	}

	footer {
	    padding-left: 90px;
	    padding-right: 50px;
	}

	span#ampersand {
	    margin-left: 40px;
	    margin-right: 38px;
	}
	
	img#logo {
        margin-top: 140px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 1300px) and (min-width: 1200px) {
	img#logo {
	    margin-top: 60px;
	}

	div#subtitle {
	    font-size: 48px;
	    padding: 0px 20px;
	}

	div#description {
	    font-size: 14px;
	}

	div#datetime-date {
	    font-size: 32px;
	}

	div#datetime-time {
	    font-size: 42px;
	}

	a.logo-clickable {
	    top: 35px;
	    width: 80px;
	}

	a.logo-clickable img {
	    display: block;
	    width: 100%;
	}

	div#tickets {
	    margin-top: 10px;
	}
	div#foot-logos-and img {
    height: 70px;
}

span#collab {
    font-size: 16px;
}

img#logo_broadway {
    height: 60px;
}

footer {
    height: 100px;
}

section#main {
    height: calc(100% - 100px);
}
}

@media screen and (max-width: 1200px) {
	section#main {
	    background-position: 80% 0%;
	    background-color: rgba(0,0,0,0.5);
	    background-blend-mode: color;
	    flex-direction: column;
	    padding: 0px 50px;
	    height: auto;
	}

	div#main-left {
	    width: 100%;
	    padding: 0;
	}

	div#main-right {
	    width: 100%;
	    align-items: center;
	    justify-content: center;
	    margin-bottom: 40px;
	}

	div#description {
	    height: auto;
	    font-size: 18px;
	}

	body {
	    height: auto;
	    overflow: auto;
	    background: #000;
	}

	footer {
	    position: static;
	}

	#main-right .container {
	    display: flex;
	    align-items: flex-start;
	    justify-content: center;
	    margin: auto;
	    width: 100%;
	    transform: unset;
	}

	div#datetime {
	    width: 50%;
	}

	div#tickets {
	    width: 50%;
	    margin-top: 0;
	}

	div#datetime-heading {
	    font-size: 60px;
	}

	div#tickets-heading {
	    font-size: 60px;
	}

	a#tickets-number {
	    font-size: 38px;
	}

	span#collab {
	    font-size: 18px;
	    text-align: center;
	}

	div#main-left {
	    order: 0;
	}

	div#main-right {
	    order: 1;
	}

	div#main-video {
	    order: 2;
	    width: calc(100% + 100px);
	    margin-left: -50px;
	    margin-top: 30px;
	}

	div#main-video:before {
	    background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%, rgba(0, 0, 0, 1) 0%);
	    height: 40%;
	    border-top: solid 7px #95231d;
	    background: transparent;
	}
}

@media screen and (max-width: 1000px) {
    div#main-video {
    	width: calc(100% + 60px);
    	margin-left: -30px;
    }
    a.logo-clickable {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        top: 25px;
    }
    
	section#main {
	    padding: 0px 30px;
	    background-position: 75% 0%;
	}

	img#logo {
	    margin-top: 140px;
	    margin-bottom: 40px;
	}

	div#subtitle {
	    font-size: 40px;
	    margin-bottom: 40px;
	}

	div#description {
	    font-size: 14px;
	}

	#main-right .container {
	    flex-direction: column;
	    align-items: center;
	    justify-content: flex-start;
	}

	div#datetime {
	    width: 100%;
	    margin-bottom: 40px;
	    margin-top: 40px;
	}

	div#tickets {
	    width: 100%;
	}

	div#datetime-heading {
	    font-size: 36px;
	}

	div#tickets-heading {
	    font-size: 36px;
	}

	div#datetime-date {
	    font-size: 16px;
	}

	div#datetime-time {
	    font-size: 16px;
	}

	div#datetime-block {
	    margin-top: 15px;
	}

	a#tickets-number {
	    font-size: 16px;
	}

	div#foot-logos-and {
		margin-bottom: 40px;
	}

	footer {
	    padding: 10px 30px;
	    height: auto;
	}

	footer .container {
	    flex-direction: column;
	}

	span#collab {
	    margin-bottom: 30px;
	}

	img#logo_broadway {
	    width: 100%;
	}
}