@charset "UTF-8";
body.no-scroll {
  overflow: hidden;
}

.mr-gallery {
  font-family: arial, helvetica, sans-serif;
}
.mr-gallery a {
  text-decoration: none;
}
.mr-gallery .mr-gallery-thumbnails {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 30px;
}
.mr-gallery .mr-gallery-thumbnails .mr-gallery-item {
  text-decoration: none;
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.mr-gallery .mr-gallery-thumbnails .mr-gallery-item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../img/magnifier.svg);
  background-size: 60%;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.mr-gallery .mr-gallery-thumbnails .mr-gallery-item[data-gallery-item-type=youtube-video]::after, .mr-gallery .mr-gallery-thumbnails .mr-gallery-item[data-gallery-item-type=vimeo-video]::after {
  content: "";
  display: block;
  position: absolute;
  left: 15%;
  top: 15%;
  width: 70%;
  height: 70%;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  background-image: url(../img/play.svg);
  background-size: 70%;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.mr-gallery .mr-gallery-thumbnails .mr-gallery-item:hover::before {
  opacity: 1;
}
.mr-gallery .mr-gallery-thumbnails .mr-gallery-item:hover[data-gallery-item-type=youtube-video]::after, .mr-gallery .mr-gallery-thumbnails .mr-gallery-item:hover[data-gallery-item-type=vimeo-video]::after {
  opacity: 0;
}
.mr-gallery .mr-gallery-thumbnails .mr-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mr-gallery .mr-gallery-popup {
  -webkit-text-size-adjust: 100%;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  z-index: 8000000000000000;
}
.mr-gallery .mr-gallery-popup.spinner {
  background-image: url(../img/spinner.gif);
  background-repeat: no-repeat;
  background-position: center center;
}
.mr-gallery .mr-gallery-popup .mr-gallery-popup-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.mr-gallery .mr-gallery-popup .mr-gallery-popup-content img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
.mr-gallery .mr-gallery-popup .mr-gallery-popup-content .mr-gallery-video-frame {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 50px;
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
.mr-gallery .mr-gallery-popup .mr-gallery-popup-content .mr-gallery-vc {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-animation-name: fadein;
          animation-name: fadein;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
.mr-gallery .mr-gallery-popup .mr-gallery-popup-content .mr-gallery-vc .mr-gallery-vc-text {
  color: white;
  padding: 30px 14%;
  text-align: center;
  font-size: 4vmin;
  font-size: min(4vmin, 30px);
}
.mr-gallery .mr-gallery-popup .mr-gallery-popup-content .mr-gallery-vc .mr-gallery-vc-text::before {
  content: "";
  margin: 0 auto;
  display: inline-block;
  width: 20vmin;
  aspect-ratio: 16/11;
  background-image: url(../img/video.svg);
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: 4vmin;
}
.mr-gallery .mr-gallery-popup .mr-gallery-popup-content .mr-gallery-vc .mr-gallery-vc-text p {
  line-height: 1.4;
}
.mr-gallery .mr-gallery-popup .mr-gallery-popup-content .mr-gallery-vc .mr-gallery-vc-text p a {
  color: #ff3f9f;
}
.mr-gallery .mr-gallery-popup .mr-gallery-popup-content .mr-gallery-vc .mr-gallery-vc-text .mr-gallery-vc-confbutton {
  display: inline-block;
  margin-top: 4vmin;
  background-color: #ff3f9f;
  padding: 3vmin;
  padding: min(3vmin, 20px);
  color: black;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.mr-gallery .mr-gallery-popup .mr-gallery-popup-content .mr-gallery-vc .mr-gallery-vc-text .mr-gallery-vc-confbutton:hover {
  background-color: #ff72b9;
}
.mr-gallery .mr-gallery-popup .mr-gallery-popup-content .mr-gallery-vc .mr-gallery-vc-text .mr-gallery-vc-confbutton::before {
  content: "► ";
}
.mr-gallery .mr-gallery-popup .mr-gallery-popup-content .mr-gallery-vc .mr-gallery-vc-text .mr-gallery-vc-remember-consent {
  font-size: 16px;
  margin-top: 20px;
}
.mr-gallery .mr-gallery-popup .mr-gallery-popup-content .mr-gallery-vc .mr-gallery-vc-text .mr-gallery-vc-remember-consent label {
  margin-left: 10px;
}
.mr-gallery .mr-gallery-popup .mr-gallery-close {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url(../img/close.svg);
}
@media screen and (max-width: 1024px) {
  .mr-gallery .mr-gallery-popup .mr-gallery-close {
    right: 20px;
    top: 20px;
  }
}
.mr-gallery .mr-gallery-popup .mr-gallery-close span {
  display: none;
}
.mr-gallery .mr-gallery-popup .mr-gallery-next {
  position: absolute;
  right: 0;
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-image: url(../img/next.svg);
}
.mr-gallery .mr-gallery-popup .mr-gallery-next span {
  display: none;
}
.mr-gallery .mr-gallery-popup .mr-gallery-prev {
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-image: url(../img/prev.svg);
}
.mr-gallery .mr-gallery-popup .mr-gallery-prev span {
  display: none;
}
.mr-gallery .mr-gallery-popup .mr-gallery-count-text {
  display: block;
  padding: 10px;
  position: absolute;
  left: 50%;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}