.hidden-custom {
  visibility: hidden;
}

button.recBtn {
  width: 12px;
  height: 12px;
  font-size: 0;
  background-color: red;
  border: 0;
  border-radius: 35px;
  outline: none;
}

.notRec {
  background-color: #6f0000 !important;
}

.Rec {
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes pulse {
  0% {
    box-shadow: 0px 0px 5px 0px rgba(173, 0, 0, .3);
  }

  65% {
    box-shadow: 0px 0px 5px 13px rgba(173, 0, 0, .3);
  }

  90% {
    box-shadow: 0px 0px 5px 13px rgba(173, 0, 0, 0);
  }
}

.animated {
  visibility: hidden;
}

.txt1-custom {
  font-size: 30px;
  color: #ffffff;
  line-height: 0.9;
}

.txt2-custom {
  font-size: 14px;
  color: #8209c8;
  line-height: 2;
}

.title2-custom {
  font-size: 30px;
  color: #ffffff;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 10px;
  padding: 5px 0;
}

.title3-custom {
  font-size: 14px;
  color: #888888;
  line-height: 2;
  text-align: center;
}

.radio1-custom {
  position: relative;
  margin-bottom: 15px;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
}

.radio1-custom.head {
  border-bottom: 2px solid #676767;
  color: #888888;
}

.radio1-custom.head .sec7 {
  background: url(../../images/volume.png) center 15px no-repeat;
}

.radio1-custom>div {
  float: left;
  width: 26%;
  padding-right: 30px;
  padding-top: 10px;
}

.radio1-custom>div:first-child {
  width: 6%;
}

.radio1-custom>div.sec7 {
  padding-right: 0px;
  width: 6%;
}

.radio1-custom .sec6 {
  width: 9%;
}

.radio1-custom>div.sec5 {
  word-wrap: break-word;
}

.play-button {
  top: 0px;
  width: 150px;
  height: 40px;
  border: 2px solid #8209c8;
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../../images/btn-play.png') center center no-repeat;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  outline: none;
}

.play-button:focus,
.play-button:active {
  outline: none;
  box-shadow: none;
}

.play-button.playing {
  background: url('../../images/btn-pause.png') center center no-repeat;
}

.play-button:hover {
  background-color: #8209c8;
}

.play-button.live {
  border: 2px solid red;
}

.play-button.live::before {
  color: red;
}

@media (max-width: 767px) {
  .title3-custom {
    font-size: 24px;
  }

  .title2-custom {
    margin-bottom: 40px;
  }

  .radio1-custom>div {
    float: left;
  }

  .radio1-custom .sec1 {
    display: none;
  }

  .radio1-custom .sec2 {
    width: 85%;
  }

  .radio1-custom .sec3 {
    display: none;
  }

  .radio1-custom .sec4 {
    display: none;
  }

  .radio1-custom .sec5 {
    display: none;
  }

  .radio1-custom .sec6 {
    display: none;
  }

  .radio1-custom .sec7 {
    width: 15%;
  }

  /* 
  .radio1-custom .sec8 {
    float: right;
  } */

  /* .play-button {
    width: 50px;
    margin-left: -50px;
  } */
}