/**
 * CLOSE BUTTON (CROSS)
 */
.mh-close-button-container {
  position: absolute;
  height: 25px;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 1;
}
.mh-close-button-container .mh-close-icon {
  margin: 0;
  padding: 0;
  width: 25px;
  height: 25px;
  border: 0 solid #000000;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.mh-close-button-container .mh-close-icon div {
  display: block;
  height: 2px;
  position: relative;
  width: 20px;
  background: black;
  transition: all 0.25s ease-in-out;
}
.mh-close-button-container .mh-close-icon div:first-child {
  transform: translate3d(0px, 10px, 0px) rotate3d(0, 0, 1, -45deg);
}
.mh-close-button-container .mh-close-icon div:last-child {
  transform: translate3d(0px, 8px, 0px) rotate3d(0, 0, 1, 45deg);
}
.mh-close-button-container .mh-close-icon:hover div {
  filter: brightness(85%);
}
.mh-close-button-container .mh-close-text,
.mh-close-button-container .mh-close-icon {
  display: inline-block;
  vertical-align: middle !important;
}
/**
  MODAL
 */
.mh-modal-overlay {
  display: none;
  z-index: 99999998;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.mh-modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  bottom: inherit;
  transform: translate3d(-50%, -50%, 0);
  z-index: 99999999;
  height: auto;
  max-height: 90dvh;
  overflow: hidden;
  width: 90%;
  background-color: #FFFFFF;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  border: transparent;
  border-radius: 10px;
  box-shadow: 0 0 20px -5px rgba(0, 0, 0, 0.25);
  font-family: "Lato", serif;
  font-size: 16px;
}
.mh-modal.mh-modal-size-sm {
  max-width: 400px;
}
.mh-modal.mh-modal-size-md {
  max-width: 600px;
}
.mh-modal.mh-modal-size-xl {
  max-width: 800px;
}
.mh-modal .modal-icon {
  display: block;
  margin: 15px 0;
}
.mh-modal .modal-icon img {
  max-width: 130px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.mh-modal .modal-content {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 15px;
  overflow-y: auto;
  max-height: 90dvh;
}
.mh-modal .modal-content .modal-title {
  position: relative;
  font-family: 'Lato', serif;
  color: #000000;
  font-size: 20px;
  text-transform: uppercase;
  margin: 15px 0;
  padding: 0;
  font-weight: 600;
  text-align: center;
}
.mh-modal .modal-content .modal-text {
  margin: 20px 0;
  font-weight: 400;
  text-align: center;
  /* overflow-y: auto;*/
  height: auto;
}
.mh-modal .modal-cta {
  margin: 0 0 30px 0;
}
.mh-modal .modal-cta .mh-button {
  position: relative;
  cursor: pointer;
  display: table;
  background-color: transparent;
  border: 2px solid transparent;
  outline: none;
  color: transparent;
  font-family: 'Lato', serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 30px;
  text-decoration: none;
  text-align: center;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 auto;
  z-index: 0;
  transition: all 0.3s;
}
/**
  BANDEAU
 */
.mh-bandeau {
  display: block;
  background: #ffffff;
  z-index: 9999999;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  padding: 10px 0;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
  opacity: 0;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}
.mh-bandeau .mh-close-button-container {
  height: 20px;
  width: 20px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.mh-bandeau .bandeau-container {
  width: 100%;
  height: 100%;
  display: block;
}
.mh-bandeau .bandeau-container .bandeau-content {
  background: transparent;
  flex: 1 1 auto;
  padding-top: 40px;
}
.mh-bandeau .bandeau-container .bandeau-content .bandeau-title {
  position: relative;
  font-family: 'Lato', serif;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
  padding: 0 15px;
  line-height: unset;
  text-align: center;
}
.mh-bandeau .bandeau-container .bandeau-content .bandeau-text {
  position: relative;
  font-family: 'Lato', serif;
  color: #000000;
  font-size: 13px;
  font-weight: 600;
  padding: 0 15px;
  line-height: unset;
  text-align: center;
}
.mh-bandeau .bandeau-container .bandeau-cta {
  display: block;
  padding: 0 0 0 0;
  margin-top: 15px;
}
.mh-bandeau .bandeau-container .bandeau-cta .mh-button {
  position: relative;
  cursor: pointer;
  display: table;
  background-color: transparent;
  border: 2px solid transparent;
  outline: none;
  color: transparent;
  font-family: 'Lato', serif;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 15px;
  text-decoration: none;
  text-align: center;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 auto;
  z-index: 0;
  transition: all 0.3s;
}
body,
html {
  transition: all 0.5s ease-in-out;
}
html.mh-bandeau-pushed .mh-bandeau {
  transform: translateY(0);
}
@media only screen and (min-width: 768px) {
  .mh-modal .modal-content {
    /*.modal-text{
        overflow-y: hidden;
        height: auto;
        max-height: none;
      }*/
  }
}
@media only screen and (min-width: 992px) {
  .mh-bandeau .mh-close-button-container {
    top: 50%;
    transform: translate3d(0, -50%, 0);
    left: auto;
  }
  .mh-bandeau .bandeau-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mh-bandeau .bandeau-container .bandeau-content {
    padding-top: 0px;
  }
  .mh-bandeau .bandeau-container .bandeau-content .bandeau-title {
    text-align: left;
    margin: 0 0 10px 0;
  }
  .mh-bandeau .bandeau-container .bandeau-content .bandeau-text {
    text-align: left;
  }
  .mh-bandeau .bandeau-container .bandeau-cta {
    flex: 0 0 auto;
    margin-top: 0;
    padding: 0 80px 0 0;
  }
  .mh-modal .modal-icon {
    margin: 30px 0;
  }
  .mh-modal .modal-icon img {
    max-width: 170px;
  }
  .mh-modal .modal-content {
    padding: 15px 30px;
  }
  .mh-modal .modal-cta {
    margin: 30px 0;
  }
}
/*# sourceMappingURL=modal-highlight.css.map */