/**
 * Recently Viewed Products - Admin Preview
 *
 */
.merchant-module-page-preview-browser-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  max-width: 100%;
  width: 100%;
  margin: auto;
  padding: 0 25px;
}

.merchant-recently-viewed-products-section {
  width: 100%;
}
.merchant-recently-viewed-products-section .section-title {
  margin-bottom: 25px;
  color: var(--mrc-rvp-section-title-color, #212121);
}
.merchant-recently-viewed-products-section.hide-title .section-title {
  display: none;
}
.merchant-recently-viewed-products-section .merchant-recently-viewed-products .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: var(--mrc-rvp-columns-gap, 15px);
}
.merchant-recently-viewed-products-section .merchant-recently-viewed-products .products .product {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(33.3333% - var(--mrc-rvp-columns-gap, 15px));
          flex: 1 1 calc(33.3333% - var(--mrc-rvp-columns-gap, 15px));
  max-width: calc(33.3333% - var(--mrc-rvp-columns-gap, 15px));
}
.merchant-recently-viewed-products-section .merchant-recently-viewed-products .products .product .image-wrapper {
  background-color: #f5f5f5;
  height: 220px;
}
@media (min-width: 992px) {
  .merchant-recently-viewed-products-section .merchant-recently-viewed-products .products .product .image-wrapper {
    height: 11vw;
    max-height: 220px;
  }
}
.merchant-recently-viewed-products-section .merchant-recently-viewed-products .products .product .product-summary h3 {
  margin-bottom: 10px;
}
.merchant-recently-viewed-products-section .merchant-recently-viewed-products .products .product .product-summary p {
  margin-top: 0;
}
.merchant-recently-viewed-products-section .merchant-recently-viewed-products .slider-navigation {
  display: none;
}
.merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products {
  position: relative;
}
.merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-top: calc(107px + var(--mrc-rvp-columns-gap));
  z-index: 10;
}
@media (min-width: 992px) and (max-width: 1280px) {
  .merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation {
    margin-top: calc(70px + var(--mrc-rvp-columns-gap));
  }
}
.merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-prev,
.merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--mrc-carousel-nav-color, #212121);
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-prev svg,
.merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-next svg {
  width: 12px;
  height: 12px;
}
.merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-prev svg path,
.merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-next svg path {
  stroke: var(--mrc-carousel-nav-icon-color, #FFF);
}
.merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-prev:hover,
.merchant-recently-viewed-products-section.slider-style-preview .merchant-recently-viewed-products .slider-navigation .nav-next:hover {
  background: var(--mrc-carousel-nav-color-hover, #757575);
}
.merchant-recently-viewed-products-section.slider-style-preview.on-hover .merchant-recently-viewed-products .slider-navigation {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.merchant-recently-viewed-products-section.slider-style-preview.on-hover .merchant-recently-viewed-products:hover .slider-navigation {
  opacity: 1;
}