.sigma_video-popup-wrap{
  position: relative;
  transition: 0.3s;
}
.sigma_video-popup-wrap .sigma_video-popup{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.sigma_video-popup{
  position: relative;
  width: 80px;
  height: 80px;
  background-color: #767676;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sigma_video-popup::before{
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid #fff;
  border-radius: 50%;
  animation-name: pulseInOut;
  opacity: 0;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.sigma_video-popup::after{
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px solid #fff;
  border-radius: 50%;
  animation-name: pulseInOutSM;
  opacity: 0;
  animation-duration: 3.5s;
  animation-iteration-count: infinite;
}
.sigma_video-popup.bg-white{
  color: #767676;
}
.sigma_video-popup.bg-white:hover{
  background-color: #767676 !important;
  color: #fff;
}

.sigma_video-popup.popup-lg{
  width: 140px;
  height: 140px;
  font-size: 20px;
}
.sigma_video-popup.popup-sm{
  width: 50px;
  height: 50px;
}
.sigma_video-popup.popup-dark{
  background-color: #2d2d2d;
  color: #fff;
}

.sigma_video-popup.secondary{
  color: #db4242;
}
.sigma_video-popup.secondary::after{
  background-color: #db4242;
}

.sigma_video-popup:hover{
  color: #fff;
}

.sigma_broadcast-video .sigma_video-popup-wrap:hover{
  box-shadow: 0px 10px 20px 0px rgb(53 82 99 / 52%);
}

.sigma_broadcast-video .sigma_video-popup-wrap img{
  width: 100%;
}