.overlay-page { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: 1000;
  opacity: 100%;
  pointer-events: none;
}

.hfeed site {
  position: relative;
  z-index: 1;
}

.top-icon-container {
  position: relative;
  width: calc(100% - 2px);
  aspect-ratio: 16 / 16;
  background-color: #FFFFFF;
  overflow: hidden;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-icon-wrapper {
  width: 90%; /* inset space of top icon container */
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}

.top-icon {
  width: 170px;
  height: 170px;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/f/fd/Arrows_down_animated.gif');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.vid-container { 
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 20px 0;
  pointer-events: auto;
}

.video { 
  position: relative;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  cursor: pointer;
  display: block;
  margin: 0 auto;
} 

.img-block {
  position: relative;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  cursor: pointer;
}

.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  pointer-events: none;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/e/ec/YouTube_play_button_circular_%282013-2017%29.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.linkbtn-container {
  text-align: center;
  margin-top: 24px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1px;
  pointer-events: auto;
}

.linkbtn {
  position: relative;
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #007BFF;
  border-radius: 0px;
  width: 100%;
  border: none;
  overflow: hidden;
  cursor: pointer;
}

.linkbtn-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #28a745;
  transition: width 2s ease;
}