.ss_components_products_ui_carousel__mainPc {
  position: fixed;
  left: 0;
  top: 51px;
  width: 100vw;
  height: calc(100vh - 51px);
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}
.ss_components_products_ui_carousel__mainPc > .top_bar_ctr {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  background-color: #fff;
}
.ss_components_products_ui_carousel__mainPc > .wrapper {
  width: 100vw;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ss_components_products_ui_carousel__mainPc > .wrapper .carousel {
  position: relative;
  overflow: hidden;
  width: 1400px;
  max-width: 80vw;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: calc(95vh - 51px);
  background-color: #ffffff;
  border-radius: 7px;
}
.ss_components_products_ui_carousel__mainPc > .wrapper .carousel > .spinner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 300px;
}
.ss_components_products_ui_carousel__mainPc > .wrapper .carousel > .spinner .circle {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  width: 50px;
  height: 50px;
}
.ss_components_products_ui_carousel__mainPc > .wrapper .carousel > .spinner .circle .path {
  stroke: #60aadd;
  stroke-linecap: round;
}
.ss_components_products_ui_carousel__mainPc > .wrapper .carousel > .spinner.enabled .circle {
  animation: rotate 2s linear infinite;
}
.ss_components_products_ui_carousel__mainPc > .wrapper .carousel > .spinner.enabled .circle .path {
  animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.ss_components_products_ui_carousel__mainPc > .wrapper .carousel .products {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0;
  background-color: #ffffff;
}
.ss_components_products_ui_carousel__mainPc > .wrapper .carousel .products .product {
  border-radius: 7px;
  max-height: calc(95vh - 51px);
}
.ss_components_products_ui_carousel__mainPc > .wrapper .carousel .products .product .ss_components_products_ui_carousel__main_product {
  height: 1200px;
  max-height: calc(95vh - 51px);
}
@media all and (max-height: 600px) {
  .ss_components_products_ui_carousel__mainPc > .wrapper .carousel .products .product .ss_components_products_ui_carousel__main_product .related {
    display: none;
  }
}
.ss_components_products_ui_carousel__mainPc > .wrapper > .arrow {
  pointer-events: all;
  position: relative;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.3);
  font-size: 70px;
  font-weight: bold;
  width: 200px;
  height: calc(95vh - 51px);
  max-height: calc(95vh - 51px);
}
.ss_components_products_ui_carousel__mainPc > .wrapper > .arrow.hover {
  color: #ffffff;
}
.ss_components_products_ui_carousel__mainPc > .wrapper > .arrow > .close_button {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  z-index: 600;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 90px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ss_components_products_ui_carousel__mainPc > .wrapper > .arrow > .close_button .fa-times-thin:before {
  content: '\00d7';
}
.ss_components_products_ui_carousel__mainPc > .wrapper > .arrow > .close_button.hover {
  opacity: 1;
}
