@charset "UTF-8";
/* live-streaming */
.live-streaming {
  display: none;
  margin-bottom: 15px;
}
.live-streaming .toggle-trigger {
  background: #a099a0;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  cursor: pointer;
  -moz-transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
}
.live-streaming .toggle-trigger h3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  padding: 5px 0 5px 15px !important;
  position: relative;
  border: 2px solid transparent;
}
.live-streaming .toggle-trigger .fa {
  display: none;
  position: absolute;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  top: 10px;
  right: 10px;
}
.live-streaming .toggle-trigger.active {
  background: #fff;
}
.live-streaming .toggle-trigger.active h3 {
  border: 2px solid #00822d;
  color: #00822d;
}
.live-streaming .toggle-trigger.active .fa {
  color: #00822d;
}
.live-streaming .toggle-trigger .fa:before {
  content: "\f103";
}
.live-streaming .toggle-trigger.active .fa:before {
  content: "\f102";
}
@media screen and (min-width: 751px) {
  .live-streaming .toggle-trigger:hover {
    background: #00822d;
  }
  .live-streaming .toggle-trigger:hover h3 {
    border: 2px solid #00822d;
    color: #fff;
  }
  .live-streaming .toggle-trigger:hover .fa {
    color: #fff;
  }
}
/* No toggle start */
.live-streaming .toggle-trigger.no-toggle {
  background: #00822d;
  cursor: default;
}
.live-streaming .toggle-trigger.no-toggle h3 {
  border: 2px solid #00822d;
  color: #fff;
}
.live-streaming .toggle-trigger.no-toggle .fa {
  color: #fff;
}
/* No toggle end */
.live-streaming .cfviewer {
  display: none;
}
.live-streaming .video-container {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.live-streaming .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
