@font-face {
    font-family: 'Mont';
    font-style: normal;
    src:
        url('../fonts/Mont-Regular.woff2') format('woff2'),
        url('../fonts/Mont-Regular.woff') format('woff'),
        url('../fonts/Mont-Regular.ttf') format('ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    font-style: normal;
    src:
        url('../fonts/Mont-SemiBold.woff2') format('woff2'),
        url('../fonts/Mont-SemiBold.woff') format('woff'),
        url('../fonts/Mont-SemiBold.ttf') format('ttf');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    font-style: normal;
    src:
        url('../fonts/Mont-Bold.woff2') format('woff2'),
        url('../fonts/Mont-Bold.woff') format('woff'),
        url('../fonts/Mont-Bold.ttf') format('ttf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Mont';
    font-style: normal;
    src:
        url('../fonts/Mont-Black.woff2') format('woff2'),
        url('../fonts/Mont-Black.woff') format('woff'),
        url('../fonts/Mont-Black.ttf') format('ttf');
    font-weight: 900;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #FFE300;
    border-radius: 5px;
}

ul {
    list-style: none;
}

img {
    display: block;
    height: 100%;
    width: 100%;
}

button {
    font-family: 'Mont';
}

a {
    text-decoration: none;
    cursor: pointer;
}

html, body {
    width: 100%;
}

body {
    position: relative;
    font-family: 'Mont';
    font-style: normal;
    font-weight: 600;
    background-color: #000;
    padding-bottom: 20px;
}

body.menu__open {
    overflow: hidden;
}

.visually-hidden {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip-path: none;
    color: #000;
    background-color: #000;
}

.page__background {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: -1;
    background: center / cover no-repeat url("../images/abstract-backgroundDesktop.jpg");

  }
  
@media (min-device-pixel-ratio: 2),
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi),
(min-resolution: 2dppx) {
  
  .page__background {
    background: center / cover no-repeat url("../images/abstract-backgroundDesktop2x.jpg");
    }
}

.container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    justify-content: space-between;
}

.none-block {
    display: none;
}

/* HEADER */

header {
    position: relative;
    width: 100%;
    height: 140px;
    border-bottom: 2px solid #FFE300;
    margin-bottom: 85px;
}

header > .container {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    justify-content: space-between;
}

header > .mobile__header {
    display: none;
}

.header__navigation {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header__navigation--left {
    margin-left: 0;
    margin-right: auto;
}

.header__navigation--right {
    margin-left: auto;
    margin-right: 0;
}

.header__navigation__item {
    width: 130px;
    height: 138px;
    opacity: 0.7;
}

.header__navigation__link {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: #3A3A3A;
    -webkit-transition: all 0.4s;
    -o-transition:all 0.4s;
    transition: all 0.4s;
}

.header__navigation__link:hover {
    color: #FFFFFF;
    background: -o-linear-gradient(180deg, rgba(58, 58, 58, 0) 0%, rgba(56, 56, 56, 0.5) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(58, 58, 58, 0)), color-stop(100%, rgba(56, 56, 56, 0.5)));
    background: -o-linear-gradient(top, rgba(58, 58, 58, 0) 0%, rgba(56, 56, 56, 0.5) 100%);
    background: linear-gradient(180deg, rgba(58, 58, 58, 0) 0%, rgba(56, 56, 56, 0.5) 100%);
}

.header__navigation__link svg {
    fill: #3A3A3A;
    margin-bottom: 15px;
    -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
    transition: all 0.4s;
}

.header__navigation__link:hover svg {
    fill: #FFE300;
}

.header__navigation__link.active__link {
    color: #FFFFFF;
    background: -o-linear-gradient(180deg, rgba(58, 58, 58, 0) 0%, rgba(56, 56, 56, 0.5) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(58, 58, 58, 0)), color-stop(100%, rgba(56, 56, 56, 0.5)));
    background: -o-linear-gradient(top, rgba(58, 58, 58, 0) 0%, rgba(56, 56, 56, 0.5) 100%);
    background: linear-gradient(180deg, rgba(58, 58, 58, 0) 0%, rgba(56, 56, 56, 0.5) 100%);
}

.header__navigation__link.active__link svg {
    fill: #FFE300;
}

/* LOGO */
.logo__container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    justify-content: center;
    width: 315px;
    height: 170px;
    padding: 0 40px;
    background: radial-gradient(67.35% 70% at 78.08% 26.76%, #1B1B1B 0%, #000000 100%);
    border: 2px solid #FFE300;
    border-top: none;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    -webkit-box-shadow: 10px 10px 17px rgba(0, 0, 0, 0.6), 0px 20px 150px rgba(255, 227, 0, 0.5);
    box-shadow: 10px 10px 17px rgba(0, 0, 0, 0.6), 0px 20px 150px rgba(255, 227, 0, 0.5);
}

.logo__container img {
    height: 30px;
    margin-bottom: 5px;
}

.logo__slogan {
    position: relative;
    font-style: italic;
    color: rgba(225, 225, 225, 0);
    font-size: 14px;
    text-transform: uppercase;
    text-align: right;
}

.logo__slogan::before {
    content: '';
    position: absolute;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-image: url('../images/logo-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.burger__menu__backdrop {
    display: none;
}

/* EVENT SECTION */
.event__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 50px;
}

/* EVENT IMAGE */
.event__video__block {
    position: relative;
    width: 50%;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
}

.event__image__block {
    width: 100%;
    height: 100%;
}

.videoError {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(39, 39, 39, 0.7);
    padding: 20px 40px;
}

.videoError__image {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.videoError__text {
    color: rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 1px;
}

.event__logo {
    position: absolute;
    top: 50%;
    left: 30px;
    width: 270px;
    height: 34px;
    transform: translateY(-50%) scale(2);
    -webkit-transform: translateY(-50%) scale(2);
        -ms-transform: translateY(-50%) scale(2);
    z-index: 2;
}

.event__image__shadow {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.541667) 45.72%, rgba(12, 12, 12, 0) 88.43%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #000000), color-stop(88.43%, rgba(12, 12, 12, 0)));
    background: -o-linear-gradient(left, #000000 0%, rgba(0, 0, 0, 0.541667) 45.72%, rgba(12, 12, 12, 0) 88.43%);
    background: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.541667) 45.72%, rgba(12, 12, 12, 0) 88.43%);
    opacity: 0.8;
    z-index: 1;
}

/* EVENT SPORT BLOCK */
.event__sport__block {
    width: 47%;
    height: 380px;
    background-color: rgba(46, 46, 46, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.event__sport__tab__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.tab__button {
    position: relative;
    padding: 13px 0;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    color: rgb(255, 255, 255);
    background-color: rgba(255, 227, 0, 0.5);
    cursor: pointer;
    -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
    transition: all 0.4s;
    border: none;
    outline: none;
}

.tab__button:not(:first-child) {
    border-left: 1px solid #ffffff;
}

.tab__button:hover {
    background-color: #bba500;
}

.tab__button.active {
    background-color: white;
    color: #000000;
}

.sport__content__wrapper {
    height: 380px;
    overflow-y: auto;
    opacity: 0.7;
}

.sport__content__list {
    display: none;
}

.sport__content__list.active {
    display: block;
    height: 100%;
}

.sport__content__item {
    display: grid;
    grid-template-columns: 10% 20% 10% 15% 10% 20% 15%;
    width: 100%;
    background: inherit;
}

.sport__content__link {
    -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
    transition: all 0.4s;
}

.sport__content__link:nth-child(2n+1) {
    background: -o-linear-gradient(90deg, #282828 0%, rgba(40, 40, 40, 0) 83.65%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #282828), color-stop(83.65%, rgba(40, 40, 40, 0)));
    background: -o-linear-gradient(left, #282828 0%, rgba(40, 40, 40, 0) 83.65%);
    background: linear-gradient(90deg, #282828 0%, rgba(40, 40, 40, 0) 83.65%);
}

.sport__content__link:nth-child(2n) {
    background-color: #2E2E2E;
}

.sport__content__link.active {
    background: -o-linear-gradient(90deg, rgba(255, 227, 0, 0.5) 0%,rgba(255, 227, 0, 0) 83.65%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 227, 0, 0.5)), color-stop(83.65%, rgba(255, 227, 0, 0)));
    background: -o-linear-gradient(left, rgba(255, 227, 0, 0.5) 0%, rgba(255, 227, 0, 0) 83.65%);
    background: linear-gradient(90deg, rgba(255, 227, 0, 0.5) 0%, rgba(255, 227, 0, 0) 83.65%);
}

.sport__content__link:hover {
    background: -o-linear-gradient(90deg, rgba(255, 227, 0, 0.5) 0%, rgba(255, 227, 0, 0) 83.65%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 227, 0, 0.5)), color-stop(83.65%, rgba(255, 227, 0, 0)));
    background: -o-linear-gradient(left, rgba(255, 227, 0, 0.5) 0%, rgba(255, 227, 0, 0) 83.65%);
    background: linear-gradient(90deg, rgba(255, 227, 0, 0.5) 0%, rgba(255, 227, 0, 0) 83.65%);
}

.grid__element {
    align-self: center;
    justify-self: center;
    height: 45px;
}

.sport__content__item img {
    width: 25px;
    height: 25px;
}

.sport__event__team {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    text-align: center;
}

.sport__event__score {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    justify-content: center;
}

.sport__event__score--date {
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
}

.sport__event__score--time {
    font-size: 12px;
    line-height: 15px;
    color: #CBCBCB;
}

.sport__event__status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    line-height: 18px;
}

.live {
    color: #F40F3E;
}

/* CURRENT ADDRESS */

.current__address {
    display: inline-block;
    height: auto;
    width: 100%;
    padding: 8px 20px;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    text-align: center;
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
    transition: all 0.4s;
}

.current__address:hover {
    background-color: #FFFFFF;
    color: #000;
}

/* LIVE SCORE */

.live__score__container {
    width: 70%;
    border-radius: 10px;
    overflow: hidden;
}

.live__score__tab__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px;
    background: rgba(255, 227, 0, 0.3);
    border-radius: 10px 10px 0px 0px;
}

.tab__button__live__score {
    position: relative;
    padding: 14px 0;
    margin: 0 10px;
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
    background-color: transparent;
    text-align: center;
    cursor: pointer;
    opacity: 0.7;
    -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
    transition: all 0.4s;
    border: none;
    outline: none;
    text-decoration: none;
}

.tab__button__live__score:hover {
    opacity: 1;
}

.tab__button__live__score.active {
    opacity: 1;
}

.tab__button__live__score::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 14px;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
    transition: all 0.4s;
}

.tab__button__live__score:hover::after {
    transform: scale(1);
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
}

.tab__button__live__score.active::after {
    transform: scale(1);
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
}

.live__score__content__wrapper {
    overflow-y: auto;
    background-color: #2E2E2E;
}

.live__score__content__item {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

.live__score__content__item.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.live__score__content__line,
.live__score__content__prediction {
    display: grid;
    grid-template-columns: 10% 50% 10% 10% 10% 10%;
    width: 100%;
}
.grid__score__element {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    justify-content: center;
    height: 45px;
}

.sport__event__emblem {
    width: 30px;
    height: 30px;
}

.live__score__match {
    display: grid;
    grid-template-columns: 42% 16% 42%;
    column-gap: 15px;
}

.live__score__match--leftTeam {
    text-align: end;
}

.live__score__match--leftTeam,
.live__score__match--rightTeam {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.live__score__content__list {
    height: 405px;
}

.live__score__content__line {
    font-size: 18px;
    line-height: 23px;
    color: #FFFFFF;
    -webkit-box-align: center;
        -ms-flex-align: center;
    align-items: center;
    justify-self: center;
    background: -o-linear-gradient(90deg, #282828 0%, rgba(40, 40, 40, 0) 83.65%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #282828), color-stop(83.65%, rgba(40, 40, 40, 0)));
    background: -o-linear-gradient(left, #282828 0%, rgba(40, 40, 40, 0) 83.65%);
    background: linear-gradient(90deg, #282828 0%, rgba(40, 40, 40, 0) 83.65%);
    border-left: 4px solid #FFE300;
}

.live__score__star {
    display: block;
    width: 22px;
    height: 21px;
    margin: 0 auto;
}

.live__score__tournament {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
    justify-content: flex-start;
}

.live__score__content__prediction {
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
    -webkit-box-align: center;
        -ms-flex-align: center;
    align-items: center;
    justify-self: center;
}

.live__score__content__prediction.selected {
    background: -o-linear-gradient(90deg, rgba(255, 227, 0, 0.3) 0%, rgba(255, 227, 0, 0) 83.65%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 227, 0, 0.3)), color-stop(83.65%, rgba(255, 227, 0, 0)));
    background: -o-linear-gradient(left, rgba(255, 227, 0, 0.3) 0%, rgba(255, 227, 0, 0) 83.65%);
    background: linear-gradient(90deg, rgba(255, 227, 0, 0.3) 0%, rgba(255, 227, 0, 0) 83.65%);
}

.live__score__match--score {
    padding: 5px 0;
    background-color: rgba(217, 217, 217, 0.4);
    border-radius: 15px;
    width: 100%;
    text-align: center;
}

.live__score__forecast {
    height: 25px;
    width: 85%;
    margin: 0 auto;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    background-color: transparent;
    border: 0.5px solid #D9D9D9;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
    transition: all 0.4s;
}

.live__score__forecast:hover {
    background-color: rgba(217, 217, 217, 0.4);
}

.live__score__forecast.selected {
    background: #D9D9D9;
    color: #282828;
}

.live__score__signal {
    width: 19px;
    height: 17px;
    margin: 0 auto;
}

/* BANNER */
.banner {
    position: relative;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    justify-content: space-between;
    width: 25%;
    height: 380px;
    padding: 20px 25px;
    background: rgba(12, 12, 12, 0.3);
    border: 1px solid #FFFFFF;
    border-radius: 10px;
}

.banner__button {
    display: none;
}

.banner__text {
    font-size: 18px;
    line-height: 23px;
    color: #fff;
    text-align: start;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.banner__text span {
    color: #FFE300;
}

.banner__bonus {
    margin-top: -25px;
}

.banner__bonus span {
    display: block;
}

.banner__bonus__sum {
    font-weight: 900;
    font-size: 125px;
    line-height: 140px;
    color: #FFE300;
}

.banner__bonus__currency {
    font-weight: 900;
    font-size: 70px;
    line-height: 70px;
    letter-spacing: 0.05em;
    color: #FFFFFF;
    margin-top: -25px;
}

.banner__register {
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    text-transform: uppercase;
    color: #0C0C0C;
    background-color: #FFE300;
    border-radius: 10px;
    border: 2px solid #FFE300;
    cursor: pointer;
    -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
    transition: all 0.4s;
}

.banner__register:hover {
    background-color: transparent;
    color: #fff;
}

.banner__line__container {
    position: absolute;
    right: 0;
    top: 57%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    overflow: hidden;
    width: 60px;
}

.banner__first__line {
    position: relative;
    top: -50px;
    left: 45px;
    width: 11px;
    height: 157px;
    background: #FFFFFF;
    opacity: 0.3;
    border-radius: 5px;
    margin-right: 20px;
    -webkit-transform: rotate(52.64deg) translateY(-30px);
        -ms-transform: rotate(52.64deg) translateY(-30px);
    transform: rotate(52.64deg) translateY(-30px);
}

.banner__second__line {
    position: relative;
    top: -50px;
    left: -5px;
    width: 11px;
    height: 19px;
    background: #FFE300;
    opacity: 0.3;
    border-radius: 5px;
    -webkit-transform: rotate(52.64deg) translateY(-38px);
        -ms-transform: rotate(52.64deg) translateY(-38px);
    transform: rotate(52.64deg) translateY(-38px);
}

.banner__second__line::after {
    position: absolute;
    top: 25px;
    left: 0px;
    content: '';
    display: block;
    width: 11px;
    height: 15px;
    background: #FFFFFF;
    border-radius: 5px;
}

.banner__second__line::before {
    position: absolute;
    top: -120px;
    left: 0px;
    content: '';
    display: block;
    width: 11px;
    height: 112px;
    background: #FFFFFF;
    border-radius: 5px;
}

.banner__third__line {
    position: relative;
    top: -25px;
    left: -20px;
    width: 11px;
    height: 54px;
    background: #FFFFFF;
    opacity: 0.3;
    border-radius: 5px;
    -webkit-transform: rotate(52.64deg) translateY(-47px);
        -ms-transform: rotate(52.64deg) translateY(-47px);
    transform: rotate(52.64deg) translateY(-47px);
}

.banner__third__line::before {
    content: '';
    position: absolute;
    top: -105px;
    left: 0;
    width: 11px;
    height: 97px;
    background: #FFE300;
    border-radius: 5px;
}

/* TABLET */
@media screen and (max-width: 1124px) {
    header {
        margin-bottom: 45px;
    }

    header > .desktop__header {
        display: none;
    }

    header > .mobile__header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background-color: #0c0c0c;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
        align-items: center;
    }

    .burger__menu__backdrop {
        display: block;
    }

    .mobile__header__button {
        position: relative;
        width: 32px;
        height: 24px;
        background-color: transparent;
        border: none;
        border-top: 4px solid #fff; 
        border-bottom: 4px solid #fff;
        cursor: pointer;
        opacity: 1;
        -webkit-transition: opacity 1s;
            -o-transition: opacity 1s;
        transition: opacity 1s;
        -webkit-transition: border-color 0.4s;
            -o-transition: border-color 0.4s;
        transition: border-color 0.4s;
    }

    .mobile__header__button:hover {
        border-color: rgba(217, 217, 217, 0.4);
    }

    body.menu__open .mobile__header__button {
        opacity: 0;
        -webkit-transition: opacity 0.25s;
            -o-transition: opacity 0.25s;
        transition: opacity 0.25s;
    }

    .mobile__header__button span {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
        width: 100%;
        height: 4px;
        background-color: #FFFFFF;
        -webkit-transition: all 0.4s;
            -o-transition: all 0.4s;
        transition: all 0.4s;
    }

    .mobile__header__button:hover span{
        background-color: rgba(217, 217, 217, 0.4);;
    }

    .logo__slogan {
        top: 3px;
        z-index: 0;
        color: rgba(225, 225, 225, 0);
    }
        
    .event__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .event__video__block {
        height: 400px;
        width: 100%;
        margin-bottom: 20px;
    }

    .event__sport__block {
        height: 320px;
        width: 75%;
        margin: 0 auto;
    }

    .page__background {
        height: 60vw;
        top: 300px;
        background: center / cover no-repeat url("../images/abstract-background-tablet.jpg");
    }

    @media (min-device-pixel-ratio: 2),
        (-webkit-min-device-pixel-ratio: 2),
        (min-resolution: 192dpi),
        (min-resolution: 2dppx) {
            .page__background {
                background: center / cover no-repeat url("../images/abstract-background-tablet@2x.jpg");
            }
        }

    .sport__content__wrapper {
        height: 280px;
    }

    .current__address {
        font-size: 25px;
        line-height: 32px;
        padding: 10px 20px;
        margin-bottom: 30px;
    }

    .live__score__container {
        width: 100%;
    }

    .live__score__content__list {
        height: 360px;
    }

    .banner {
        position: absolute;
        top: 50%;
        right: 20px;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        background: rgba(12, 12, 12, 0.8);
        padding: 15px 20px;
        width: 230px;
        height: 285px;
    }

    .banner__button {
        position: absolute;
        top: -14px;
        left: -14px;
        display: block;
        width: 26px;
        height: 26px;
        background-color: #FFFFFF;
        border: 1px solid #292929;
        border-radius: 50%;
        cursor: pointer;
        -webkit-transition: all 0.4s;
            -o-transition: all 0.4s;
        transition: all 0.4s;
    }

    .banner__button:hover {
        background-color: #c0c0c0;
    }

    .banner__button span {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
            -ms-transform: translate(-50%, -50%) rotate(45deg);
        transform: translate(-50%, -50%) rotate(45deg);
        height: 1px;
        width: 10px;
        background-color: rgba(41, 41, 41, 0);
    }

    .banner__button span::after,
    .banner__button span::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        height: 1px;
        width: 10px;
        background-color: #292929;
    }

    .banner__button span::after {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
            -ms-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    .banner__button span::before {
        -webkit-transform: translate(-50%, -50%) rotate(90deg);
            -ms-transform: translate(-50%, -50%) rotate(90deg);
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .banner__text {
        font-size: 14px;
        line-height: 17px;
    }

    .banner__bonus__sum {
        font-size: 94px;
        line-height: 100px;
        margin-top: 15px;
    }

    .banner__bonus__currency {
        font-size: 52.5px;
        line-height: 67px;
    }

    .banner__register {
        font-size: 14px;
        line-height: 17px;
    }

    .banner__line__container {
        width: 60px;
    }

    .banner__first__line, 
    .banner__second__line,
    .banner__second__line::after,
    .banner__second__line::before,
    .banner__third__line,
    .banner__third__line::after,
    .banner__third__line::before {
        width: 8px;
    }

    .banner__first__line {
        top: -35px;
        left: 50px;
    }

    .banner__second__line {
        height: 15px;
        top: -52px;
        left: 0px;
    }

    .banner__second__line::after {
        top: 22px;
    }

    .banner__third__line {
        top: -34px;
        left: -16px;
        height: 35px;
        -webkit-transform: rotate(52.64deg) translateY(-40px);
            -ms-transform: rotate(52.64deg) translateY(-40px);
        transform: rotate(52.64deg) translateY(-40px);
    }   
}

/* MOBILE */
@media screen and (max-width: 767px) {
    header {
        height: 90px;
        margin-bottom: 30px;
    }

    .mobile__header__button {
        width: 24px;
        height: 18px;
        border-top: 3px solid #fff;
        border-bottom: 3px solid #fff;
    }

    .mobile__header__button span {
        height: 3px;
    }

    .mobile__header__logo {
        max-width: 50%;
    }

    .logo__slogan {
        overflow: hidden;
        font-size: 12px;
    }

    .logo__slogan::before {
        width: 100%;
        height: 100%;
    }

    .event__video__block {
        height: 225px;
    }

    .event__logo {
        left: 5px;
        width: 40vw;
        -webkit-transform: translateY(-50%) scale(1);
            -ms-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
    }

    .page__background {
        height: 200vw;
        top: 130px;
        background: center / cover no-repeat url("../images/abstract-background-mobile.jpg");
    }

        @media (min-device-pixel-ratio: 2),
        (-webkit-min-device-pixel-ratio: 2),
        (min-resolution: 192dpi),
        (min-resolution: 2dppx) {
            .page__background {
                background: center / cover no-repeat url("../images/abstract-background-mobile@2x.jpg");
            }
        }

    .videoError {
        padding: 10px 20px;
    }
        
    .videoError__image {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
        
    .videoError__text {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .event__sport__block {
        height: 225px;
        width: 100%;
    }

    .event__sport__tab__buttons {
        grid-template-columns: 15% 25% 35% 25%;
    }

    .tab__button {
        font-size: 14px;
        line-height: 18px;
    }

    .sport__content__wrapper {
        height: 180px;
    }

    .sport__content__item img {
        width: 18px;
        height: 18px;
    }

    .sport__event__team {
        font-size: 9px;
        line-height: 11px;
    }

    .sport__event__score--date {
        font-size: 12px;
        line-height: 16px;
    }

    .sport__event__score--time {
        font-size: 10px;
        line-height: 14px;
    }
    
    .sport__event__status {
        font-size: 10px;
        line-height: 13px;
    }

    .current__address {
        font-size: 18px;
        line-height: 23px;
        padding: 5px 20px;
    }

    .live__score__tab__buttons{
        padding: 0;
    }

    .tab__button__live__score {
        font-size: 12px;
        line-height: 15px;
        margin: 0 5px;
    }

    .tab__button__live__score.active {
        font-size: 12px;
        line-height: 15px;
        margin: 0 5px;
    }

    .live__score__star {
        width: 16px;
        height: 16px;
    }

    .live__score__content__line,
    .live__score__content__prediction {
        width: 170%;
    }

    .live__score__content__line {
        font-size: 14px;
        line-height: 18px;
    }

    .live__score__forecast {
        font-size: 12px;
        line-height: 15px;
    }

    .sport__event__emblem {
        width: 25px;
        height: 25px;
    }

    .live__score__match {
        grid-template-columns: 43% 14% 43%;
        column-gap: 10px;
    }

    .banner {
        background: rgba(12, 12, 12, 0.95);
        width: 175px;
        height: 215px;
        padding: 10px 15px;
    }

    .banner__button {
        top: -10px;
        left: -10px;
        width: 20px;
        height: 20px;
    }

    .banner__text {
        font-size: 10px;
        line-height: 13px;
    }

    .banner__bonus__sum {
        font-size: 70px;
        line-height: 90px;
        margin-top: 15px;
    }

    .banner__bonus__currency {
        font-size: 40px;
        line-height: 50px;
    }

    .banner__register {
        font-size: 10px;
        line-height: 13px;
        padding: 10px 0;
    }

    .banner__line__container {
        width: 50px;
    }

    .banner__first__line,
    .banner__second__line,
    .banner__second__line::after,
    .banner__second__line::before,
    .banner__third__line,
    .banner__third__line::after,
    .banner__third__line::before {
        width: 6px;
    }

    .banner__first__line {
        top: -30px;
        left: 55px;
    }

    .banner__second__line {
        height: 12px;
        top: -50px;
        left: -2px;
    }

    .banner__second__line::after {
        height: 8px;
        top: 18px;
    }

    .banner__third__line {
        top: -40px;
        left: -13px;
        height: 30px;
    }
}

@media screen and (max-width: 400px) {
    .logo__slogan {
        font-size: 10px;
    }
}

@media screen and (max-width: 767px) and (min-width: 580px){
    .event__video__block {
        height: 280px;
    }

    .event__logo {
        -webkit-transform: translateY(-50%) scale(1.7);
            -ms-transform: translateY(-50%) scale(1.7);
        transform: translateY(-50%) scale(1.7);
    }

    .page__background {
        height: 130vw;
    }

    .live__score__content__line,
    .live__score__content__prediction {
        width: 100%;
    }
}

/* BURGER MENU */
.burger__menu__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 227, 0, 0.5);
    z-index: 10;
    opacity: 1;
    -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
    transition: all 0.4s;
}

.burger__menu__backdrop.is__hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.burger__menu__container {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
    align-items: center;
    width: 320px;
    height: 100%;
    padding: 20px;
    background-color: #0C0C0C;
    -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
    transition: all 0.4s;
}

.burger__menu__backdrop.is__hidden .burger__menu__container{
    -webkit-transform: translateX(-110%);
        -ms-transform: translateX(-110%);
    transform: translateX(-110%);
}

.burger__menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
    transition: all 0.4s;
}

.burger__menu__close:hover {
    border-color:rgba(217, 217, 217, 0.4);
}

.burger__menu__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
        -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.burger__menu__close span::after,
.burger__menu__close span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    width: 15px;
    background-color: #fff;
    -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
    transition: all 0.4s;
}

.burger__menu__close:hover span::after,
.burger__menu__close:hover span::before {
    background-color: rgba(217, 217, 217, 0.4);
}

.burger__menu__close span::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
        -ms-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
}

.burger__menu__close span::before {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
        -ms-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}

.burger__menu__logo {
    margin-top: 55px;
    margin-bottom: 45px;
    padding: 0 30px;
    cursor: pointer;
}

.burger__menu__logo .logo__slogan {
    top: -3px;
    font-size: 12px;
}

.burger__menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.burger__menu__item {
    width: 100%;
    height: 90px;
}

.burger__menu__item:not(:last-child) {
    border-bottom: 1px solid #3A3A3A;
}

.burger__menu__link {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: 20px;
    line-height: 26px;
    color: #3A3A3A;
    -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
    transition: all 0.4s;
}

.burger__menu__link:hover {
    color: #FFFFFF;
}

.burger__menu__link svg {
    fill: #3A3A3A;
    margin-right: 25px;
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
    transition: all 0.4s;
}

.burger__menu__link:hover svg {
    fill: #FFE300;
}

.burger__menu__link.active__link {
    color: #FFFFFF;
}

.burger__menu__link.active__link svg {
    fill: #FFE300;
}

@media screen and (min-width: 1025px) and (max-width: 1124px) { 
    .event__video__block {
        height: 450px;
    }

    .event__logo {
        left: 85px;
        height: 50px;
    }
}

/* Custom video player */
figure {
    max-width: 1024px;
    max-width: 62rem;
    width: 100%;
    height: 100%;
    max-height: 494px;
    max-height: 30.875rem;
    padding: 5px;
    background-color: #FFE300;
    padding-bottom: 40px;
    margin: 0 auto;
    border-radius: 10px;
}

video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

video[poster] {
    object-fit: cover;
}

/* controls */
.controls,
.controls > * {
    padding: 0;
    margin: 0;
}

.controls {
    overflow: hidden;
    background: transparent;
    width: 100%;
    height: 6%;
    position: relative;
    top: 5px;
}

.controls[data-state=hidden] {
    display: none;
}

.controls[data-state=visible] {
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
}

.controls > * {
    float: left;
    width: 3.90625%;
    height: 100%;
    margin-left: 0.1953125%;
    display: block;
}

.controls > *:first-child {
    margin-left: 0;
}

.controls .progress {
    cursor: pointer;
    width: 65%;
}

.controls button {
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border: none;
    cursor: pointer;
    text-indent: -99999px;
    background: transparent;
    background-size: contain;
    background-repeat: no-repeat;
}

.controls button:hover,
.controls button:focus {
    opacity: 0.5;
    color: #FFE300;
}

.controls button[data-state="play"] {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFNDZDNDg2MEEzMjFFMjExOTBEQkQ4OEMzRUMyQjhERCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCNkU0NTY5NkE0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCNkU0NTY5NUE0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQzQ0QwNDBBMDJBNEUyMTFCOTZEQzYyRDgyRUVBOUZDIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU0NkM0ODYwQTMyMUUyMTE5MERCRDg4QzNFQzJCOEREIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+kBUJ9AAAAXFJREFUeNrsmLtOAkEUhneQyiAdDTExGlYMBaW9oq/ge8jlUbwkthTY2EGBLehbKK0UxsQgVK7/SWbMZo3j3mbmxPAnXyi2+fIzZ3dmRBAEHucUPO6hBhUyNXAH3umxJRZgCBo/nCKCe+DVoliUN5LUCd46lFOMwk4iPCRCiDl+Ko5X3RJOm99OEcGAyVyIrFO8lEPE9jXTBNvgRq4ba6+ZuAs5nFMwy3NQdFOcRpBSBtfgk6ugykkebZoUpGyBqyxtmhZUaYFnzoKqzcukbdoUVDkGT5wFKSVwEadNV4IqR3+16VrQkxuSVRxBVzvqKija+tQl/fafyx00u7/YBxOOU0yttcEHx9fMPphy/JJQa50krdkUrIMHjruZDdBN25ppwYOsrZkSpNZ68hDFast/Bg7Bo4nDu+7g/m/Oxc6u3+YMnBY6wTEDwXvdbmYXvDi82aKrP183xZQd0LcsSktrIC9PvV+neH1HvRZ0kC8BBgADq2RhyZa7BQAAAABJRU5ErkJggg==');
}

.controls button[data-state="pause"] {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFNDZDNDg2MEEzMjFFMjExOTBEQkQ4OEMzRUMyQjhERCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCNzE0QzJGQUE0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCNzAxODM5QUE0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQzQ0QwNDBBMDJBNEUyMTFCOTZEQzYyRDgyRUVBOUZDIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU0NkM0ODYwQTMyMUUyMTE5MERCRDg4QzNFQzJCOEREIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+r7sqzQAAANdJREFUeNrs2MEKwjAMBuDGswd9C/UdPHvy6Ft6UTyKr6RDcceawDpKHZsE2kb4Az87GOiHNLCFvPfOcs2c9ZJ/MKSrDefCaeXnQmm7M9dfpgQoDY+CsDRy9moMeKqICznGJoqHhIie/JhXvnUNmxa9KQF6I3NBfzPFANYC7uTKRtkqeyZLOyQ0dLcVPRgSAAEEEEAAAQQQwJ9ftzQ92YAHzjLKXtmT7YUVX3UA5gK+DJiaMeDNAPCaToyl9dvdTazfpMIC810QJmed3cACk7CjBrByfQQYAHwMIXlfZRgfAAAAAElFTkSuQmCC');
}

.controls button[data-state="stop"] {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFNDZDNDg2MEEzMjFFMjExOTBEQkQ4OEMzRUMyQjhERCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCNzAxODM5M0E0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCNzAxODM5MkE0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQzQ0QwNDBBMDJBNEUyMTFCOTZEQzYyRDgyRUVBOUZDIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU0NkM0ODYwQTMyMUUyMTE5MERCRDg4QzNFQzJCOEREIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+KkF/7gAAAOFJREFUeNrsmMsKwjAQRTNdu/ELpAUR/AVdC/6nu66kK/0hFXyBj22cQCohQqDUJFO4A4cusphDmFvaIa21klyFkl7mBltszZgt8zTHiXgzDTP/cfIEp8wtoZjP3UiGBOuMci2N60RuSIjoyo9x5ql7sdPo6+QJaiG5oMGkGIKpBddmVHuy7NKwa0gK+yronYNYIdGYQQhCEIIQhCAEIThoQZIuuPpDz0XMD1b81SHFsQUvApweIcGdAMG9nxh3u1UyJ5Vvs3VmqtD6zdSE2TCHhGJH27P0L42wo4Zg5voIMAB0bCBXvSa7VQAAAABJRU5ErkJggg==');
}

.controls button[data-state="mute"] {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFNDZDNDg2MEEzMjFFMjExOTBEQkQ4OEMzRUMyQjhERCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBMzYxQThBMUE0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBMzYxQThBMEE0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQzQ0QwNDBBMDJBNEUyMTFCOTZEQzYyRDgyRUVBOUZDIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU0NkM0ODYwQTMyMUUyMTE5MERCRDg4QzNFQzJCOEREIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+ohJkMQAAAjNJREFUeNrsmM8rRFEUx8ePxo8YokmJpMiGkIWU8mNJIZRkKcWGnfwDNgoh2ZB/gWzsKXakiSaUskP5LaMxz/fWmTqd3rx5Y96dod6pT3r33td83HPfvee9DMMwPH85MlxBV9AVjBNKkJNEzInrcpCbtI9DguMgIn8LfINrsA16QXY6BPtAmISkoETJjqmllSrBbvDJBHjcgFAM0X3g1y3YDJ7ED8tQKW0DC+BBjL0E1boEa8Cdyczw6AJV7LoYrNBa5ZKlTgtW0Foy4ghG287BLMij9hHwwfp3nRQsAmcx5OI9JFegkfr6xUwOOyGYD44s5OTNB+BZ9Ks120D9K2KWM+0KroGvOCJ2BFV4wQR4YWMuQA5l45G1d9oVDP9Szmr6VWpf2bhpal9mbet2BQ0Ngipm2LhTautkbSfpFixgm3qEUuxj976bCWamsC55o/XnoaOunNbmG3sI8+RNqRR0rNzSleJCkWLfX0vxOG0vHtrsVXpbWH/Q7CYzwYgGuSYwz6436e8Aazuym+KNJPZCGWrGJsUeGN2oi8VG3eHEUXecgOChOEEMEqqn/lXWHkjkqLMKfxLFgpq5OpZaXiwMOl1u3SYgGKBTxMsqGV5u7egoWGttFKzqGKsUJ8mSScFaoqvkb7VR8quHoR0sgnsxNij+AW0vTaEYgncWa3VPlvo6XzuHEnjtVCkdTceL+1QMwTBJbYEekJWuLwtmnz7K2NH269rA/brlCrqC/13wR4ABACa7olAORNxuAAAAAElFTkSuQmCC');
}

.controls button[data-state="unmute"] {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFNDZDNDg2MEEzMjFFMjExOTBEQkQ4OEMzRUMyQjhERCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBMzk2MTA2OUE0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBMzk2MTA2OEE0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQzQ0QwNDBBMDJBNEUyMTFCOTZEQzYyRDgyRUVBOUZDIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU0NkM0ODYwQTMyMUUyMTE5MERCRDg4QzNFQzJCOEREIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+LD0czAAAARZJREFUeNrsly8LAkEQxW/lksUgGMxWs8VgEdRgEMwmv4Lfw2TwawgaxGI2WQ0Gm0WDBv+db3SFK4K3nnMjzIMfF/exzHs7Z4Ig8CQr5QmXGlSDf2fQGONKz8kh1UwUHNUBt6hnPc5jMNgEl+ddyDNYAQcy52rQRD2U5ulDFcEcZELjZKSkuACmYXOSaiYPxiAnsQfpxib2BsUVdRqM7Owl+pL0wemVzBCU1nLc8+KS4jM+vuOjwJJi32OUbjNqUA3+wOBVusGB3e9YFOe6RU/dDJSSLup3OoIaWEoOyQ40wFpyijegCraSa2YF6mAvuQcXoGVXM7FFTaluf9WdTD/uXdcfd67dbgiyLEWty4IaVIPCdBdgAJkkaR2v57S0AAAAAElFTkSuQmCC');
}

.controls button[data-state="volup"] {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFNDZDNDg2MEEzMjFFMjExOTBEQkQ4OEMzRUMyQjhERCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCNzU1OEJFREE0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCNzU1OEJFQ0E0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQzQ0QwNDBBMDJBNEUyMTFCOTZEQzYyRDgyRUVBOUZDIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU0NkM0ODYwQTMyMUUyMTE5MERCRDg4QzNFQzJCOEREIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+1Pk2GwAAAQ9JREFUeNrsmL0KwjAQgHMOiogIPoLSQR9CcdDRxclXLIrg2mdSsYK41HjBVEJsM6XNld7BR6GF9mu4y8+BlFJQjo6gHmoEc3REyAG5qcc1cUViZPrnZAnOahazuSATl+A5oFxObDqBWSQA8MRLP3DWpeg0+jlZgpJIXUBjqrg1gmuVIRY7Hy/2lYNQ8vMZ5Rx8cw6yYNsENwVTCZRUsFndOQNkrNlXMc2A54HJKC91Peo52PUt+KBeJENk4fG7SwprsdA7ZN4PsiALVrny+BJcFdzbUtry87GzMYIvAk6pSzAhIJjYCWl2t+YibPtN9QkjV/tNheoRnvRQ1yV2R47i2zwVpe03rmIWDBAfAQYAByYx7rBsQ/AAAAAASUVORK5CYII=');
}

.controls button[data-state="voldown"] {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFNDZDNDg2MEEzMjFFMjExOTBEQkQ4OEMzRUMyQjhERCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCNzU1OEJGMUE0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCNzU1OEJGMEE0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQzQ0QwNDBBMDJBNEUyMTFCOTZEQzYyRDgyRUVBOUZDIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU0NkM0ODYwQTMyMUUyMTE5MERCRDg4QzNFQzJCOEREIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+B37OGAAAANpJREFUeNrs2MEKwjAMBuDGk0efwSGCr6FXfU/FHeZV30hQ50U8dSmsMiLUCV0b5Q/87DDYPspCRshaazTXyGgvd4I+bc05e87V3U6UC2fLKd5MArhIDJM5c6Yh4CEjzmfXNVG3SYjowZdx5q+uZtPkZRJAq6Qv6Ge6GEAAAQQQwP61csMmUpZ9X/rNqKPYEw2j7p+BNARwHek7dM/YDNEk+B9EkwAIIIAAfgY+FZjuIeBJAfAo555cv91Mvs2W2xMWofWbR1btUaeC1ZySM5OHRthRA5i5GgEGAJmoHqaNWADvAAAAAElFTkSuQmCC');
}

.controls button[data-state="go-fullscreen"] {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFNDZDNDg2MEEzMjFFMjExOTBEQkQ4OEMzRUMyQjhERCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCM0M2OUNCREE0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCM0M2OUNCQ0E0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQzQ0QwNDBBMDJBNEUyMTFCOTZEQzYyRDgyRUVBOUZDIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU0NkM0ODYwQTMyMUUyMTE5MERCRDg4QzNFQzJCOEREIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+cU+iTAAAAZBJREFUeNrs2D9OwzAUBvC6iMMgBgYGpLIxIqYS0cPQKkOIuBErZ2DiDnQoHVBpaQnPEpUs13+e/T5LHfKkb6mr+BfHbh2rrusGx1yqB0pLA83ojyKpBd09xa5/4EkE1oAxaUoBa+CDa7jAIfOCv5R3IPCVskXPQX3BBwDuhvKFesRrMNKF2+UC9Zy7onw6kBMQTg/ArTknuUBzQSCQXpzRb8MFularBBkaObvvhgP0VQ4yiHMtUgkwFRnFlQCGkFUqrhTQhZxTLoz2e8omhisJNJE2zkZ6cRzgwXZLKZWK/Ka8edo1ckV5CQGT9oOJQMh2L1TDwZGXFDimXAbazykj9I6aW9X/Ilh4kBr3QVlSrnMXSS6wsn5GbOQet2/3IksAbZwLMGZ8pwhQ4344HTNvBAr04UaS0c4BtiAcC2n1/cjdsLYgXBRp9DtN3fK3IBxnJKe5L007EC6EXKFe3JfifwU/UgzcgHAmcos8WTil3AGBZ5STEqdbzwDcrOTplhQ5Sz1+609Ye2APjNSfAAMAv4p3Pa/O/tsAAAAASUVORK5CYII=');
}

.controls button[data-state="cancel-fullscreen"] {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFNDZDNDg2MEEzMjFFMjExOTBEQkQ4OEMzRUMyQjhERCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpCM0M2OUNCOUE0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpCMzlFNDkzMUE0MDcxMUUyQjgwQkYzQzhCMDZBRTU1NCIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQzQ0QwNDBBMDJBNEUyMTFCOTZEQzYyRDgyRUVBOUZDIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkU0NkM0ODYwQTMyMUUyMTE5MERCRDg4QzNFQzJCOEREIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+1VELOwAAAadJREFUeNrs2EtOwzAQBuAEOAEIKsQluAAbGqSGHRIrEKveoQEWNOF0SFyGZ6GkwowlWwpm7IwdT8kiI/2LWk39yY4faiqESPpcG0nPq/fARE5xM0btrIGw7fQ4gJeQJ8gRI24MeYac+wIvICv5fcgrE1Li3lUftUZSgAeQhXpQMCGbOJ03yC51BM8gSyYkhpN95b7voA+yQtpukLbMgjsNWSRUZKXa/2wQBjJzjVwosA1ZNdowoMwtFRcKtCHNzzagsDybk/ZlItCGpAJJuK5AjVx1ANYuHAb0PYsPIZsdtpgt9RvRzuIEWa1dp1hYtqBOU3zf0qEvUK/uVmBqotI0/ffb1XBhHYBIlQyL5Dr2NlNGBBZcJ0kZAVhwniQP6qgLrS/II9dJMoF8RhhBee06jj3FGK72ANYIchwLiOFkByeQOQFYqCv9koL0BeYOnK65AzgzfgtDZqFACk7XHdI2Q9pakVTgxAPnW7lruinAfcgHE86FfIHsUUdwCvlmwmFIubde+b6DU/V3BAeuiVxoXMgqHq3hwjLyulEP98EBOAB/148AAwA7RI/R8UopbwAAAABJRU5ErkJggg==');
}

.controls progress {
    display: block;
    width: 100%;
    height: 80%;
    margin-top: 2px;
    margin-top: 0.125rem;
    border: none;
    overflow: hidden;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border: 1px solid #2E2E2E;
    border-radius: 30px;
    color: #FFE300;
}

.controls progress[data-state="fake"] {
    background: #2E2E2E;
    height: 65%;
}

.controls progress span {
    width: 0%;
    height: 100%;
    display: inline-block;
    background-color: #FFE300;
}

.controls progress::-moz-progress-bar {
    background-color: #FFE300;
}

/* Chrome requires its own rule for this, otherwise it ignores it */
.controls progress::-webkit-progress-value {
    background-color: #FFE300;
}

.volume__input {
    width: 70px;
}

/* fullscreen */
html:-ms-fullscreen {
    width: 100%;
}

:-webkit-full-screen {
    background-color: transparent;
}

video:-webkit-full-screen + .controls {
    background: #ccc;
    /* required for Chrome which doesn't heed the transparent value set above */
}

video:-webkit-full-screen + .controls progress {
    margin-top: 0.5rem;
}

/* hide controls on fullscreen with WebKit */
figure[data-fullscreen=true] video::-webkit-media-controls {
    display: none !important;
}

figure[data-fullscreen=true] {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    max-height: 100%;
    padding-bottom: 70px;
    background-color: #FFE300;
    border-radius: 0;
}

figure[data-fullscreen=true] video {
    height:100%;
    border-radius: 0;
}

figure[data-fullscreen=true] figcaption {
    display: none;
}

figure[data-fullscreen=true] .controls {
    position: absolute;
    top: 92%;
    width: 100%;
    z-index: 2147483647;
    background-color: transparent;
    padding: 10px;
    height: 8%;
}

figure[data-fullscreen=true] .controls li {
    width: 5%;
}

figure[data-fullscreen=true] .controls .progress {
    width: 70%;
}

figure[data-fullscreen=true] .volume__input {
    width: 100px;
}

#fs {
    background-position: right;
}

@media screen and (max-width:1124px) {
    .controls {
        height: 30px;
        top: 0;
    }

    .volume__input {
        width: 80px;
    }
}

@media screen and (max-width:1024px) {
    .controls {
        height: 30px;
        top: 0;
    }

    .volume__input {
        width: 70px;
    }

    .controls .progress {
        width: 65%;
        margin: 0 5px;
    }

    figure[data-fullscreen=true] {
        padding-bottom: 60px;
    }
}

@media screen and (max-width:767px) {
    .controls > * {
        width: 5%;
    }

    .controls[data-state=visible] {
        padding: 0;
    }
    .controls .progress {
        width: 65%;
    }

    .volume__input {
        width: 60px;
    }

    figure {
        padding-bottom: 30px;
    }
    .controls {
        height: 20px;
    }

    figure[data-fullscreen=true] .controls {
        top: 94%;
        height: 6%;
    }
}

@media screen and (max-width:459px) {
    .controls > * {
        width: 7%;
    }

    .controls .progress {
        width: 45%;
    }

    .volume__input {
        width: 40px;
    }

    figure[data-fullscreen=true] {
        padding-bottom: 50px;
    }

    figure[data-fullscreen=true] .volume__input {
        width: 60px;
    }

    figure[data-fullscreen=true] .controls {
        height: 5%;
    }
}