@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: all 0.1s ease-in;
}

*:focus {
    outline: none !important;
    transition: all 0.1s ease-in;
}
html,
body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    height: 100%;
    width: 100%;
    position: relative;
    height: -webkit-fill-available;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden !important;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    background: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.voyo-live-header {
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    background: #000;
}
.voyo-live-header-logo {
    display: flex;
    width: 80px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.voyo-logo {
    width: 100%;
    height: auto;
}
.voyo-live-header .hover-fill {
    opacity: 0;
    fill: #6f5ee1;
    transition: opacity 0.1s linear;
}
.voyo-live-header .voyo-logo:hover .hover-fill {
    opacity: 1;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100% - 130px);
}
.video-wrapper {
    width: 100%;
    height: 100%;
}

.video-wrapper iframe {
    aspect-ratio: 16 / 9;
	height: 100%;
	width: 100%;
}

/* FOOTER */
footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 60px;
    background: #6f5ee1;
    margin-top: auto;
}

footer p {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#tapad_url {
    display: none;
}