@charset "UTF-8";

.llp-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.llp-popup_hide {
  display: none;
}

.llp-popup:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  background: #333333;
  opacity: .8;
}

.llp-popup__close {
  transform: rotate(45deg);
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 100;
  font-size: 50px;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
}

.llp-popup__block {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100vw;
}

.llp-video {
  position: relative;
  padding-bottom: 60vw;
  height: 0;
  overflow: hidden;
  margin: 0 auto;
  width: 90%;
}

.llp-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
}


@media only screen and (min-width: 768px) {

  .llp-popup__close {
    top: 10px;
    right: 10px;
  }

  .llp-video {
    padding-bottom: 50%;
  }

}


@media only screen and (min-width: 1024px) {

  .llp-popup__close {
    top: 20px;
    right: 20px;
    font-size: 50px;
  }

  .llp-video {
    padding-bottom: 515px;
    margin: 0 auto;
    width: 940px;
  }

}


@media only screen and (min-width: 1280px) {

  .llp-video {
    width: 1228px;
    padding-bottom: 630px;
  }

}


@media only screen and (min-width: 1599px) {

  .llp-video {
    width: 1516px;
    padding-bottom: 777px;
  }

}