#video-btn {
  display: block;
  width: 100%;
  align-items: center;
  background: linear-gradient(135deg, #25d366, #25d366);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(59,130,246,0.16), inset 0 -6px 18px rgba(255,255,255,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}



#video-btn .play {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(2,6,23,0.25);
}

#video-btn .play svg {
  width: 18px;
  height: 18px;
  display: block;
}


.play-animate{
  position: absolute; 
  top: 50%; 
  left: 50%; 
  opacity: 0.8;
  transform: translate(-50%, -50%); 
  pointer-events: none;
  z-index:1000;
  animation: none;
  display: flex;
  width: 20%;
  height: 20%;
  align-content: center;
  justify-content: center;
}

.play-animate.show{
  display: flex!important;
  animation: play-scale 0.5s forwards;
}

.swal-height {
  height: 80vh;
  width: 80%;
  align-content: flex-start;
}

.swal-height .swal2-html-container{
  padding-top: 50px;
}




@keyframes play-scale {
  0% {
      transform: translate(-50%, -50%) scale(0.8);
      opacity: 1;
  }
  50% {
      transform: translate(-50%, -50%) scale(1.2);
      opacity: 0.5;
  }
  100% {
      transform: translate(-50%, -50%) scale(2);
      opacity: 0;
  }
}