/* ------------ keyframes ------------ */
@keyframes preload {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes preload {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ------------ /keyframes ------------ */
/* ------------ mg2player ------------ */
html > div {
  display: none !important;
}

.mg2player {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mg2player,
.mg2player * {
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
}

.mg2player_mute .mg2player__volume:not(.mghover):not(.showed) {
  opacity: 0;
  visibility: hidden;
}

.mg2player__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transform: translate(-50%, -50%);
}

.mg2player:not(.mg2player_playing) .mg2player__video[poster] {
  -o-object-fit: cover;
     object-fit: cover;
}

.mg2player__preload {
  position: absolute;
  top: 50%;
  left: 50%;
}

.mg2player__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #fff;
  padding-top: 10px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mg2player__controls:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.85)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#d9000000",GradientType=0 );
}

.mg2player__controls-cover {
  position: relative;
  z-index: 2;
  margin-right: 25px;
}

.mg2player__controls-wrap {
  display: block;
  width: 100%;
  height: 30px;
}

.mg2player__controls-wrap > * {
  display: table-cell;
  /*height: 25px;*/
}

.mg2player__btn,
.mg2player__close,
.mg2player__expand,
.mg2player_HD,
.mg2player__play-next,
.mg2player__volume,
.mg2player__preload,
.mg2player__play-btn,
.mg2player__start-btn,
.mg2player__custom-btn {
  line-height: 1;
}

.mg2player__preload {
  position: absolute;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-animation: preload 1.5s infinite linear;
       animation: preload 1.5s infinite linear;
  transition: opacity 0.1s ease, visibility 0.1s ease;
  margin: -12px 0 0 -12px;
}

.mg2player_preload .mg2player__preload {
  opacity: 1;
  visibility: visible;
}

.mg2player__preload:before {
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#spinner");
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  transform: scale(1.25);
}

.mg2player__play-next,
.mg2player__play-btn {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.mg2player_HD {
  position: absolute;
  right: 0;
  bottom: auto;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}

.mg2player__play-btn:after,
.mg2player__play-btn:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  transform: scale(1.25);
}

.mg2player__play-btn:before,
.mg2player__start-btn:before {
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#play_arrow");
  content: "";
  width: 24px;
  height: 24px;
  display: block;
}

.mg2player__play-btn:after,
.mg2player__start-btn:after {
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#pause");
  content: "";
  width: 24px;
  height: 24px;
  display: none;
}

.mg2player__start-btn:after {
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#pause");
  content: "";
  width: 24px;
  height: 24px;
  display: none;
}

.mg2player__play-next:before {
  position: absolute;
  font-size: 30px;
  top: 0;
  left: 0;
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#skip_next");
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  transform: scale(1.25);
}

.mg2player_HD_disabled {
  color: #bbb;
}

.mg2player_HD:before {
  position: absolute;
  top: -4px;
  left: -4px;
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#hd");
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  transform: scale(1.25);
}

.mg2player__start-btn {
  position: absolute;
  width: 60px;
  height: 60px;
  color: #fff;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  border: 3px rgba(255, 255, 255, 0.5) solid;
}

.mg2player__start-btn:after, .mg2player__start-btn:before {
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%) scale(2.17);
}

.mg2player:hover:not(.mg2player_playing) .mg2player__start-btn.mghover {
  background-color: rgba(0, 0, 0, 0.7);
  border: 3px #fff solid;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.mg2player.mg2player_playing:hover .mg2player__start-btn.mghover {
  transition: none;
}

.mg2player_playing .mg2player__play-btn:before,
.mg2player_playing .mg2player__start-btn:before {
  display: none;
}

.mg2player_playing .mg2player__play-btn:after,
.mg2player_playing .mg2player__start-btn:after {
  display: block;
}

.mg2player__time {
  font-size: 11px;
  white-space: nowrap;
  padding: 0 4px;
  width: 1px;
  vertical-align: middle;
}

.mg2player__time_slash {
  padding-left: 0;
  padding-right: 0;
}

.mg2player__track {
  position: relative;
  z-index: 2;
  vertical-align: middle;
  padding: 0 5px;
  margin-bottom: 4px;
  cursor: pointer;
}

.mg2player__track-wrap {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  vertical-align: inherit;
  width: 100%;
  transition: height 0.2s;
}

.mg2player__controls:hover .mg2player__track-wrap {
  height: 5px;
}

.mg2player__track-buffer {
  position: absolute;
  left: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
}

.mg2player__track-played {
  position: absolute;
  left: 0;
  height: 100%;
  background: #f00;
}

.mg2player__track-point {
  position: absolute;
  top: 50%;
  background: #f00;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: -5px;
  margin-top: -5px;
  cursor: pointer;
}

.mg2player__volume {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 3;
  margin-bottom: -3px;
  margin-right: -3px;
}

.mg2player__volume:after,
.mg2player__volume:before {
  position: absolute;
  font-size: 30px;
  width: 24px;
  height: 24px;
  content: "";
  transform: scale(1.25);
}

.mg2player__volume:before {
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#volume_down_red");
  display: block;
}

.mg2player__volume:after {
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#volume_off_red");
  display: none;
}

.mg2player_mute .mg2player__volume:before {
  display: none;
}

.mg2player_mute .mg2player__volume:after {
  display: block;
}

.mg2player_controls .mg2player_mute .mg2player__volume {
  opacity: 1;
  visibility: visible;
}

.mg2player__volume-bar {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 3px 3px 15px 3px;
  border-radius: 2px;
}

.mg2player__volume-wrap {
  width: 30%;
  position: relative;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border-radius: 2px;
}

.mg2player__volume-level {
  background: #f00;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  border-radius: 2px;
}

.mg2player__volume:hover .mg2player__volume-bar {
  display: block;
}

.mg2player__close,
.mg2player__expand {
  position: absolute;
  top: 2px;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
}

.mg2player__expand {
  left: 5px;
}

.mg2player__close {
  right: 5px;
}

.mg2player__expand:before {
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#expand");
  content: "";
  width: 24px;
  height: 24px;
  display: block;
}

.mg2player__close:before {
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#cancel");
  content: "";
  width: 24px;
  height: 24px;
  display: block;
}

.mg2player__time {
  font-size: 12px;
  cursor: default;
}

.mg2player__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  line-height: 22px;
  font-weight: 500;
  font-size: 17px;
  color: #fff;
  font-family: Roboto, sans-serif;
  padding: 10px 20px 0;
  text-align: left;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mg2player__custom-btn {
  padding: 4px;
}

.mg2player__custom-btn > img {
  width: 100%;
  height: 100%;
}

.mg2player__btn,
.mg2player_HD:before,
.mg2player__track-point,
.mg2player__time,
.mg2player__expand:before,
.mg2player__close:before,
.mg2player__play-btn:after,
.mg2player__play-btn:before,
.mg2player__play-next:before,
.mg2player__volume:after,
.mg2player__volume:before,
.mg2player__start-btn:before,
.mg2player__start-btn:after,
.mg2player__title,
.mg2player__custom-btn {
  text-shadow: 2px 1px 2px #000;
}

.mg2player__center {
  text-align: center;
  vertical-align: middle;
}

.mg2player__btn {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mg2player__btn_left {
  left: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  margin-top: -10px;
}

.mg2player__btn_right {
  right: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  margin-top: -10px;
}

.mg2player__btn_left:before {
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#navigate_before");
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  transform: scale(2);
}

.mg2player__btn_right:before {
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#navigate_next");
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  transform: scale(2);
}

.mg2player__close,
.mg2player__expand,
.mg2player__volume,
.mg2player_HD,
.mg2player__track,
.mg2player__time,
.mg2player__play-btn,
.mg2player__play-next,
.mg2player__start-btn,
.mg2player__title,
.mg2player__custom-btn {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mg2player_controls .mg2player__close.showed,
.mg2player__expand.showed,
.mg2player_controls .mg2player__volume.showed,
.mg2player_controls .mg2player_HD.showed,
.mg2player_controls .mg2player__track.showed,
.mg2player_controls .mg2player__time.showed,
.mg2player_controls .mg2player__play-btn.showed,
.mg2player_controls .mg2player__play-next.showed,
.mg2player_controls .mg2player__btn.showed,
.mg2player_controls .mg2player__start-btn.showed,
.mg2player_controls .mg2player__title.showed,
.mg2player_controls .mg2player__custom-btn.showed {
  opacity: 1;
  visibility: visible;
}

.mg2player.mg2player_controls:not(.mg2player_playing) .mg2player__close.mghover,
.mg2player.mg2player_controls:not(.mg2player_playing) .mg2player__volume.mghover,
.mg2player.mg2player_controls:not(.mg2player_playing) .mg2player_HD.mghover,
.mg2player.mg2player_controls:not(.mg2player_playing) .mg2player__track.mghover,
.mg2player.mg2player_controls:not(.mg2player_playing) .mg2player__time.mghover,
.mg2player.mg2player_controls:not(.mg2player_playing) .mg2player__play-btn.mghover,
.mg2player.mg2player_controls:not(.mg2player_playing) .mg2player__play-next.mghover,
.mg2player.mg2player_controls:not(.mg2player_playing) .mg2player__btn.mghover,
.mg2player.mg2player_controls:not(.mg2player_playing) .mg2player__custom-btn.mghover,
.mg2player:not(.mg2player_playing) .mg2player__start-btn.mghover,
.mg2player:not(.mg2player_playing) .mg2player__title.mghover,
.mg2player:not(.mg2player_playing):before {
  opacity: 1;
  visibility: visible;
}

.mg2player.mg2player_controls:hover .mg2player__close.mghover,
.mg2player:hover .mg2player__expand.mghover,
.mg2player.mg2player_controls:hover .mg2player_HD.mghover,
.mg2player.mg2player_controls:hover .mg2player__track.mghover,
.mg2player.mg2player_controls:hover .mg2player__time.mghover,
.mg2player.mg2player_controls:hover .mg2player__play-btn.mghover,
.mg2player.mg2player_controls:hover .mg2player__play-next.mghover,
.mg2player.mg2player_controls:hover .mg2player__btn.mghover,
.mg2player.mg2player_controls:hover .mg2player__controls.mghover:before,
.mg2player.mg2player_controls:hover .mg2player__volume.mghover,
.mg2player.mg2player_controls:hover .mg2player__custom-btn.mghover,
.mg2player:hover .mg2player__title.mghover {
  opacity: 1;
  visibility: visible;
}

.mg2player__track {
  -moz-flex: 1;
       flex: 1;
}

.mg2player__time_slash {
  -moz-flex: 0 0 8px;
       flex: 0 0 8px;
}

/* ------------ /mg2player ------------ */
/* ------------ MGRED THEME ------------ */
.mg2player.mgred:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding-bottom: 14%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#010102), color-stop(50%, rgba(1, 1, 2, 0.4)), color-stop(80%, rgba(1, 1, 2, 0.1)), to(rgba(1, 1, 2, 0)));
  background: -webkit-linear-gradient(top, #010102 0%, rgba(1, 1, 2, 0.4) 50%, rgba(1, 1, 2, 0.1) 80%, rgba(1, 1, 2, 0) 100%);
  background: -moz-linear-gradient(top, #010102 0%, rgba(1, 1, 2, 0.4) 50%, rgba(1, 1, 2, 0.1) 80%, rgba(1, 1, 2, 0) 100%);
  background: -o-linear-gradient(top, #010102 0%, rgba(1, 1, 2, 0.4) 50%, rgba(1, 1, 2, 0.1) 80%, rgba(1, 1, 2, 0) 100%);
  background: linear-gradient(to bottom, #010102 0%, rgba(1, 1, 2, 0.4) 50%, rgba(1, 1, 2, 0.1) 80%, rgba(1, 1, 2, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#010102", endColorstr="#00010102",GradientType=0 );
}

.mg2player.mgred .mg2player__controls-wrap {
  display: -ms-flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.mg2player.mgred .mg2player_HD {
  position: relative;
}

.ctplay .mg2player.mgred .mg2player__start-btn,
.mg2player.mgred .mg2player__start-btn,
.ctplay .mg2player.mgred .mg2player__start-btn.mghover,
.mg2player.mgred .mg2player__start-btn.mghover {
  background: #ff0000;
  border-color: #ff0000;
  transition: background-color 1s;
}

.ctplay .mg2player.mgred:hover:not(.mg2player_playing) .mg2player__start-btn.mghover,
.mg2player.mgred:hover:not(.mg2player_playing) .mg2player__start-btn.mghover {
  background-color: rgba(1, 0, 0, 0.1);
  border-color: #ff0000;
}

.mg2player.mgred.mg2player_playing:hover .mg2player__start-btn.mghover {
  transition: none;
}

.mg2player.mgred .mg2player__time {
  -ms-grid-row-align: center;
align-self: center;
}

.mg2player.mgred .mg2player__track-wrap {
  top: 50%;
}

.mg2player.mgred .mg2player__volume {
  color: #f00;
}

.mg2player.mgred .mg2player__start-btn:before {
  text-shadow: none;
  position: relative;
}

.mg2player.mgred .mg2player__volume,
.mg2player.mgred .mg2player_HD,
.mg2player.mgred .mg2player__track,
.mg2player.mgred .mg2player__time,
.mg2player.mgred .mg2player__play-btn,
.mg2player.mgred .mg2player__play-next,
.mg2player.mgred .mg2player__custom-btn {
  -moz-flex: 0 0 35px;
       flex: 0 0 35px;
}

.mg2player.mgred .mg2player__track {
  -moz-flex: 1;
       flex: 1;
}

.mg2player.mgred .mg2player__time_slash {
  -moz-flex: 0 0 8px;
       flex: 0 0 8px;
}

.mg2player.mgred .mg2player_HD,
.mg2player.mgred .mg2player__track,
.mg2player.mgred .mg2player__time,
.mg2player.mgred .mg2player__play-btn,
.mg2player.mgred .mg2player__play-next {
  opacity: 1;
  visibility: visible;
  display: none;
}

.mg2player.mgred.mg2player_controls .mg2player_HD.showed,
.mg2player.mgred.mg2player_controls .mg2player__track.showed,
.mg2player.mgred.mg2player_controls .mg2player__time.showed,
.mg2player.mgred.mg2player_controls .mg2player__play-btn.showed,
.mg2player.mgred.mg2player_controls .mg2player__play-next.showed,
.mg2player.mgred.mg2player_controls .mg2player__custom-btn.showed {
  display: block;
}

.mg2player.mgred.mg2player_controls:not(.mg2player_playing) .mg2player_HD.mghover,
.mg2player.mgred.mg2player_controls:not(.mg2player_playing) .mg2player__track.mghover,
.mg2player.mgred.mg2player_controls:not(.mg2player_playing) .mg2player__time.mghover,
.mg2player.mgred.mg2player_controls:not(.mg2player_playing) .mg2player__play-btn.mghover,
.mg2player.mgred.mg2player_controls:not(.mg2player_playing) .mg2player__play-next.mghover,
.mg2player.mgred.mg2player_controls:not(.mg2player_playing) .mg2player__custom-btn.mghover,
.mg2player.mgred:not(.mg2player_playing):before {
  display: block;
}

.mg2player.mgred.mg2player_controls:hover .mg2player_HD.mghover,
.mg2player.mgred.mg2player_controls:hover .mg2player__track.mghover,
.mg2player.mgred.mg2player_controls:hover .mg2player__time.mghover,
.mg2player.mgred.mg2player_controls:hover .mg2player__play-btn.mghover,
.mg2player.mgred.mg2player_controls:hover .mg2player__play-next.mghover,
.mg2player.mgred.mg2player_controls:hover .mg2player__custom-btn.mghover {
  display: block;
}

.ctplay .mg2player.mgred:not(.mg2player_playing) .mg2player__close.mghover,
.ctplay .mg2player.mgred:not(.mg2player_playing) .mg2player__volume.mghover,
.ctplay .mg2player.mgred:not(.mg2player_playing) .mg2player__volume.showed,
.ctplay .mg2player.mgred:not(.mg2player_playing) .mg2player__track.mghover,
.ctplay .mg2player.mgred:not(.mg2player_playing) .mg2player__time.mghover,
.ctplay .mg2player.mgred:not(.mg2player_playing) .mg2player__play-btn.mghover,
.ctplay .mg2player.mgred:not(.mg2player_playing) .mg2player__play-next.mghover,
.ctplay .mg2player.mgred:not(.mg2player_playing) .mg2player__start-btn.mghover,
.ctplay .mg2player.mgred:not(.mg2player_playing) .mg2player__custom-btn.mghover {
  opacity: 1;
  visibility: visible;
  display: block;
}

.mg2player.mgred .mg2player__volume-bar {
  padding: 3px;
}

/* ------------ /MGRED THEME ------------ */
@media only screen and (max-device-width: 480px) {
  .mg2player.mgred .mg2player__start-btn:before {
    top: 0;
  }

  .mg2player__play-btn:after, .mg2player__play-btn:before, .mg2player__play-next:before,
.mg2player__volume:after, .mg2player__volume:before {
    transform: scale(0.83);
  }
}
@media (max-width: 480px) {
  .mg2player__controls-cover {
    margin-right: 30px;
  }

  .mg2player__preload:before {
    transform: scale(2);
  }

  .mg2player_HD,
.mg2player__volume,
.mg2player__play-next,
.mg2player__play-btn {
    width: 30px;
    height: 30px;
  }

  .mg2player__time {
    font-size: 12px;
  }

  .mg2player_HD:before,
.mg2player__play-btn:after,
.mg2player__play-btn:before,
.mg2player__play-next:before,
.mg2player__volume:after,
.mg2player__volume:before {
    transform: scale(0.8);
  }

  .mg2player__start-btn {
    width: 80px;
    height: 80px;
    font-size: 70px;
  }

  .mg2player.mgred .mg2player__start-btn:before {
    top: 26px;
    left: 26px;
    transform: scale(2.91);
    width: 24px;
    height: 24px;
  }

  .mg2player__volume:hover .mg2player__volume-bar {
    display: none;
  }
}
@media (min-width: 768px) {
  /* ------------ mg2player ------------ */
  .mg2player__controls-cover {
    margin-right: 30px;
  }

  .mg2player__preload:before {
    transform: scale(1.6);
  }

  .mg2player_HD,
.mg2player__volume,
.mg2player__play-next,
.mg2player__play-btn {
    width: 30px;
    height: 30px;
  }

  .mg2player_HD:before,
.mg2player__play-next:before,
.mg2player__play-btn:after,
.mg2player__play-btn:before {
    top: 0;
    left: 0;
  }

  .mg2player__time {
    font-size: 12px;
  }

  .mg2player__start-btn {
    width: 80px;
    height: 80px;
  }

  .mg2player__start-btn:before, .mg2player__start-btn:after {
    transform: scale(3.33);
    margin: -12px 0 0 -12px;
  }

  /* ------------ /mg2player ------------ */
}
@media (min-width: 1024px) {
  /* ------------ mg2player ------------ */
  .mg2player__preload:before {
    transform: scale(2);
  }

  .mg2player__controls-cover {
    margin: 2px 35px 2px 5px;
  }

  .mg2player_HD:before,
.mg2player__play-next:before,
.mg2player__play-btn:after,
.mg2player__play-btn:before {
    top: 4px;
    left: 4px;
  }

  .mg2player__track {
    padding: 0 10px;
  }

  .mg2player__volume {
    bottom: 2px;
    right: 5px;
  }

  .mg2player_HD:before,
.mg2player__play-next:before,
.mg2player__play-btn:after,
.mg2player__play-btn:before,
.mg2player__volume:after,
.mg2player__volume:before {
    font-size: 30px;
    transform: scale(1.25);
  }

  .mg2player__expand {
    font-size: 30px;
    transform: scale(1.25);
  }

  .mg2player__close {
    font-size: 32px;
    transform: scale(1.33);
  }

  .mg2player__btn {
    font-size: 50px;
    width: 40px;
    overflow: hidden;
  }

  .mg2player__btn_left:before {
    position: relative;
  }

  .mg2player__btn_right:before {
    position: relative;
  }

  .mg2player__start-btn {
    width: 90px;
    height: 90px;
    font-size: 80px;
  }

  /* ------------ /mg2player ------------ */
}
/* Video Recommendations Styling */
.video-info__wrap {
  font-family: "Roboto", sans-serif;
}

.video-info__centering, .fake > .video-info__centering {
  display: table;
  width: 100%;
  height: 100%;
}

.video-info__centering-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 20px 0;
}

.video-info__wrap {
  margin: 0 auto;
  background: #000;
  max-width: 1100px;
  width: -webkit-calc(100vw - 40px);
  width: -moz-calc(100vw - 40px);
  width: calc(100vw - 40px);
  position: relative;
  box-shadow: 0 0 150px 0 rgba(0, 0, 0, 0.9);
  text-align: left;
}

div.video-info__player {
  position: relative;
  height: 100%;
}

div.video-info__player.ad-loading .mg2player .mg2player__preload {
  visibility: visible;
  opacity: 1;
}

div.video-info__player.ad-loading div.mgAdPlayerContainerDiv.showed,
div.video-info__player.ad-loading div.adPlayerContainerDiv.showed {
  background-color: transparent !important;
}

.video-info__title {
  background: #111;
  padding: 10px;
}

.video-info__title-cell {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 3px;
  color: #fff;
}

.video-info__sub-title {
  color: #898989;
  font-size: 11px;
  line-height: 1.3;
}

.mgCloseCrossButton {
  background: #000;
  position: absolute;
  top: 0;
  right: 0;
  width: 19px;
  height: 19px;
  margin: -19px -19px 0 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mgCloseCrossButton:after,
.mgCloseCrossButton:before {
  content: "";
  position: absolute;
  background: #777;
  transform: rotate(-45deg);
  transition: background 0.2s ease;
}

.mgCloseCrossButton:after {
  width: 1px;
  height: 11px;
  top: 4px;
  left: 9px;
}

.mgCloseCrossButton:before {
  width: 11px;
  height: 1px;
  top: 9px;
  left: 4px;
}

.swiper-slide-lenta:first-child {
  display: none !important;
}

.mgline.vrline.vrnofloat {
  float: none;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  box-shadow: none;
}

.mgline.vrline.vrnofloat img.mcimg {
  width: 100%;
  height: auto;
}

.video-info__footer {
  white-space: nowrap;
  position: relative;
  overflow-x: auto;
}

.video-info__logo {
  position: absolute;
  right: 0;
  bottom: -25px;
}

.video-info__logo img {
  outline: none;
  border: none;
}

/* Scrollbar for Sidebar */
.video-info__footer.ps--active-x {
  padding-bottom: 11px;
}

.video-info__footer > .ps__scrollbar-y-rail,
.video-info__footer > .ps__scrollbar-x-rail {
  opacity: 0.7;
}

.video-info__footer.ps > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background: #777;
  border-radius: 0;
  right: 0;
}

.video-info__footer.ps > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  background: #777;
  border-radius: 0;
  bottom: 0;
}

.video-info__footer.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #777;
  width: 10px;
}

.video-info__footer.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  background-color: #777;
  height: 10px;
}

.video-info__footer.ps > .ps__scrollbar-y-rail {
  width: 10px;
}

.video-info__footer.ps > .ps__scrollbar-x-rail {
  height: 10px;
}

@media (min-width: 1024px) {
  .video-info__title-cell {
    font-size: 28px;
  }

  .video-info__sub-title {
    font-size: 15px;
  }

  .video-info__title {
    padding: 20px;
  }

  .video-info__logo {
    opacity: 0.6;
    transition: opacity 0.2s ease;
  }

  .video-info__logo:hover {
    opacity: 1;
  }

  .mgCloseCrossButton {
    width: 41px;
    height: 41px;
    line-height: 42px;
    font-size: 18px;
    margin: 0 -41px 0 0;
  }

  .mgCloseCrossButton:after {
    width: 1px;
    height: 21px;
    top: 10px;
    left: 20px;
  }

  .mgCloseCrossButton:before {
    width: 21px;
    height: 1px;
    top: 20px;
    left: 10px;
  }

  .mgCloseCrossButton:hover:after,
.mgCloseCrossButton:hover:before {
    background: #fff;
  }

  div.mgMuteButton:after,
div.mgMuteButton:before,
div.adMuteButton:after,
div.adMuteButton:before {
    bottom: 2px;
    right: 5px;
    width: 30px;
    height: 30px;
  }

  div.mgMuteButton:after,
div.mgMuteButton:before,
div.adMuteButton:after,
div.adMuteButton:before {
    transform: scale(0.75);
    left: 0;
    top: 0;
  }
}
@media (min-width: 480px) and (orientation: landscape) {
  .video-info__wrap {
    width: 380px;
  }

  .video-info__wrap:after {
    content: "";
    clear: both;
    display: table;
  }

  .video-info__footer {
    white-space: normal;
    padding: 5px 11px 5px 5px;
    height: 247px;
  }

  .video-info__title-cell {
    max-height: 37px;
    overflow: hidden;
    line-height: 1.4;
  }

  .video-info__sub-title {
    line-height: 1.4;
    max-height: 30px;
    overflow: hidden;
  }

  .video-info__title {
    height: 90px;
    overflow: hidden;
  }

  .video-info__frame {
    height: 157px;
    overflow: hidden;
  }
}
@media (min-width: 540px) and (orientation: landscape) {
  .video-info__wrap {
    width: 460px;
  }

  .video-info__frame {
    height: 190px;
  }

  .video-info__footer {
    height: 280px;
  }
}
@media (min-width: 760px) and (orientation: landscape) {
  .video-info__wrap {
    width: 580px;
  }

  .video-info__frame {
    height: 240px;
  }

  .video-info__footer {
    height: 330px;
  }

  div.mgMuteButton:after,
div.mgMuteButton:before,
div.adMuteButton:after,
div.adMuteButton:before {
    width: 30px;
    height: 30px;
  }

  div.adMuteButton:after,
div.adMuteButton:before {
    transform: scale(0.83);
  }
}
@media (min-width: 900px) and (orientation: landscape) {
  .video-info__wrap {
    width: 720px;
  }

  .video-info__frame {
    height: 298px;
  }

  .video-info__footer {
    height: 388px;
  }
}
@media (min-width: 1024px) and (orientation: landscape) {
  .video-info__wrap {
    width: 800px;
  }

  .video-info__frame {
    height: 331px;
  }

  .video-info__footer {
    height: 497px;
  }

  .video-info__title {
    height: 166px;
  }

  .video-info__title-cell {
    max-height: 80px;
  }

  .video-info__sub-title {
    max-height: 43px;
  }
}
@media (min-width: 1580px) and (orientation: landscape) {
  .video-info__wrap {
    width: 1100px;
  }

  .video-info__frame {
    height: 456px;
  }

  .video-info__footer {
    height: 612px;
    padding: 15px 24px 10px 15px;
  }

  .video-info__title {
    height: 156px;
    padding: 15px 42px;
  }
}
/* VideoProgressLine */
.mg-progress-line {
  height: 6px;
}

.mg-progress-point {
  background-color: #c20509;
  height: 4px;
  position: relative;
  top: -3px;
}

/* added styles */
.vrline div.mcimg a {
  position: relative;
  display: block;
}

.vrline div.mcimg a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.06)), to(rgba(0, 0, 0, 0.4)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.4) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#0f000000", endColorstr="#66000000",GradientType=0 );
}

.mctitle a {
  font-size: 14px;
  line-height: 1.3;
  color: #222;
  font-family: "Roboto", "Open Sans", sans-serif;
}

.mg-video-footer {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 11px;
  padding: 8px 52px 8px 10px;
  line-height: 1;
  z-index: 3;
}

.mg-video-footer:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 42px;
  height: 42px;
  background: #222;
}

.mg-video-footer:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 14px;
  right: 14px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #eee;
}

.mg-video-footer > * {
  margin-left: 4px;
}

.mg-video-footer > *:first-child {
  margin-left: 0;
}

.vrline .mg-video-footer {
  display: block !important;
}

.mg-total-views {
  white-space: nowrap;
}

.mg-total-views {
  float: left;
}

.mg-video-format {
  float: right;
  font-weight: 700;
  background: #cb4329;
  padding: 3px 4px 2px;
  border-radius: 3px;
  line-height: 1;
  margin: -3px 0 0 0;
}

.mg-video-duration {
  float: right;
}

#MarketGidComposite .vrline .image-container:after {
  display: none;
}

@media screen and (min-width: 481px) {
  .mg-total-views {
    position: absolute;
    top: 5px;
    left: 5px;
  }

  .vrline div.mcimg a:after {
    bottom: 7px;
    right: 8px;
  }

  .mg-video-footer {
    top: 0;
    font-size: 10px;
  }

  .mg-video-footer:before {
    width: 24px;
    height: 24px;
  }

  .mg-video-footer:after {
    bottom: 6px;
    right: 6px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #eee;
  }

  .mg-video-duration {
    position: absolute;
    bottom: 6px;
    left: 0;
  }

  .mg-video-format {
    position: absolute;
    bottom: 4px;
    right: 28px;
  }

  .vrline div.mcimg a:before {
    background: rgba(0, 0, 0, 0.5);
  }
}
@media screen and (min-width: 1290px) {
  .mg-total-views {
    display: block !important;
  }

  .vrline div.mcimg a:after {
    bottom: 8px;
    right: 9px;
  }

  .mg-video-footer {
    top: auto;
    font-size: 10px;
    padding-right: 42px;
  }

  .mg-video-duration {
    position: static;
    bottom: auto;
    left: auto;
    margin-left: 3px;
    float: right;
  }

  .mg-video-format {
    position: static;
    bottom: auto;
    right: auto;
  }

  .mg-total-views {
    position: static;
    top: auto;
    left: auto;
  }

  .mg-video-footer:before {
    width: 32px;
    height: 32px;
  }

  .mg-video-footer:after {
    bottom: 8px;
    right: 9px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #eee;
  }

  .vrline div.mcimg a:before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.06)), to(rgba(0, 0, 0, 0.4)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.4) 100%);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.4) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.4) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.4) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#0f000000", endColorstr="#66000000",GradientType=0 );
  }
}
.mgCover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 100000000;
  display: none;
}

.mg-total-views:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 11px;
  height: 8px;
  margin-right: 2px;
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMy43OCA4Ljg2Ij48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPkFydGJvYXJkIDM8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEzLjYzLDMuOUE4LjA3LDguMDcsMCwwLDAsNi44OSwwLDguMDcsOC4wNywwLDAsMCwuMTUsMy45LDEsMSwwLDAsMCwuMTUsNWE4LjA3LDguMDcsMCwwLDAsNi43NCwzLjlBOC4wNSw4LjA1LDAsMCwwLDEzLjYzLDVhMSwxLDAsMCwwLDAtMS4wNlptLTYuNzQsNGEzLjUsMy41LDAsMSwxLDMuNS0zLjVBMy41LDMuNSwwLDAsMSw2Ljg5LDcuOTNaIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSI2Ljg5IiBjeT0iNC40MyIgcj0iMS42OSIvPjwvc3ZnPg==) no-repeat center;
  background-size: contain;
}

.mg-video-tag {
  text-align: left !important;
  left: 10px;
}

.mg-video-tag {
  line-height: 18px;
  width: 100%;
  text-align: right;
  position: absolute;
  z-index: 999;
  top: 10px;
  right: 10px;
}

.mg-video-tag > span {
  text-align: left;
  background: #007eff;
  color: #fff;
  padding: 3px 5px 2px 5px;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 12px;
  box-sizing: border-box;
  width: 100%;
}

.mgline:not(.vrline) .mg-video-tag {
  display: none;
}

.mgline:nth-child(3) .mg-video-tag > span {
  background: #786EFC !important;
}

.mgline:nth-child(4) .mg-video-tag > span {
  background: #FB6EFC !important;
}

.mgline:nth-child(5) .mg-video-tag > span {
  background: #912692 !important;
}

.mgline:nth-child(6) .mg-video-tag > span {
  background: #92264F !important;
}

.mgline:nth-child(7) .mg-video-tag > span {
  background: #FF70A6 !important;
}

.mgline:nth-child(8) .mg-video-tag > span {
  background: #25B8FE !important;
}

.mgline:nth-child(9) .mg-video-tag > span {
  background: #54966A !important;
}

.mgline:nth-child(10) .mg-video-tag > span {
  background: #D82903 !important;
}

.mgline:nth-child(11) .mg-video-tag > span {
  background: #C2880A !important;
}

.mgline:nth-child(12) .mg-video-tag > span {
  background: #342DCD !important;
}

.mgline:nth-child(13) .mg-video-tag > span {
  background: #787878 !important;
}

.mgline:nth-child(14) .mg-video-tag > span {
  background: #05016B !important;
}

.mgline:nth-child(15) .mg-video-tag > span {
  background: #0C5F13 !important;
}

.mgline:nth-child(16) .mg-video-tag > span {
  background: #879565 !important;
}

.videoTimeLeftText {
  font-size: 12px;
  opacity: 0.75;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0.75em;
  bottom: 0.75em;
  color: #fff;
  display: none;
  z-index: 100000001;
}

.adEnable .videoTimeLeftText {
  display: block;
}

div.mgAdPlayerContainerDiv.showed, div.adPlayerContainerDiv.showed {
  z-index: 9999998;
  opacity: 1;
  visibility: visible;
  background-color: transparent;
  position: absolute;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
}

div.mgAdPlayerDiv.showed, div.adPlayerDiv.showed {
  z-index: 100;
  opacity: 1;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}

div.mgAdPlayerContainerDiv, div.adPlayerContainerDiv {
  z-index: -100;
  opacity: 0;
  visibility: hidden;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
}

div.mgAdPlayerContainerDiv.partial, div.adPlayerContainerDiv.partial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

div.mgAdPlayerContainerDiv.block, div.adPlayerContainerDiv.block {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  transition: height 2000ms;
}

div.mgAdPlayerDiv, div.adPlayerDiv {
  z-index: -1;
  opacity: 0;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.overflow-allowed div.mgAdPlayerDiv, .overflow-allowed div.adPlayerDiv {
  overflow: visible;
}

div.mgAdPlayerContainerDiv.partial > div.mgAdPlayerDiv > div:not(.mgCloseButton):not(.mgLinkButton),
div.adPlayerContainerDiv.partial > div.adPlayerDiv > div:not(.adCloseButton):not(.adLinkButton) {
  top: 0;
  left: 0;
}

/* Close Button Styles begin */
div.mgCloseButton,
div.adCloseButton {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 2;
}

div.mgCloseButton.showed,
div.adCloseButton.showed {
  display: block;
}

div.mgCloseButton:after,
div.adCloseButton:after {
  position: absolute;
  top: 0;
  right: 0;
  filter: drop-shadow(0 0 3px #000);
  line-height: 20px;
  margin: 3px;
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#close");
  content: "";
  width: 24px;
  height: 24px;
  display: block;
}

div.mgAdPlayerContainerDiv.showed div.mgCloseButton,
div.adPlayerContainerDiv.showed div.adCloseButton {
  display: none;
  z-index: 9999999;
  right: 0;
}

div.mgAdPlayerContainerDiv.showed div.mgCloseButton.showed,
div.adPlayerContainerDiv.showed div.adCloseButton.showed {
  display: block;
}

/* Close Button Styles end */
div.mgMuteButton, div.adMuteButton {
  display: none;
  speak: none;
  line-height: 1;
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 20px;
  height: 25px;
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
  filter: drop-shadow(0 0 3px #000);
}

div.mgMuteButton.showed, div.adMuteButton.showed {
  display: block;
}

div.mgMuteButton:before,
div.mgMuteButton:after,
div.adMuteButton:before,
div.adMuteButton:after {
  position: absolute;
  height: 24px;
  width: 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.75);
}

div.mgMuteButton:before, div.adMuteButton:before {
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#volume_down");
  content: "";
  width: 24px;
  height: 24px;
  display: block;
}

div.mgMuteButton:after, div.adMuteButton:after {
  display: none;
}

div.mgMuteButton.muted:before, div.adMuteButton.muted:before {
  display: none;
}

div.mgMuteButton.muted:after, div.adMuteButton.muted:after {
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#volume_off");
  content: "";
  width: 24px;
  height: 24px;
  display: block;
}

@-webkit-keyframes mg-spinner-easespin {
  12.5% {
    transform: rotate(135deg);
  }
  25% {
    transform: rotate(270deg);
  }
  37.5% {
    transform: rotate(405deg);
  }
  50% {
    transform: rotate(540deg);
  }
  62.5% {
    transform: rotate(675deg);
  }
  75% {
    transform: rotate(810deg);
  }
  87.5% {
    transform: rotate(945deg);
  }
  100% {
    transform: rotate(1080deg);
  }
}

@keyframes mg-spinner-easespin {
  12.5% {
    transform: rotate(135deg);
  }
  25% {
    transform: rotate(270deg);
  }
  37.5% {
    transform: rotate(405deg);
  }
  50% {
    transform: rotate(540deg);
  }
  62.5% {
    transform: rotate(675deg);
  }
  75% {
    transform: rotate(810deg);
  }
  87.5% {
    transform: rotate(945deg);
  }
  100% {
    transform: rotate(1080deg);
  }
}
@-webkit-keyframes mg-spinner-left-spin {
  0% {
    transform: rotate(130deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(130deg);
  }
}
@keyframes mg-spinner-left-spin {
  0% {
    transform: rotate(130deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(130deg);
  }
}
@-webkit-keyframes mg-right-spin {
  0% {
    transform: rotate(-130deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-130deg);
  }
}
@keyframes mg-right-spin {
  0% {
    transform: rotate(-130deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-130deg);
  }
}
.mg-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 999999;
  pointer-events: none;
}

.mg-spinner.show .mg-spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  animation: mg-spinner-linspin 1568.23529647ms linear infinite;
  -webkit-animation: mg-spinner-linspin 1568.23529647ms linear infinite;
}

.mg-spinner.show .mg-spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: mg-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
       animation: mg-spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.mg-spinner.show .mg-spinner-left {
  right: 49%;
}

.mg-spinner.show .mg-spinner-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

.mg-spinner.show .mg-spinner-left .mg-spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: transparent;
  -webkit-animation: mg-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
       animation: mg-spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.mg-spinner.show .mg-spinner-circle {
  box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  border-color: #ddd #ddd transparent;
  border-radius: 50%;
  border-width: 6px;
}

.mg-spinner.show .mg-spinner-right {
  left: 49%;
}

.mg-spinner.show .mg-spinner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.mg-spinner.show .mg-spinner-right .mg-spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: transparent;
  -webkit-animation: mg-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
       animation: mg-right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.image-container div.video-info__player {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  z-index: 9999;
  transition: none !important;
  overflow: hidden;
}

.image-container div.video-info__player.block {
  position: relative;
}

.image-container div.video-info__player * {
  transition: none;
}

.image-container div.video-info__player.overflow-allowed {
  overflow: visible;
  background: transparent;
}

.mgline.vrline .image-container {
  display: block !important;
}

html > div {
  display: none !important;
}

div.mgSkipButton, div.adSkipButton {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 8px;
  height: 25px;
  text-shadow: 2px 1px 2px black;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  font-family: Helvetica, Arial, fallback, sans-serif;
  font-size: 12px;
  text-align: center;
  line-height: 25px;
  transition: all 0.15s ease-in-out;
  display: none;
  z-index: 101;
  cursor: pointer;
}

div.mgSkipButton.showed, div.adSkipButton.showed {
  display: block;
}

div.mgAdPlayerDiv #av-container #av-inner #gui #skip-btn,
div.adPlayerDiv #av-container #av-inner #gui #skip-btn {
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  padding: 0 8px;
  height: 25px;
  text-shadow: 2px 1px 2px black;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  font-family: Helvetica, Arial, fallback, sans-serif;
  font-size: 12px;
  text-align: center;
  line-height: 25px;
  transition: all 0.15s ease-in-out;
  z-index: 2;
  cursor: pointer;
  border: none;
  text-transform: none;
}

div.mgAdPlayerDiv #av-container #av-inner #gui #timer,
div.adPlayerDiv #av-container #av-inner #gui #timer {
  height: 25px;
  width: 25px;
  text-shadow: 2px 1px 2px black;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  text-align: center;
  line-height: 25px;
  border: none;
  text-transform: none;
}

.clickDiv {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 10000000;
  left: 0;
  top: 0;
}

div.adLinkButton {
  position: absolute;
  top: 5px;
  font-weight: bold;
  left: 40px;
  right: 40px;
  z-index: 2;
  cursor: pointer;
  color: white;
  font-size: 14px;
  text-shadow: 2px 1px 2px black;
  padding: 0 12px;
  height: 32px;
  font-family: Helvetica, Arial, fallback, sans-serif;
  text-align: center;
  line-height: 32px;
  transition: all 0.15s ease-in-out;
  display: none;
}

div.adLinkButton.showed {
  display: block;
}

#av-container #av-inner #gui:before {
  background: none;
}

#av-container.desktop #gui #timeline.av-overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  bottom: -4px !important;
  right: 0 !important;
  left: 0 !important;
}

#av-container.desktop #gui:before, #av-container.desktop #gui #buttons, #av-container.desktop #gui #timeline, #av-container.desktop #av-inner #gui #timeline #timeline-moveto {
  opacity: 1;
  filter: alpha(opacity=100);
}

#aniview-credit {
  display: none !important;
}

.ps {
  touch-action: auto;
  overflow: hidden !important;
  -ms-overflow-style: none;
}

@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}
.ps.ps--active-x > .ps__scrollbar-x-rail, .ps.ps--active-y > .ps__scrollbar-y-rail {
  display: block;
  background-color: transparent;
}

.ps.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
}

.ps.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  background-color: #999;
  height: 10px;
}

.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
  background-color: #eee;
  opacity: 0.9;
}

.ps.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #999;
  width: 10px;
}

.ps > .ps__scrollbar-x-rail {
  display: none;
  position: absolute;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  bottom: 0;
  height: 15px;
}

.ps > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  position: absolute;
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s linear, width 0.2s ease-in-out, border-radius 0.2s ease-in-out;
  bottom: 2px;
  height: 6px;
}

.ps > .ps__scrollbar-x-rail:active > .ps__scrollbar-x, .ps > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x {
  height: 10px;
}

.ps > .ps__scrollbar-y-rail {
  display: none;
  position: absolute;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  right: 0;
  width: 15px;
}

.ps > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  position: absolute;
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s linear, width 0.2s ease-in-out, border-radius 0.2s ease-in-out;
  right: 2px;
  width: 6px;
}

.ps > .ps__scrollbar-y-rail:active > .ps__scrollbar-y, .ps > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y {
  width: 10px;
}

.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail {
  background-color: #eee;
  opacity: 0.9;
}

.ps:hover.ps--in-scrolling.ps--x > .ps__scrollbar-x-rail > .ps__scrollbar-x {
  background-color: #999;
  height: 10px;
}

.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail {
  background-color: #eee;
  opacity: 0.9;
}

.ps:hover.ps--in-scrolling.ps--y > .ps__scrollbar-y-rail > .ps__scrollbar-y {
  background-color: #999;
  width: 10px;
}

.ps:hover > .ps__scrollbar-x-rail, .ps:hover > .ps__scrollbar-y-rail {
  opacity: 0.6;
}

.ps:hover > .ps__scrollbar-x-rail:hover {
  background-color: #eee;
  opacity: 0.9;
}

.ps:hover > .ps__scrollbar-x-rail:hover > .ps__scrollbar-x {
  background-color: #999;
}

.ps:hover > .ps__scrollbar-y-rail:hover {
  background-color: #eee;
  opacity: 0.9;
}

.ps:hover > .ps__scrollbar-y-rail:hover > .ps__scrollbar-y {
  background-color: #999;
}

/* Sticky native styles */
div.video-info__player.small,
div.video-info__player.medium,
div.video-info__player.large {
  position: fixed;
  bottom: 10px;
  z-index: 9999999;
  opacity: 1;
  visibility: visible;
  background-color: #000;
}

div.video-info__player.small div.adPlayerDiv,
div.video-info__player.medium div.adPlayerDiv,
div.video-info__player.large div.adPlayerDiv {
  z-index: 100;
  opacity: 1;
  position: relative;
}

div.video-info__player.small.left,
div.video-info__player.medium.left,
div.video-info__player.large.left {
  left: 10px;
  top: auto;
}

div.video-info__player.small {
  width: 401px;
}

div.video-info__player.small.right,
div.video-info__player.medium.right,
div.video-info__player.large.right {
  right: 10px;
  left: auto;
  top: auto;
}

div.video-info__player.small.top,
div.video-info__player.medium.top,
div.video-info__player.large.top {
  top: 10px;
  bottom: auto;
}

div.video-info__player.small.bottom,
div.video-info__player.medium.bottom,
div.video-info__player.large.bottom {
  bottom: 10px;
  top: auto;
}

div.video-info__player.medium {
  width: 501px;
}

div.video-info__player.large {
  width: 601px;
}

div.video-info__player.small div.adCloseButton.showed,
div.video-info__player.medium div.adCloseButton.showed,
div.video-info__player.large div.adCloseButton.showed {
  display: block !important;
  z-index: 9999999 !important;
}

div.video-info__player.small div.adCloseButton,
div.video-info__player.medium div.adCloseButton,
div.video-info__player.large div.adCloseButton {
  display: none !important;
}

@media only screen and (max-device-width: 480px) {
  div.video-info__player.small.right,
div.video-info__player.medium.right,
div.video-info__player.large.right,
div.video-info__player.small.left,
div.video-info__player.medium.left,
div.video-info__player.large.left {
    position: fixed;
    bottom: 0;
    right: -480px;
    transition: right 1s;
    width: 70%;
  }

  div.video-info__player.small.right.showed,
div.video-info__player.medium.right.showed,
div.video-info__player.large.right.showed,
div.video-info__player.small.left.showed,
div.video-info__player.medium.left.showed,
div.video-info__player.large.left.showed {
    position: fixed;
    bottom: 0;
    right: 0;
    transition: right 1s;
  }

  div.video-info__player.small.right.upper,
div.video-info__player.medium.right.upper,
div.video-info__player.large.right.upper,
div.video-info__player.small.left.upper,
div.video-info__player.medium.left.upper,
div.video-info__player.large.left.upper {
    top: 0;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
  }

  div.video-info__player.small.right.upper.showed,
div.video-info__player.medium.right.upper.showed,
div.video-info__player.large.right.upper.showed,
div.video-info__player.small.left.upper.showed,
div.video-info__player.medium.left.upper.showed,
div.video-info__player.large.left.upper.showed {
    opacity: 1;
    visibility: visible;
  }

  div.video-info__player.small.top,
div.video-info__player.medium.top,
div.video-info__player.large.top,
div.video-info__player.small.bottom,
div.video-info__player.medium.bottom,
div.video-info__player.large.bottom {
    position: fixed;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
    width: 70%;
    margin-bottom: 0;
  }

  div.video-info__player.small.top,
div.video-info__player.medium.top,
div.video-info__player.large.top {
    top: 0;
    bottom: auto;
  }

  div.video-info__player.small.bottom,
div.video-info__player.medium.bottom,
div.video-info__player.large.bottom {
    bottom: 0;
    top: auto;
  }

  div.video-info__player.small.top.showed,
div.video-info__player.medium.top.showed,
div.video-info__player.large.top.showed,
div.video-info__player.small.bottom.showed,
div.video-info__player.medium.bottom.showed,
div.video-info__player.large.bottom.showed {
    opacity: 1;
    visibility: visible;
  }

  div.adPlayerDiv.adplayer-no-ui div.adSkipButton,
div.adPlayerDiv.adplayer-no-ui div.adLinkButton,
div.adPlayerDiv.adplayer-no-ui .play,
div.adPlayerDiv.adplayer-no-ui .pause,
div.adPlayerDiv.adplayer-no-ui #sound {
    opacity: 0;
    visibility: hidden;
    z-index: -100;
  }
}
/* Sticky native Styles end */
/* Embedded Styles */
div.adPlayerDiv.adplayer-no-ui div.adSkipButton,
div.adPlayerDiv.adplayer-no-ui div.adLinkButton,
div.adPlayerDiv.adplayer-no-ui .play,
div.adPlayerDiv.adplayer-no-ui .pause,
div.adPlayerDiv.adplayer-no-ui #sound,
div.adPlayerDiv.adplayer-no-ui .adClickCover {
  opacity: 0;
  visibility: hidden;
  z-index: -100;
}

/* Embedded Styles End */
.adClickCover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: none;
}

.adClickCover.showed {
  display: block;
}

/*  Logo Styles - begin */
.topBar {
  display: none;
  width: 100%;
  position: absolute;
  top: -31px;
  padding-bottom: 3px;
  height: 31px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
}

.topBar.showed {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

div.video-info__player.mglogo {
  overflow: visible;
}

div.video-info__player.small.top.mglogo,
div.video-info__player.medium.top.mglogo,
div.video-info__player.large.top.mglogo {
  margin-top: 31px;
}

.topBar .other-logo {
  width: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.topBar .other-logo a:before {
  background: none !important;
}

.topBar .other-logo img {
  width: 80px;
  position: relative;
  top: 4px;
  left: 0;
}

.topBar > span {
  color: #000;
  background: none;
  padding: 0;
  font-family: Roboto, sans-serif;
  font-weight: bold;
  font-size: 16px;
  box-sizing: border-box;
  line-height: 1;
  text-transform: uppercase;
  margin: 12px 0 0 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}

/*  Logo Styles - end */
/* In-Article Video Start */
.vrline div.mcimg {
  padding: 0;
  text-align: center;
  width: 100%;
}

.vrline img.mcimg {
  border: 0 solid #ffffff;
  width: 100% !important;
  height: auto !important;
  box-sizing: border-box;
  display: block;
}

.vrline .mctitle {
  margin-top: 10px;
  text-align: left;
}

.vrline .mctitle a {
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  font-style: normal;
  text-decoration: none;
  color: #000000;
  font-family: Roboto;
}

.vrline.mgline {
  background: none repeat scroll 0 0;
  cursor: pointer;
  display: inline-block;
  _overflow: hidden;
  *zoom: 1;
  *display: inline;
  padding: 0 !important;
  border: 0 solid #ffffff;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 10px 0 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  word-wrap: break-word;
}

.vrline.mgline .image-container {
  position: relative;
}

.vrline.mgline {
  vertical-align: top;
}

.vrline.mgline {
  min-width: 90px;
}

@supports not (flex-wrap: wrap) {
  .vrline.mgline {
    display: inline-block !important;
  }
}
.text-elements a {
  text-decoration: none;
}

.vrline div.mcprice,
.vrline div.mgbuybox,
.vrline div.mgarrowbox {
  display: none;
}

@media (max-width: 480px) {
  .vrline.mgline {
    width: 48% !important;
    margin: 1% !important;
    max-width: 48% !important;
  }
}
@media (max-width: 480px) {
  .vrline.mgline {
    width: 98% !important;
    margin: 1% !important;
    max-width: 98% !important;
  }
}
.vrline .mctitle a:hover {
  color: #7f7f7f;
}

.vrline.mgline {
  position: relative;
}

.vrline.mgline .fake {
  visibility: hidden;
  position: relative;
  padding-top: 4px;
}

.vrline.mgline .mctitle {
  margin-top: 2px;
  line-height: 1 !important;
}

.vrline.mgline:hover .mctitle a {
  color: #7f7f7f;
}

.vrline.mgline .image-with-text,
.vrline.mgline .mgtobottom {
  width: 100% !important;
}

/* In-Article Video End */
/* Click to play styles begin */
.ctplay .mgbox {
  padding: 25px 0 0 !important;
  max-width: 680px !important;
}

.ctplay .vrline.mgline {
  background: #eee !important;
  padding: 0 0 20px !important;
  border: 1px solid #e3e3e3 !important;
  width: 100%;
  max-width: 100%;
  margin: 3px 0;
  transition-duration: 0.8s;
  transition-property: box-shadow;
}

.ctplay .mgheader {
  border-bottom: none !important;
  padding-bottom: 0;
  margin-bottom: 0;
}

.ctplay .mghead {
  color: #000000 !important;
  font-size: 14px !important;
}

.ctplay .vrline.mgline .mctitle {
  margin: 2px 5px 20px;
  text-align: left;
}

.ctplay .vrline.mgline .mctitle a {
  font-size: 20px;
  line-height: 1.3;
  color: #000;
  font-family: "Roboto", "Open Sans", sans-serif;
}

.ctplay .vrline.mgline .mctitle a:hover {
  color: #000;
}

.ctplay .vrline.mgline:hover .mctitle a {
  color: #000;
}

.ctplay .vrline.mgline .mcdomain {
  padding-top: 3px;
  text-align: left;
}

.ctplay .vrline.mgline .mcdomain a {
  font-size: 13px;
  line-height: 13px;
  font-style: italic;
  color: #7f7f7f;
  padding: 1px;
}

.ctplay .vrline.mgline .image-with-text,
.ctplay .vrline.mgline img.mcimg {
  max-width: 680px !important;
  max-height: 385px !important;
}

.ctplay .mg2player:not(.mg2player_playing) .mg2player__close.mghover,
.ctplay .mg2player:not(.mg2player_playing) .mg2player__volume.mghover,
.ctplay .mg2player:not(.mg2player_playing) .mg2player__track.mghover,
.ctplay .mg2player:not(.mg2player_playing) .mg2player__time.mghover,
.ctplay .mg2player:not(.mg2player_playing) .mg2player__play-btn.mghover,
.ctplay .mg2player:not(.mg2player_playing) .mg2player__play-next.mghover,
.ctplay .mg2player:not(.mg2player_playing) .mg2player__start-btn.mghover {
  opacity: 1;
  visibility: visible;
}

.ctplay.mgred .vrline.mgline .text-elements {
  display: none;
}

.ctplay.mgred .vrline.mgline {
  border: none !important;
  background: inherit !important;
}

/* Click to play styles end */
div.vrPopup {
  opacity: 0;
  visibility: hidden;
}

div.mgAdPlayerContainerDiv div.mgMuteButton, div.adPlayerContainerDiv div.mgMuteButton,
div.mgAdPlayerContainerDiv .mg2player__controls, div.adPlayerContainerDiv .mg2player__controls,
div.mgAdPlayerContainerDiv .mg2player__title, div.adPlayerContainerDiv .mg2player__title {
  display: none;
}

/* Outstream - start */
div.mgAdPlayerContainerDiv.mgAdPlayerFormat-outstream.showed, div.adPlayerContainerDiv.mgAdPlayerFormat-outstream.showed {
  z-index: 9999999;
  background-color: #fff;
}

div.mgAdPlayerDiv.showed, div.adPlayerDiv.showed {
  z-index: 100;
  opacity: 1;
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

div.mgAdPlayerContainerDiv, div.adPlayerContainerDiv {
  z-index: -100;
  opacity: 0;
  visibility: hidden;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
}

div.mgAdPlayerDiv, div.adPlayerDiv {
  z-index: -1;
  opacity: 0;
  position: relative;
  height: 100%;
}

div.mgAdPlayerDiv > div:not(.mgCloseButton):not(.mgLinkButton),
div.adPlayerDiv > div:not(.adCloseButton):not(.adLinkButton) {
  top: 0;
  left: 0;
}

div.mgAdPlayerContainerDiv.block, div.adPlayerContainerDiv.block {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
  transition: height 2000ms;
}

div.mgAdPlayerContainerDiv.block.noanim, div.adPlayerContainerDiv.block.noanim {
  transition: none;
}

html > div {
  display: none !important;
}

div.mgSkipButton, div.adSkipButton {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 8px;
  height: 25px;
  text-shadow: 2px 1px 2px black;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  font-family: Helvetica, Arial, fallback, sans-serif;
  font-size: 12px;
  text-align: center;
  line-height: 25px;
  transition: all 0.15s ease-in-out;
  display: none;
  z-index: 101;
  cursor: pointer;
}

div.mgSkipButton.showed, div.adSkipButton.showed {
  display: block;
}

div.mgAdPlayerDiv #av-container #av-inner #gui #skip-btn,
div.adPlayerDiv #av-container #av-inner #gui #skip-btn {
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  padding: 0 8px;
  height: 25px;
  text-shadow: 2px 1px 2px black;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  font-family: Helvetica, Arial, fallback, sans-serif;
  font-size: 12px;
  text-align: center;
  line-height: 25px;
  transition: all 0.15s ease-in-out;
  z-index: 2;
  cursor: pointer;
  border: none;
  text-transform: none;
}

div.mgAdPlayerDiv #av-container #av-inner #gui #timer,
div.adPlayerDiv #av-container #av-inner #gui #timer {
  height: 25px;
  width: 25px;
  text-shadow: 2px 1px 2px black;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  text-align: center;
  line-height: 25px;
  border: none;
  text-transform: none;
}

div.adLinkButton {
  position: absolute;
  top: 5px;
  font-weight: bold;
  left: 40px;
  right: 40px;
  z-index: 2;
  cursor: pointer;
  color: white;
  font-size: 14px;
  text-shadow: 2px 1px 2px black;
  padding: 0 12px;
  height: 32px;
  font-family: Helvetica, Arial, fallback, sans-serif;
  text-align: center;
  line-height: 32px;
  transition: all 0.15s ease-in-out;
  display: none;
}

div.adLinkButton.showed {
  display: block;
}

#av-container #av-inner #gui:before {
  background: none;
}

#av-container.desktop #gui #timeline.av-overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  bottom: -4px !important;
  right: 0 !important;
  left: 0 !important;
}

#av-container.desktop #gui:before, #av-container.desktop #gui #buttons, #av-container.desktop #gui #timeline, #av-container.desktop #av-inner #gui #timeline #timeline-moveto {
  opacity: 1;
  filter: alpha(opacity=100);
}

#aniview-credit {
  display: none !important;
}

/* Close Button Styles begin */
div.mgCloseButton,
div.adCloseButton {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 9999;
}

div.mgCloseButton.showed,
div.adCloseButton.showed {
  display: block;
}

div.mgCloseButton:after,
div.adCloseButton:after {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  color: #fff;
  filter: drop-shadow(0 0 3px #000);
  line-height: 20px;
  margin: 3px;
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#close");
  content: "";
  display: block;
}

div.mgAdPlayerContainerDiv.showed div.mgCloseButton.showed,
div.adPlayerContainerDiv.showed div.adCloseButton.showed {
  display: block;
}

/* Close Button Styles end */
div.mgMuteButton, div.adMuteButton {
  display: none;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 20px;
  height: 25px;
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100;
  filter: drop-shadow(0 0 3px #000);
}

div.mgMuteButton.showed, div.adMuteButton.showed {
  display: block;
}

div.mgMuteButton:before,
div.mgMuteButton:after,
div.adMuteButton:before,
div.adMuteButton:after {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.75);
}

div.mgMuteButton:before, div.adMuteButton:before {
  content: "";
  display: block;
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#volume_down");
}

div.mgMuteButton:after, div.adMuteButton:after {
  content: "";
  background: url("/mgPlayer/img/mgPlayer_v2_sprite.svg#volume_off");
  display: none;
}

div.mgMuteButton.muted:before, div.adMuteButton.muted:before {
  display: none;
}

div.mgMuteButton.muted:after, div.adMuteButton.muted:after {
  display: block;
}

/* Slider styles */
div.adPlayerContainerDiv.small,
div.adPlayerContainerDiv.medium,
div.adPlayerContainerDiv.large,
div.mgAdPlayerContainerDiv.small,
div.mgAdPlayerContainerDiv.medium,
div.mgAdPlayerContainerDiv.large {
  position: fixed;
  bottom: 0;
  top: auto;
  z-index: 9999999;
  opacity: 1;
  visibility: visible;
  background-color: #000;
  overflow: visible;
}

div.adPlayerContainerDiv.small,
div.adPlayerContainerDiv.medium,
div.adPlayerContainerDiv.large,
div.mgAdPlayerContainerDiv.small,
div.mgAdPlayerContainerDiv.medium,
div.mgAdPlayerContainerDiv.large {
  opacity: 0;
  visibility: hidden;
}

div.adPlayerContainerDiv.small.showed,
div.adPlayerContainerDiv.medium.showed,
div.adPlayerContainerDiv.large.showed,
div.mgAdPlayerContainerDiv.small.showed,
div.mgAdPlayerContainerDiv.medium.showed,
div.mgAdPlayerContainerDiv.large.showed {
  opacity: 1;
  visibility: visible;
}

div.adPlayerContainerDiv.small div.adPlayerDiv,
div.adPlayerContainerDiv.medium div.adPlayerDiv,
div.adPlayerContainerDiv.large div.adPlayerDiv,
div.mgAdPlayerContainerDiv.small div.mgAdPlayerDiv,
div.mgAdPlayerContainerDiv.medium div.mgAdPlayerDiv,
div.mgAdPlayerContainerDiv.large div.mgAdPlayerDiv {
  z-index: 100;
  opacity: 1;
  position: relative;
}

div.adPlayerContainerDiv.small.top,
div.adPlayerContainerDiv.medium.top,
div.adPlayerContainerDiv.large.top,
div.mgAdPlayerContainerDiv.small.top,
div.mgAdPlayerContainerDiv.medium.top,
div.mgAdPlayerContainerDiv.large.top {
  top: 0;
  bottom: auto;
}

div.adPlayerContainerDiv.small, div.mgAdPlayerContainerDiv.small {
  width: 401px;
}

div.adPlayerContainerDiv.medium, div.mgAdPlayerContainerDiv.medium {
  width: 501px;
}

div.adPlayerContainerDiv.large, div.mgAdPlayerContainerDiv.large {
  width: 601px;
}

div.adPlayerContainerDiv.small.left, div.mgAdPlayerContainerDiv.small.left {
  left: -401px;
  transition: left 1s;
}

div.adPlayerContainerDiv.small.left.showed,
div.adPlayerContainerDiv.medium.left.showed,
div.adPlayerContainerDiv.large.left.showed,
div.mgAdPlayerContainerDiv.small.left.showed,
div.mgAdPlayerContainerDiv.medium.left.showed,
div.mgAdPlayerContainerDiv.large.left.showed {
  left: 0;
  right: auto;
  transition: left 1s;
}

div.adPlayerContainerDiv.small.right, div.mgAdPlayerContainerDiv.small.right {
  right: -401px;
  transition: right 1s;
}

div.adPlayerContainerDiv.small.right.showed,
div.adPlayerContainerDiv.medium.right.showed,
div.adPlayerContainerDiv.large.right.showed,
div.mgAdPlayerContainerDiv.small.right.showed,
div.mgAdPlayerContainerDiv.medium.right.showed,
div.mgAdPlayerContainerDiv.large.right.showed {
  right: 0;
  left: auto;
  transition: right 1s;
}

div.adPlayerContainerDiv.medium.left, div.mgAdPlayerContainerDiv.medium.left {
  left: -501px;
  transition: left 1s;
}

div.adPlayerContainerDiv.medium.right, div.mgAdPlayerContainerDiv.medium.right {
  right: -501px;
  transition: right 1s;
}

div.adPlayerContainerDiv.large.left, div.mgAdPlayerContainerDiv.large.left {
  left: -601px;
  transition: left 1s;
}

div.adPlayerContainerDiv.large.right, div.mgAdPlayerContainerDiv.large.right {
  right: -601px;
  transition: right 1s;
}

/*  Logo Styles - begin */
.topBar {
  display: none;
  width: 100%;
  position: absolute;
  top: -31px;
  padding-bottom: 3px;
  height: 31px;
  left: 0;
  background-color: rgba(255, 255, 255, 0.9);
}

.topBar.showed {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

div.adPlayerContainerDiv.mglogo,
div.mgAdPlayerContainerDiv.mglogo {
  margin-top: 31px;
  overflow: visible;
}

div.adPlayerContainerDiv.small.top .topBar.showed,
div.adPlayerContainerDiv.medium.top .topBar.showed,
div.adPlayerContainerDiv.large.top .topBar.showed,
div.mgAdPlayerContainerDiv.small.top .topBar.showed,
div.mgAdPlayerContainerDiv.medium.top .topBar.showed,
div.mgAdPlayerContainerDiv.large.top .topBar.showed {
  display: none;
}

.topBar .other-logo {
  width: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.topBar .other-logo a:before {
  background: none !important;
}

.topBar .other-logo img {
  width: 80px;
  position: relative;
  top: 4px;
  left: 0;
}

.topBar > span {
  color: #000;
  background: none;
  padding: 0;
  font-family: Roboto, sans-serif;
  font-weight: bold;
  font-size: 16px;
  box-sizing: border-box;
  line-height: 1;
  text-transform: uppercase;
  margin: 12px 0 0 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}

/*  Logo Styles - end */
@media only screen and (max-device-width: 480px) {
  div.adPlayerContainerDiv.small.right,
div.adPlayerContainerDiv.medium.right,
div.adPlayerContainerDiv.large.right,
div.adPlayerContainerDiv.small.left,
div.adPlayerContainerDiv.medium.left,
div.adPlayerContainerDiv.large.left,
div.mgAdPlayerContainerDiv.small.right,
div.mgAdPlayerContainerDiv.medium.right,
div.mgAdPlayerContainerDiv.large.right,
div.mgAdPlayerContainerDiv.small.left,
div.mgAdPlayerContainerDiv.medium.left,
div.mgAdPlayerContainerDiv.large.left {
    position: fixed;
    bottom: 0;
    right: -480px;
    transition: right 1s;
    width: 70%;
  }

  div.adPlayerContainerDiv.small.right.showed,
div.adPlayerContainerDiv.medium.right.showed,
div.adPlayerContainerDiv.large.right.showed,
div.adPlayerContainerDiv.small.left.showed,
div.adPlayerContainerDiv.medium.left.showed,
div.adPlayerContainerDiv.large.left.showed,
div.mgAdPlayerContainerDiv.small.right.showed,
div.mgAdPlayerContainerDiv.medium.right.showed,
div.mgAdPlayerContainerDiv.large.right.showed,
div.mgAdPlayerContainerDiv.small.left.showed,
div.mgAdPlayerContainerDiv.medium.left.showed,
div.mgAdPlayerContainerDiv.large.left.showed {
    position: fixed;
    left: 50%;
    right: auto;
    transition: right 1s;
  }

  div.adPlayerContainerDiv.small.right.upper,
div.adPlayerContainerDiv.medium.right.upper,
div.adPlayerContainerDiv.large.right.upper,
div.adPlayerContainerDiv.small.left.upper,
div.adPlayerContainerDiv.medium.left.upper,
div.adPlayerContainerDiv.large.left.upper,
div.mgAdPlayerContainerDiv.small.right.upper,
div.mgAdPlayerContainerDiv.medium.right.upper,
div.mgAdPlayerContainerDiv.large.right.upper,
div.mgAdPlayerContainerDiv.small.left.upper,
div.mgAdPlayerContainerDiv.medium.left.upper,
div.mgAdPlayerContainerDiv.large.left.upper {
    top: 0;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    visibility: hidden;
  }

  div.adPlayerContainerDiv.small.right.upper.showed,
div.adPlayerContainerDiv.medium.right.upper.showed,
div.adPlayerContainerDiv.large.right.upper.showed,
div.adPlayerContainerDiv.small.left.upper.showed,
div.adPlayerContainerDiv.medium.left.upper.showed,
div.adPlayerContainerDiv.large.left.upper.showed,
div.mgAdPlayerContainerDiv.small.right.upper.showed,
div.mgAdPlayerContainerDiv.medium.right.upper.showed,
div.mgAdPlayerContainerDiv.large.right.upper.showed,
div.mgAdPlayerContainerDiv.small.left.upper.showed,
div.mgAdPlayerContainerDiv.medium.left.upper.showed,
div.mgAdPlayerContainerDiv.large.left.upper.showed {
    opacity: 1;
    visibility: visible;
  }

  div.adPlayerContainerDiv.small.top,
div.adPlayerContainerDiv.medium.top,
div.adPlayerContainerDiv.large.top,
div.adPlayerContainerDiv.small.bottom,
div.adPlayerContainerDiv.medium.bottom,
div.adPlayerContainerDiv.large.bottom,
div.mgAdPlayerContainerDiv.small.top,
div.mgAdPlayerContainerDiv.medium.top,
div.mgAdPlayerContainerDiv.large.top,
div.mgAdPlayerContainerDiv.small.bottom,
div.mgAdPlayerContainerDiv.medium.bottom,
div.mgAdPlayerContainerDiv.large.bottom {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
    width: 70%;
    margin-bottom: 0;
  }

  div.adPlayerContainerDiv.small.top,
div.adPlayerContainerDiv.medium.top,
div.adPlayerContainerDiv.large.top,
div.mgAdPlayerContainerDiv.small.top,
div.mgAdPlayerContainerDiv.medium.top,
div.mgAdPlayerContainerDiv.large.top {
    top: 0;
    bottom: auto;
  }

  div.adPlayerContainerDiv.small.bottom,
div.adPlayerContainerDiv.medium.bottom,
div.adPlayerContainerDiv.large.bottom,
div.mgAdPlayerContainerDiv.small.bottom,
div.mgAdPlayerContainerDiv.medium.bottom,
div.mgAdPlayerContainerDiv.large.bottom {
    bottom: 0;
    top: auto;
  }

  div.adPlayerContainerDiv.small.top.showed,
div.adPlayerContainerDiv.medium.top.showed,
div.adPlayerContainerDiv.large.top.showed,
div.adPlayerContainerDiv.small.bottom.showed,
div.adPlayerContainerDiv.medium.bottom.showed,
div.adPlayerContainerDiv.large.bottom.showed,
div.mgAdPlayerContainerDiv.small.top.showed,
div.mgAdPlayerContainerDiv.medium.top.showed,
div.mgAdPlayerContainerDiv.large.top.showed,
div.mgAdPlayerContainerDiv.small.bottom.showed,
div.mgAdPlayerContainerDiv.medium.bottom.showed,
div.mgAdPlayerContainerDiv.large.bottom.showed {
    opacity: 1;
    visibility: visible;
  }
}
div.adPlayerDiv.adplayer-no-ui div.adSkipButton,
div.adPlayerDiv.adplayer-no-ui div.adLinkButton,
div.adPlayerDiv.adplayer-no-ui .play,
div.adPlayerDiv.adplayer-no-ui .pause,
div.adPlayerDiv.adplayer-no-ui #sound,
div.adPlayerDiv.adplayer-no-ui .adClickCover {
  opacity: 0;
  visibility: hidden;
  z-index: -100;
}

/* some video widget correction only for smart widget */
div.mgAdPlayerContainerDiv.block.smart,
div.adPlayerContainerDiv.block.smart {
  max-width: 680px !important;
  transition: height 1000ms !important;
  margin-left: auto;
  margin-right: auto;
}

.adClickCover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: none;
}

.adClickCover.showed {
  display: block;
}

div.mgAdPlayerContainerDiv div.mgMuteButton, div.adPlayerContainerDiv div.mgMuteButton,
div.mgAdPlayerContainerDiv .mg2player__controls, div.adPlayerContainerDiv .mg2player__controls,
div.mgAdPlayerContainerDiv .mg2player__title, div.adPlayerContainerDiv .mg2player__title {
  display: none;
}

/* Outstream - end */
