body::after {
  /* dark overlay layer - visible when we fire .cd-quick-view */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(71, 55, 78, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s; }

@media only screen and (min-width: 1024px) {
  body.overlay-layer::after {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s; } }
@media only screen and (min-width: 1024px) {
  .cd-quick-view {
    display: block;
    position: fixed;
    max-width: 1000px;
    visibility: hidden;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: left, top, width;
    z-index: 1002;
    overflow: hidden; }

  .cd-quick-view .product-form__item {
    padding: 0; }

  .cd-quick-view .product-view-media {
    width: 60%;
    display: inline-block;
    *display: inline;
    zoom: 1;
    float: left; }

  .cd-quick-view .product-view-media .product-image-moreview {
    margin-left: 10px;
    margin-right: 10px; }

  .cd-quick-view .product-view-media .product-image-moreview .rsFullscreenIcn {
    display: none; }

  .cd-quickview-inner {
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 100%; }

  #viewmore-slider-quickview {
    width: 100%;
    overflow-y: hidden; }

  #FeaturedImageZoom-quickview {
    width: 100% !important;
    height: 100% !important; }

  #FeaturedImage-quickview {
    opacity: 1;
    height: 100%; }

  .cd-quick-view .product-view-info {
    width: 40%;
    display: inline-block;
    *display: inline;
    zoom: 1;
    position: absolute;
    padding: 3em 0 3em 3em;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s, visibility 0s;
    -moz-transition: opacity .3s, visibility 0s;
    transition: opacity .3s, visibility 0s; }

  .cd-quick-view:after {
    content: "";
    display: table;
    clear: both; }

  .add-content .product-view-info {
    /* class added at the end of the width animation, used to show the content */
    position: relative;
    visibility: visible;
    opacity: 1; }

  .add-content .product-shop-title {
    -webkit-animation: cd-slide-in 0.3s;
    -moz-animation: cd-slide-in 0.3s;
    animation: cd-slide-in 0.3s; }

  .add-content .product-shop-price-stock {
    -webkit-animation: cd-slide-in 0.4s;
    -moz-animation: cd-slide-in 0.4s;
    animation: cd-slide-in 0.4s; }

  .add-content .product-shop-option {
    -webkit-animation: cd-slide-in 0.5s;
    -moz-animation: cd-slide-in 0.5s;
    animation: cd-slide-in 0.5s; }

  .cd-quick-view.is-visible {
    /* class added when user clicks on .cd-trigger */
    visibility: visible; }

  .cd-quick-view.animate-width {
    /* class added at the end of the first zoom-in animation */
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    -webkit-transition: box-shadow 0.3s;
    -moz-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s; } }
@-webkit-keyframes cd-slide-in {
  0% {
    -webkit-transform: translate3d(-40px, 0, 0); }

  100% {
    -webkit-transform: translate3d(0, 0, 0); } }

@-moz-keyframes cd-slide-in {
  0% {
    -moz-transform: translate3d(-40px, 0, 0); }

  100% {
    -moz-transform: translate3d(0, 0, 0); } }

@keyframes cd-slide-in {
  0% {
    -webkit-transform: translate3d(-40px, 0, 0);
    -moz-transform: translate3d(-40px, 0, 0);
    -ms-transform: translate3d(-40px, 0, 0);
    -o-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0); }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.cd-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  width: 15px;
  height: 15px;
  /* image replacement */
  overflow: hidden;
  white-space: nowrap;
  visibility: hidden;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform .3s 0s, visibility 0s .3s;
  -moz-transition: -moz-transform .3s 0s, visibility 0s .3s;
  transition: transform .3s 0s, visibility 0s .3s; }

.no-touch .cd-close:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2); }

.add-content .cd-close {
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform .3s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform .3s 0s, visibility 0s 0s;
  transition: transform .3s 0s, visibility 0s 0s; }

.royalSlider {
  height: 553.95px; }

.no-fullscreen .rsOverflow {
  max-width: 450px !important;
  float: right; }

.no-fullscreen .rsImg {
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  margin-left: 0px !important; }

.rsFullscreen .rsImg {
  height: 100vh; }

.rsFullscreen .rsSlide {
  display: table !important;
  width: 100%; }

.rsFullscreen .rsContent {
  display: table-cell;
  vertical-align: middle;
  text-align: center; }

.rsFullscreen .rsImg {
  display: inline;
  height: auto;
  width: auto;
  max-height: 100vh;
  max-width: 100%; }

.rs-inner {
  display: inline-block;
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 100%;
  position: relative; }

.map-popup {
  z-index: 10000; }

.cdz-qs-view .map-link {
  float: left; }

.magnify {
  width: 250px;
  height: 250px;
  position: absolute;
  border-radius: 100%;
  /*Multiple box shadows to achieve the glass effect*/
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85), 0 0 7px 7px rgba(0, 0, 0, 0.25), inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
  /*hide the glass by default*/
  display: none; }

/*Fix img drop bottom*/
.viewmore-main.init-media {
  position: relative; }

.viewmore-main.init-media .image-item:not(.js-cover-wrap) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1; }

/*RTL layout*/
@media only screen and (min-width: 1024px) {
  .cd-quick-view .product-view-info {
    padding: 20px; } }