.popup {
  position: absolute;
  z-index: 10000;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
}
.popup.is-visible {
  visibility: visible;
}
.popup.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.popup.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}
.popup .modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.popup .modal-wrapper {
  position: fixed;
  z-index: 9999;
  top: 6em;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateX(-50%);
  width: 800px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
}
.popup .modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}
.popup .modal-header {
  position: relative;
  background-color: #fff;
  color: var(--primary);
  box-shadow: none;
  border-bottom: 1px solid #e8e8e8;
  font-size: 25px;
  padding: 35px 45px;
}
.popup .modal-body {
  padding: 0;
  position: relative;
  line-height: 30px;
}
.popup .modal-body .col_1,
.popup .modal-body .col_2,
.popup .modal-body .col_3,
.popup .modal-body .col_4,
.popup .modal-body .col_5,
.popup .modal-body .col_6,
.popup .modal-body .col_7,
.popup .modal-body .col_8,
.popup .modal-body .col_9,
.popup .modal-body .col_10 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.popup .modal-body .col_1 {
  -ms-flex: 0 0 10%;
  flex: 0 0 10%;
  max-width: 10%;
}
.popup .modal-body .col_2 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
.popup .modal-body .col_3 {
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 30%;
}
.popup .modal-body .col_4 {
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
}
.popup .modal-body .col_5 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.popup .modal-body .col_6 {
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%;
}
.popup .modal-body .col_7 {
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  max-width: 70%;
}
.popup .modal-body .col_8 {
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
  max-width: 80%;
}
.popup .modal-body .col_9 {
  -ms-flex: 0 0 90%;
  flex: 0 0 90%;
  max-width: 90%;
}
.popup .modal-body .col_10 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.popup .modal-body h2 {
  margin: 0 0 20px;
}
.popup .modal-body h3,
.popup .modal-body h4,
.popup .modal-body h5 {
  margin: 0 0 20px;
}
.popup .modal-body .text {
  padding: 0;
}
.popup .modal-body .img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.popup .modal-body .img.contain {
  background-size: contain!important;
}
.popup .modal-body .close_popup_wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.popup .modal-body .close_popup {
  display: inline-block;
  margin-top: 25px;
  margin-bottom: 20px;
  padding: 0 35px;
  text-decoration: underline;
  cursor: pointer;
}
.popup .modal-body .close_popup:hover,
.popup .modal-body .close_popup:focus,
.popup .modal-body .close_popup:active {
  text-decoration: none;
}
.popup .modal-content {
  padding: 40px 55px;
  border: 0;
}
.popup .modal-content > *:first-child {
  margin-top: 0;
}
.popup .modal-content > *:last-child {
  margin-bottom: 0;
}
.popup .modal-content .close_popup_text {
  float: right;
  text-align: right;
  cursor: pointer;
  font-size: 1.3rem;
  margin-top: 10px;
  margin-bottom: -5px;
  color: #999;
  display: inline-block;
}
.popup .modal-content .close_popup_text:hover,
.popup .modal-content .close_popup_text:focus,
.popup .modal-content .close_popup_text:active {
  color: #000;
}
.popup .modal-content .row.has_image {
  margin: -40px -55px 0;
}
.popup .modal-content .row.has_image .text {
  padding: 30px;
}
.popup .modal-content .row.has_image .text p {
  margin: 0 0 30px;
}
.popup .modal-content .row.has_image .text p:last-of-type {
  margin: 0!important;
}
.popup .modal-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 27px;
  color: #aaa;
  background: none;
  border: 0;
  font-size: 30px;
}
.popup .modal-close:hover {
  color: #777;
}
.popup .modal-heading {
  font-size: 1.125em;
  margin: 0;
  color: #DB2C70;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  .popup .modal-body {
    line-height: 25px;
    font-size: 15px;
  }
  .popup .modal-wrapper {
    width: auto;
    left: 0;
    margin: 20px;
    top: 30px;
  }
  .popup .modal-header {
    font-size: 19px;
    padding: 20px 30px;
  }
  .popup .modal-content {
    padding: 20px 10px;
    border: 0;
  }
  .popup .modal-content .row.has_image {
    margin: -25px -40px 0;
  }
}
/*# sourceMappingURL=default.css.map */