.ss_components_products_ui_carousel__mainMobile {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}
.ss_components_products_ui_carousel__mainMobile > .bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.16);
  z-index: 5;
  border-bottom: 1px solid #d2d2d2;
  display: flex;
  align-items: center;
}
.ss_components_products_ui_carousel__mainMobile > .bar .close_button {
  cursor: pointer;
  color: #000000;
  font-size: 26px;
  padding: 12px 20px;
}
.ss_components_products_ui_carousel__mainMobile > .bar .close_button .fa-times-thin:before {
  content: '\00d7';
}
.ss_components_products_ui_carousel__mainMobile > .bar .name_container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ss_components_products_ui_carousel__mainMobile > .bar .name_container .name {
  color: #000000;
  line-height: 1.3;
  text-align: center;
  padding: 10px;
  font-family: PTSansRegular;
  font-size: 13px;
}
.ss_components_products_ui_carousel__mainMobile > .bar .spacer {
  width: 60px;
}
.ss_components_products_ui_carousel__mainMobile > .wrapper {
  position: relative;
  z-index: 3;
  width: 100vw;
  height: 100vh;
}
.ss_components_products_ui_carousel__mainMobile > .wrapper .std_images__main {
  object-fit: fill;
}
.ss_components_products_ui_carousel__mainMobile > .wrapper .std_images__main img {
  object-fit: contain;
  max-height: 300px;
}
.ss_components_products_ui_carousel__mainMobile > .wrapper .carousel {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ss_components_products_ui_carousel__mainMobile > .wrapper .carousel .products .product {
  min-height: 100vh;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}
.ss_components_products_ui_carousel__mainMobile > .wrapper .carousel .products .product .ss_components_products_ui_carousel__main_product {
  flex-wrap: wrap;
}
.ss_components_products_ui_carousel__mainMobile > .wrapper .carousel .products .product .ss_components_products_ui_carousel__main_product .left.section {
  width: 100%;
  padding-top: 50px;
}
.ss_components_products_ui_carousel__mainMobile > .wrapper .carousel .products .product .ss_components_products_ui_carousel__main_product .right.section {
  width: 100%;
}
.ss_components_products_ui_carousel__mainMobile > .wrapper .carousel .products .product .ss_components_products_ui_carousel__main_product > .spacer {
  height: 50px;
}
.ss_components_products_ui_carousel__mainMobile > .wrapper .arrow {
  display: none;
}
.ss_components_products_ui_carousel__mainMobile > .wrapper .close_button {
  display: none;
}
.ss_components_products_ui_carousel__mainMobile > .spinner {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 300px;
}
.ss_components_products_ui_carousel__mainMobile > .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__mainMobile > .spinner .circle .path {
  stroke: #60aadd;
  stroke-linecap: round;
}
.ss_components_products_ui_carousel__mainMobile > .spinner.enabled {
  display: block;
}
.ss_components_products_ui_carousel__mainMobile > .spinner.enabled .circle {
  animation: rotate 2s linear infinite;
}
.ss_components_products_ui_carousel__mainMobile > .spinner.enabled .circle .path {
  animation: dash 1.5s ease-in-out infinite;
}
.ss_components_products_ui_carousel__mainMobile > .spinner.over_carousel .circle {
  z-index: 4;
}
@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;
  }
}
