/*--------------------------------------------------------------------------------- 
Item Name: Masterkart - Multipurpose eCommerce Tailwind CSS HTML Template.
Author: ashishmaraviya
Version: 1.0
Copyright 2024
-----------------------------------------------------------------------------------

/*---------------------------------------------------------------------------------
    Included CSS INDEX
-----------------------------------------------------------------------------------

01. Typography
02. Components
    - Common
    - Breadcrumb
    - Cart-sidebar
    - Wishlist-sidebar
    - Quickview
    - Category-sidebar

03. Layout 
    - Header Section
    - New product
    - Blog
    - Category Section
    - Discover Section

04. Pages
    - About us Page
    - Contact us Page
    - Cart Page
    - Checkout Page 
    - Compare Page
    - Faq Page
    - Login Page
    - Register Page
    - Track Order Page 
    - Term Page
    - Shop Page    
    - Single Product Page

-----------------------------------------------------------------------------------*/
/*-------------------------------------------------
  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;
}

/*-------------------------------------------------
  Breadcrumb Style CSS
---------------------------------------------------*/
.ms-breadcrumb-list li.active {
  color: #3e9172;
}
.ms-breadcrumb-list .ms-breadcrumb-item.active:before {
  color: #3e9172;
}

.ms-breadcrumb-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ms-breadcrumb-item + .ms-breadcrumb-item {
  padding-left: 7px;
}
.ms-breadcrumb-item + .ms-breadcrumb-item:before {
  display: inline-block;
  padding-right: 7px;
  color: #17181c;
  content: "\f105";
  font-family: "MsIcons";
  font-size: 15px;
}

/*===== 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;
}

/*-------------------------------------------------
  Category sidebar  CSS
---------------------------------------------------*/
.ms-category-sidebar.ms-open-cat {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

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

.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-res {
  display: none;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-block .ms-sb-block-content li .ms-sidebar-block-item:after {
  content: "\f067";
  position: absolute;
  right: 0;
  top: 40%;
  font-family: "MsIcons";
  cursor: pointer;
  font-size: 10px;
  color: #777;
  font-weight: 400;
  margin-left: 7px;
}

/*===== Features sideabr css =====*/
.ms-features-sidebar .ms-tools-sidebar-toggle {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.ms-features-sidebar .ms-tools-sidebar-toggle .svg_img path {
  fill: #fff;
}
.ms-features-sidebar .ms-inner-tools::-webkit-scrollbar {
  width: 12px !important;
  height: 10px !important;
  padding: 8px !important;
}
.ms-features-sidebar .ms-inner-tools::-webkit-scrollbar-track {
  width: 12px !important;
  background-color: #17181c !important;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0) !important;
}
.ms-features-sidebar .ms-inner-tools::-webkit-scrollbar-thumb {
  background-color: #17181c !important;
  border: 3px solid #fff !important;
}
.ms-features-sidebar .ms-inner-tools::-webkit-scrollbar-thumb:hover {
  background-color: #3e9172 !important;
}
.ms-features-sidebar .ms-inner-tools .ms-features-block .ms-tools-content .ms-mode-rtl .active-rtl-mode,
.ms-features-sidebar .ms-inner-tools .ms-features-block .ms-tools-content .ms-mode-rtl .active-bg-panel,
.ms-features-sidebar .ms-inner-tools .ms-features-block .ms-tools-content .bg-panel .active-rtl-mode,
.ms-features-sidebar .ms-inner-tools .ms-features-block .ms-tools-content .bg-panel .active-bg-panel {
  position: relative;
}
.ms-features-sidebar .ms-inner-tools .ms-features-block .ms-tools-content .ms-mode-rtl .active-rtl-mode:after,
.ms-features-sidebar .ms-inner-tools .ms-features-block .ms-tools-content .ms-mode-rtl .active-bg-panel:after,
.ms-features-sidebar .ms-inner-tools .ms-features-block .ms-tools-content .bg-panel .active-rtl-mode:after,
.ms-features-sidebar .ms-inner-tools .ms-features-block .ms-tools-content .bg-panel .active-bg-panel:after {
  width: 20px;
  height: 20px;
  padding: 0;
  font-family: "MsIcons";
  content: "\f00c";
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #3e9172;
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ms-features-sidebar .ms-inner-tools .ms-features-block ul li.active a {
  border: 2px solid white;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
}
.ms-features-sidebar .ms-inner-tools .ms-features-block .ms-change-mode .ms-mode-switch > * {
  width: 45px;
  height: 30px;
  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;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 10px 0;
}
.ms-features-sidebar .ms-inner-tools .ms-features-block .ms-change-mode .ms-mode-on {
  background: #63b760;
  color: #fff;
  display: none;
}
.ms-features-sidebar .ms-inner-tools .ms-features-block .ms-change-mode .ms-mode-off {
  background: #ff7474;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ms-features-sidebar .ms-inner-tools .ms-features-block .ms-change-mode.active .ms-mode-on {
  background: #63b760;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ms-features-sidebar .ms-inner-tools .ms-features-block .ms-change-mode.active .ms-mode-off {
  display: none;
}

/*===== 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;
}

/*-------------------------------------------------
    Site Header Section
---------------------------------------------------*/
.header-top-social ul li:hover i {
  color: #3e9172;
}

.header-top-lan-curr .dropdown .dropdown-toggle {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #fff;
  border: none;
  letter-spacing: 0.7px;
}
.header-top-lan-curr .dropdown .dropdown-toggle i {
  font-size: 14px;
  margin-left: 2px;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header-top-lan-curr .dropdown .dropdown-toggle:after {
  display: none;
}
.header-top-lan-curr .dropdown .dropdown-toggle:hover {
  color: #3e9172;
}
.header-top-lan-curr .dropdown .dropdown-toggle:hover i {
  color: #3e9172;
}
.header-top-lan-curr .dropdown .dropdown-menu {
  margin: 0;
  top: 32px !important;
  left: auto !important;
  right: 0 !important;
  min-width: 130px;
  overflow: hidden;
  padding: 0 10px;
  background: #fff;
  border-radius: 0;
  border: 1px solid #eee;
  -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);
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}
.header-top-lan-curr .dropdown .dropdown-menu li {
  border-bottom: 1px solid #eee;
}
.header-top-lan-curr .dropdown .dropdown-menu li:last-child {
  border: none;
}
.header-top-lan-curr .dropdown .dropdown-menu .dropdown-item {
  padding: 7px;
  color: #17181c;
  font-size: 14px;
  background: transparent;
}
.header-top-lan-curr .dropdown .dropdown-menu .dropdown-item:hover {
  color: #3e9172;
}
.header-top-lan-curr .dropdown .dropdown-menu li.active .dropdown-item {
  color: #3e9172;
}

.header-top-lan-curr.dropdown .dropdown-toggle:after {
  display: none;
}
.header-top-lan-curr.dropdown .dropdown-toggle:hover {
  color: #3e9172;
}
.header-top-lan-curr.dropdown .dropdown-toggle:hover i {
  color: #3e9172;
}
.header-top-lan-curr.dropdown .dropdown-menu {
  -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}
.header-top-lan-curr.dropdown .dropdown-menu li.active .dropdown-item {
  color: #3e9172;
}

.col.ms-header-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 13.8%;
          flex: 0 0 13.8%;
}

.ms-header-wishlist {
  position: relative;
}
.ms-header-wishlist .header_svg {
  width: 27px;
  height: 27px;
}

.ms-header-bottons .ms-acc-drop:hover .ms-dropdown-menu {
  margin-top: 15px;
  opacity: 1;
  visibility: visible;
}
.ms-header-bottons .ms-acc-drop .ms-dropdown-menu {
  -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
}
.ms-header-bottons .ms-header-btn .header-icon .main-label-note-new {
  -webkit-animation: wave-animate 1s 1.5s infinite ease-out;
          animation: wave-animate 1s 1.5s infinite ease-out;
}
@-webkit-keyframes wave-animate {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 1;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
@keyframes wave-animate {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 1;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
.ms-header-bottons .ms-header-btn:hover {
  color: #3e9172;
}
.ms-header-bottons .ms-header-btn:hover .ms-header-count {
  color: #f5f4f9;
}
.ms-header-bottons .ms-header-btn:hover .ms-btn-title {
  color: #3e9172;
}
.ms-header-bottons .ms-header-btn:hover .header_svg {
  fill: #3e9172;
}
.ms-header-bottons .ms-header-btn i {
  font-size: 21px;
  line-height: 1;
}
.ms-header-bottons .ms-header-btn.ms-side-toggle {
  padding-right: 0;
}
.ms-header-bottons .ms-header-btn.dropdown-toggle:after {
  display: none;
}

.ms-main-menu ul li:hover > a {
  color: #3e9172;
}
.ms-main-menu ul li:hover > a .svg_img path {
  fill: #3e9172;
}
.ms-main-menu ul li:hover > a:after {
  color: #3e9172;
}
.ms-main-menu ul li .mega-menu {
  -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
}
.ms-main-menu ul li .mega-menu li ul li.menu_title a:hover {
  color: #3e9172;
}
.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.dropdown ul.sub-menu {
  -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
}
.ms-main-menu ul li.dropdown ul li.active a {
  color: #3e9172;
}
.ms-main-menu ul li.dropdown ul li.active a i {
  color: #3e9172;
}
.ms-main-menu ul li.dropdown ul li:hover > a {
  color: #3e9172;
}
.ms-main-menu ul li.dropdown ul li:hover > a i {
  color: #3e9172;
}
.ms-main-menu ul li.dropdown ul li a:hover {
  color: #3e9172;
}
.ms-main-menu ul li.dropdown ul li a:hover i {
  color: #3e9172;
}
.ms-main-menu ul li.dropdown ul li a i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #777;
}
.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: -5px 0 0 1px;
  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: 30px 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.active > a {
  color: #3e9172;
}
.ms-main-menu > ul > li:hover > a {
  opacity: 0.8;
}
.ms-main-menu > ul > li:hover > a:before {
  background: #3e9172;
  width: 100%;
}
.ms-main-menu > ul > li:hover > a i {
  color: #3e9172;
}
.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.active > a:before {
  background: #3e9172;
  width: 100%;
}

.col.ms-category-icon-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5%;
          flex: 0 0 5%;
}

.ms-location-block .ms-location-menu .ms-location-toggle .svg_loc path {
  stroke: #777;
  fill: #777;
}
.ms-location-block .ms-location-menu .ms-location-toggle i.eci-angle-down {
  font-size: 24 px;
}
.ms-location-block .ms-location-dropdown {
  background: #ffffff none repeat scroll 0 0;
  -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
}
.ms-location-block .ms-location-dropdown::-webkit-scrollbar {
  width: 12px !important;
  height: 10px !important;
  padding: 8px !important;
}
.ms-location-block .ms-location-dropdown::-webkit-scrollbar-track {
  width: 12px !important;
  background-color: #17181c !important;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0) !important;
}
.ms-location-block .ms-location-dropdown::-webkit-scrollbar-thumb {
  background-color: #17181c !important;
  border: 3px solid #fff !important;
}
.ms-location-block .ms-location-dropdown::-webkit-scrollbar-thumb:hover {
  background-color: #3e9172 !important;
}
.ms-location-block .ms-location-dropdown .loc-grid .loc-list:hover {
  color: #3e9172;
  border: 1px solid #3e9172;
}
.ms-location-block .ms-location-dropdown .loc-grid .loc-list:hover .svg_loc path {
  stroke: #3e9172;
  fill: #3e9172;
}
.ms-location-block .ms-location-dropdown .loc-grid .current {
  color: #3e9172;
  border: 1px solid #3e9172;
}
.ms-location-block .ms-location-dropdown .loc-grid .current .svg_loc path {
  stroke: #3e9172;
  fill: #3e9172;
}
.ms-location-block .ms-location-dropdown li.show a {
  text-align: center;
}
.ms-location-block .ms-location-dropdown li.show a:hover {
  color: #777;
}
.ms-location-block .ms-location-dropdown li.show a:hover img {
  margin-left: 10px;
}
.ms-location-block .ms-location-dropdown li.show a img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 13px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.header-search .bs-searchbox {
  margin: 4px 8px;
  padding: 0;
  border: 1px solid #eee;
  border-radius: 3px;
}
.header-search input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.header-search .dropdown-menu {
  border-radius: 3px;
}

.action-form {
  position: relative;
}

.search_submit:hover .search_svg {
  fill: #60bb99;
}

.ms-search-select-inner select {
  cursor: pointer;
  padding: 0 10px;
  color: #777;
  letter-spacing: 0.8px;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(../img/common/arrow-dropdown.png) 90%/10% no-repeat;
}
.ms-search-select-inner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  height: 40px;
  border-right: 1px solid #eee;
}

body.ms-menu-open {
  overflow: hidden;
}
body.ms-menu-open:before {
  height: 100%;
  width: 100%;
  background: #000000;
  opacity: 0.7;
  position: absolute;
  z-index: 998;
  content: "";
}

.ms-search-select-inner .custom-select {
  padding: 12px;
  width: 200px;
}

.col.ms-location-block {
  min-width: 200px;
}

.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-menu-content > ul > li .menu-toggle:before {
  width: 100%;
  content: "\f067";
  font-family: "MsIcons";
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  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: #777;
  font-size: 12px;
}
.ms-menu-content > ul > li.active > .menu-toggle:before {
  content: "\f068";
}
.ms-menu-content > ul > li.active > ul > li.active > .menu-toggle:before {
  content: "\f068";
}

/*===== Mobile menus =====*/
.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 {
  width: 100%;
  height: 44px;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  color: #444444;
  font-size: 12px;
}

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

/* Responsive Header */
@media (max-width: 1399px) {
  .ms-search-select-inner .custom-select {
    width: 150px;
  }
  .ms-search-select-inner .dropdown-menu {
    min-width: 200px;
  }
}
@media (max-width: 991px) {
  .ms-header-bottom .ms-site-menu-icon .svg_img path {
    fill: #777;
  }
}
/*-------------------------------------------------
    Site Footer Section
---------------------------------------------------*/
.ms-footer .footer-top .ms-footer-widget .ms-footer-heading:before {
  content: "";
  position: absolute;
  top: auto;
  right: 0;
  left: 0;
  height: 2px;
  border-bottom: 2px solid #3e9172;
  bottom: 0;
  width: 30px;
}
.ms-footer .footer-top .ms-footer-widget .s-head {
  display: none;
}

.ms-heading-res {
  display: none;
}

@media only screen and (min-width: 992px) {
  .ms-footer .footer-top .ms-footer-widget .ms-footer-dropdown {
    display: block !important;
  }
}
@media (max-width: 991px) {
  .ms-footer .footer-top .col-sm-12.col-lg-3 {
    width: 100%;
    margin-bottom: 0;
  }
  .ms-heading-res {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: block;
    text-align: right;
    padding-right: 10px;
  }
  .ms-footer .footer-top .ms-footer-widget .s-head {
    display: block;
  }
}
/**===== Blog =====**/
.ms-blog .news-info:hover .news-img img, .ms-news-section .news-info:hover .news-img img {
  -webkit-transform: rotate(-3deg) scale(1.1);
          transform: rotate(-3deg) scale(1.1);
}

.ms-blogs-sidebar .ms-sidebar-block .ms-sidebar-block-item input:checked ~ .checked::after {
  display: block;
}
.ms-blogs-sidebar .ms-sidebar-block .ms-sidebar-block-item .checked:after {
  left: -1px;
  top: -1px;
  width: 18px;
  height: 18px;
  border: 1px solid #3e9172;
  content: "\f00c";
  position: absolute;
  display: none;
  background: #3e9172;
  font-family: "Msicons";
  font-size: 10px;
  color: #fff;
  line-height: 16px;
  text-align: center;
}

/*===== Category section css =====*/
.ms-category .ms-category-block .ms-cat-box .ms-cat-icon:hover .svg_img {
  -webkit-animation: catshake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: catshake 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 catshake {
  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 catshake {
  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);
  }
}

/*-------------------------------------------------
   About Page CSS
---------------------------------------------------*/
.ms-test-section .ms-test-item .svg_img path {
  fill: #999;
}

.ms-team-section .ms-team-box:hover .ms-team-imag .ms-team-socials {
  bottom: 15px;
  opacity: 1;
}

/** Start Contact Section **/
.ms-contact form .form-group input:focus, .ms-contact form .form-group textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ms-contact form .form-group input::-webkit-input-placeholder, .ms-contact form .form-group textarea::-webkit-input-placeholder {
  color: #999;
}
.ms-contact form .form-group input::-moz-placeholder, .ms-contact form .form-group textarea::-moz-placeholder {
  color: #999;
}
.ms-contact form .form-group input:-ms-input-placeholder, .ms-contact form .form-group textarea:-ms-input-placeholder {
  color: #999;
}
.ms-contact form .form-group input::-ms-input-placeholder, .ms-contact form .form-group textarea::-ms-input-placeholder {
  color: #999;
}
.ms-contact form .form-group input::placeholder, .ms-contact form .form-group textarea::placeholder {
  color: #999;
}

/*-------------------------------------------------
  Cart Page CSS
---------------------------------------------------*/
.ms-cart-section .ms-sidebar-wrap .ms-ship-title:after {
  content: "\f107";
  position: relative;
  font-family: "MsIcons";
  font-size: 18px;
  color: #777;
  font-weight: 400;
}

.ms-cart-content .table-content table tbody > tr td .cart-qty-plus-minus input {
  background: transparent none repeat scroll 0 0;
  border: medium none;
}
.ms-cart-content .table-content table tbody > tr td .cart-qty-plus-minus .ms_cart_qtybtn {
  color: #17181c;
  float: left;
  font-size: 20px;
  height: auto;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ms-cart-content .table-content table tbody > tr td .cart-qty-plus-minus .ms_qtybtn {
  width: 100%;
  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;
  cursor: pointer;
  font-size: 0;
  color: #17181c;
  height: 19px;
  position: relative;
}
.ms-cart-content .table-content table tbody > tr td .cart-qty-plus-minus .ms_qtybtn:before {
  width: 100%;
  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;
  cursor: pointer;
  font-size: 20px;
  color: #17181c;
  height: 19px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  font-family: "MsIcons";
  overflow: hidden;
  font-size: 15px;
}
.ms-cart-content .table-content table tbody > tr td .cart-qty-plus-minus .dec.ms_qtybtn:before {
  padding-bottom: 4px;
  content: "\f107";
  color: #999;
}
.ms-cart-content .table-content table tbody > tr td .cart-qty-plus-minus .inc.ms_qtybtn:before {
  padding-top: 4px;
  content: "\f106";
  color: #999;
}
.ms-cart-content .table-content table tbody > tr td.ms-cart-pro-qty .qty-plus-minus {
  display: inline-block;
  height: 40px;
  padding: 0;
  position: relative;
  width: 110px;
}
.ms-cart-content .table-content table tbody > tr td.ms-cart-pro-remove a:hover i {
  color: #ff9d9d;
}
.ms-cart-content .ms-cart-update-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0 0;
}

.ms-cart-update-bottom > a {
  color: #17181c;
  display: inline-block;
  text-decoration: underline;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.8px;
}
.ms-cart-update-bottom .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 150px;
}

.ms-cart-form .ms-cart-select-inner .custom-select {
  padding: 14px 10px;
}
.ms-cart-form .ms-cart-select-inner .custom-select:after {
  border: 0;
  content: "\f107";
  font-family: "MsIcons";
}

/*-------------------------------------------------
  Checkout Page CSS
---------------------------------------------------*/
.ms-checkout-section {
  font-size: 14px;
}
.ms-checkout-section [type=radio]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #ffffff;
  border: 1px solid #3e9172;
}
.ms-checkout-section [type=radio]:checked + label:after {
  content: "";
  width: 8px;
  height: 8px;
  background: #3e9172;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.ms-checkout-section [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #ffffff;
}
.ms-checkout-section [type=radio]:not(:checked) + label:after {
  content: "";
  width: 8px;
  height: 8px;
  background: #3e9172;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.ms-sidebar-wrap .ms-sb-title h3 .ms-sidebar-res {
  position: absolute;
  right: 0;
  top: 0;
}

.ms-checkout-wrap .ms-check-bill-form .ms-bill-fp label {
  margin-bottom: 0;
}
.ms-checkout-wrap .ms-check-bill-form .ms-bill-fp label a {
  color: #17181c;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
}
.ms-checkout-wrap .ms-check-bill-form .ms-bl-select-inner .custom-select {
  padding: 14px 10px;
}
.ms-checkout-wrap .ms-check-bill-form .ms-bl-select-inner .custom-select:after {
  border: 0;
  content: "\f107";
  font-family: "MsIcons";
}

.ms-sidebar-wrap .ms-sidebar-block .ms-sb-block-content .ms-checkout-pro li {
  padding: 1px;
}
.ms-sidebar-wrap .ms-sidebar-block .ms-sb-block-content .ms-checkout-pro li a {
  margin: 0 auto;
  display: block;
  color: #777;
  font-size: 12px;
  margin-top: 0;
  line-height: 18px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 0;
  cursor: pointer;
}
.ms-sidebar-wrap .ms-sidebar-block .ms-sb-block-content .ms-checkout-pro .ms-pro-size li a {
  pointer-events: none;
  width: 18px;
  height: 18px;
  cursor: pointer;
  background-color: #eee;
  color: #777;
  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;
  font-size: 12px;
  line-height: 18px;
  padding-top: 2px;
}
.ms-sidebar-wrap .ms-sidebar-block .ms-sb-block-content .ms-checkout-pro .ms-pro-size li.active a {
  background-color: #17181c;
  color: #fff;
}

.ms-sidebar-wrap.ms-checkout-pay-wrap .ms-pay-agree input:checked ~ .checked::after {
  display: block;
}
.ms-sidebar-wrap.ms-checkout-pay-wrap .ms-pay-agree .checked:after {
  left: -1px;
  top: -1px;
  width: 15px;
  height: 15px;
  border: 1px solid #3e9172;
  content: "\f00c";
  position: relative;
  display: none;
  font-family: "MsIcons";
  font-size: 9px;
  color: #3e9172;
  line-height: 14px;
  text-align: center;
  border-radius: 4px;
}

/*-------------------------------------------------
   Compare Page CSS
---------------------------------------------------*/
.ms-compare-box::-webkit-scrollbar {
  width: 12px !important;
  height: 10px !important;
  padding: 8px !important;
}
.ms-compare-box::-webkit-scrollbar-track {
  width: 12px !important;
  background-color: #17181c !important;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0) !important;
}
.ms-compare-box::-webkit-scrollbar-thumb {
  background-color: #17181c !important;
  border: 3px solid #fff !important;
}
.ms-compare-box::-webkit-scrollbar-thumb:hover {
  background-color: #3e9172 !important;
}
.ms-compare-box .ms-compare-col:hover .ms-action {
  opacity: 1;
}
.ms-compare-box .ms-compare-col .remove-compare-product .svg_img:hover path {
  fill: #17181c;
}
.ms-compare-box .ms-compare-col .remove-compare-product .svg_img path {
  fill: #777;
}
.ms-compare-box .ms-compare-col .ms-action ul li a .svg_img path {
  fill: #fff;
}

/*-------------------------------------------------
   Faq Page CSS
---------------------------------------------------*/
.ms-accordion.style-1 .ms-accordion-item .ms-accordion-header:after {
  content: "\f107";
  width: 15px;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "MsIcons";
  cursor: pointer;
  font-size: 24px;
  color: #17181c;
  font-weight: 400;
  position: absolute;
  top: 20px;
  right: 15px;
}
.ms-accordion.style-1 .ms-accordion-body.show {
  display: block;
}

/*-------------------------------------------------
  Register Page CSS
---------------------------------------------------*/
.ms-register-wrapper .ms-register-container .ms-register-form input::-webkit-input-placeholder {
  color: #777 !important;
}
.ms-register-wrapper .ms-register-container .ms-register-form input::-moz-placeholder {
  color: #777 !important;
}
.ms-register-wrapper .ms-register-container .ms-register-form input:-ms-input-placeholder {
  color: #777 !important;
}
.ms-register-wrapper .ms-register-container .ms-register-form input::-ms-input-placeholder {
  color: #777 !important;
}
.ms-register-wrapper .ms-register-container .ms-register-form input::placeholder {
  color: #777 !important;
}
.ms-register-wrapper .ms-register-container .ms-register-form .ms-rg-select-inner {
  height: 50px;
  padding: 0;
  margin-bottom: 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 3px;
  border: 1px solid #eee;
  font-size: 14px;
}
.ms-register-wrapper .ms-register-container .ms-register-form .ms-rg-select-inner .custom-select {
  padding: 14px 10px;
}
.ms-register-wrapper .ms-register-container .ms-register-form .ms-rg-select-inner .custom-select:after {
  display: none;
}
.ms-register-wrapper .ms-register-container .ms-register-form .ms-rg-select-inner:after {
  content: "\f107";
  position: absolute;
  font-family: "MsIcons";
  top: 0;
  right: 0;
  padding: 0 10px;
  cursor: pointer;
  pointer-events: none;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #777;
}

/*-------------------------------------------------
  Track Order Page CSS
---------------------------------------------------*/
.ms-track .ms-step-active {
  color: #17181c;
  pointer-events: none;
  cursor: default;
}
.ms-track .ms-step-active:hover {
  color: #17181c;
  pointer-events: none;
  cursor: default;
}
.ms-track .ms-step-active:hover .ms-step-icon {
  color: #3e9172;
}
.ms-track .ms-step-active .ms-step-icon {
  color: #3e9172;
}

.ms-step-indicator i {
  line-height: 23px;
}

/*-------------------------------------------------
   Shop Page CSS
---------------------------------------------------*/
.width-100 {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  width: 100% !important;
}

.width-50 {
  -webkit-box-flex: 0 !important;
  -ms-flex: 0 0 auto !important;
  flex: 0 0 auto !important;
  width: 50% !important;
}

.list-view,
.list-view-50 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.list-view .ms-product-inner,
.list-view-50 .ms-product-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.list-view .ms-product-inner .ms-pro-image-outer,
.list-view-50 .ms-product-inner .ms-pro-image-outer {
  max-width: 270px;
}
.list-view .ms-product-inner .ms-pro-content,
.list-view-50 .ms-product-inner .ms-pro-content {
  border-left: 1px solid #eee;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-view .ms-product-inner .ms-pro-content .ms-pro-title a,
.list-view-50 .ms-product-inner .ms-pro-content .ms-pro-title a {
  font-size: 16px;
  color: #17181c;
  font-weight: 20px;
}
.list-view .ms-product-inner .ms-pro-content .ms-info,
.list-view-50 .ms-product-inner .ms-pro-content .ms-info {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 5px 0;
  padding: 0 20px;
  font-size: 13px;
  color: #777;
  display: block;
}

.ms-shop .ms-product-content {
  padding-top: 0;
  padding-bottom: 0;
}
.ms-shop .shop-pro-content .ms-product-inner {
  margin-bottom: 24px !important;
}
.ms-shop .ms-pro-list-top .ms-gl-btn .grid-btn .svg_img path {
  fill: #777;
}
.ms-shop .ms-pro-list-top .grid-btn.active {
  background: #3e9172;
  border: 1px solid #3e9172;
  border-radius: 3px;
}
.ms-shop .ms-pro-list-top .grid-btn.active .svg_img path {
  fill: #fff;
}
.ms-shop .ms-pro-list-top .ms-sort-select .sort-by {
  font-size: 14px;
  color: #777;
  padding-right: 22px;
}
.ms-shop .ms-pro-list-top .ms-sort-select .ms-select-inner:after {
  padding: 0 10px;
  content: "\f107";
  position: absolute;
  font-family: "Msicons";
  top: 50%;
  right: 0;
  cursor: pointer;
  pointer-events: none;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #777;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ms-shop .ms-pro-list-top .ms-sort-select .ms-select-inner .custom-select {
  padding: 14px 10px;
}
.ms-shop .ms-pro-list-top .ms-sort-select .ms-select-inner .custom-select:after {
  display: none;
}

/**  Shop Sidebar  **/
.ms-shop-sidebar .ms-blog-sidebar-wrap {
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 3px;
}
.ms-shop-sidebar .ms-blog-search {
  height: 50px;
  width: 100%;
  margin-bottom: 30px;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  border: 1px solid #eee;
  color: #17181c;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.ms-shop-sidebar .ms-blog-search .ms-blog-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}
.ms-shop-sidebar .ms-blog-search .form-control {
  display: block;
  width: 100%;
  min-height: 48px;
  height: 48px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #777;
  background-color: transparent;
  border: none;
  letter-spacing: 0;
}
.ms-shop-sidebar .ms-blog-search .submit {
  position: relative;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  color: #17181c;
}
.ms-shop-sidebar .ms-sidebar-block .ms-sidebar-block-item input:checked ~ .checked::after {
  display: block;
}
.ms-shop-sidebar .ms-sidebar-block .ms-sidebar-block-item .checked:after {
  left: -1px;
  top: -1px;
  width: 18px;
  height: 18px;
  border: 1px solid #3e9172;
  content: "\f00c";
  position: absolute;
  display: none;
  background: #3e9172;
  font-family: "Msicons";
  font-size: 10px;
  color: #fff;
  line-height: 16px;
  text-align: center;
}
.ms-shop-sidebar .ms-sidebar-block .ms-sidebar-block-item .ms-sidebar-block-img {
  margin-right: 15px;
}
.ms-shop-sidebar .ms-sidebar-block .ms-sidebar-block-item .ms-sidebar-block-img img {
  width: 100px;
  border-radius: 3px;
}
.ms-shop-sidebar .ms-sidebar-block .ms-sidebar-block-item .ms-sidebar-block-detial .ms-blog-title a {
  color: #777;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
  font-weight: 600;
}
.ms-shop-sidebar .ms-sidebar-block .ms-sidebar-block-item .ms-sidebar-block-detial .ms-blog-date {
  margin-bottom: 5px;
  font-size: 14px;
  color: #999;
  line-height: 1;
  letter-spacing: 0;
}
.ms-shop-sidebar .ms-sidebar-block .ms-sidebar-block-item .ms-sidebar-block-detial a {
  font-size: 14px;
  color: #3e9172;
}
.ms-shop-sidebar .ms-sidebar-block.color-block .ms-sidebar-block-item .checked:after {
  left: 1px;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid transparent;
  content: "\f00c";
  position: absolute;
  display: none;
  background: transparent;
  font-family: "Msicons";
  font-size: 12px;
  color: #fff;
  line-height: 16px;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* Toggle filter sidebar */
.filter-sidebar-overlay {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 16;
  display: none;
}

.ms-filter-sidebar {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 300px;
  height: 100vh;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 16;
  background-color: #ffffff;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  overflow: auto;
}
.ms-filter-sidebar::-webkit-scrollbar {
  width: 12px !important;
  height: 10px !important;
  padding: 8px !important;
}
.ms-filter-sidebar::-webkit-scrollbar-track {
  width: 12px !important;
  background-color: #17181c !important;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0) !important;
}
.ms-filter-sidebar::-webkit-scrollbar-thumb {
  background-color: #17181c !important;
  border: 3px solid #fff !important;
}
.ms-filter-sidebar::-webkit-scrollbar-thumb:hover {
  background-color: #3e9172 !important;
}
.ms-filter-sidebar .sidebar-filter-title {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #f5f4f9;
}
.ms-filter-sidebar .sidebar-filter-title h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
.ms-filter-sidebar .sidebar-filter-title .filter-close {
  margin-left: 15px;
  color: #ff8585;
  font-size: 24px;
  line-height: 1;
}
.ms-filter-sidebar .ms-sidebar-wrap {
  border: 0;
}
.ms-filter-sidebar .ms-sb-title h3 {
  font-size: 18px;
}

.filter-sidebar-open {
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
}

/* Price slider block */
.ms-price-range-slider .noUi-target {
  cursor: pointer;
}
.ms-price-range-slider .noUi-target:focus {
  outline: none;
}
.ms-price-range-slider .noUi-horizontal {
  height: 4px;
  margin-bottom: 5px;
}
.ms-price-range-slider .noUi-horizontal .noUi-handle {
  top: -6px;
  right: -15px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 2px solid #3e9172;
  border-radius: 50%;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
}
.ms-price-range-slider .noUi-horizontal .noUi-handle:hover {
  background: #3e9172;
}
.ms-price-range-slider .noUi-connect {
  background: #777;
}
.ms-price-range-slider .noUi-base {
  background: #f5f4f9;
}
.ms-price-range-slider .noUi-handle.noUi-handle-upper {
  right: -2px;
}

/*-------------------------------------------------
  Single product Page CSS
---------------------------------------------------*/
ul#singleprotab li.active a {
  background-color: #3e9172;
  border-color: #3e9172;
  color: #fff;
}

.ms-single-product {
  margin-bottom: 0;
}
.ms-single-product .single-pro-img .ms-360-lbl {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  height: 40px;
  width: 40px;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  display: -ms-grid;
  display: grid;
  opacity: 0.7;
}
.ms-single-product .single-pro-img .ms-360-lbl:hover {
  opacity: 1;
}
.ms-single-product .single-pro-img .ms-video-icon {
  position: absolute;
  display: -ms-grid;
  display: grid;
  top: 15px;
  right: 15px;
  height: 40px;
  width: 40px;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  cursor: pointer;
  z-index: 1;
  opacity: 0.7;
}
.ms-single-product .single-pro-img .ms-video-icon:hover {
  opacity: 1;
}
.ms-single-product .space-6 > div {
  margin-top: 30px;
}
.ms-single-product .space-6 > div:nth-child(-n+2) {
  margin-top: 0;
}
.ms-single-product .single-nav-thumb .slick-list {
  margin: 0 -8px;
}
.ms-single-product .single-nav-thumb .single-slide {
  display: block !important;
}
.ms-single-product .single-nav-thumb .slick-slide:hover img {
  border-color: #3e9172;
}
.ms-single-product .single-nav-thumb .slick-slide.slick-current.slick-active img {
  border-color: #3e9172;
}
.ms-single-product .single-nav-thumb .slick-arrow {
  top: 42%;
}
.ms-single-product .single-nav-thumb .slick-arrow.slick-prev {
  left: 0;
  right: auto;
}
.ms-single-product .single-nav-thumb .slick-arrow {
  position: absolute;
  top: 55%;
  left: auto;
  right: auto;
  margin: 0 auto;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ms-single-product .single-nav-thumb .slick-arrow:before {
  content: "";
  color: #777;
  position: relative;
  font-size: 30px;
  font-family: "EcIcons";
  width: 100%;
  line-height: 30px;
  height: 30px;
}
.ms-single-product .single-nav-thumb .slick-arrow.slick-prev:before {
  content: "\f104";
  font-family: "MsIcons";
}
.ms-single-product .single-nav-thumb .slick-arrow.slick-next {
  right: 0;
  left: auto;
}
.ms-single-product .single-nav-thumb .slick-arrow.slick-next:before {
  content: "\f105";
  font-family: "MsIcons";
}
.ms-single-product .single-pro-content .ms-pro-variation .ms-pro-variation-inner.ms-pro-variation-color .ms-pro-variation-content .active {
  border: 1px solid #17181c;
}
.ms-single-product .single-pro-content .ms-single-qty .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: 22px;
  color: #17181c;
}
.ms-single-product .single-pro-content .ms-single-qty .qty-plus-minus input.qty-input {
  background: transparent none repeat scroll 0 0;
  border: medium none;
}
.ms-single-product .single-pro-content .ms-single-qty .qty-plus-minus .dec.ms_qtybtn {
  border-right: 1px solid #eee;
}
.ms-single-product .single-pro-content .ms-single-qty .qty-plus-minus .inc.ms_qtybtn {
  border-left: 1px solid #eee;
}
.ms-single-product .single-pro-content .ms-single-qty .ms-btn-group:hover .svg_img.pro_svg path {
  fill: #fff !important;
}
.ms-single-product .single-add-more .add-more-item .add-more-img img {
  width: 75px;
}
.ms-single-product .single-add-more .add-more-item:hover a {
  opacity: 1;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input input::-webkit-input-placeholder, .ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input input::-moz-placeholder, .ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input input:-ms-input-placeholder, .ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input textarea:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input input::-ms-input-placeholder, .ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input textarea::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input input::placeholder,
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input textarea::placeholder {
  color: #999;
  opacity: 1;
}