@charset "UTF-8";
.modal {
  position: relative;
  z-index: 1000;
  overflow: hidden;
}
.modal video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-play {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  cursor: pointer;
  transition: 300ms;
  opacity: 0;
  border: 0;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.modal-play:hover {
  transform: scale(0.95);
}

.modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
}

.modal__container {
  overflow-y: auto;
  box-sizing: border-box;
  width: 100vw;
  background-color: #FFFFFF;
}
@media (min-width: 992px) {
  .modal__container {
    width: calc(100vw - 100px);
    max-width: 1000px;
  }
}
@media (min-width: 1440px) {
  .modal__container {
    max-width: 1100px;
  }
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 0;
  color: #00449E;
}

.modal__close {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  border: 0;
  background: transparent;
}
.modal__close button {
  padding: 20px;
  cursor: pointer;
  border: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.modal__close button img {
  width: 40px;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  width: 100%;
  height: 100%;
}

.modal__btn {
  font-size: 0.875rem;
  line-height: 1.15;
  overflow: visible;
  margin: 0;
  padding-top: 0.5rem;
  padding-right: 1rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  cursor: pointer;
  transition: transform 0.25s ease-out;
  transform: translateZ(0);
  text-transform: none;
  color: rgba(0, 0, 0, 0.8);
  border-width: 0;
  border-style: none;
  border-radius: 0.25rem;
  background-color: #E6E6E6;
  -webkit-appearance: button;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  will-change: transform;
}

.modal__btn:focus,
.modal__btn:hover {
  transform: scale(1.05);
}

.modal__btn-primary {
  color: #FFFFFF;
  background-color: #00449E;
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}/*# sourceMappingURL=modal.css.map */