.usage-video-modal {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.usage-video-modal .usage-video-modal-close {
  display: block;
  position: absolute;
  top: 50%;
  right: 5vw;
  z-index: 10002;
  cursor: pointer;
  -webkit-transform: translate(0, -28vw);
          transform: translate(0, -28vw);
}

.usage-video-modal .usage-video-modal-close .usage-video-modal-close-icon {
  display: block;
  position: relative;
  cursor: pointer;
}

.usage-video-modal .usage-video-modal-close .usage-video-modal-close-icon::before, .usage-video-modal .usage-video-modal-close .usage-video-modal-close-icon::after {
  content: '';
  width: 30px;
  height: 3px;
  display: block;
  position: absolute;
  top: 50%;
  right: 50%;
  background-color: white;
  cursor: pointer;
}

.usage-video-modal .usage-video-modal-close .usage-video-modal-close-icon::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.usage-video-modal .usage-video-modal-close .usage-video-modal-close-icon::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .usage-video-modal .usage-video-modal-close {
    -webkit-transform: translate(0, -29vw);
            transform: translate(0, -29vw);
  }
}

.usage-video-modal .usage-video-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  overflow: hidden;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform .5s .1s;
  transition: -webkit-transform .5s .1s;
  transition: transform .5s .1s;
  transition: transform .5s .1s, -webkit-transform .5s .1s;
}

.usage-video-modal .usage-video-modal-content .video-wrapper-usage {
  width: 90vw;
  height: 0;
  padding: 50.625vw 0 0 0;
  position: relative;
  overflow: hidden;
}

.usage-video-modal .usage-video-modal-content .video-wrapper-usage iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.usage-video-modal.active {
  z-index: 10000;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.usage-video-modal.active .usage-video-modal-content {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  z-index: 10001;
}

.usage-video-modal.active .usage-video-modal-content .video-wrapper-usage iframe {
  display: block;
}

.usage-video-modal:hover {
  -webkit-transition: opacity .7s, -webkit-transform 0s .5s;
  transition: opacity .7s, -webkit-transform 0s .5s;
  transition: opacity .7s, transform 0s .5s;
  transition: opacity .7s, transform 0s .5s, -webkit-transform 0s .5s;
}
/*# sourceMappingURL=modal.css.map */