<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.video-item img{
    width: 100%;
    height: 100%;
    transition: 0.5s;
    border-radius: 12px;
}
.video-item img:hover {
  transform: scale(1.02);
  transition: 0.5s;
    
}

.video-skeleton {
  display: none;
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.skeleton-box {
  background: linear-gradient(-90deg, #f0f0f0 0%, #e0e0e0 50%, #f0f0f0 100%);
  background-size: 400% 400%;
  animation: shimmer 1.2s ease-in-out infinite;
  width: 23%;
  height: 200px;
  border-radius: 8px;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.single-videos .addtoany_share_save_container {
  display: none;
}
.single-video-wrapper {
  display: flex;
  justify-content: center;
}
.video-frame {
  margin: 30px 0;
  width: 100%;
  max-width: 888px;
}

.video-frame iframe{
  border-radius: 12px;
  height: 100%;
  width: 100%;
  max-height: 500px;
}

.video-box {
  position: relative;
}

.video-navigation {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  position: absolute;
  top: 40%;
}
.nav-previous a,
.nav-next a {
  border: 1px solid;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  display: flex;
  transform: scale(1.02);
  transition: 0.5s;
  background-color: #000;
}
.nav-previous a:hover,
.nav-next a:hover {
  transform: scale(1.15);
  transition: 0.5s;
}

.nav-previous img {
  width: 21px;
  height: auto;
  transform: rotate(87deg);
}

.nav-next img {
  width: 21px;
  height: auto;
  transform: rotate(270deg);
}
.videos-grid {
/*   margin-top: 25px;
  margin-bottom: 25px; */
}

.video-item {
  position: relative;
  justify-content: center;
/*   display: flex; */
}
.play-icon {
  position: absolute;
  top: 36%;
  color: #fff;
  width: 47px;
  height: 45px;
  justify-content: center;
  display: flex;
  align-items: center;
  border-radius: 50px;
  background: rgba(0, 0, 0, .6);
  cursor: pointer;
}
.video-item:hover .play-icon {
  transform: scale(1.07);
  transition: 0.5s;
}

@media screen and (max-width: 768px) {
	.skeleton-box { width: 48%; }
	.nav-previous a, .nav-next a {
		width: 36px;
		height: 36px;
	}
	.nav-next img,
	.nav-previous img {
		width: 15px;
	}
	.video-navigation {
		top: 96%;
		gap: 17px;
		justify-content: center;
	}
	.single-video-wrapper{
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 480px) {
  .skeleton-box { width: 100%; }
}
</pre></body></html>