/*****************************************************************************
  Bootstrap settings.
*/

/*****************************************************************************
  Bootstrap variables' custom overrides.
*/

/*****************************************************************************
  Project-specific variables.
*/

/*****************************************************************************
  Account.
*/

/*****************************************************************************
  Global components.
*/

/*****************************************************************************
  Homepage.
*/

/*****************************************************************************
  Recipe.
*/

/*****************************************************************************
  Bootstrap settings.
*/

/*****************************************************************************
  Bootstrap variables' custom overrides.
*/

/*****************************************************************************
  Project-specific variables.
*/

/*****************************************************************************
  Account.
*/

/*****************************************************************************
  Global components.
*/

/*****************************************************************************
  Homepage.
*/

/*****************************************************************************
  Recipe.
*/

.ws-gallery {
  /*****************************************************************************
    Lightbox.
  */
}

.ws-gallery__heading__text {
  font-size: 1.625rem;
}

@media (min-width: 768px) {
  .ws-gallery__heading__text {
    font-size: 2.4375rem;
  }
}

.ws-gallery__heading__btn {
  font-size: 1rem;
  font-weight: bold;
}

@media (min-width: 992px) {
  .ws-gallery__heading__btn {
    margin-left: 3.25rem;
  }
}

.ws-gallery__featured-images {
  margin-top: 2rem;
}

.ws-gallery__featured-image {
  position: relative;
  width: 100%;
  padding: 100% 0 0 0;
}

.ws-gallery__featured-image__img,
.ws-gallery__featured-image__see-more {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.625em;
}

.ws-gallery__featured-image__img:hover,
.ws-gallery__featured-image__see-more:hover {
  cursor: zoom-in;
}

.ws-gallery__featured-image__img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.ws-gallery__featured-image__see-more {
  color: #fff;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .ws-gallery__featured-image__see-more {
    font-size: 1.3125rem;
  }
}

.ws-gallery__lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  will-change: opacity;
}

.ws-gallery__lightbox.\--visible {
  opacity: 1;
  z-index: 1040;
  pointer-events: all;
}

.ws-gallery__lightbox__close-btn {
  position: fixed;
  width: 2rem;
  height: 2rem;
}

@media (max-width: 991.98px) {
  .ws-gallery__lightbox__close-btn {
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 992px) {
  .ws-gallery__lightbox__close-btn {
    top: 1rem;
    right: 1rem;
  }
}

.ws-gallery__lightbox__main {
  width: 100%;
}

@media (min-width: 992px) {
  .ws-gallery__lightbox__main {
    padding: 0 calc((100vw - 55vw) / 2);
    margin-bottom: 2rem;
  }
}

.ws-gallery__lightbox__main__slide {
  background: #000;
  height: 250px;
}

@media (min-width: 768px) {
  .ws-gallery__lightbox__main__slide {
    height: 50vh;
  }
}

@media (min-width: 992px) {
  .ws-gallery__lightbox__main__slide,
  .ws-gallery__lightbox__main__slide__img {
    border-radius: 0.625em;
  }
}

.ws-gallery__lightbox__main__slide__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.ws-gallery__lightbox__main .swiper-button-prev,
.ws-gallery__lightbox__main .swiper-button-next {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 50px;
  background: #fff;
  color: #000;
}

.ws-gallery__lightbox__main .swiper-button-prev::before,
.ws-gallery__lightbox__main .swiper-button-prev::after,
.ws-gallery__lightbox__main .swiper-button-next::before,
.ws-gallery__lightbox__main .swiper-button-next::after {
  display: none;
}

.ws-gallery__lightbox__main .swiper-button-prev {
  left: 0;
  padding-left: 0;
  border-top-right-radius: 0.625em;
  border-bottom-right-radius: 0.625em;
}

.ws-gallery__lightbox__main .swiper-button-next {
  right: 0;
  padding-right: 0;
  border-top-left-radius: 0.625em;
  border-bottom-left-radius: 0.625em;
}

.ws-gallery__lightbox__main .swiper-button-disabled {
  opacity: 1;
  color: rgba(0, 0, 0, 0.3);
}

.ws-gallery__lightbox__thumbs {
  width: 100%;
}

@media (min-width: 992px) {
  .ws-gallery__lightbox__thumbs {
    width: 55vw;
  }
}

.ws-gallery__lightbox__thumbs__slide {
  transition: opacity 0.2s ease-in-out;
  will-change: opacity;
}

.ws-gallery__lightbox__thumbs__slide:not(.swiper-slide-thumb-active) .ws-gallery__lightbox__thumbs__slide__wrapper::before {
  background: rgba(0, 0, 0, 0.75);
}

@media (min-width: 992px) {
  .ws-gallery__lightbox__thumbs__slide:hover {
    cursor: pointer;
  }
}

.ws-gallery__lightbox__thumbs__slide,
.ws-gallery__lightbox__thumbs__slide__wrapper::before,
.ws-gallery__lightbox__thumbs__slide__img {
  border-radius: 0.625em;
}

.ws-gallery__lightbox__thumbs__slide__wrapper {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.ws-gallery__lightbox__thumbs__slide__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
  transition: background 0.2s ease-in-out;
  will-change: background;
}

.ws-gallery__lightbox__thumbs__slide__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.ws-gallery__lightbox__status {
  width: 55vw;
}

