// Can this be deleted?

.sw-preview {
    margin-bottom: calc(10% + 7px);
}

.sw-carouselParent {
  overflow: hidden;

  .sw-carouselContainer {
    position: relative;
    background-color: @color-white;
    text-align: center;

    .sw-carousel {
      position: static;
      display: flex;
      background-color: @color-black;
      max-height: 600px;
      min-height: 176px;
      overflow-x: scroll;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;

      img {
        width: 100%;
        height: auto;
      }

      .sw-imgContainer {
        scroll-snap-align: center;
        align-self: flex-start;
        flex: 1 0 100%;
      }

      .sw-videoContainer {
        scroll-snap-align: center;
        flex: 1 0 100%;
        max-width: 100%;
        padding-bottom: 19px;
      }
    }

    .sw-arrow {
      position: absolute;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 100%;
      color: @color-white;
      cursor: pointer;
      margin: auto;
      padding: 0.3em 0.3em 0.4em 0.3em;
      top: 48%;
      &:hover {
        background-color: rgba(0, 0, 0, 0.7);
        transition: 0.4s;
      }
    }

    .sw-preview-indicators {
      position: absolute;
      list-style: none;
      margin-top: 5px;
      margin-bottom: 0;
      overflow: hidden;
      padding-left: 0;
      white-space: nowrap;
      width: 100%;
    }

    .sw-preview-indicator {
      display: inline-block;
      cursor: pointer;
      width: 14%;
      margin: 0 0.15%;
      border: 1px solid @gray-base;
      border-radius: 0.2em;
      padding-bottom: 10%;
      opacity: 0.7;
      background-size: cover;
      transition: transform 1s, opacity 0.5s;
      &:hover {
        opacity: 1;
      }
    }

    .sw-pip-indicators {
      position: absolute;
      bottom: 30px;
      left: 50%;
      width: 60%;
      margin-left: -30%;
      padding-left: 0;
      list-style: none;
      text-align: center;
    }

    .sw-pip-indicator {
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 1px;
      text-indent: -999px;
      border: 1px solid @color-white;
      border-radius: 10px;
      cursor: pointer;
      background-color: rgba(0, 0, 0, 0);
    }

    .sw-active-indicator {
      background-color: @color-white;
      opacity: 1;
    }

    .sw-counter {
      position: absolute;
      background-color: rgba(0, 0, 0, 0.7);
      bottom: 0;
      color: @color-white;
      width: 100%;
      z-index: 1;
    }

    .sw {
      &-left {
        left: @panel-body-padding;
      }

      &-right {
        right: @panel-body-padding;
      }
    }

    @media only screen and (max-width: 768px) {
      .sw-pip-indicators {
        bottom: 10px;
      }
    }
  }
}
