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

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

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

/*===== 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 Popup for home page =====*/
#ms-popnews-box {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
}

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

/*-------------------------------------------------
   Demo 1 Page CSS
---------------------------------------------------*/
/*===== Hero section css =====*/
.ms-hero .ms-main-content {
  grid-template-columns: repeat(auto-fill, calc(33.3333333333% - 16px));
}
.ms-hero .ms-main-content .ms-slider-content {
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row-span: 2;
  grid-row-end: span 2;
}
.ms-hero .ms-main-content .ms-banner-content {
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}
.ms-hero .swiper-buttons {
  display: none;
}
.ms-hero .main-slider-dot .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin: 0 2.5px !important;
  display: inline-block;
  border-radius: 3px;
  opacity: 1;
  border: 1px solid #17181c;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: transparent;
}
.ms-hero .main-slider-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #17181c !important;
  width: 30px;
}
.ms-hero .slider-animation > * {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeOutDown;
          animation-name: fadeOutDown;
}
.ms-hero .swiper-slide-active .slider-animation > * {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}
.ms-hero .swiper-slide-active .slider-animation > *:nth-child(1) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.ms-hero .swiper-slide-active .slider-animation > *:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.ms-hero .swiper-slide-active .slider-animation > *:nth-child(3) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.ms-hero .swiper-slide-active .slider-animation > *:nth-child(4) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.ms-hero .swiper-slide-active .slider-animation > *:nth-child(5) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}
.ms-hero .swiper-slide-active .slider-animation > *:nth-child(6) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

/*===== New Arrivals, Trending Product, Top Selling, Top Rated =====*/
.ms-new-product-block .ms-all-product-inner:hover .add-to-cart {
  opacity: 1;
}
.ms-new-product-block .ms-all-product-inner .veg .dot {
  background-color: #46c389;
}
.ms-new-product-block .ms-all-product-inner .nonveg .dot {
  background-color: #ff9898;
}

/*===== Deal section css =====*/
.ms-deal-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;
}
.ms-deal-section .section-title .dealend-timer .dealend-timer {
  background-color: #f5f4f9;
  border-radius: 3px;
}
.ms-deal-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-deal-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-deal-section .section-title .dealend-timer .time-block .time {
  min-width: 20px;
  position: relative;
}
.ms-deal-section .section-title .dealend-timer .time-block .dots {
  margin-top: -1px;
  margin-left: 5px;
  color: #17181c;
}

/*===== Top vendor section css =====*/
.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));
}

/**===== Start Newsletter Section =====**/
.ms-newsletter .ms-newsletter-detail .ms-newsletter-form input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/**===== Start Service Section =====**/
.ms-ser-inner:hover .ms-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;
}

/*=====  Testimonial Section CSS  =====*/
.testim-bg {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url(../img/banner/4.png);
  background-size: cover;
  background-position: center;
  background-color: #f5f4f9;
  border: 1px solid #eee;
  border-radius: 3px;
}

.ms-test-section .ms-test-inner {
  max-width: 730px;
  margin: 0 auto;
  cursor: pointer;
}
.ms-test-section .ms-test-item {
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}
.ms-test-section .ms-test-item .svg_img path {
  fill: #999;
}
.ms-test-section .ms-test-desc {
  font-size: 15px;
  color: #17181c;
  line-height: 26px;
  letter-spacing: 0;
  margin-bottom: 15px;
}
.ms-test-section .ms-test-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ms-test-section .ms-test-content .ms-test-desc {
  margin-bottom: 15px;
  color: #777;
}
.ms-test-section .ms-test-name {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #3e9172;
  letter-spacing: 0.6px;
  line-height: 1.2;
}
.ms-test-section .ms-test-designation {
  font-size: 16px;
  color: #777;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.ms-test-section .ms-test-rating {
  margin: 0 auto;
}
.ms-test-section .ms-test-rating i {
  font-size: 11px;
  margin: 0 0.5px;
}

#ms-testimonial-slider {
  margin-bottom: -30px;
  text-align: center;
}

.ms-test-outer {
  max-width: 500px;
  margin: auto;
  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;
  position: relative;
}

.ms-test-inner {
  max-width: 700px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ms-test-inner .ms-test-img {
  width: 100px;
  margin: auto auto 30px auto;
  display: block;
}
.ms-test-inner .ms-test-img img {
  border-radius: 3px;
}

.svg_img.test_svg {
  position: absolute;
  width: 45px;
  height: auto;
  fill: #17181c;
}

.svg_img.test_svg.top {
  top: 0px;
  left: 50px;
  right: auto;
}

.svg_img.test_svg.bottom {
  bottom: 0px;
  right: 50px;
  left: auto;
}

/*=====  Instagram Section  =====*/
section.ms-instagram-section {
  padding-left: 45px;
  padding-right: 45px;
  overflow: hidden;
}

.ms-insta-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -12px;
}

.ms-insta-inner a:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #3e9172;
  z-index: 2;
  opacity: 0;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ms-insta-inner a:before {
  font-family: "MsIcons";
  content: "\f16d";
  font-size: 35px;
  top: 0;
  left: 0;
  color: #fff;
  z-index: 3;
  position: absolute;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  line-height: 1;
  height: 100%;
  width: 100%;
  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;
  right: 0;
}
.ms-insta-inner a:hover:after {
  opacity: 0.6;
}
.ms-insta-inner a:hover:before {
  opacity: 1;
  visibility: visible;
}

/*  Demo 1 Responsive style  */
@media (max-width: 1399px) {
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon .svg_img {
    width: 60px;
    height: 60px;
  }
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon .ms-cat-title {
    font-size: 15px;
  }
  .ms-test-section .ms-test-name {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .ms-hero .border-content {
    width: 100%;
    padding: 0 15px;
  }
  .ms-hero .main-bg-black {
    padding: 30px 30px 15px 30px;
    border-right: 1px solid #eee;
    border-bottom: 0;
  }
  .ms-hero .ms-main-content {
    grid-template-columns: repeat(auto-fill, calc(50% - 16px));
  }
  .ms-hero .border-content-color {
    width: 100%;
    padding: 0 15px 80px 15px;
  }
  .ms-hero .ms-category-block {
    padding: 15px 30px 30px 30px;
    border: 1px solid #eee;
    border-top: 0;
  }
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon {
    padding: 30px;
  }
  .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%;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    top: -53px;
    right: 341px;
  }
  .ms-social {
    display: none;
  }
}
@media (max-width: 991px) {
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    top: -82px;
    right: 200px;
  }
  .m-t-991 {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .ms-hero .ms-category-block {
    padding: 0 15px 15px 15px;
    grid-template-columns: repeat(auto-fill, calc(33.33% - 10px));
    grid-row-gap: 15px;
    grid-column-gap: 15px;
  }
  .ms-hero .main-bg-black {
    padding: 15px;
  }
  .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;
  }
  #ms-popnews-box {
    width: 90%;
  }
  #ms-popnews-box img {
    display: none;
  }
  .m-t-767 {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .ms-deal-section .section-title #dealend {
    margin-top: 15px;
  }
  .ms-navigation {
    width: 100%;
    top: auto;
    bottom: 0;
    right: 0;
    -webkit-transform: none;
            transform: none;
  }
  .ms-navigation ul {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 100%;
    background: #17181c !important;
  }
  .ms-navigation ul li {
    margin: 0;
  }
  .ms-navigation ul li a {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .ms-navigation ul li a span {
    margin-top: 5px;
    display: block;
    font-size: 12px;
    font-weight: 400;
  }
  .ms-navigation ul li .noty {
    display: none;
  }
  .ms-hero .ms-hero-slider .ms-slide {
    height: 60vh;
  }
  .ms-hero .ms-hero-slider .ms-slide-content {
    padding: 50px;
  }
  .ms-hero .ms-hero-slider .ms-slide-content .ms-slide-title {
    font-size: 24px;
  }
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon {
    padding: 15px 10px;
  }
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon .svg_img {
    width: 40px;
    height: 40px;
  }
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon .ms-cat-title {
    font-size: 14px;
  }
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon .ms-lbl {
    font-size: 11px;
    top: 0;
    right: 0;
  }
  .ms-hero .border-content-color {
    padding: 0 15px 100px 15px;
  }
  .ms-tool {
    top: 230px;
  }
  .owl-carousel .ms-product-content {
    width: 100%;
    margin: auto;
  }
  section.ms-instagram-section {
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: -15px;
  }
}
@media (max-width: 480px) {
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon .ms-cat-title {
    font-size: 12px;
    text-align: center;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    top: -95px;
  }
  .ms-pro-tab-nav .nav-item .nav-link {
    font-size: 13px;
    line-height: 28px;
  }
}
@media (max-width: 420px) {
  .ms-hero .ms-category-block {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, calc(50% - 8px));
  }
  .ms-hero .ms-category-block .ms-cat-box.more {
    display: block;
  }
  .ms-hero .swiper-pagination {
    display: none;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    display: none;
  }
  .ms-offer-section .section-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ms-offer-section .section-title h2 {
    margin-bottom: 15px;
  }
  .ms-offer-section .section-title .dealend-timer {
    max-width: 195px;
  }
}
@media (max-width: 360px) {
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    display: none;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-3 {
    bottom: -66px;
    right: -35px;
  }
  .svg_img.test_svg.top {
    left: 15px;
  }
  .svg_img.test_svg.bottom {
    right: 15px;
  }
  .svg_img.test_svg {
    width: 35px;
  }
}