body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}
.single-grid {
  max-width: calc(100vw - 40px);
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 30px;
}
.single-grid-item {
  margin: 0 auto;
  max-width: 1092px;
}
.single-grid:after,
.single-grid-item:after {
  clear: both;
  content: '';
  display: block;
}
.single-col {
  float: left;
  box-sizing: border-box;
}
.single-col-3 {
  width: 25%;
}
.single-col-4 {
  width: 40%;
}
.single-col-8 {
  width: 60%;
}
.single-col-9 {
  width: 75%;
}
.single-col-12 {
  width: 100%;
}

@media screen and (max-width: $mobile-break) {
  .single-col {
    float: none !important;
    width: 100% !important;
    padding-left: 0;
  }
}

@charset "UTF-8";
.single-live-content {
  max-width: 100%;
  overflow: hidden;
  background-color: black;
  position: relative;
}
@media screen and (max-width: 812px) {
  .single-live-content {
    margin: 0 0 4em;
    max-height: none;
    border-radius: 0;
  }
}
.single-live-content .single-video-wrap,
.single-live-content .single-chat {
  padding: 42.25% 0 0 0;
  position: relative;
  overflow: hidden;
  transition: all 0.25s linear 0s;
  z-index: 1;
}
.single-live-content .single-video-wrap iframe,
.single-live-content .single-video-wrap .single-video,
.single-live-content .single-chat iframe,
.single-live-content .single-chat .single-video {
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 812px) {
  .single-live-content .single-video-wrap iframe,
  .single-live-content .single-video-wrap .single-video,
  .single-live-content .single-chat iframe,
  .single-live-content .single-chat .single-video {
    max-height: none;
  }
}
@media screen and (max-width: 812px) {
  .single-live-content .single-video-wrap,
  .single-live-content .single-chat {
    float: none;
    width: 100%;
    padding: 56.25% 0 0 0 !important;
  }
}
.single-live-content .single-video-wrap {
  background-image: url('img/single-stay-tuned.png');
  background-size: cover;
  background-position: center;
}
.single-live-content .single-chat {
  min-height: 47px;
}
@media screen and (max-width: 640px) {
  .single-live-content .single-chat {
    min-height: 400px;
  }
}
.single-live-content .single-chat iframe {
  padding-top: 47px;
  min-width: 200px;
  box-sizing: border-box;
}

@media screen and (max-width: 812px) {
  .single-live-content .single-chat iframe {
    max-height: none;
  }
}
.single-live-content .single-chat .chat-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 200px;
  height: 47px;
  padding: 13px;
  color: white;
  background-color: #1e1e1e;
  z-index: 1;
  text-align: center;
  box-shadow: 0 0 2px 0 #191919;
  font-weight: 700;
  box-sizing: border-box;
  font-size: 13px;
}
.single-live-content .single-chat .chat-header .chat-header-text {
  position: relative;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}
.single-live-content .single-chat .chat-header .chat-close {
  position: absolute;
  height: 24px;
  width: 24px;
  left: 15px;
  top: 12px;
  cursor: pointer;
  transition: all 0.25s ease 0s;
}
@media screen and (max-width: 812px) {
  .single-live-content .single-chat .chat-header .chat-close {
    transform: rotate(-90deg);
  }
}
.single-live-content .single-chat .chat-header .single-brand {
  position: absolute;
  right: 15px;
  top: 13px;
}
.single-live-content .chat-open {
  width: 47px;
  height: 47px;
  background-color: rgba(25, 25, 25, 0.8);
  position: absolute;
  top: 0;
  right: -100%;
  z-index: 1;
  color: white;
  padding: 12px;
  transition: all 0.25s linear 0s;
  z-index: 2;
  cursor: pointer;
  border-radius: 0 0 0 6px;
  box-sizing: border-box;
}
@media screen and (max-width: 812px) {
  .single-live-content .chat-open {
    display: none;
  }
}
.single-live-content.full-width .single-video-wrap {
  width: 100%;
  transition: all 0.25s linear 0s;
}
.single-live-content.full-width .single-chat {
  width: 0%;
  transition: all 0.25s linear 0s;
}
@media screen and (max-width: 812px) {
  .single-live-content.full-width .single-chat {
    padding: 0 !important;
    min-height: 47px;
    width: 100%;
  }
}
@media screen and (max-width: 812px) {
  .single-live-content.full-width .chat-close {
    transform: rotate(90deg) !important;
  }
}
.single-live-content.full-width .chat-open {
  right: 0;
}

/** Animations **/
.animated {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.25, 1.25, 1.25);
    transform: scale3d(1.25, 1.25, 1.25);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.25, 1.25, 1.25);
    transform: scale3d(1.25, 1.25, 1.25);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
