html{
    --plyr-color-main: #f18f35;
}
.video-wrapper {
    position: absolute;
    z-index: 1;
    /* right: 30px;
    top: 26px; */
    top: 165px;
    left: -343px;
}
.video-wrapper .popup-video {
    /* color: #FF723A; */
    width: 60px;
    height: 60px;
    line-height: 90px;
    background: #7355e0;
    -webkit-filter: drop-shadow(5px 15px 60px rgba(27, 33, 47, 0.1));
    filter: drop-shadow(5px 15px 60px rgba(27, 33, 47, 0.1));
}
.popup-video {
    color: #ffffff;
    background: #FF723A;
    border-radius: 50%;
    font-size: 14px;
    line-height: 100px;
    display: inline-block;
    width: 100px;
    height: 100px;
    text-align: center;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    position: relative;
    z-index: 1;
    -webkit-animation: pulseBig infinite 5s linear;
    animation: pulseBig infinite 5s linear;
    background: url(../svg/playbtn.svg);
}
.popup-video img{
    width: 38% !important;
    margin: 32% 37%;
}

@keyframes pulseBig {
    0% {
        -webkit-box-shadow: 0 0 0 0 #526ee4;
        box-shadow: 0 0 0 0 #526ee4;
    }
    50% {
        -webkit-box-shadow: 0 0 0 30px rgb(1 93 199 / 0%);
        box-shadow: 0 0 0 30px rgb(1 93 199 / 0%);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(1 93 199 / 0%);
        box-shadow: 0 0 0 0 rgb(1 93 199 / 0%);
    }
}


.modal-header {
  align-items: baseline;
  display: flex;
  justify-content: flex-end;
  border: none;
  margin-bottom:2%;
}

.close {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  height: 16px;
  text-decoration: none;
  width: 16px;
}
.close svg {
  width: 16px;
}

.modal-wrapper {
    z-index: 10000;
  /* align-items: center; */
  background: rgba(0, 0, 0, 0.7);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  
}
.rainbow-design{
    position: relative;
}
#modal {
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  visibility: hidden;
  
}
#modal:target {
  opacity: 1;
  visibility: visible;
}
#modal:target .modal-body-vid {
  opacity: 1;
  transform: translateY(100px);
}
#modal .modal-body-vid {
  max-width: 713px;
  /* height: 750px; */
  opacity: 0;
  transform: translateY(-100px);
  transition: opacity 0.25s ease-in-out;
  width: 100%;
  z-index: 205;
}

.outside-trigger {
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}
@media(max-width:1200px){
  .video-wrapper {
    position: absolute;
    z-index: 1;
    top: -206px;
    left: 237px;
}
}
@media(max-width:992px){
  .video-wrapper {
    position: absolute;
    z-index: 1;
    top: -173px;
    left: 170px;
}
}

  @media (max-width:767px){
      iframe{
        width: 95%;
        margin: 0 9px;
        height: 300px;
      }
      .video-wrapper {
        position: absolute;
        z-index: 1;
        top: -165px;
        left: 159px;
    }
  }
  @media(max-width:375px){
    .video-wrapper {
      position: absolute;
      z-index: 1;
      top: -153px;
      left: 127px;
  }
  }
  .hover-dark{
      position: relative;
  }
  .hover-in-dark{
      width: 100%;
      height: 100%;
      position: absolute;
      top:0;
      left:0;
      transition: 0.3s;
  }
  .hover-dark:hover .hover-in-dark{
    background: #00000045;
  }
  .active-hover-dark{
    background: #00000045;
  }