.bsk_gallery {
  max-width: 1100px;
  margin: auto;
}
.bsk_gallery.expanded > .bsk_gallery_item {
  display: block !important;
}
.bsk_gallery.two-col {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .bsk_gallery.two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
.bsk_gallery.three-col {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .bsk_gallery.three-col {
    grid-template-columns: repeat(3, 1fr);
  }
}
.bsk_gallery.text {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background-color: black;
}
.bsk_gallery.text .bsk_gallery_item {
  padding: 1rem;
  flex-grow: 1;
  background-color: white;
}
.bsk_gallery.text .bsk_gallery_item .bsk_gallery--text-wrapper {
  font-weight: bold;
  text-align: center;
}
.bsk_gallery .bsk_gallery_item {
  cursor: pointer;
}
.bsk_gallery .bsk_gallery_item.expand-item {
  display: block !important;
}
.bsk_gallery .bsk_gallery_item.expand-item:hover .bsk_gallery--expand {
  opacity: 1;
}
.bsk_gallery .bsk_gallery_item.expand-item .bsk_gallery--image-wrapper {
  z-index: 1;
}
.bsk_gallery .bsk_gallery_item.expand-item .bsk_gallery--expand {
  z-index: 2;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 2rem;
  top: 0;
  left: 0;
  inset: 0;
  opacity: 0;
  transition: 0.25s;
}
.bsk_gallery .bsk_gallery_item .bsk_gallery--image-wrapper {
  pointer-events: none;
}
.bsk_gallery .bsk_gallery_item .bsk_gallery--image-wrapper .bsk_gallery--image {
  aspect-ratio: 54/40;
  width: 100%;
  display: block;
  object-fit: cover;
}
.bsk_gallery .bsk_gallery_item .bsk_gallery_details {
  cursor: default;
  display: grid;
  place-items: center;
  z-index: 1000;
  position: fixed;
  transform: scale(0);
  opacity: 0;
  transition: all 0.5s;
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  inset: 0;
  color: white;
}
.bsk_gallery .bsk_gallery_item .bsk_gallery_details .bsk_gallery_details--image-wrapper .bsk_gallery_details--image {
  display: block;
  object-fit: cover;
  width: 100%;
  max-height: 70vh;
}
.bsk_gallery .bsk_gallery_item .bsk_gallery_details .bsk_gallery_details--description {
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100%;
  min-height: 3rem;
  max-width: 3rem;
  max-height: 3rem;
  overflow: hidden;
  padding: 0;
  background: black;
  box-sizing: border-box;
  transition: all 0.125s;
}
@media (max-width: 767px) {
  .bsk_gallery .bsk_gallery_item .bsk_gallery_details .bsk_gallery_details--description {
    left: 5vw;
    bottom: 5vw;
  }
}
@media (min-width: 768px) {
  .bsk_gallery .bsk_gallery_item .bsk_gallery_details .bsk_gallery_details--description {
    left: 5vw;
    top: 5vw;
  }
}
.bsk_gallery .bsk_gallery_item .bsk_gallery_details .bsk_gallery_details--description h2 {
  margin-top: 0;
}
.bsk_gallery .bsk_gallery_item .bsk_gallery_details .bsk_gallery_details--description * {
  opacity: 0;
}
.bsk_gallery .bsk_gallery_item .bsk_gallery_details .bsk_gallery_details--description.active {
  padding: 1rem;
  width: 800px;
  max-width: calc(100% - 10vw);
  max-height: 30vw;
}
@media (min-width: 768px) {
  .bsk_gallery .bsk_gallery_item .bsk_gallery_details .bsk_gallery_details--description.active {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .bsk_gallery .bsk_gallery_item .bsk_gallery_details .bsk_gallery_details--description.active {
    max-height: 50vh;
  }
}
.bsk_gallery .bsk_gallery_item .bsk_gallery_details .bsk_gallery_details--description.active .bsk_gallery_details--description-close::before {
  content: "-";
}
.bsk_gallery .bsk_gallery_item .bsk_gallery_details .bsk_gallery_details--description.active * {
  opacity: 1;
}
.bsk_gallery .bsk_gallery_item .bsk_gallery_details .bsk_gallery_details--description .bsk_gallery_details--description-close {
  opacity: 1;
  z-index: 1;
  background: black;
  cursor: pointer;
  border: unset;
  font-size: 3rem;
  position: absolute;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  line-height: 0.5em;
  bottom: 0;
  right: 0;
}
.bsk_gallery .bsk_gallery_item .bsk_gallery_details .bsk_gallery_details--description .bsk_gallery_details--description-close::before {
  content: "+";
}
.bsk_gallery .bsk_gallery_item .bsk_gallery_details .bsk_gallery_close {
  color: white;
  font-family: "Knile";
  font-weight: 300;
  font-style: italic;
  position: absolute;
  cursor: pointer;
  top: 5vh;
  right: 5vh;
  background: unset;
  border: unset;
  font-size: 4rem;
  transition: transform 0.25s;
  transform: rotate(45deg);
}
.bsk_gallery .bsk_gallery_item .bsk_gallery_details .bsk_gallery_close:hover {
  transform: rotate(45deg) translate(-4px, -4px);
}
.bsk_gallery .bsk_gallery_item.active .bsk_gallery_details {
  opacity: 1;
  transform: scale(1);
}

/*# sourceMappingURL=widget-bsk-gallery-tab.css.map */
