.modal_wrap input {
  display: none;
}

.modal_wrap .modal_overlay #modal_label {
  border: none;
  background: none;
}

.modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  height: 100%;
  background-color: rgba(50, 50, 50, 0.6);
  opacity: 0;
  transition: opacity 0.2s, transform 0s 0.2s;
  transform: scale(0);
}

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  align-self: flex-start;
  width: 80%;
  max-width: 450px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: 0.5s;
  line-height: 1.4;
  font-weight: 100;
}

.modal_content a{
  text-decoration: none;
}

.modal_content .pop_content{
  position: relative;
  background-color: #fff;
  padding-bottom: 10px;
}

.modal_content .pop_content .pop_content_img {
  width: 100%;
  margin-bottom: 0rem;
}

.modal_wrap input:checked~.modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.2s;
}

.modal_content img {
  max-width: 100%;
  vertical-align: bottom;
}

.modal_content .officialBtn {
  margin: 10px auto 0;
  width: 96%;
}

.modal_content .officialBtn a{
  width: 100%;
}