#site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.player {
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 15px;
  border: 3px solid #1e1e31;
}
.player__video {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.player__video iframe {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.gallery {
}

.gallery__item {
  align-items: center;
  background-color: rgba(255, 255, 255, .2);
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
  padding: 10px 20px;
  width: 100%;
  font-size: 14px;
  border-radius: 5px;
}

.gallery__item__img {
  width: 40%;
  border-radius: 4px;
  overflow: hidden;
}
.gallery__item__span {
  padding-left: 1em;
  width: 60%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.gallery {
  grid-template-columns: repeat(2, 1fr);
}


.v-scroll{
  padding: 10px;
  border-radius: 15px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, .2);
}

.video-scroll{
  overflow-x: hidden;
  padding-right: 10px;
  overflow-y: scroll !important;
}

.video-scroll::-webkit-scrollbar {
  width: 5px !important;
  border-radius: 3px !important;
  overflow: hidden !important;
}

/* Track */
.video-scroll::-webkit-scrollbar-track {
  background: rgba(133,133,133,.5) !important;
  border-radius: 3px !important;
  overflow: hidden !important;
}
 
/* Handle */
.video-scroll::-webkit-scrollbar-thumb {
  background: var(--videoplayer-scroll-color); !important;
  border-radius: 3px !important;
  overflow: hidden !important;
}

/* Handle on hover */

.youtube-video-player .col-lg-8{
  margin-bottom: 0 !important;
}



@media only screen and (max-width: 991px) {
  .player{
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .v-scroll{
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}


















