@charset "utf-8";
*, ::after, ::before {
    box-sizing: border-box;
}

:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: normal;
    line-height: 20px;
    margin: 0;
    color: var(--color);
    background-color: #FFFFFF;
}

p {
    margin-top: 0;
    margin-bottom: 20px;
}

/* region Десктоп*/
.container {
    width: var(--container-width);
    margin: auto;
}

#headBanner {
    display: flex;
    justify-content: center;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    background-color: #FFFFFF;
}


.sticky {
    position: sticky;
    z-index: 999;
    top: 0;
}

#logo {
    display: flex;
    align-items: center;
}

#logo .onHover {
    display: none;
}

#logo:hover .onHover {
    display: block;
}

#logo:hover .normal {
    display: none;
}

#socialLink a,
#socialLinkMobile a,
#internalLink a {
    margin-right: 20px;
    text-decoration: none;
}

#socialLink a:last-child,
#socialLinkMobile a:last-child,
#internalLink a:last-child {
    margin-right: 0;
}

/*
#socialLink {
    padding-right: 40px;
}
 */

#socialLinkMobile {
    display: none;
}

#leftHeaderBlock {
    display: flex;
}

#rightHeaderBlock {
    display: flex;
    padding-top: 5px;
}

#mainContent {
    margin-top: 50px;
}

#footer {
    font-family: var(--font-family-RobotoCondensed);
    margin-top: 80px;
}

#legalInfo {
    font-size: 11px;
    font-weight: 500;
    font-style: normal;
    line-height: 14px;
    display: flex;
    margin-top: 30px;
    color: #B4B4B4;
}

.copyrightItem {
    margin-bottom: 20px;
}

#counterInformer {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    margin-bottom: 20px;
    margin-left: 100px;
}

h1, .h1 {
    font-family: var(--font-family-Roboto);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: var(--link-color);
}

a:hover {
    color: var(--link_hover-color);
}

a:active {
    color: var(--link_active-color);
}

.alsoVideoBlock {
    margin-top: 40px;
}

.mainVideoBlock {
    margin-bottom: 40px;
}

.bottomBannerBlock {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

#videoLiveCountdown,
#waitingForRecordText,
.videoLiveCountdown,
.waitingForRecordText {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #FFFFFF;
    text-shadow: -0 -1px 1px #000000,
    0 -1px 1px #000000,
    -0 1px 1px #000000,
    0 1px 1px #000000,
    -1px -0 1px #000000,
    1px -0 1px #000000,
    -1px 0 1px #000000,
    1px 0 1px #000000,
    -1px -1px 1px #000000,
    1px -1px 1px #000000,
    -1px 1px 1px #000000,
    1px 1px 1px #000000,
    -1px -1px 1px #000000,
    1px -1px 1px #000000,
    -1px 1px 1px #000000,
    1px 1px 1px #000000;
}

.waitingForRecord {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000;
    mix-blend-mode: color;
}

.waitingForRecord.hidden,
.waitingForRecordText.hidden {
    display: none;
}


/*region Моргающие элементы */
.blink {
    -webkit-animation-name: blinker;
    animation-name: blinker;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: cubic-bezier(1.0, 0, 0, 1.0);
    animation-timing-function: cubic-bezier(1.0, 0, 0, 1.0);
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@keyframes blinker {
    from {
        opacity: 1.0;
    }
    to {
        opacity: 0.0;
    }
}

@-webkit-keyframes blinker {
    from {
        opacity: 1.0;
    }
    to {
        opacity: 0.0;
    }
}

/*endregion*/

/*region Стилизация плеера*/
.video-js .vjs-big-play-button {
    font-size: 75px;
    line-height: 90px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    margin-top: -45px;
    margin-left: -45px;
    padding: 0;
    opacity: 0.7;
    color: white;
    border: none;
    border-radius: 50%;
    background-color: var(--link-color);
}

.video-js:hover .vjs-big-play-button,
.video-js .vjs-big-play-button:focus {
    opacity: 1;
    color: white;
    background-color: var(--link-color);
}

/*endregion*/
/*endregion*/

/* region Планшет*/
@media all and (max-width: 1100px) {
    .container {
        width: 100%;
    }

    #mainContent {
        margin-top: 20px;
        padding-right: 10px;
        padding-left: 10px;
    }

    #sectionMenu {
        display: none;
    }

    .bottomBannerBlock {
        align-items: center;
        flex-flow: column;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .bottomBannerBlock div {
        max-width: 336px;
    }

    #header {
        position: sticky;
        z-index: 8888;
        height: 60px;
        margin-top: 0;
        background-color: #FFFFFF;
    }

    #logo img {
        height: 40px;
    }

    #footer {
        margin-top: 50px;
        padding-right: 10px;
        padding-left: 10px;
    }

    #legalInfo {
        flex-flow: column;
        margin-top: 0;
    }

    .copyrightItem {
        text-align: center;
    }

    #counterInformer {
        align-items: center;
        flex-flow: column;
        margin-bottom: 20px;
        margin-left: 0;
    }

    #rightHeaderBlock {
        margin-top: 0;
        margin-right: 10px;
    }
}

/*endregion*/

/* region Мобильный*/
@media screen and (max-width: 450px) {
    #socialLink {
        display: none;
    }

    #socialLinkMobile {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }

    #footer {
        margin-top: 20px;
    }
}

/*endregion*/

/* region 404*/
/* region Десктоп*/
#page404 {
    margin-top: 150px;
    margin-bottom: 150px;
    text-align: center;
}

#page404 h1 {
    font-size: 160px;
    font-weight: 300;
    line-height: 1;
    text-align: center;
}

#page404 h3 {
    margin-bottom: 30px;
}

#page404 p {
    font-size: 18px;
    margin: 30px auto;
}

/*endregion*/

/*endregion*/
/* region Мобильный*/
@media screen and (max-width: 450px) {
    #page404 {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    #page404 h1 {
        font-size: 120px;
    }


    #page404 p {
        font-size: 16px;
        margin: 30px auto;
    }
}

/*endregion*/