@charset "UTF-8";
.modal-block {
  display: none;
  position: fixed;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-block .img-section {
  width: 66vw;
  height: auto;
  max-height: 90%;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  overflow-y: scroll;
}
@media (max-width: 1024px) {
  .modal-block .img-section {
    width: 96vw;
  }
}

.modal-block .img-section .modal-close-btn {
  text-align: right;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  padding: 0.5em 0.75em 0.5em 2em;
  background-color: #535353;
  border: 1px solid #535353;
  color: #fff !important;
  cursor: pointer;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1em 1em 1em auto;
  border-radius: 4em;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .modal-block .img-section .modal-close-btn {
    font-size: 13px;
  }
}
.modal-block .img-section .modal-close-btn::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.5em;
  top: 0;
  bottom: 0;
  right: auto;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #fff;
  margin: auto;
}
.modal-block .img-section .modal-close-btn::after {
  content: "×";
  position: absolute;
  display: block;
  position: absolute;
  left: 0.75em;
  top: 0;
  bottom: 0;
  font-size: 12px;
  font-weight: bold;
  right: auto;
  width: 1em;
  height: 1em;
  margin: auto;
  color: #535353;
}
@media (max-width: 767px) {
  .modal-block .img-section .modal-close-btn::after {
    font-size: 10px;
  }
}
.modal-block .img-section .modal-close-btn:hover {
  background-color: #fff;
  color: #535353 !important;
}
.modal-block .img-section .modal-close-btn:hover::before {
  background-color: #535353;
}
.modal-block .img-section .modal-close-btn:hover::after {
  color: #fff;
}

html {
  scrollbar-gutter: stable;
}/*# sourceMappingURL=modal.css.map */