@charset "UTF-8";


.mono .lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.mono .lightbox-content:before{
  content: '';
  display: block;
  width: 120px;
  height: 120px;
  background: url(../img/common/i-chon-g-re.svg)no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
  position: absolute;
  top: -60px;
  left: -30px;
}
.mono .lightbox-content {
  background: #fff;
  padding: 20px;
  max-width: 90%;
  max-height: 90%;
  overflow-y: auto;
  border-radius: 8px;
  position: relative;
}
.mono .lightbox-close:after{
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: #111;
  position: absolute;
  top: 2px;
  left: -2px;
  z-index: -1;
}
.mono .lightbox-close {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  z-index: 1;
}


@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.mono .lightbox-content {
  background: #fff;
  padding: 20px;
  max-width: calc(600px - 40px);
  max-height: 90%;
  border-radius: 8px;
  position: relative;
  animation: fadeZoomIn 0.3s ease;
  overflow: visible;
}
.mono .lightbox-content .tx{
  display: block;
  font-size: 14px;
  margin-top: 15px;
}
.mono .lightbox-content .tx .title{
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}




@media screen and (max-width: 767px) {

  .mono .lightbox-content{
    padding: 20px;
    max-width: calc(90% - 40px);
    max-height: calc(90% - 40px);
  }

  .mono .lightbox-content:before {
      width: 70px;
      height: 70px;
      top: -40px;
      left: 15px;
  }


}