body, html {
            background-color: #000;
            height: 100%
        }

        body {
            -moz-osx-font-smoothing: grayscale;
            -moz-user-select: none;
            -ms-user-select: none;
            -webkit-font-smoothing: antialiased;
            -webkit-user-select: none;
            /*color: #fff;*/
            font: 400 16px serif;
            margin: 0;
            overflow: hidden;
            text-align: center;
            user-select: none
        }

        .isHide {
            display: none !important
        }

        .isShow {
            display: block !important
        }

        .video {
            color: #fff;
            bottom: 0;
            left: 0;
            margin: auto;
            position: fixed;
            right: 0;
            top: 0
        }

        .video__wDescr {
            bottom: 50px;
            left: 0;
            position: absolute;
            top: 0;
            width: 100%
        }

        .video__loading {
            -webkit-animation: a 2s linear infinite;
            animation: a 2s linear infinite;
            height: 70px;
            left: 50%;
            margin: -35px 0 0 -35px;
            position: absolute;
            top: 50%;
            width: 70px
        }

        .video__wControl {
            background-color: #000;
            bottom: 0;
            height: 50px;
            left: 1%;
            position: absolute;
            right: 1%
        }

        .video__controlProgress {
            background-color: hsla(0, 0%, 100%, .2);
            height: 3px;
            margin-top: 4px;
            position: relative
        }

        .video__controlProgress:before {
            background-color: #d0021b;
            content: "";
            height: 100%;
            left: 0;
            position: absolute;
            top: 0;
            width: 20%
        }

        .video__controlLeft, .video__controlRight {
            margin-top: 8px
        }

        .video__controlLeft {
            float: left
        }

        .video__controlRight {
            float: right;
            padding-right: 10px
        }

        .video__controlRight .video__controlIc:first-child {
            margin-left: 0
        }

        .video__controlInfo {
            float: left;
            font-family: sans-serif;
            font-size: 12px;
            line-height: 29px;
            margin-left: 10px
        }

        .video__controlIc {
            fill: #fff;
            float: left;
            height: 27px;
            margin-left: 10px;
            width: 27px
        }

        .msgReady {
            background-color: rgba(0, 0, 0, .75);
            height: 100%;
            left: 0;
            position: fixed;
            top: 0;
            width: 100%
        }

        .msgReady__tx {
            font-size: 32px;
            margin-top: 10%
        }

        @-webkit-keyframes a {
            0% {
                transform: rotate(0)
            }
            to {
                transform: rotate(1turn)
            }
        }

        @keyframes a {
            0% {
                transform: rotate(0)
            }
            to {
                transform: rotate(1turn)
            }
        }

        @media (min-width: 425px) {
            .msgReady__tx {
                font-size: 52px
            }
        }

        @media (min-width: 700px) {
            .video__controlLeft, .video__controlRight {
                margin-top: 6px
            }

            .video__controlInfo {
                line-height: 34px
            }

            .video__controlIc {
                height: 32px;
                width: 32px
            }
        }