/*!
 * PhotoSphereViewer.GalleryPlugin 5.4.4
 * @copyright 2023 Damien "Mistic" Sorel
 * @licence MIT (https://opensource.org/licenses/MIT)
 */
/* src/style.scss */
.psv-container {
    --psv-gallery-plugin-loaded: true;
  }
  .psv-gallery {
    --psv-gallery-breakpoint: 500px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(61, 61, 61, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    overflow: hidden;
    transition: transform ease-in-out 0.1s;
    transform: translateY(100%);
    z-index: 90;
    cursor: default;
  }
  .psv--has-navbar .psv-gallery {
    bottom: 40px;
    transform: translateY(calc(100% + 40px));
  }
  .psv-gallery--open {
    transform: translateY(0) !important;
  }
  .psv-gallery-container {
    display: flex;
    align-content: flex-start;
    padding: 15px;
    overflow-x: auto;
  }
  .psv-gallery-item {
    flex: none;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
  }
  .psv-gallery-item:not(:last-child) {
    margin-right: 15px;
  }
  .psv-gallery-item-title {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    height: 2.2em;
    padding: 0.5em;
    background: rgba(0, 0, 0, 0.6);
    font: 16px sans-serif;
    line-height: 1.2em;
    color: rgba(255, 255, 255, 0.7);
    z-index: 2;
    transition: height ease-in-out 0.2s;
  }
  .psv-gallery-item-title span {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    user-select: none;
  }
  .psv-gallery-item-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    transform: scale3d(1, 1, 1);
    transition: transform ease-in-out 0.2s;
    z-index: 1;
  }
  .psv-gallery-item:hover .psv-gallery-item-title {
    height: 100%;
  }
  .psv-gallery-item:hover .psv-gallery-item-title span {
    white-space: normal;
  }
  .psv-gallery-item:hover .psv-gallery-item-thumb {
    transform: scale3d(1.2, 1.2, 1);
  }
  .psv-gallery-item--active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 3px solid white;
    z-index: 3;
  }
  @media screen and (width <= 500px) {
    .psv-gallery {
      top: 0;
    }
    .psv-gallery-container {
      flex-wrap: wrap;
      height: calc(100% - 32px);
      margin-top: 32px;
      padding: 0 0 0 15px;
      overflow-x: hidden;
      overflow-y: auto;
    }
    .psv-gallery-item {
      width: calc(50% - 15px) !important;
      margin-bottom: 15px;
    }
    .psv-gallery .psv-panel-close-button {
      display: block;
      z-index: 10;
    }
  }
  /*# sourceMappingURL=index.css.map */