/*-------------------------------------------------
  Fonts Family & Style CSS
---------------------------------------------------*/
/*--  Quicksand font  --*/
@font-face {
  font-family: "Quicksand";
  src: url("./../fonts/quicksand/Quicksand-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Quicksand";
  src: url("./../fonts/quicksand/Quicksand-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Quicksand";
  src: url("./../fonts/quicksand/Quicksand-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Quicksand";
  src: url("./../fonts/quicksand/Quicksand-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Quicksand";
  src: url("./../fonts/quicksand/Quicksand-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/*--  Poppins font  --*/
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-Light.ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Poppins, sans-serif";
  src: url("./../fonts/poppins/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
/*-------------------------------------------------
    Mixin SCSS
-------------------------------------------------*/
/*===== Commen css =====*/
.font-Poppins {
  font-family: "Poppins, sans-serif";
}

.font-quicksand {
  font-family: "Quicksand";
}

.font-montserrat {
  font-family: "Montserrat";
}

.whitespace-normal {
  white-space: no;
}

h2, h3, h4, h5, h6 {
  font-family: "Quicksand";
}

.ms-flash:after {
  content: "";
  width: 2000px;
  height: 2000px;
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-animation: ms-flash 3s ease-in-out infinite;
          animation: ms-flash 3s ease-in-out infinite;
  z-index: 99;
}

/* Custom select */
.select {
  width: 100%;
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
}

select {
  display: none !important;
}

.custom-select {
  color: #777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  font-size: 14px;
  position: relative;
}
.custom-select:after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.custom-select svg {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
}
.custom-select svg path {
  fill: #3e9172;
}
.custom-select .custom-select {
  position: relative;
}
.custom-select .custom-select:active,
.custom-select .custom-select .active {
  background-color: #fff;
}
.custom-select:focus {
  outline: 2px;
}

.select-options {
  min-width: 160px;
  margin: 0;
  padding: 10px 0;
  display: none;
  position: absolute;
  top: 40px;
  right: 0;
  left: 0;
  z-index: 20;
  list-style: none;
  background-color: #fff;
  border-radius: 0;
  -webkit-box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.07);
  border: 1px solid #eee;
}
.select-options li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.03rem;
  margin: 0;
  padding: 5px 20px !important;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  border-radius: 5px;
  font-size: 14px;
  color: #777;
}
.select-options li:hover {
  color: #3e9172;
}
.select-options li[rel=hide] {
  display: none;
}
.select-options::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
  border-radius: 0 0 5px 0;
}
.select-options::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #9e9e9e;
}

/* Buttons */
.ms-btn:before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  -webkit-animation: shiny-btn1 3s ease-in-out infinite;
          animation: shiny-btn1 3s ease-in-out infinite;
}

.ms-btn:active {
  -webkit-box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.3), -4px -4px 6px 0 rgba(116, 125, 136, 0.2), inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2), inset 4px 4px 6px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, 0.3), -4px -4px 6px 0 rgba(116, 125, 136, 0.2), inset -4px -4px 6px 0 rgba(255, 255, 255, 0.2), inset 4px 4px 6px 0 rgba(0, 0, 0, 0.2);
}

.section-title .title-link a:hover i {
  color: #3e9172;
}

.list-circle {
  list-style-type: circle;
}

.list-outside {
  list-style-type: outside;
}

.show-section {
  display: block !important;
}

.hide-section {
  z-index: 7;
  -webkit-transform: translate3d(0px, -100%, 0px);
          transform: translate3d(0px, -100%, 0px);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

#overlay_shine {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: fixed;
  z-index: 1;
  display: block;
  background: rgba(0, 0, 0, 0.2);
  top: 0px;
  left: -50%;
  width: 200%;
  height: 100%;
  -webkit-transform: rotate(-30deg) translateY(-150%);
          transform: rotate(-30deg) translateY(-150%);
}

/* Loader css */
#ms-overlay .loader {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
#ms-overlay .loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
#ms-overlay .loader {
  text-indent: -9999em;
  border-top: 6px solid rgba(0, 0, 0, 0.2);
  border-right: 6px dotted #17181c;
  border-bottom: 6px solid rgba(0, 0, 0, 0.2);
  border-left: 6px dotted #17181c;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
          animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* Custom cursor */
.ms-cursor {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 1px solid #3e9172;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 15px), -50%);
          transform: translate(calc(-50% + 15px), -50%);
  -webkit-animation: morphing-image 10s linear infinite forwards;
          animation: morphing-image 10s linear infinite forwards;
  z-index: 9999;
}

.ms-cursor-2 {
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #3e9172;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 9999;
}

.ms-hover-cursor {
  width: 50px;
  height: 50px;
  background-color: #3e9172;
  border: 0;
  opacity: 0.5;
  z-index: 9999;
}

.ms-cursorinnerhover {
  width: 30px;
  height: 30px;
  opacity: 0.5;
  z-index: 9999;
}

@-webkit-keyframes morphing-image {
  0% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  10% {
    border-radius: 39% 61% 38% 62%/53% 54% 46% 47%;
  }
  20% {
    border-radius: 56% 44% 52% 48%/57% 35% 65% 43%;
  }
  30% {
    border-radius: 41% 59% 45% 55%/43% 56% 44% 57%;
  }
  40% {
    border-radius: 46% 54% 60% 40%/55% 65% 26% 45%;
  }
  50% {
    border-radius: 44% 56% 42% 65%/41% 65% 46% 69%;
  }
  60% {
    border-radius: 41% 69% 42% 68%/41% 71% 29% 69%;
  }
  70% {
    border-radius: 44% 56% 60% 40%/63% 46% 64% 37%;
  }
  80% {
    border-radius: 46% 54% 38% 62%/44% 48% 52% 56%;
  }
  90% {
    border-radius: 66% 45% 57% 43%/49% 51% 49% 51%;
  }
  100% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
}

@keyframes morphing-image {
  0% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  10% {
    border-radius: 39% 61% 38% 62%/53% 54% 46% 47%;
  }
  20% {
    border-radius: 56% 44% 52% 48%/57% 35% 65% 43%;
  }
  30% {
    border-radius: 41% 59% 45% 55%/43% 56% 44% 57%;
  }
  40% {
    border-radius: 46% 54% 60% 40%/55% 65% 26% 45%;
  }
  50% {
    border-radius: 44% 56% 42% 65%/41% 65% 46% 69%;
  }
  60% {
    border-radius: 41% 69% 42% 68%/41% 71% 29% 69%;
  }
  70% {
    border-radius: 44% 56% 60% 40%/63% 46% 64% 37%;
  }
  80% {
    border-radius: 46% 54% 38% 62%/44% 48% 52% 56%;
  }
  90% {
    border-radius: 66% 45% 57% 43%/49% 51% 49% 51%;
  }
  100% {
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
}
/* Add to cart notify */
.ms-cart-notify a .svg_img path {
  fill: #fff;
}

/**  Pagination  **/
.ms-pro-pagination ul li a:hover i {
  color: #fff;
}
.ms-pro-pagination ul li a.next {
  width: auto;
  padding: 0 13px;
  border: 1px solid #eee;
  line-height: 30px;
}
.ms-pro-pagination ul li a.next i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-left: 10px;
  color: #777;
}
.ms-pro-pagination ul li a.next:hover i {
  color: #fff;
}
.ms-pro-pagination ul li a.active {
  color: #fff;
  background-color: #3e9172;
}

/** Back to top button **/
.ms-back-to-top {
  display: inline-block;
  background-color: #17181c;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 16;
  border: 1px solid #fff;
}
.ms-back-to-top:after {
  content: "\f062";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 15px;
  line-height: 40px;
  color: #fff;
}
.ms-back-to-top:hover {
  cursor: pointer;
  background-color: #000;
  opacity: 1;
}
.ms-back-to-top:active {
  background-color: #555;
}

.ms-back-to-top.show {
  opacity: 0.8;
  visibility: visible;
}

.ms-direct-run {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  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;
  z-index: 99;
}
.ms-direct-run .ms-direct-body {
  max-width: 600px;
  color: #fff;
  text-align: center;
}
.ms-direct-run .ms-direct-body h4 {
  margin-bottom: 15px;
  font-size: 25px;
}

/*===== Header css =====*/
.ms-search-popup {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.ms-search-detail form input::-webkit-input-placeholder {
  color: #999;
}

.ms-search-detail form input::-moz-placeholder {
  color: #999;
}

.ms-search-detail form input:-ms-input-placeholder {
  color: #999;
}

.ms-search-detail form input::-ms-input-placeholder {
  color: #999;
}

.ms-search-detail form input::placeholder {
  color: #999;
}
.ms-search-detail form button .svg_img path {
  fill: #fff;
}
.ms-search-detail .ms-search-close .svg_img path {
  fill: #fff;
}

/*===== Cart sideabr css =====*/
.ms-open-cart {
  overflow: hidden;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  opacity: 1 !important;
}

.ms-side-cart::-webkit-scrollbar {
  width: 12px !important;
  height: 10px !important;
  padding: 8px !important;
}
.ms-side-cart::-webkit-scrollbar-track {
  width: 12px !important;
  background-color: #17181c !important;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0) !important;
}
.ms-side-cart::-webkit-scrollbar-thumb {
  background-color: #17181c !important;
  border: 3px solid #fff !important;
}
.ms-side-cart::-webkit-scrollbar-thumb:hover {
  background-color: #3e9172 !important;
}
.ms-side-cart .ms-cart-inner .ms-cart-pro-items li .ms-pro-content .qty-plus-minus .dec.ms_qtybtn {
  border-right: 1px solid #eeeeee;
}
.ms-side-cart .ms-cart-inner .ms-cart-pro-items li .ms-pro-content .qty-plus-minus .ms-qtybtn {
  width: 40px;
  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;
  height: 100%;
  cursor: pointer;
  font-size: 20px;
  color: #777;
}
.ms-side-cart .ms-cart-inner .ms-cart-pro-items li .ms-pro-content input.qty-input {
  background: transparent none repeat scroll 0 0;
  border: medium none;
}

/*===== wish sideabr css =====*/
.ms-open-wish {
  overflow: hidden;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  opacity: 1 !important;
}

.ms-side-wish::-webkit-scrollbar {
  width: 12px !important;
  height: 10px !important;
  padding: 8px !important;
}
.ms-side-wish::-webkit-scrollbar-track {
  width: 12px !important;
  background-color: #17181c !important;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0) !important;
}
.ms-side-wish::-webkit-scrollbar-thumb {
  background-color: #17181c !important;
  border: 3px solid #fff !important;
}
.ms-side-wish::-webkit-scrollbar-thumb:hover {
  background-color: #3e9172 !important;
}

/*-------------------------------------------------
    Quickview Popup Model Style
---------------------------------------------------*/
@-webkit-keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
}
@keyframes fadeOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
}
.ms-modal {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.ms-overflow-hidden {
  overflow: hidden;
}

.ms-fadeInDown {
  -webkit-animation: fadeInDown 0.3s ease-in-out forwards;
          animation: fadeInDown 0.3s ease-in-out forwards;
}

.ms-fadeOutUp {
  -webkit-animation: fadeOutUp 0.2s ease-in-out forwards;
          animation: fadeOutUp 0.2s ease-in-out forwards;
}

#ms_quickview_modal .qty_close {
  background: url("../img/icons/close-1.svg");
  background-size: 100%;
}
#ms_quickview_modal .slick-arrow {
  position: absolute !important;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
}
#ms_quickview_modal .prev-arrow {
  left: 0;
}
#ms_quickview_modal .next-arrow {
  right: 0;
}
#ms_quickview_modal .quick-nav-thumb {
  width: calc(100% - 60px);
  max-height: 70px !important;
  margin: 0 30px;
  overflow-y: hidden !important;
}
#ms_quickview_modal .quick-nav-thumb .quick-thumb {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 2px;
  background-color: #f5f4f9;
}
#ms_quickview_modal .quick-nav-thumb .quick-thumb:hover {
  background-color: #3e9172;
}
#ms_quickview_modal .quick-nav-thumb .ms-active {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #3e9172;
}
#ms_quickview_modal .quick-nav-thumb .owl-nav button {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 30px;
  height: 30px;
  background-color: #3e9172;
  color: #fff;
  opacity: 0.7;
}
#ms_quickview_modal .quick-nav-thumb .owl-nav button:hover {
  opacity: 1;
}
#ms_quickview_modal .quick-nav-thumb .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#ms_quickview_modal .quick-nav-thumb .owl-nav .owl-prev span {
  font-size: 35px;
  line-height: 24px;
}
#ms_quickview_modal .quick-nav-thumb .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#ms_quickview_modal .quick-nav-thumb .owl-nav .owl-next span {
  font-size: 35px;
  line-height: 24px;
}
#ms_quickview_modal .quickview-pro-content .ms-quickview-qty {
  width: 100%;
  margin: 15px 0 0 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#ms_quickview_modal .quickview-pro-content .ms-quickview-qty .qty-plus-minus .ms_qtybtn {
  width: 24px;
  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;
  height: 100%;
  cursor: pointer;
  color: #fff;
}
#ms_quickview_modal .quickview-pro-content .ms-quickview-qty .qty-plus-minus input.qty-input {
  background: transparent none repeat scroll 0 0;
  border: medium none;
}
#ms_quickview_modal .quickview-pro-content .ms-quickview-qty .qty-plus-minus .ms_qtybtn {
  width: 24px;
  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;
  height: 100%;
  cursor: pointer;
  color: #fff;
}
#ms_quickview_modal .quickview-pro-content .ms-quickview-qty .qty-plus-minus .ms-qtybtn {
  width: 30px;
  color: #fff;
  text-align: center;
}

/*===== New Product css =====*/
ul#ProductTab li.active a {
  color: #3e9172;
}

.ms-product-inner .ms-pro-image .ms-pro-actions .ms-btn-group:hover:not(.active) {
  background-color: #3e9172;
}
.ms-product-inner .ms-pro-image .ms-pro-actions .ms-btn-group:hover .svg_img.pro_svg {
  fill: #ffffff;
}
.ms-product-inner:hover .ms-pro-actions {
  opacity: 1;
  right: 10px;
}
.ms-product-inner:hover .ms-pro-image .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.ms-product-inner:hover .ms-pro-image .image img:not(:last-child) {
  opacity: 0;
}
.ms-product-inner:hover .ms-pro-image .image img.hover-image {
  opacity: 1;
}
.ms-product-inner .ms-pro-content .ms-info {
  display: none;
}
.ms-product-inner .ms-pro-content .btn {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.ms-product-inner .ms-pro-image.pro-loading:before {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  opacity: 0.5;
  z-index: 98;
}

.ms-pro-variation .ms-pro-variation-inner.ms-pro-variation-color .ms-pro-variation-content li {
  border-radius: 100%;
}
.ms-pro-variation .ms-pro-variation-inner.ms-pro-variation-color .ms-pro-variation-content li span {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 100%;
}
.ms-pro-variation .ms-pro-variation-inner.ms-pro-variation-color .ms-pro-variation-content li:hover {
  border: 1px solid #17181c;
}
.ms-pro-variation .ms-pro-variation-inner.ms-pro-variation-size .ms-pro-variation-content li.active {
  background-color: #3e9172 !important;
  color: #fff !important;
  border-color: #3e9172 !important;
}
.ms-pro-variation .ms-pro-variation-inner.ms-pro-variation-size .ms-pro-variation-content li.active a {
  color: #fff !important;
}

button.btn-close.qty_close {
  position: absolute;
  left: auto;
  right: 10px;
  top: 10px;
  z-index: 9999;
}

img.pro_svg {
  opacity: 0.5;
}

.eccart-pro-items li .ms-pro-content .qty-plus-minus {
  width: 85px;
  height: 35px;
  margin-top: 7px;
  padding: 7px 0;
  border: 1px solid #eeeeee;
  display: inline-block;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 30px;
}
.eccart-pro-items li .ms-pro-content .qty-plus-minus .ms_qtybtn {
  width: 40px;
  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;
  height: 100%;
  cursor: pointer;
  font-size: 20px;
  color: #777;
}
.eccart-pro-items li .ms-pro-content .qty-plus-minus input.qty-input {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: #17181c;
  float: left;
  font-size: 14px;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 32px;
  outline: none;
  font-weight: 400;
  line-height: 35px;
}
.eccart-pro-items li .ms-pro-content .qty-plus-minus .dec.ms_qtybtn {
  border-right: 1px solid #eeeeee;
}
.eccart-pro-items li .ms-pro-content .qty-plus-minus .inc.ms_qtybtn {
  border-left: 1px solid #eeeeee;
}

.ms-pro-loader {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  opacity: 0;
  display: none;
  background: url(../images/common/pro-loader.gif) no-repeat scroll 50% 50%;
  background-color: rgba(255, 255, 255, 0.5);
  background-size: 75px;
}

.pro-loading .ms-pro-loader {
  opacity: 1;
  display: block;
}

.ms-pro-opt-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 15px;
}

.tab-content .tab-pane {
  display: block;
  overflow: hidden;
  height: 0;
  visibility: hidden;
  max-width: 100%;
  opacity: 0;
}
.tab-content .tab-pane.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  overflow: visible;
}

/*===== Header Menu css =====*/
header .ms-menu-left .ms-site-menu-icon .svg_img path {
  fill: #17181c;
}

.menubar-shadow {
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
}

.ms-main-menu .ms-sidebar-toggle .header_svg path {
  fill: #17181c;
}
.ms-main-menu .ms-menu-right-icons .ms-header-user .dropdown-toggle:after {
  display: none;
}
.ms-main-menu .ms-menu-right-icons .ms-header-wish a .header_svg path,
.ms-main-menu .ms-menu-right-icons .ms-header-cart a .header_svg path,
.ms-main-menu .ms-menu-right-icons .ms-header-search a .header_svg path {
  fill: #17181c;
}
.ms-main-menu .ms-menu-right-icons .ms-header-user .ms-dropdown:hover .ms-dropdown-menu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.ms-main-menu .ms-menu-right-icons .ms-header-user .ms-dropdown .ms-dropdown-menu {
  -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
}
.ms-main-menu ul li a:hover {
  background-color: transparent;
}
.ms-main-menu ul li a:hover i {
  color: #3e9172;
}
.ms-main-menu ul li a:hover .svg_img path {
  fill: #3e9172;
}
.ms-main-menu ul li .main-label-note-new {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 10px;
  height: 10px;
  margin: auto;
  background-color: rgb(236, 113, 109);
  border-radius: 50%;
  cursor: default;
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  z-index: 3;
  -webkit-animation: blink-lbl-back 2.3s infinite;
          animation: blink-lbl-back 2.3s infinite;
}
@-webkit-keyframes blink-lbl-back {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  80% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes blink-lbl-back {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  80% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes blink-lbl {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes blink-lbl {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.ms-main-menu ul li:hover > a {
  color: #3e9172 !important;
}
.ms-main-menu ul li:hover > a .scroll {
  fill: #3e9172;
}
.ms-main-menu ul li .mega-menu {
  -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
}
.ms-main-menu ul li .mega-menu ul.ms-main-banner {
  margin-top: 20px;
}
.ms-main-menu ul li .mega-menu ul.ms-main-banner li {
  width: 25%;
  padding-right: 30px;
}
.ms-main-menu ul li .mega-menu ul.ms-main-banner li a {
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  height: auto;
}
.ms-main-menu ul li.active > a {
  color: #3e9172 !important;
}
.ms-main-menu ul .scroll-to.active a .scroll:hover {
  fill: #3e9172;
}
.ms-main-menu ul .scroll-to {
  position: absolute !important;
  right: 0;
  margin: 0;
}
.ms-main-menu ul .scroll-to ul {
  left: auto;
  right: 0;
}
.ms-main-menu ul .scroll-to ul .menu_title {
  padding: 0 20px 12px 20px;
  color: #777;
  font-size: 14px;
  font-weight: 600;
  display: block;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 10px;
  height: auto;
}
.ms-main-menu ul .scroll-to a .scroll:hover {
  fill: #3e9172;
}
.ms-main-menu ul li.dropdown ul.sub-menu {
  -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
}
.ms-main-menu ul li.dropdown ul li .label-note-new {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 5px;
  height: 20px;
  background: rgb(250, 164, 164);
  cursor: default;
  display: none;
  position: absolute;
  top: 8px;
  left: 0px;
  z-index: 16;
  border-radius: 0 4px 4px 0;
}
.ms-main-menu ul li.dropdown ul li .label-note-hot {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 5px;
  height: 20px;
  background: rgb(138, 179, 134);
  cursor: default;
  display: none;
  position: absolute;
  top: 8px;
  left: 0px;
  z-index: 16;
  border-radius: 0 4px 4px 0;
}
.ms-main-menu ul li.dropdown ul li .label-note-trending {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 5px;
  height: 20px;
  background: rgb(25, 128, 175);
  cursor: default;
  display: none;
  position: absolute;
  top: 8px;
  left: 0px;
  z-index: 16;
  border-radius: 0 4px 4px 0;
}
.ms-main-menu ul li.dropdown ul li.active {
  color: #222;
}
.ms-main-menu ul li.dropdown li.position-static {
  position: relative !important;
}
.ms-main-menu ul li.dropdown li.position-static:hover .sub-menu.sub-menu-child {
  margin: 0;
  opacity: 1;
  visibility: visible;
}
.ms-main-menu ul li.dropdown ul.sub-menu.sub-menu-child {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 15px 0 0 0;
  left: 100% !important;
  opacity: 0;
  visibility: hidden;
  top: 0;
}
.ms-main-menu ul li.dropdown:hover .sub-menu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.ms-main-menu ul li.dropdown:hover .mega-menu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.ms-main-menu > ul > li > a:before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  width: 0;
  margin: 0 auto;
  background: transparent;
  left: 0;
  right: auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ms-main-menu > ul > li:hover > a:before {
  background: #3e9172;
  width: 100%;
}
.ms-main-menu > ul > li.active > a:before {
  background: #3e9172;
  width: 100%;
}

.ms-mobile-menu::-webkit-scrollbar {
  width: 12px !important;
  height: 10px !important;
  padding: 8px !important;
}
.ms-mobile-menu::-webkit-scrollbar-track {
  width: 12px !important;
  background-color: #17181c !important;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0) !important;
}
.ms-mobile-menu::-webkit-scrollbar-thumb {
  background-color: #17181c !important;
  border: 3px solid #fff !important;
}
.ms-mobile-menu::-webkit-scrollbar-thumb:hover {
  background-color: #3e9172 !important;
}
.ms-mobile-menu .ms-menu-inner .ms-menu-content ul li .menu-toggle {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 24px;
  height: 44px;
  cursor: pointer;
  background-color: transparent;
}
.ms-mobile-menu .ms-menu-inner .ms-menu-content ul li .menu-toggle:before {
  width: 100%;
  content: "\f067";
  font-family: "MsIcons";
  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;
  height: 100%;
  color: #444444;
  font-size: 12px;
}

.ms-mobile-menu.ms-menu-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

/*-------------------------------------------------
   Demo 2 Page CSS
---------------------------------------------------*/
.ms-navigation {
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.ms-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.ms-navigation-overlay {
  display: none;
}

.ms-navigation ul li:hover span {
  opacity: 1;
  left: -130px;
}
.ms-navigation ul li:hover a i {
  opacity: 1;
}
.ms-navigation ul li .noty {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.ms-navigation ul li .noty span:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #17181c;
  border-radius: 2px;
  top: 50%;
  right: -2%;
  -webkit-transform: translate(0%, -50%) rotate(45deg);
          transform: translate(0%, -50%) rotate(45deg);
  bottom: 1px;
}

.ms-social {
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.ms-home .ms-hero-slider .owl-dots {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.ms-home .ms-hero-slider .owl-dots button.owl-dot {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 10px;
  height: 10px;
  margin: 5px;
  border: 1px solid #17181c;
}
.ms-home .ms-hero-slider .owl-dots .owl-dot.active {
  width: 20px;
  background-color: #17181c !important;
}
.ms-home .ms-hero-slider .slider-animation {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}
.ms-home .ms-category-block-2 {
  grid-template-columns: repeat(auto-fill, calc(33.33% - 20px));
}
.ms-home .ms-category-block-2 .ms-cat-box.more {
  display: none;
}
.ms-home .ms-category-block-2 .ms-cat-box:hover {
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}
.ms-home .ms-category-block-2 .ms-cat-box .ms-cat-icon:hover .svg_img {
  -webkit-animation: cat-shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: cat-shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
@-webkit-keyframes cat-shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}
@keyframes cat-shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}

@-webkit-keyframes ms-rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
            transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
            transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
            transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg);
  }
}

@keyframes ms-rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
            transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
            transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
            transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg);
  }
}

.ms-offer-section .section-title .dealend-timer {
  padding-right: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  background-color: #f5f4f9;
}
.ms-offer-section .section-title .dealend-timer .time-block {
  margin-left: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  color: #17181c;
}
.ms-offer-section .section-title .dealend-timer .time-block .day {
  margin-left: 5px;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 28px;
  color: #17181c;
}
.ms-offer-section .section-title .dealend-timer .time-block .time {
  min-width: 20px;
  position: relative;
}
.ms-offer-section .section-title .dealend-timer .time-block .dots {
  margin-top: -1px;
  margin-left: 5px;
  color: #17181c;
}

.ms-top-vendor .ms-top-vendor-block .ms-vendor-detail .ms-vendor-img img {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-products {
  grid-template-columns: repeat(auto-fill, calc(50% - 6px));
}

.ms-listing .ms-list-block ul li:hover {
  background-color: #17181c !important;
}
.ms-listing .ms-list-block ul li:hover a {
  color: #fff;
}
.ms-listing .ms-list-block ul li:hover a span {
  color: #fff;
}
.ms-listing .ms-list-block ul li:hover img {
  display: block;
  opacity: 1;
}

.ms-newsletter .ms-newsletter-detail .ms-newsletter-form input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ms-newsletter .ms-newsletter-detail .ms-newsletter-form button:hover .svg_img path {
  fill: #17181c;
}

.ms-ser-inner:hover {
  border: 1px solid transparent;
  border: 1px solid #17181c;
}
.ms-ser-inner:hover .ec-service-image svg {
  stroke-dashoffset: 0;
  -webkit-transition: fill 0.5s, stroke-dashoffset 6s, -webkit-transform 0.3s;
  transition: fill 0.5s, stroke-dashoffset 6s, -webkit-transform 0.3s;
  transition: transform 0.3s, fill 0.5s, stroke-dashoffset 6s;
  transition: transform 0.3s, fill 0.5s, stroke-dashoffset 6s, -webkit-transform 0.3s;
}

.ms-news-section .news-info:hover .news-img img {
  -webkit-transform: rotate(-5deg) scale(1.2);
          transform: rotate(-5deg) scale(1.2);
}

.ms-test-section .ms-test-item .svg_img path {
  fill: #999;
}

/*  Demo 2 Responsive style  */
@media (max-width: 1399px) {
  .ms-animated-banner .ms-bnr-img {
    left: -38%;
  }
}
@media (max-width: 1199px) {
  .ms-animated-banner .ms-bnr-img {
    width: 800px;
    height: 800px;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-1,
  .ms-animated-banner .ms-bnr-detail .fruit-2,
  .ms-animated-banner .ms-bnr-detail .fruit-3 {
    background-size: 70%;
  }
}
@media (max-width: 991px) {
  .ms-product-inner .ms-pro-image .ms-pro-actions {
    opacity: 1;
    right: 10px;
  }
  .ms-product-inner .ms-pro-image .image .label {
    display: none;
  }
  .ms-pro-tab-nav .nav-item:not(:last-child) {
    margin-right: 30px;
  }
  .ms-animated-banner .ms-bnr-img {
    width: 600px;
    height: 600px;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    top: -82px;
    right: 200px;
  }
}
@media (max-width: 767px) {
  .ms-home .ms-category-block-2 {
    grid-template-columns: repeat(auto-fill, calc(33.33% - 10px));
  }
  .ms-animated-banner .ms-bnr-img {
    width: 500px;
    height: 500px;
    left: -45%;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    right: 120px;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-1 {
    top: -81px;
    right: -82px;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-3 {
    bottom: -66px;
    right: 35px;
  }
  .testim-bg {
    background-size: contain;
  }
}
@media (max-width: 575px) {
  .ms-navigation {
    -webkit-transform: none;
            transform: none;
  }
  .ms-tool {
    top: 230px;
  }
  .ms-product-content {
    max-width: 360px;
    margin: auto;
  }
}
@media (max-width: 480px) {
  .ms-animated-banner .ms-bnr-img {
    width: 400px;
    height: 400px;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    top: -95px;
  }
  .ms-mobile-menu,
  .ms-side-wish,
  .ms-side-cart {
    width: 300px;
  }
  .ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content .ms-availability a {
    width: auto;
    max-width: 100px;
  }
  .ms-pro-tab-nav .nav-item .nav-link {
    font-size: 13px;
    line-height: 28px;
  }
  .ms-pro-tab-nav .nav-item:not(:last-child) {
    margin-right: 20px;
  }
}
@media (max-width: 420px) {
  .ms-home .ms-category-block-2 {
    grid-template-columns: repeat(auto-fill, calc(50% - 8px));
  }
  .ms-home .ms-category-block-2 .ms-cat-box.more {
    display: block;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    display: none;
  }
  .ms-offer-section .section-title .dealend-timer {
    max-width: 195px;
  }
}
@media (max-width: 360px) {
  .ms-animated-banner .ms-bnr-img {
    left: -56%;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    display: none;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-3 {
    bottom: -66px;
    right: -35px;
  }
}
/*# sourceMappingURL=demo-2.css.map */