.gallery-content-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.69);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  padding: 0 32px;
  pointer-events: none;
  opacity: 0;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.375s;
}
@media (min-width: 768px) {
  .gallery-content-container {
    padding: 0 64px;
  }
}
.gallery-content-container.active {
  pointer-events: all;
  opacity: 1;
}
.gallery-content-container .gallery-content {
  position: relative;
}
.gallery-content-container .swiper-scrollbar {
  height: 5px !important;
  bottom: -30px !important;
  background: #B2BBD1;
}
.gallery-content-container .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #E73637;
}

.gallery-button-open {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 8px 8px 8px;
  background-color: rgba(255, 255, 255, 0.69);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 8px;
  color: #000;
  font-family: "Fira Sans";
  font-weight: 800;
  font-size: 1.4rem;
  cursor: pointer;
  outline: none;
}
.gallery-button-open::selection {
  background: transparent;
  color: #000;
}
.gallery-button-open::-moz-selection {
  background: transparent;
  color: #000;
}
.gallery-button-open:active, .gallery-button-open:focus {
  outline-color: transparent;
}
.gallery-button-open:before {
  content: "\e932";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.4rem;
  font-family: "icomoon" !important;
  margin-right: 5px;
}

.gallery-button-close {
  outline: none;
  background: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  box-shadow: none;
  -webkit-user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  display: inline-block;
  background-color: #002067;
  color: #fff;
  font-size: 1.4rem;
  font-family: "Fira Sans";
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border-radius: 4px;
  border: none;
  padding: 14px 16px;
  overflow: hidden;
  text-decoration: none;
  max-width: 100%;
  cursor: pointer;
  transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.375s;
  max-width: 110px;
  margin-bottom: 20px;
  outline: none;
  border-radius: 30px;
  color: #fff;
}
.gallery-button-close:hover, .gallery-button-close.hover, .gallery-button-close.activated {
  color: #fff;
  background-color: #122291;
}
.gallery-button-close:disabled, .gallery-button-close.disabled {
  color: #fff;
  background-color: #BABBBA;
  cursor: no-drop;
  pointer-events: none;
}
@media (min-width: 768px) {
  .gallery-button-close {
    margin-bottom: 40px;
  }
}
.gallery-button-close::selection {
  background: transparent;
  color: #000;
}
.gallery-button-close::-moz-selection {
  background: transparent;
  color: #000;
}
.gallery-button-close:active, .gallery-button-close:focus {
  outline-color: transparent;
}
.gallery-button-close:after {
  content: "\e905";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.4rem;
  font-family: "icomoon" !important;
  margin-left: 10px;
}