<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Start custom CSS for html, class: .elementor-element-776f065 */.video-gallery-container {
  padding: 20px;
}

.search-box {
  margin: 20px 0px 50px 0px;
  text-align: center;
}

#search-input {
  width: 100%;
  max-width: 600px;
  padding: 15px;
  font-size: 18px;
  border-radius: 5px;
  border: 2px solid #555;
  background: #333;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);

}



#search-input::placeholder {

  color: #888;

}



/* Video Gallery Styles */

.video-gallery-container {

  padding: 20px 10px;

  max-width: 1400px;

  margin: 0 auto;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
}

.video {
  background-color: #222;
  padding: 0px;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}

.video iframe {
  width: 100%;
  height: 180px;
  border-radius: 10px 10px 0px 0px;
}

.thumbnail-iframe {
  pointer-events: none; /* Disable interactions with the iframe */
  width: 100%;

  height: 100%;

  border: none;

  border-radius: 10px;
}

.video h4 {
  margin: 10px 10px;;
  font-size: 14px;
  color: #fff;
}

@media (min-width: 1200px) {

  .video-gallery {

    grid-template-columns: repeat(4, 1fr);

  }

}



@media (min-width: 992px) and (max-width: 1199px) {

  .video-gallery {

    grid-template-columns: repeat(3, 1fr);

  }

}



@media (max-width: 991px) {

  .video-gallery {

    grid-template-columns: repeat(2, 1fr);

  }

}



@media (max-width: 600px) {

  .video-gallery {

    grid-template-columns: 1fr;

  }

}



/* Popup Styles */

.popup {

  display: none; /* Hidden by default */

  position: fixed; /* Stay in place */

  z-index: 9999; /* Sit on top */

  left: 0;

  top: 0;

  width: 100%; /* Full width */

  height: 100%; /* Full height */

  background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */

  overflow: auto; /* Enable scroll if needed */

  animation: fadeIn 0.5s;
}
@keyframes fadeIn {

  from { opacity: 0; }

  to { opacity: 1; }

}

#popup-iframe{margin: 0 auto;
display: block;
width: 800px;
height: 440px;
}


.popup-content {

  background-color: #222;

  margin: 0 auto;
  display: block;

  padding: 20px;

  border-radius: 10px;

  max-width: 800px;

  position: fixed;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  -moz-transform:translate(-50%,-50%);
  -webkit-transform:translate(-50%,-50%);"

  animation: slideIn 0.5s;

}



@keyframes slideIn {

  from { transform: scale(0.8); }

  to { transform: scale(1); }

}



.popup-title {

  color: #fff;

  margin-top: 15px;

  font-size: 16px;

  text-align: center;

}



.close {

  color: #aaa;

  float: right;

  font-size: 30px;

  font-weight: bold;

  cursor: pointer;

}



.close:hover,

.close:focus {

  color: #fff;

  text-decoration: none;

}


@media(max-width:768px){
    .popup-content {

        width: 95%;
        max-width: 500px;
        padding: 10px;
      }
  #popup-iframe{
        width: 100%;
        height: 200px;
    }
    .video iframe {
        height: 205px;
    }

}/* End custom CSS */</pre></body></html>