* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  background-color: #131111;
}
body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", "Open Sans", Arial,
    sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body.no_scroll {
  overflow: hidden;
}
ul {
  list-style-type: none;
}
.d-block {
  display: block;
}
._line{
  display: block;
  clear: both;
  height: 1px;
  background-color: rgb(43 39 39);
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8vh;
  padding: 0 15px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.menu {
  display: flex;
  align-items: center;
}
.playlist {
  padding: 8px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  min-width: 75px;
  margin-left: auto;
}
.playlist:hover {
  opacity: 1 !important;
}
._live {
  height: 35px;
  cursor: pointer;
}
.tween_top{
  transform: translateY(-40px);
  width: 33%;
}

/* ASIDE */
.video_playlist {
  background: rgb(25 23 23 / 90%);
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 400px;
  z-index: 110;
  transform: translateX(100%);
  overflow: hidden;
  overflow-y: auto;
  padding: 20px 0;
}
.video_playlist li {
  display: block;
  padding: 10px 20px 20px 20px;
  margin-bottom: 10px;
  cursor: pointer;
  color: white;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.video_playlist li:last-child {
  border-bottom: none;
}
.video_playlist li a {
  color: #fff;
  text-decoration: none;
}
.video_playlist li a.active {
  color: #ffc107;
}
.close {
  padding: 4px 10px;
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  text-transform: uppercase;
  margin: 10px 0 20px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
  background-color: #009688;
  z-index: 100;
  transform: translateX(100%);
}

/* SECTION */
.video_player {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 85vh;
  margin: 0 auto;
  padding: 20px 0;
  width: 100%;
  max-width: 1200px;
}

#clappr > div {
  width: 100%;
  height: 100%;
  position: absolute;
}
.heading {
  text-align: center;
  margin-bottom: 10px;
  font-weight: normal;
  font-size: 1.3rem;
  line-height: 1.2;
  padding: 0 15px;
  opacity: 0.5;
}
.video-container {
  width: 100%;
  padding-top: 56.25%;
  height: 0px;
  position: relative;
}
.video-container iframe,
.video-container .iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  border: none;
}

/* FOOTER */
footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 6vh;
  line-height: 0;
  padding: 0 15px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
footer span {
  margin-right: 10px;
}
footer a{
  margin: 0 3px;
}
footer img{
  background-color: white;
  transition: transform 0.2s ease-in-out;
}
footer img:hover{
  transform: translateY(-5px);
}

@media only screen and (max-width: 767px) {
  .tween_top{
    width: 100%;
  }
  header {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .logo {
    width: 37px;
    overflow: hidden;
  }
  .logo img {
    height: 30px;
  }
  .video_playlist {
    width: 100%;
  }
  ._live {
    height: 30px;
    margin: 0 auto;
  }
  .playlist {
    margin-left: auto;
    font-size: 0;
    min-width: auto;
  }
  .playlist svg {
    height: 25px;
  }
}
