.preview_row {
  display: grid;
  grid-template: auto 1fr/minmax(250px, 1fr) 3fr;
  grid-template-areas: "side      poster" "price     poster";
  grid-gap: 16px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 529px) {
  .preview_row {
    grid-template: auto 1fr auto/1fr;
    grid-template-areas: "side" "poster" "price";
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .preview_row {
    grid-template-columns: 1fr 2fr;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1440px) {
  .preview_row {
    grid-template-columns: 1fr 3fr;
  }
}
@media only screen and (min-width: 1441px) {
  .preview_row {
    grid-template-columns: 1fr 4fr;
  }
}
.preview_row .text_block ul li.poster_title {
  margin-top: 2rem;
}
.preview_row .text_block ul li:last-child {
  margin-bottom: 0;
}
.preview_row .description {
  margin-bottom: 0;
}
.preview_row .price {
  grid-area: price;
}
.preview_row .poster {
  grid-area: poster;
  overflow: hidden;
}
@media only screen and (max-width: 529px) {
  .preview_row .poster {
    margin: 0 -15px;
  }
}
.preview_row .poster div.owl-carousel {
  display: flex;
  align-items: center;
}
.preview_row .poster div.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}
.preview_row .poster div.owl-carousel .owl-stage:after {
  width: 0;
}
.preview_row .poster div.owl-carousel .item {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.preview_row .poster div.owl-carousel .item img {
  object-fit: cover;
  margin: 0;
  width: 100%;
  height: 100vh;
  max-width: 100%;
}
@media only screen and (max-width: 529px) {
  .preview_row .poster div.owl-carousel .item img {
    margin: 0;
    max-width: 100%;
    max-height: 100vw;
  }
}
.preview_row .poster div.owl-carousel .owl-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  /*&:after {
      content: " ";
      width: 100%;
      background: white;
      opacity: 0.5;
      height: 28px;
      position: absolute;
      z-index: -1;
      display: block;
      bottom: 0;
  }*/
}
.preview_row .poster div.owl-carousel .owl-dots .owl-dot span {
  background: white;
  width: 7px;
  height: 7px;
}
.preview_row .poster div.owl-carousel .owl-dots .owl-dot.active span {
  background: black;
  border: 1px solid white;
  margin: 4px 6px;
}
.preview_row .poster div.owl-carousel .owl-nav {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@media only screen and (max-width: 529px) {
  .preview_row .poster div.owl-carousel .owl-nav {
    display: none;
  }
}
.preview_row .poster div.owl-carousel .owl-nav div {
  width: 45%;
  pointer-events: all;
  opacity: 0;
}
.preview_row .poster div.owl-carousel .owl-nav div.owl-prev {
  cursor: w-resize;
}
.preview_row .poster div.owl-carousel .owl-nav div.owl-next {
  cursor: e-resize;
}
@media only screen and (min-width: 530px) {
  .preview_row .poster div.owl-carousel img {
    margin: 5vh 0 5.2vh;
    width: calc(2 / 3 * 90vh);
    position: relative;
  }
  .preview_row .poster div.owl-carousel img:before {
    display: block;
    content: " ";
    width: 100%;
    padding-top: 150%;
  }
  .preview_row .poster div.owl-carousel img .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.prices.sold_out .price, .prices.sold_out .number {
  color: #979797;
}
.prices.sold_out #buy_button {
  background: #979797;
  cursor: default;
}

.price_bar {
  width: 60%;
  overflow: hidden;
  padding: 10%;
  margin: 10%;
  position: relative;
}
.price_bar #circle {
  position: absolute;
  top: 0;
  left: 0;
  height: 80%;
  width: 80%;
  margin: 10%;
}
.price_bar #circle .gap {
  width: 4px;
  height: 3px;
  position: absolute;
  background: white;
}
.price_bar #circle .gap.selected {
  width: 10px;
  height: 2px;
  margin: -1px 0 0 -2px;
  background: black;
  border: 2px solid white;
  border-radius: 1px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}
@media only screen and (max-width: 529px) {
  .price_bar #circle .gap.selected {
    margin: -2px 0 0 -2px;
  }
}
.price_bar #circle .gap.selected:after {
  content: " ";
  width: 40px;
  height: 40px;
  margin: -14px 0 0 -14px;
  border-radius: 20px;
  position: absolute;
  z-index: 1000;
}
.price_bar #circle svg#circle_svg {
  overflow: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.price_bar #circle svg#circle_svg .gray {
  stroke: #ccc;
}
.price_bar #circle svg#circle_svg .orange {
  stroke: black;
}
.price_bar #handler_container {
  width: 100%;
  position: relative;
  z-index: 100;
  transform-origin: center center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
  pointer-events: none;
}
.price_bar #handler_container:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 100%;
}
.price_bar #handler_container .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.price_bar #handler_container #handler {
  pointer-events: all;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 8px;
  height: 30px;
  opacity: 0;
  background: black;
  cursor: move;
  cursor: -webkit-grab;
}
@media only screen and (max-width: 529px) {
  .price_bar #handler_container #handler {
    top: -5px;
  }
}
.price_bar .price_container {
  position: absolute;
  width: 50%;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "Rubik", sans-serif;
}
.price_bar .price_container .price {
  font-size: 1.5rem;
  font-weight: 500;
}
.price_bar .price_container .price::first-letter {
  letter-spacing: 2px;
}

.buy_button_container #buy_button {
  width: 100%;
  height: 36px;
  line-height: 36px;
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
  background: black;
  color: white;
}

.notes_container {
  border: none;
}

/*# sourceMappingURL=preview.css.map */
