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

html {
    font-size: 15px
}

html,
body {
    width: 100%;
    height: 100%
}

body {
    font-family: 'Roboto', sans-serif;
    position: relative;
    background-color: #454545;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: start;
    flex-direction: column;
}

@-webkit-keyframes show {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes show {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes hidden {
    100% {
        opacity: 0
    }
}

@keyframes hidden {
    100% {
        opacity: 0
    }
}

.wrapper {
    position: absolute;
    margin-bottom: 100px;
    width: 95%;
    max-width: 350px;
    background: transparent;
    border-radius: 4px;
    z-index: 100;
    -webkit-animation: show 1.2s steps(1, end) 1;
    animation: show 1.2s steps(1, end) 1
}

.player {
    width: 100%;
    max-width: 850px;
    min-height: 60vh;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 15px;
    background: #000;
    margin-top:30px;
}

.top_icons {
    position: absolute;
    top: 10px;
    width: 96%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: auto;
}

.top_icons img.live-icon {
    width: 75px;
    cursor: pointer
}

.live-count{
    width: 45px;
    right: 0;
    position: absolute;
}

.player_content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 100%
}

.player_content img {
    padding-top: 50px;
    position: absolute
}

.player_content .loading {
    width: 35px;
    -webkit-animation: hidden 0.9s steps(1, end) forwards;
    animation: hidden 0.9s steps(1, end) forwards
}

.player_content .play {
    width: 70px;
    opacity: 0;
    -webkit-animation: show 0.9s steps(1, end) forwards;
    animation: show 0.9s steps(1, end) forwards
}

.pause_play {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center
}

.pause_play img:first-child {
    position: absolute;
    opacity: 0;
    -webkit-animation: show 0.9s steps(1, end) forwards;
    animation: show 0.9s steps(1, end) forwards
}

.pause_play img:last-child {
    -webkit-animation: hidden 0.9s steps(1, end) forwards;
    animation: hidden 0.9s steps(1, end) forwards
}

.player_navigation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%
}

.player_navigation_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center
}

.player_navigation_item img {
    height: 20px;
    cursor: pointer
}

.player_navigation_item p {
    font-size: .8rem;
    margin-left: 12px;
    color: #fff
}

.player_navigation_item:last-child img {
    margin-right: 15px
}

.player_navigation_item:last-child img:last-child {
    margin-right: 0
}

.progress {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, .4);
    margin: 0 12px;
    position: relative;
    cursor: pointer
}

.progress_load {
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, .4);
    -webkit-animation: progress_load 20s linear forwards;
    animation: progress_load 20s linear forwards
}

.progress_line {
    width: 0%;
    height: 100%;
    background: #4080ff;
    -webkit-animation: progress_line 1s linear forwards;
    animation: progress_line 1s linear forwards
}

@-webkit-keyframes progress_load {
    0% {
        width: 0
    }

    100% {
        width: 50%
    }
}

@keyframes progress_load {
    0% {
        width: 0
    }

    100% {
        width: 50%
    }
}

@-webkit-keyframes progress_line {
    0% {
        width: 0
    }

    100% {
        width: 10px
    }
}

@keyframes progress_line {
    0% {
        width: 0
    }

    100% {
        width: 10px
    }
}
.wrapper {
    margin-top : 50px
}
@media screen and (max-width:992px) {
    .player {
        min-height: 75vh
    }
    .wrapper {
     margin-top : 80px;
    }
}

@media screen and (max-width:768px) {
    .player {
        min-height: 50vh
    }
    .wrapper {
        margin-top : 80px;
    }
}

@media screen and (max-width:768px) and (orientation:landscape) {
    .player {
        min-height: 80vh
    }
    .wrapper {
        margin-top : 50px;
    }
}

.footer_container {
    margin-top: 34vh;
}
@media screen and (max-width:440px) {
    .footer_container {
        margin-top: 50vh;
    }
    .wrapper {
        margin-top : 40px;
    }
    .top_icons {
        top: 10px;
    }

    .player_content img {
        padding-top: 25px
    }

    .player_content .loading {
        width: 30px
    }

    .player_content .play {
        width: 60px
    }

    .player_navigation_item:last-child img {
        margin-right: 10px
    }

    .player_navigation_item:last-child img:last-child {
        margin-right: 0
    }

    .player_navigation_item img {
        height: 18px
    }
}

@media screen and (max-width:320px),
screen and (max-width:480px) and (orientation:landscape) {
    html {
        font-size: 14px
    }

    .top_icons {
        top: 10px;
        left: 15px
    }

    .player_content img {
        padding-top: 20px
    }
}

@media screen and (max-width:840px) and (max-height:440px) and (orientation:landscape) {
    body {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start
    }

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

    .player_content img {
        padding-top: 0
    }
}

@media screen and (max-width:320px),
screen and (max-width:480px) and (orientation:landscape) {
    .wrapper {
        max-width: 320px
    }
}

@media screen and (max-width:840px) and (max-height:440px) and (orientation:landscape) {
    .wrapper {
        margin-bottom: 0;
        margin-top: 5px
    }
}

.footer__img {
    width: 52px;
    height: 18px;
    display: inline-block;
    vertical-align: top;
  }
.disclaimer {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    color: #787373;
}


.mo_info > p {
    padding-top:10px;
    color: #787373;
}
.overlay {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal {
  width: 280px;
  border-radius: 14px;
  background:rgba(45, 44, 44);
  text-align: center;
  color: #ddd;
}

.modal h2 {
  margin-bottom: 5px;
  font-size: 14px;
  color: #f1f1f1;
  padding: 1rem 1rem 0;
}

.modal p {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 22px;
  color: #cfcfcf;
  padding: 10px;
  margin-bottom: 0;
}

.btn {
  width: 100%;
  padding: 12px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 0px;
  background: transparent;
  transition: all 0.2s ease;
}

.btn.unlock {
  color: #ffe600;
  font-weight: bold;    
  border-top: 1px solid #454545;
  border-bottom: 1px solid #454545;
}

.btn.unlock:hover {
  background: #333;
}

.btn.close {
  color: #ff4d4d;
}

.btn.close:hover {
  background: #331111;
}