.absd-video-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  z-index: 99999;
  border: 5px solid #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(200px);
  opacity: 0;
  transition: transform 1.5s ease-in-out, opacity 1.5s ease-in-out;
}
.absd-video-btn.absd-show{
    transform:translateY(0);
    opacity:1;
}
.absd-video-btn iframe {
  width: 220px;
  height: 120px;
  margin-left: -50px;
  border: 0;
}

.absd-video-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: transparent;
}
.absd-video-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.absd-video-container {
  position: relative;
  padding-top: 56.25%;
}

.absd-video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.absd-popup-video {
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/8;
  position: relative;
}

.absd-popup-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
	border-radius:8
}

.absd-video-popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999999;
}

.absd-close-video {
    position: absolute;
    top: -30px;
    right: 60px;
    font-size: 45px;
    line-height: 0;
    color: #fff;
    cursor: pointer;
}

@keyframes absdPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }

  100% {
    transform: scale(1);
  }
}
@media (max-width:991px) and (min-width:630px) {
	.absd-close-video {
        right: 35px;
    }
}
@media (max-width:1199px) and (min-width:992px) {
	.absd-close-video {
		right: 52px;
	}
}
@media (max-width:767px) {
	.absd-video-btn {
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
}
}
@media (max-width:630px){
	.absd-close-video {
		right: 19px;
	}
}
@media (max-width:479px) {
	.absd-video-btn {
		width: 80px;
		height: 80px;
	}
	.absd-close-video {
		top: -17px;
		font-size: 32px;
	}
}