.modal_card {
  display: block;
  min-height: 120px;
  border-radius: 20px;
  position: relative;
  padding: 20px;
  padding-bottom: 70px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #333333;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.05ex;
  transition: 0.3s all;
  overflow: hidden;
}
.modal_card:hover, .modal_card:active {
  text-decoration: none;
  transform: translateY(3px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  color: #333333;
}
.modal_card:hover ._bg, .modal_card:active ._bg {
  opacity: 1;
}
.modal_card ._bg {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  transition: 0.3s all;
}
.modal_card ._body {
  position: relative;
}
.modal_card ._icon {
  display: block;
  width: 36px;
  aspect-ratio: 1/1;
  border-radius: 50% 50%;
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #333333;
}
.modal_card ._icon::before, .modal_card ._icon::after {
  content: "";
  display: block;
  background: #ffffff;
  width: 2px;
  height: 12px;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.modal_card ._icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.modal {
  display: none;
}
.modal[aria-hidden=false] {
  display: block;
}

.modal__overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 530000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__container {
  background: #ffffff;
  max-width: 100%;
  width: 1200px;
  max-height: 90vh;
  margin: auto;
  padding: 30px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  max-height: 90svh;
}
@media only screen and (max-width: 767px) {
  .modal__container {
    max-height: 100svh;
  }
}
.modal__container ._header {
  position: relative;
}
.modal__container ._header > *:first-child {
  margin-top: 0;
}
.modal__container ._header > *:last-child {
  margin-bottom: 0;
}
.modal__container ._header ._title {
  position: relative;
  color: #314061;
  font-size: 36px;
  padding-left: 0.8em;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 0.8em;
  padding-right: 60px;
}
.modal__container ._header ._title::before {
  content: "";
  position: absolute;
  display: block;
  background: #e8cd62;
  width: 8px;
  height: 85%;
  top: 10%;
  left: 0;
  border-radius: 4px 4px;
}
@media only screen and (max-width: 767px) {
  .modal__container ._header ._title {
    font-size: 27px;
  }
}
.modal__container ._header .close_btn {
  display: block;
  position: absolute;
  top: -3px;
  right: -3px;
  width: 50px;
  height: 50px;
  text-indent: -100px;
  cursor: pointer;
}
.modal__container ._header .close_btn::before, .modal__container ._header .close_btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #333333;
  transition: 0.3s all;
}
.modal__container ._header .close_btn::before {
  transform: translateY(-50%) rotate(45deg);
}
.modal__container ._header .close_btn::after {
  transform: translateY(-50%) rotate(-45deg);
}
.modal__container ._header .close_btn:hover::before, .modal__container ._header .close_btn:active::before {
  transform: translateY(-50%) rotate(225deg);
}
.modal__container ._header .close_btn:hover::after, .modal__container ._header .close_btn:active::after {
  transform: translateY(-50%) rotate(135deg);
}
.modal__container ._scroll {
  overflow-y: auto;
}
.modal__container ._content > *:first-child {
  margin-top: 0;
}
.modal__container ._content > *:last-child {
  margin-bottom: 0;
}
.modal__container ._footer {
  text-align: center;
}
.modal__container table {
  width: 100%;
}

/*# sourceMappingURL=modal_btn.css.map */
