.modal_button img {
  cursor: pointer;
  transition: 0.3s;
}
.modal_button img:hover {
  opacity: 0.7;
}

.modal section {
  width: 100%;
  height: 100%;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  transition: 0.5s;
  z-index: 2;
}
.modal section::before {
  content: "";
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.modal section::after {
  content: "";
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.modal section.active {
  opacity: 1;
  visibility: visible;
}
.modal section.active article {
  transform: translate(0, 0);
}
.modal section.active::before {
  filter: blur(5px);
}
.modal section article {
  width: min(1000px, 95%);
  padding: 20px;
  margin: 20px 0;
  text-align: justify;
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
  transform: translate(0, 30px);
  transition: 0.5s;
}
.modal section article .close {
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 50%;
  background-color: #fff;
  position: fixed;
  right: -20px;
  top: -20px;
  cursor: pointer;
  transition: 0.2s;
}
@media screen and (max-width: 700px) {
  .modal section article .close {
    width: 30px;
    height: 30px;
    padding: 5px;
    border-radius: 0%;
    right: 0;
    top: 0;
  }
}
.modal section article .close:hover {
  transform: rotate(180deg);
}
@media screen and (max-width: 700px) {
  .modal section article .close:hover {
    transform: rotate(0deg);
  }
}
.modal section article .inlineframe {
  width: 100%;
  height: 600px;
  border: none;
}
@media screen and (max-width: 700px) {
  .modal section article .inlineframe {
    height: 300px;
  }
}/*# sourceMappingURL=modal.css.map */