body.no-scroll {
  overflow: hidden;
}
#count_down {
  display: none;
}
.modal {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999999;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  width: 100%;
  position: absolute;
}
.cdm_close {
  cursor: pointer;
}
.modal__wrapper {
  position: absolute;
  left: 50%;
  top: 50vh;
  transform: translate(-50%, -50%);
  width: 80vh;
  height: calc'(80vh + 40px);
  box-sizing: border-box;
  padding: 0;
}
.modal__header {
  text-align: right;
  width: 100%;
  height: 40px;
  position: relative;
  top: 40px;
  color: #fff;
}
.modal__header img {
  width: 40px;
  height: 40px;
}
.modal__content {
  background: #fff;
  padding: 0;
  height: 80vh;
  box-sizing: border-box;
  padding: 0;
}
.modal__content img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width:480px) {
  .modal__wrapper {
    width: 75vw;
    height: calc(75vw + 20px);
  }
  .modal__header {
    height: 20px;
    top: 20px;
  }
  .modal__header img {
    width: 20px;
    height: 20px;
  }
  .modal__content {
    height: 75vw;
  }
}
