.play-button {
  width: 40px;
  height: 40px;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  border: 1px solid #FFF;
  background-color: transparent;
}

#video-modal {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.70);

  position: fixed;
  top: 0;
  z-index: 9999;

  button {
    position: relative;
    left: 85%;
    top: 1%;

    background-color: transparent;
    border: none;
    cursor: pointer;

    i {
      color: #FFF;
      font-size: 22px;
    }
  }

  .video-container {
    width: 25%;
    height: 600px;

    position: relative;
    left: 50%;
    top: 5%;
    transform: translateX(-50%);

    video {
      height: 100%;
      object-fit: cover;
    }
  }
}

@media screen and (max-width: 478px) {
  .video-container {
    width: 90% !important;
    height: 85% !important;
  }

  .close-modal {
    left: 92% !important;
  }
}

@media screen and (max-width: 984px) {
  #plennos-video-container {
    margin: 0 auto;
  }
}
