/*-------------------------------------------------
  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;
}
/*===== Commen css =====*/
body {
  width: 100%;
  height: 100%;
  position: relative;
  font-family: "Poppins, sans-serif";
  font-weight: 400;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

h1 {
  font-family: "Quicksand";
  font-weight: 700;
  letter-spacing: 0.01rem;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "Quicksand";
  font-weight: 400;
  letter-spacing: 0.01rem;
}

p,
li,
span {
  letter-spacing: 0.02rem;
}

p {
  font-size: 15px;
  line-height: 28px;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.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;
}

@-webkit-keyframes ms-flash {
  0% {
    -webkit-transform: translateX(-100%) rotate(45deg);
            transform: translateX(-100%) rotate(45deg);
  }
  100% {
    -webkit-transform: translateX(100%) rotate(45deg);
            transform: translateX(100%) rotate(45deg);
  }
}
/* Spaccing */
.m-r-5px {
  margin-right: 5px;
}

.m-r-30 {
  margin-right: 30px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-t-60 {
  margin-top: 60px;
}

.m-t-80 {
  margin-top: 80px;
}

.m-b-30 {
  margin-bottom: 30px;
}

.padding-tb-80 {
  padding: 80px 0;
}

.padding-tb-30 {
  padding: 30px 0;
}

.padding-tb-60 {
  padding: 60px 0;
}

.padding-t-30 {
  padding-top: 30px;
}

.padding-b-30 {
  padding-bottom: 30px;
}

.p-t-15 {
  padding-top: 15px;
}

.p-t-60 {
  padding-top: 60px;
}

.p-t-80 {
  padding-top: 80px;
}

.p-tb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.p-tb-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.m-tb-30 {
  margin: 30px 0;
}

.m-b-30 {
  margin-bottom: 30px;
}

.m-t-30 {
  margin-top: 30px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.m-b-minus-24px {
  margin-bottom: -24px;
}

.m-tb-minus-12 {
  margin-top: -12px;
  margin-bottom: -12px;
}

.m-minus-15 {
  margin: -15px;
}

.m-minus-12 {
  margin: -12px;
}

.p-tp-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.m-tp-12 {
  margin-top: 12px;
  margin-bottom: 12px;
}

/* Buttons */
button {
  background: transparent;
  border: 0;
}

.custom-btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 130px;
  height: 40px;
  color: #fff;
  padding: 10px 15px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border-radius: 3px;
}

.ms-btn,
.ms-btn-1 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: none;
  color: #fff;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #17181c;
  border: 1px solid #17181c;
  position: relative;
  border-radius: 3px;
}

.btn-disabled {
  pointer-events: none;
  background-color: #555 !important;
}

.ms-btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #17181c;
  color: #fff;
}
.ms-btn:hover {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.ms-btn-1 {
  padding: 5px 10px;
}
.ms-btn-1:hover {
  background-color: #17181c;
  color: #fff;
}

.ms-btn-2 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 500;
  background-color: #17181c;
  color: #fff;
  text-align: center;
  border-radius: 3px;
}
.ms-btn-2:hover {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.ms-btn-3 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  font-weight: 600;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
}
.ms-btn-3:hover {
  background-color: #fff;
  color: #777;
  border: 1px solid #fff;
}

.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-box {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  padding: 30px;
  border-radius: 0px;
  background: #fff;
}

.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);
}

@-webkit-keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.img-responsive {
  max-width: 100%;
  display: block;
}

input {
  height: 50px;
  outline: none;
}

.border-r {
  border-right: 10px dashed #fff;
}

.main-bg {
  height: 100%;
  background: #3e9172;
}

.ms-row {
    width: 100%;
    /*height: 100%;*/
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.section-bg {
  background-color: #fff;
}

.section-title {
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 5;
}
.section-title h2 {
  margin-bottom: 0;
  font-size: 26px;
  line-height: 38px;
  font-weight: 500;
  color: #17181c;
  position: relative;
  display: inline;
  padding: 0;
  text-transform: capitalize;
  line-height: 1;
  font-family: "Poppins, sans-serif";
}
.section-title h2 span {
  color: #3e9172;
}
.section-title .title-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-title .title-link a {
  color: #777;
}
.section-title .title-link a i {
  margin-left: 10px;
  color: #777;
}
.section-title .title-link a:hover {
  color: #3e9172;
}
.section-title .title-link a:hover i {
  color: #3e9172;
}

.section-title-2 {
  padding-bottom: 15px;
  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;
  z-index: 5;
}
.section-title-2 h2 {
  margin-bottom: 0;
  font-family: "Poppins, sans-serif";
  font-size: 26px;
  line-height: 38px;
  font-weight: 500;
  color: #17181c;
  position: relative;
  display: inline;
  padding: 0;
  text-transform: capitalize;
  line-height: 1;
}
.section-title-2 h2 span {
  color: #3e9172;
}
.section-title-2 p {
  max-width: 400px;
  margin: 15px 0 0 0;
  font-size: 14px;
  color: #777;
  text-align: center;
  line-height: 23px;
}

.section-title-3 {
  padding-bottom: 15px;
  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;
  z-index: 5;
}
.section-title-3 h2 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 38px;
  font-weight: 700;
  color: #17181c;
  position: relative;
  display: inline;
  padding: 0;
  text-transform: capitalize;
  line-height: 1;
}
.section-title-3 h2 span {
  color: #3e9172;
}
.section-title-3 p {
  max-width: 400px;
  margin: 15px 0 0 0;
  font-size: 14px;
  color: #777;
  text-align: center;
  line-height: 23px;
}

section {
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.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%);
}

#ms-overlay {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  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;
}
#ms-overlay .loader {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
#ms-overlay .loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
#ms-overlay .loader {
  margin: 45px auto;
  font-size: 6px;
  position: relative;
  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);
  }
}

.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%;
  }
}
.msicon {
  color: #bbb;
}

i.msicon.msi-star.fill {
  color: #f27d0c;
}

.modal-dialog {
  height: 100%;
  margin: 0% auto;
  max-width: 960px;
  width: 960px;
  padding: 35px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.ms-wish-notify,
.ms-compare-notify {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 99;
}
.ms-wish-notify p,
.ms-compare-notify p {
  padding: 15px 20px;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  color: #fff;
  display: block;
}
.ms-wish-notify a,
.ms-compare-notify a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ms-wish-notify a:hover,
.ms-compare-notify a:hover {
  color: #3e9172;
}

.ms-cart-notify {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 20;
  display: none;
}
.ms-cart-notify a {
  width: 70px;
  height: 70px;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-radius: 3px;
}
.ms-cart-notify a .svg_img path {
  fill: #fff;
}
.ms-cart-notify a span {
  width: 20px;
  height: 20px;
  background-color: #fff;
  color: #17181c;
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 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;
}

.ms-sample {
  width: 100%;
  height: 50vh;
  padding: 15px;
  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;
}
.ms-sample h3 {
  font-weight: 600;
  color: #999;
  text-align: center;
}

.ms-sidebar-res {
  cursor: pointer;
}

/**  Pagination  **/
.ms-pro-pagination {
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #eee;
}
.ms-pro-pagination span {
  font-size: 14px;
  color: #777;
}
.ms-pro-pagination ul li {
  display: inline-block;
  float: left;
  margin-left: 1px;
}
.ms-pro-pagination ul li a {
  font-weight: 300;
  color: #777;
  padding: 0;
  height: 32px;
  line-height: 32px;
  background: #fff;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  text-align: center;
  vertical-align: top;
  font-size: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
}
.ms-pro-pagination ul li a:hover {
  color: #fff;
  background-color: #3e9172;
}
.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;
}

/** Template run directly **/
.ms-direct-run {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 19;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ms-direct-run .ms-direct-body {
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 500px;
}
.ms-direct-run .ms-direct-body h4 {
  padding: 0 0 10px 0;
  margin-bottom: 15px;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid;
}
.ms-direct-run .ms-direct-body p {
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}

/*===== Header css =====*/
.ms-search-popup {
  width: 100%;
  height: 100vh;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 18;
}

.ms-search-detail {
  width: 100%;
  height: 100vh;
  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;
}
.ms-search-detail form {
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ms-search-detail form input {
  width: 700px;
  max-width: 100%;
  height: 2rem;
  padding: 2rem 2rem 1.5rem 0rem;
  background: transparent;
  border: solid #eeeeee;
  border-width: 0 0 2px 0;
  color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  font-size: 2rem;
  outline: 0;
}
.ms-search-detail form input::-webkit-input-placeholder {
  color: #999;
}
.ms-search-detail form input::-moz-placeholder {
  color: #999;
}
.ms-search-detail form input:-ms-input-placeholder {
  color: #999;
}
.ms-search-detail form input::-ms-input-placeholder {
  color: #999;
}
.ms-search-detail form input::placeholder {
  color: #999;
}
.ms-search-detail form button {
  margin-left: -40px;
  background: transparent;
  border: 0;
}
.ms-search-detail form button .svg_img {
  width: 30px;
  height: 30px;
}
.ms-search-detail form button .svg_img path {
  fill: #fff;
}
.ms-search-detail .ms-search-close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50px;
  right: 50px;
}
.ms-search-detail .ms-search-close .svg_img {
  width: 20px;
  height: 20px;
}
.ms-search-detail .ms-search-close .svg_img path {
  fill: #fff;
}

/*===== Cart sideabr css =====*/
.ms-open-cart {
  overflow: hidden;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  opacity: 1 !important;
}
.ms-open-cart:before {
  height: 100%;
  width: 100;
  background: #000;
  opacity: 0.7;
  position: absolute;
  z-index: 998;
  content: "";
}

.ms-side-cart-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 17;
}

.ms-side-cart {
  font-size: 14px;
  font-weight: 400;
  position: fixed;
  z-index: 17;
  top: 0;
  right: 0;
  left: auto;
  display: block;
  width: 350px;
  height: 100%;
  padding: 15px 20px 20px 20px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: auto;
  opacity: 0;
}
.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 .text-right {
  font-weight: 700;
}
.ms-side-cart .ms-cart-inner {
  position: relative;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ms-side-cart .ms-cart-inner .ms-cart-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100;
  padding: 0 0 10px 0;
  border-bottom: 2px solid #eeeeee;
  margin-bottom: 20px;
}
.ms-side-cart .ms-cart-inner .ms-cart-title .cart_title {
  font-size: 17px;
  color: #17181c;
  font-family: "Poppins, sans-serif";
  font-weight: 600;
}
.ms-side-cart .ms-cart-inner .ms-cart-title .ms-cart-close {
  position: relative;
  border: 0;
  font-size: 30px;
  line-height: 20px;
  color: #17181c;
}
.ms-side-cart .ms-cart-inner .ms-cart-title .ms-cart-close .svg_img {
  width: 14px;
  height: 14px;
}
.ms-side-cart .ms-cart-inner .ms-cart-pro-items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}
.ms-side-cart .ms-cart-inner .ms-cart-pro-items li .ms-pro-img {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 20%;
          flex: 1 0 20%;
}
.ms-side-cart .ms-cart-inner .ms-cart-pro-items li .ms-pro-img img {
  width: 100%;
}
.ms-side-cart .ms-cart-inner .ms-cart-pro-items li .ms-pro-content {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 70%;
  flex: 1 0 70%;
  padding-left: 15px;
  overflow: hidden;
}
.ms-side-cart .ms-cart-inner .ms-cart-pro-items li .ms-pro-content .cart-pro-title {
  width: 100%;
  padding-right: 30px;
  text-decoration: none;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  font-size: 15px;
  line-height: 17px;
  font-weight: 400;
}
.ms-side-cart .ms-cart-inner .ms-cart-pro-items li .ms-pro-content .cart-price {
  font-size: 14px;
  display: block;
  margin-top: 5px;
}
.ms-side-cart .ms-cart-inner .ms-cart-pro-items li .ms-pro-content .cart-price span {
  color: #777;
  font-weight: 600;
  font-size: 16px;
}
.ms-side-cart .ms-cart-inner .ms-cart-pro-items li .ms-pro-content .remove {
  line-height: 15px;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 0 0 10px;
  color: red;
  font-size: 22px;
  background: #fff;
}
.ms-side-cart .ms-cart-inner .ms-cart-pro-items li .ms-pro-content .qty-plus-minus {
  border: 1px solid #eeeeee;
  display: inline-block;
  height: 35px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 85px;
  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;
  padding: 7px 0;
  margin-top: 7px;
}
.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;
  color: #777;
  float: left;
  font-size: 14px;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 32px;
  outline: none;
  font-weight: 400;
  line-height: 35px;
}
.ms-side-cart .ms-cart-inner .ms-cart-bottom .cart_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
    .ms-side-cart .ms-cart-inner .ms-cart-bottom .cart_btn a {
        /*width: 48%;*/
        height: 40px;
        display: block;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 14px;
        padding: 8px 15px;
        line-height: 22px;
    }
.ms-side-cart .ms-cart-inner .ms-cart-bottom .cart-sub-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0;
  padding-bottom: 8px;
  border-top: 1px solid #eeeeee;
  margin: 20px 0 0 0px;
}
.ms-side-cart .ms-cart-inner .ms-cart-bottom .cart-sub-total table {
  margin: 10px 0 0 0;
}
.ms-side-cart .ms-cart-inner .ms-cart-bottom .cart-sub-total table tr td {
  border: none;
}
.ms-side-cart .ms-cart-inner .ms-cart-bottom .cart-sub-total table tr td.text-left {
  font-weight: 500;
}
.ms-side-cart .ms-cart-inner .ms-cart-bottom .cart-sub-total table tr td.text-right {
  text-align: right;
}

/* Responsive css */
@media (max-width: 480px) {
  .ms-side-cart {
    width: 300px;
  }
}
/*===== wish sideabr css =====*/
.ms-open-wish {
  overflow: hidden;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  opacity: 1 !important;
}
.ms-open-wish:before {
  height: 100%;
  width: 100;
  background: #000;
  opacity: 0.7;
  position: absolute;
  z-index: 998;
  content: "";
}

.ms-side-wish-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 17;
}

.ms-side-wish {
  font-size: 14px;
  font-weight: 400;
  position: fixed;
  z-index: 17;
  top: 0;
  right: 0;
  left: auto;
  display: block;
  width: 350px;
  height: 100%;
  padding: 15px 20px 20px 20px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: auto;
  opacity: 0;
}
.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;
}
.ms-side-wish .text-right {
  font-weight: 700;
}
.ms-side-wish .ms-wish-inner {
  position: relative;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ms-side-wish .ms-wish-inner .ms-wish-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100;
  padding: 0 0 10px 0;
  border-bottom: 2px solid #eeeeee;
  margin-bottom: 20px;
}
.ms-side-wish .ms-wish-inner .ms-wish-title .wish_title {
  font-size: 17px;
  color: #17181c;
  font-family: "Poppins, sans-serif";
  font-weight: 600;
}
.ms-side-wish .ms-wish-inner .ms-wish-title .ms-wish-close {
  position: relative;
  border: 0;
  font-size: 30px;
  line-height: 20px;
  color: #17181c;
}
.ms-side-wish .ms-wish-inner .ms-wish-title .ms-wish-close .svg_img {
  width: 14px;
  height: 14px;
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eeeeee;
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-img {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 20%;
          flex: 1 0 20%;
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-img img {
  width: 100%;
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 70%;
  flex: 1 0 70%;
  padding-left: 15px;
  overflow: hidden;
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content .wish-pro-title {
  width: 100%;
  padding-right: 30px;
  text-decoration: none;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  font-size: 15px;
  line-height: 17px;
  font-weight: 400;
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content .wish-price {
  font-size: 14px;
  display: block;
  margin-top: 5px;
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content .wish-price span {
  color: #777;
  font-weight: 700;
  font-size: 16px;
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content .ms-availability {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content .ms-availability .stock {
  font-size: 12px;
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content .ms-availability .avail {
  color: #3e9172;
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content .ms-availability .not-avail {
  color: red;
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content .ms-availability .btn-disabled {
  cursor: not-allowed !important;
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content .ms-availability .ms-wish-contact-btns {
  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;
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content .ms-availability a {
  width: 100px;
  height: 30px;
  padding: 0 10px;
  font-size: 12px;
  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;
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content .remove {
  line-height: 15px;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 0 0 10px;
  color: red;
  font-size: 22px;
  background: #fff;
}

/* Responsive css */
@media (max-width: 480px) {
  .ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content .ms-availability a {
    width: auto;
    max-width: 100px;
  }
  .ms-side-wish {
    width: 300px;
  }
}
/*-------------------------------------------------
    Quickview Popup Model Style
---------------------------------------------------*/
#ms_quickview_modal {
  background-color: rgba(0, 0, 0, 0.7);
}
#ms_quickview_modal .qty_close {
  width: 10px;
  height: 10px;
  background: url("../img/icons/close-1.svg");
  background-size: 100%;
}
#ms_quickview_modal .modal-content {
  border-color: transparent;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}
#ms_quickview_modal .modal-content .modal-body {
  padding: 30px;
}
#ms_quickview_modal .qty-product-cover .quickview-main-img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 15px;
}
#ms_quickview_modal .qty-product-cover .quickview-main-img img {
  width: 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-quick-title a {
  margin: 0 0 15px 0;
  color: #fff;
  font-size: 24px;
  text-transform: capitalize;
  text-decoration: none;
  display: block;
  line-height: 1.5;
  font-weight: 600;
}
#ms_quickview_modal .quickview-pro-content .ms-quickview-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
#ms_quickview_modal .quickview-pro-content .ms-quickview-rating i {
  margin-right: 5px;
}
#ms_quickview_modal .quickview-pro-content .ms-quickview-desc {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 24px;
  color: #eee;
}
#ms_quickview_modal .quickview-pro-content .ms-quickview-price {
  padding: 5px 0 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
#ms_quickview_modal .quickview-pro-content .ms-quickview-price span.new-price {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
}
#ms_quickview_modal .quickview-pro-content .ms-quickview-price span.old-price {
  font-size: 18px;
  margin-left: 10px;
  text-decoration: line-through;
  color: #999;
}
#ms_quickview_modal .quickview-pro-content .ms-pro-variation span {
  color: #fff;
}
#ms_quickview_modal .quickview-pro-content .ms-pro-variation .ms-pro-variation-content ul li span {
  color: #fff;
}
#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 {
  border: 1px solid #fff;
  display: inline-block;
  height: 40px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100px;
  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;
  border-radius: 3px;
}
#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;
  color: #fff;
  float: left;
  font-size: 14px;
  height: 50px;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 40px;
  outline: 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;
}
#ms_quickview_modal .quickview-pro-content .ms-quickview-qty .ms-quickview-cart a, #ms_quickview_modal .quickview-pro-content .ms-quickview-qty .ms-quickview-cart button {
  margin: 0 0 0 15px;
  padding: 10px 20px;
  border-radius: 3px;
}
#ms_quickview_modal .quickview-pro-content .ms-quickview-qty .ms-quickview-cart a svg, #ms_quickview_modal .quickview-pro-content .ms-quickview-qty .ms-quickview-cart button svg {
  display: none;
}

/**  Responsive css  **/
@media (max-width: 991px) {
  .modal-dialog {
    max-width: 750px;
    width: 750px;
  }
  #ms_quickview_modal .quickview-pro-content .ms-quick-title a {
    font-size: 16px;
  }
  #ms_quickview_modal .quickview-pro-content .ms-quickview-desc {
    font-size: 13px;
  }
  #ms_quickview_modal .quickview-pro-content .ms-quickview-price span.new-price {
    font-size: 18px;
  }
  #ms_quickview_modal .quickview-pro-content .ms-quickview-price span.old-price {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .modal-dialog {
    width: 80%;
    height: auto;
    display: block;
  }
  #ms_quickview_modal .qty_close {
    width: 6px;
    height: 6px;
  }
  #ms_quickview_modal .quick-nav-thumb {
    max-height: 100% !important;
  }
  #ms_quickview_modal .quickview-pro-content .ms-quick-title {
    margin-top: 15px;
  }
}
@media (max-width: 575px) {
  .modal-dialog {
    width: 100%;
    padding: 15px;
  }
  button.btn-close.qty_close {
    right: 15px;
    top: 7px;
  }
  #ms_quickview_modal .modal-content .modal-body {
    padding: 30px 15px;
  }
  #ms_quickview_modal .quick-nav-thumb {
    width: 100%;
    margin: 0;
  }
}
/*===== New Product css =====*/
.ms-product-tab {
  display: none;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.ms-pro-tab {
  margin-top: -30px;
}

.ms-pro-tab-nav {
  margin: 0 auto;
}
.ms-pro-tab-nav .nav-item {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  cursor: pointer;
  font-weight: 700;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 20px;
  letter-spacing: 0.7px;
}
.ms-pro-tab-nav .nav-item:not(:last-child) {
  margin-right: 50px;
}
.ms-pro-tab-nav .nav-item .nav-link {
  padding: 0;
  color: #777;
  position: relative;
  font-weight: 500;
}
.ms-pro-tab-nav .nav-item .nav-link:hover {
  color: #3e9172;
}
.ms-pro-tab-nav .nav-item .nav-link.active {
  color: #3e9172;
}

.ms-product-content {
  padding: 12px;
}

.ms-product-inner {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid #eee;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
}
.ms-product-inner .ms-pro-image {
  position: relative;
  overflow: hidden;
}
.ms-product-inner .ms-pro-image .image {
  position: relative;
  display: block;
  overflow: hidden;
  pointer-events: none;
}
.ms-product-inner .ms-pro-image .image img {
  z-index: 1;
  max-width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ms-product-inner .ms-pro-image .image img.hover-image {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
}
.ms-product-inner .ms-pro-image .image .label {
  width: 11px;
  height: 11px;
  position: absolute;
  top: 10px;
  right: 10px;
  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;
  border-radius: 3px;
}
.ms-product-inner .ms-pro-image .image .label .dot {
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
}
.ms-product-inner .ms-pro-image .image .veg {
  border: 1px solid #46c389;
}
.ms-product-inner .ms-pro-image .image .veg .dot {
  background-color: #46c389;
}
.ms-product-inner .ms-pro-image .image .nonveg {
  border: 1px solid #ff9898;
}
.ms-product-inner .ms-pro-image .image .nonveg .dot {
  background-color: #ff9898;
}
.ms-product-inner .ms-pro-image .flags {
  right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  text-transform: uppercase;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.ms-product-inner .ms-pro-image .flags span {
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 500;
  line-height: 12px;
  text-align: left;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #ff9898;
  color: #fff;
  letter-spacing: 0.5px;
  position: relative;
  border-radius: 3px;
}
.ms-product-inner .ms-pro-image .flags span.new {
  background: #3e9172;
}
.ms-product-inner .ms-pro-image .percentage {
  position: absolute;
  z-index: 8;
  top: 15px;
  right: 15px;
  font-size: 13px;
  font-weight: 500;
  line-height: 29px;
  padding: 0 7px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #3e9172;
}
.ms-product-inner .ms-pro-image .ms-pro-actions {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  z-index: 9;
  top: 10px;
  left: auto;
  right: -10px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  opacity: 0;
}
.ms-product-inner .ms-pro-image .ms-pro-actions .ms-btn-group {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  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;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  color: #fff;
  background-color: #fff;
  border-radius: 100%;
  border: 1px solid #eeeeee;
  border-radius: 3px;
}
.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 .ms-pro-image .ms-pro-actions .ms-btn-group .svg_img.pro_svg {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ms-product-inner .ms-pro-image .ms-pro-actions .ms-btn-group:not(:first-child) {
  margin-top: 5px;
}
.ms-product-inner .ms-pro-image-outer {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 11;
  position: relative;
}
.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 {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 0 0;
  text-align: left;
  background-color: #fff;
}
.ms-product-inner .ms-pro-content .ms-pro-stitle {
  padding: 0 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #3e9172;
  font-size: 12px;
  text-transform: uppercase;
}
.ms-product-inner .ms-pro-content .ms-pro-rat-price {
  margin-top: 5px;
  margin-bottom: 15px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ms-product-inner .ms-pro-content .ms-pro-title {
  padding: 0 20px;
  font-size: 16px;
  margin: 0 0 5px;
}
.ms-product-inner .ms-pro-content .ms-pro-title a {
  text-decoration: none;
  color: #777;
  display: block;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: 0.85px;
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Poppins, sans-serif";
}
.ms-product-inner .ms-pro-content .ms-pro-title a:hover {
  color: #3e9172;
}
.ms-product-inner .ms-pro-content .ms-info {
  display: none;
}
.ms-product-inner .ms-pro-content .ms-price {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  color: #17181c;
  letter-spacing: 0.4px;
}
.ms-product-inner .ms-pro-content .ms-price span.new-price {
  color: #17181c;
  font-weight: 700;
  font-size: 14px;
  margin-right: 7px;
}
.ms-product-inner .ms-pro-content .ms-price span.old-price {
  font-size: 14px;
  text-decoration: line-through;
  color: #777;
}
.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-content .ms-pro-rating {
  margin-bottom: 10px;
  opacity: 0.7;
  position: relative;
}
.ms-product-inner .ms-pro-content .ms-pro-rating .qty {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #777;
  font-size: 13px;
}
.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 {
  margin: 5px 0 0px;
}
.ms-pro-variation .ms-pro-variation-inner {
  font-size: 16px;
  font-weight: 600;
  color: #212121;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ms-pro-variation .ms-pro-variation-inner > span {
  display: block;
  margin: 0 0 5px;
}
.ms-pro-variation .ms-pro-variation-inner .ms-pro-variation-content li {
  display: inline-block;
  border: 1px solid transparent;
  padding: 1px;
  float: left;
  cursor: pointer;
  margin-right: 5px;
}
.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 {
  height: 22px;
  padding: 2px 8px;
  cursor: pointer;
  border: 1px solid #eeeeee;
  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: 22px;
  border-radius: 3px;
  font-weight: 400;
}
.ms-pro-variation .ms-pro-variation-inner.ms-pro-variation-size .ms-pro-variation-content li a {
  color: #fff;
}
.ms-pro-variation .ms-pro-variation-inner.ms-pro-variation-size .ms-pro-variation-content li:hover {
  background-color: #3e9172;
  color: #fff;
  border-color: #3e9172;
}
.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, .svg_img.pro_svg {
  width: 18px !important;
  fill: #888888;
}

img.pro_svg {
  opacity: 0.5;
}

a.wishlist .svg_img.pro_svg {
  width: 16px;
  height: 16px;
}

.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;
}

i.msicon.msi-star-o {
  font-size: 14px;
  margin-right: 3px;
}

i.msicon.msi-star {
  color: #777;
  float: left;
  font-size: 14px;
  margin-right: 3px;
}

i.msicon.msi-star.fill {
  color: #f27d0c;
}

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

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

/*===== Header Menu css =====*/
/*----  Main Menu  ----*/
header {
  z-index: 15;
  position: relative;
}
header .container-fluid {
  padding: 0 50px;
}
header .ms-menu-left .ms-site-menu-icon {
  margin-right: 15px;
  display: none;
}
header .ms-menu-left .ms-site-menu-icon .svg_img path {
  fill: #17181c;
}

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

#ms-main-menu-desk {
  background-color: #fff;
}

.ms-main-menu {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ms-main-menu .ms-site-logo img {
  width: 310px;
}
.ms-main-menu .ms-sidebar-toggle {
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ms-main-menu .ms-sidebar-toggle .header_svg {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 22px;
  height: 22px;
}
.ms-main-menu .ms-sidebar-toggle .header_svg path {
  fill: #17181c;
}
.ms-main-menu .ms-menu-right-icons {
  padding-right: 15px;
  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-main-menu .ms-menu-right-icons .ms-header-btn {
  width: 26px;
  margin-left: 30px;
  margin-right: 0;
}
.ms-main-menu .ms-menu-right-icons .ms-header-user .svg_img {
  width: 22px;
  height: 22px;
}
.ms-main-menu .ms-menu-right-icons .ms-header-user .dropdown-toggle {
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border: none;
  background-color: transparent;
  padding: 0;
}
.ms-main-menu .ms-menu-right-icons .ms-header-user .dropdown-toggle:after {
  display: none;
}
.ms-main-menu .ms-menu-right-icons .ms-header-wish,
.ms-main-menu .ms-menu-right-icons .ms-header-cart,
.ms-main-menu .ms-menu-right-icons .ms-header-search {
  position: relative;
}
.ms-main-menu .ms-menu-right-icons .ms-header-wish a,
.ms-main-menu .ms-menu-right-icons .ms-header-cart a,
.ms-main-menu .ms-menu-right-icons .ms-header-search a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ms-main-menu .ms-menu-right-icons .ms-header-wish a .header_svg,
.ms-main-menu .ms-menu-right-icons .ms-header-cart a .header_svg,
.ms-main-menu .ms-menu-right-icons .ms-header-search a .header_svg {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 22px;
  height: 22px;
}
.ms-main-menu .ms-menu-right-icons .ms-header-wish a .header_svg path,
.ms-main-menu .ms-menu-right-icons .ms-header-cart a .header_svg path,
.ms-main-menu .ms-menu-right-icons .ms-header-search a .header_svg path {
  fill: #17181c;
}
.ms-main-menu .ms-menu-right-icons .ms-header-wish .ms-header-count,
.ms-main-menu .ms-menu-right-icons .ms-header-cart .ms-header-count,
.ms-main-menu .ms-menu-right-icons .ms-header-search .ms-header-count {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  position: absolute;
  z-index: 2;
  top: -10px;
  right: -12px;
  height: 20px;
  min-width: 20px;
  text-align: center;
  color: #ffffff;
  border-radius: 10px;
  background-color: #777777;
  bottom: 0;
  padding: 0 4px;
}
.ms-main-menu .ms-menu-right-icons .ms-header-user .ms-dropdown {
  margin: 0;
  position: relative;
}
.ms-main-menu .ms-menu-right-icons .ms-header-user .ms-dropdown:hover .ms-dropdown-menu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.ms-main-menu .ms-menu-right-icons .ms-header-user .ms-dropdown .ms-dropdown-menu {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-width: 150px;
  margin-top: 15px;
  padding: 15px 0;
  position: absolute;
  top: 36px;
  right: -10px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  left: auto !important;
  background: #fff;
  -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
  display: block;
  z-index: 9;
}
.ms-main-menu .ms-menu-right-icons .ms-header-user .ms-dropdown .ms-dropdown-menu li {
  margin: 0;
}
.ms-main-menu .ms-menu-right-icons .ms-header-user .ms-dropdown .ms-dropdown-menu li a {
  display: block;
  line-height: 20px;
  padding: 8px 20px;
  font-weight: 500;
  font-size: 14px;
  color: #777;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ms-main-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.ms-main-menu ul li {
  margin-left: 15px;
  margin-right: 15px;
}
.ms-main-menu ul li a {
  font-size: 14px;
  line-height: 50px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0;
  color: #17181c;
  display: block;
  position: relative;
  font-family: "Poppins, sans-serif";
}
.ms-main-menu ul li a i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 19px;
  right: -17px;
  font-size: 16px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #17181c;
}
.ms-main-menu ul li a .svg_img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.ms-main-menu ul li a .svg_img path {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ms-main-menu ul li a:hover {
  background-color: transparent;
}
.ms-main-menu ul li a:hover i {
  color: #3e9172;
}
.ms-main-menu ul li a:hover .svg_img path {
  fill: #3e9172;
}
.ms-main-menu ul li .main-label-note-new {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 10px;
  height: 10px;
  margin: auto;
  background-color: rgb(236, 113, 109);
  border-radius: 50%;
  cursor: default;
  display: block;
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  z-index: 3;
  -webkit-animation: blink-lbl-back 2.3s infinite;
          animation: blink-lbl-back 2.3s infinite;
}
@-webkit-keyframes blink-lbl-back {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  80% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes blink-lbl-back {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  80% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes blink-lbl {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes blink-lbl {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.ms-main-menu ul li:hover > a {
  color: #3e9172 !important;
}
.ms-main-menu ul li:hover > a .scroll {
  fill: #3e9172;
}
.ms-main-menu ul li .mega-menu {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  margin-top: 15px;
  padding: 20px 0px 30px 30px;
  position: absolute;
  -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
  background: #fff;
  opacity: 0;
  visibility: hidden;
  left: 0;
  z-index: 15;
}
.ms-main-menu ul li .mega-menu li ul {
  width: 25%;
  margin-right: 30px;
}
.ms-main-menu ul li .mega-menu li ul li.menu_title a {
  color: #777;
  font-size: 14px;
  font-weight: 600;
  display: block;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 10px;
  padding-bottom: 5px;
  height: auto;
}
.ms-main-menu ul li .mega-menu li ul li.menu_title a:hover {
  color: #17181c;
}
.ms-main-menu ul li .mega-menu li ul li a {
  color: #777;
  text-transform: capitalize;
  line-height: 30px;
  font-weight: 400;
  font-size: 14px;
  display: block;
  padding: 3px 0;
  border: 0;
  height: auto;
}
.ms-main-menu ul li .mega-menu li ul li a:hover {
  color: #17181c;
}
.ms-main-menu ul li .mega-menu ul.ms-main-banner {
  margin-top: 20px;
}
.ms-main-menu ul li .mega-menu ul.ms-main-banner li {
  width: 25%;
  padding-right: 30px;
}
.ms-main-menu ul li .mega-menu ul.ms-main-banner li a {
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  height: auto;
}
.ms-main-menu ul li.active > a {
  color: #3e9172 !important;
}
.ms-main-menu ul .scroll-to.active a .scroll:hover {
  fill: #3e9172;
}
.ms-main-menu ul .scroll-to {
  position: absolute !important;
  right: 0;
  margin: 0;
}
.ms-main-menu ul .scroll-to ul {
  left: auto;
  right: 0;
}
.ms-main-menu ul .scroll-to ul .menu_title {
  padding: 0 20px 12px 20px;
  color: #777;
  font-size: 14px;
  font-weight: 600;
  display: block;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 10px;
  height: auto;
}
.ms-main-menu ul .scroll-to a .scroll:hover {
  fill: #3e9172;
}
.ms-main-menu ul li.dropdown {
  margin-right: 30px !important;
  position: relative;
}
.ms-main-menu ul li.dropdown ul.sub-menu {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-width: 215px;
  margin-top: 15px;
  padding: 15px 0;
  position: absolute;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  left: auto !important;
  background: #fff;
  -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.2);
  display: block;
  z-index: 9;
}
.ms-main-menu ul li.dropdown ul li {
  padding: 0;
  margin: 0;
  display: block;
}
.ms-main-menu ul li.dropdown ul li a {
  display: block;
  line-height: 20px;
  padding: 8px 20px;
  font-weight: 400;
  font-size: 14px;
  color: #777;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ms-main-menu ul li.dropdown ul li .label-note-new {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 5px;
  height: 20px;
  background: rgb(250, 164, 164);
  cursor: default;
  display: none;
  position: absolute;
  top: 8px;
  left: 0px;
  z-index: 16;
  border-radius: 0 4px 4px 0;
}
.ms-main-menu ul li.dropdown ul li .label-note-hot {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 5px;
  height: 20px;
  background: rgb(138, 179, 134);
  cursor: default;
  display: none;
  position: absolute;
  top: 8px;
  left: 0px;
  z-index: 16;
  border-radius: 0 4px 4px 0;
}
.ms-main-menu ul li.dropdown ul li .label-note-trending {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 5px;
  height: 20px;
  background: rgb(25, 128, 175);
  cursor: default;
  display: none;
  position: absolute;
  top: 8px;
  left: 0px;
  z-index: 16;
  border-radius: 0 4px 4px 0;
}
.ms-main-menu ul li.dropdown ul li.active {
  color: #222;
}
.ms-main-menu ul li.dropdown li.position-static {
  position: relative !important;
}
.ms-main-menu ul li.dropdown li.position-static:hover .sub-menu.sub-menu-child {
  margin: 0;
  opacity: 1;
  visibility: visible;
}
.ms-main-menu ul li.dropdown ul.sub-menu.sub-menu-child {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 15px 0 0 0;
  left: 100% !important;
  opacity: 0;
  visibility: hidden;
  top: 0;
}
.ms-main-menu ul li.dropdown:hover .sub-menu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.ms-main-menu ul li.dropdown:hover .mega-menu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.ms-main-menu > ul > li > a:before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  width: 0;
  margin: 0 auto;
  background: transparent;
  left: 0;
  right: auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ms-main-menu > ul > li:hover > a:before {
  background: #3e9172;
  width: 100%;
}
.ms-main-menu > ul > li.active > a:before {
  background: #3e9172;
  width: 100%;
}

/*===== Mobile menus =====*/
.ms-mobile-menu-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 16;
}

.ms-mobile-menu {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 340px;
  height: 100%;
  padding: 15px 20px 20px 20px;
  position: fixed;
  top: 0;
  right: auto;
  left: 0;
  background-color: #fff;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 17;
  overflow: auto;
}
.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-title {
  padding: 0 0 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  border-bottom: 2px solid #eee;
  margin-bottom: 10px;
}
.ms-mobile-menu .ms-menu-title .menu_title {
  font-size: 18px;
  color: #3e9172;
  font-weight: 600;
}
.ms-mobile-menu .ms-menu-title .ms-close-menu {
  position: relative;
  border: 0;
  font-size: 30px;
  line-height: 1;
  color: #777;
  background-color: transparent;
  border: 0;
}
.ms-mobile-menu .ms-menu-inner .ms-menu-content ul li {
  position: relative;
}
.ms-mobile-menu .ms-menu-inner .ms-menu-content ul li a {
  display: block;
  padding: 12px 0px;
  text-transform: capitalize;
  color: #777;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  font-weight: 500;
}
.ms-mobile-menu .ms-menu-inner .ms-menu-content ul li .menu-toggle {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 24px;
  height: 44px;
  cursor: pointer;
  background-color: transparent;
}
.ms-mobile-menu .ms-menu-inner .ms-menu-content ul li .menu-toggle:before {
  width: 100%;
  content: "\f067";
  font-family: "MsIcons";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  color: #444444;
  font-size: 12px;
}
.ms-mobile-menu .ms-menu-inner .ms-menu-content ul li .sub-menu {
  position: static;
  top: auto;
  display: none;
  visibility: visible;
  width: 100%;
  min-width: auto;
  padding: 0;
  -webkit-transition: none;
  transition: none;
  opacity: 1;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ms-mobile-menu .ms-menu-inner .ms-menu-content ul li .sub-menu li a {
  text-transform: capitalize;
  padding-left: 15px;
  padding-right: 0px;
  display: block;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  font-weight: 400;
  color: #777;
}
.ms-mobile-menu .ms-menu-inner .ms-menu-content ul li .sub-menu li .sub-menu li a {
  font-weight: 400;
  padding-left: 30px;
  font-size: 14px;
  color: #999;
}
.ms-mobile-menu .ms-menu-inner .header-res-social {
  margin-top: 30px;
}
.ms-mobile-menu .ms-menu-inner .header-res-social 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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ms-mobile-menu .ms-menu-inner .header-res-social ul li {
  width: 30px;
  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;
  background-color: #202126 !important;
  border-radius: 50%;
}
.ms-mobile-menu .ms-menu-inner .header-res-social ul li a i {
  color: #fff;
}

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

@media (max-width: 1199px) {
  header .container-fluid {
    max-width: 930px;
    padding: 0 15px;
  }
  header .ms-menu-left .ms-site-menu-icon {
    display: inline-block;
  }
  .ms-main-menu {
    height: 60px;
  }
  .ms-main-menu .ms-menu {
    display: none;
  }
}
@media (max-width: 480px) {
  .ms-main-menu .ms-site-logo img {
    width: 100px;
  }
  .ms-main-menu .ms-menu-right-icons {
    padding-right: 5px;
  }
  .ms-main-menu .ms-menu-right-icons .ms-header-btn {
    width: 26px;
    margin-left: 15px;
  }
  .ms-main-menu .ms-menu-right-icons .ms-header-user .dropdown-toggle {
    margin-left: 15px;
  }
  .ms-main-menu .ms-menu-right-icons .ms-header-search a .header_svg,
  .ms-main-menu .ms-menu-right-icons .ms-header-wish a .header_svg,
  .ms-main-menu .ms-menu-right-icons .ms-header-cart a .header_svg {
    width: 20px;
    height: 20px;
  }
  .ms-main-menu .ms-menu-right-icons .ms-header-user .svg_img {
    width: 20px;
    height: 20px;
  }
  .ms-main-menu .ms-menu-right-icons .ms-header-wish .ms-header-count,
  .ms-main-menu .ms-menu-right-icons .ms-header-cart .ms-header-count {
    right: -6px;
  }
}
@media (max-width: 360px) {
  header .ms-menu-left .ms-site-menu-icon {
    margin-right: 5px;
  }
  .ms-main-menu .ms-menu-right-icons .ms-header-btn {
    margin-left: 10px;
  }
  .ms-main-menu .ms-menu-right-icons .ms-header-user .dropdown-toggle {
    margin-left: 10px;
  }
  .ms-main-menu .ms-site-logo img {
    width: 80px;
  }
}
/*-------------------------------------------------
   Demo 2 Page CSS
---------------------------------------------------*/
/*===== Slide Navigation section to section css =====*/
.ms-navigation {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 50%;
  right: 2px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 14;
}
.ms-navigation .ms-social {
  width: 100%;
  padding: 15px;
  position: absolute;
  bottom: 0;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ms-navigation .ms-social li {
  margin: 0 5px;
}
.ms-navigation .ms-social li a {
  width: 30px;
  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;
  color: #17181c;
}

.sidebar-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;
  border-bottom: 1px solid #17181c;
  display: none;
}
.sidebar-title h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #17181c;
}
.sidebar-title a {
  color: #17181c;
}

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

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

.nav-toggle {
  width: 40px;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #2c2f36 !important;
  color: #fff;
  border: 1px solid #404550;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 16;
  display: none;
}
.nav-toggle:hover {
  color: #fff;
}

.ms-navigation ul {
  margin: 0;
  padding: 0;
}
.ms-navigation ul li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 40px;
  height: 40px;
  margin: 5px 0;
  padding: 0;
  list-style: none;
  position: relative;
  border-right: 0;
  border-left: 1px solid #17181c;
  border-top: 1px solid #17181c;
  background-color: #17181c !important;
  border-radius: 50%;
}
.ms-navigation ul li:last-child {
  border-bottom: 1px solid #17181c;
}
.ms-navigation ul li a {
  width: 100%;
  padding: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.ms-navigation ul li a i {
  width: 23px;
  height: 23px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 23px;
  font-size: 17px;
  text-align: center;
}
.ms-navigation ul li a .svg_img {
  width: 23px;
  height: 23px;
}
.ms-navigation ul li a span {
  display: none;
}
.ms-navigation ul li:hover span {
  opacity: 1;
  left: -130px;
}
.ms-navigation ul li:hover a i {
  opacity: 1;
}
.ms-navigation ul li .noty {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  width: 120px;
  opacity: 0;
  color: #000;
  position: absolute;
  top: 50%;
  left: -150px;
  text-align: right;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.ms-navigation ul li .noty span {
  background: #17181c;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
}
.ms-navigation ul li .noty span:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #17181c;
  border-radius: 2px;
  top: 50%;
  right: -2%;
  -webkit-transform: translate(-50%, 50%) rotate(45deg);
  transform: translate(0%, -50%) rotate(45deg);
  bottom: 1px;
}

/*===== Social links =====*/
.ms-social {
  position: fixed;
  top: 0;
  top: 50%;
  left: 5px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 14;
}
.ms-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ms-social ul li {
  margin: 3px 0;
}
.ms-social ul li a {
  width: 40px;
  height: 40px;
  background-color: #17181c !important;
  border-radius: 50%;
  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;
}
.ms-social ul li a i {
  color: #fff;
}

/*===== Hero section css =====*/
.ms-home {
    width: 100%;
    /*height: 100vh;*/
    /*position: fixed;*/
    /*top: 0;*/
    z-index: 2;
}
.ms-home .container-fluid {
  height: 100%;
}
.ms-home .ms-hero-slider .owl-dots {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.ms-home .ms-hero-slider .owl-dots button.owl-dot {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 10px;
  height: 10px;
  margin: 5px;
  border: 1px solid #17181c;
}
.ms-home .ms-hero-slider .owl-dots .owl-dot.active {
  width: 20px;
  background-color: #17181c !important;
}
.ms-home .ms-hero-slider .ms-slide-content {
  padding: 80px;
}
.ms-home .ms-hero-slider .ms-slide-content .ms-slide-stitle {
  font-size: 16px;
  color: #17181c;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-weight: 800;
  position: relative;
  text-transform: capitalize;
}
.ms-home .ms-hero-slider .ms-slide-content .ms-slide-title {
  font-size: 40px;
  color: #3e9172;
  margin-bottom: 15px;
  letter-spacing: 0.05rem;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  line-height: 1;
}
.ms-home .ms-hero-slider .slider-animation {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
.ms-home .ms-hero-slider .ms-slide {
  width: 100%;
  height: calc(100vh - 160px);
}
.ms-home .ms-hero-slider .ms-slide-1 {
  background: url(../img/hero-bg/1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.ms-home .ms-hero-slider .ms-slide-2 {
  background: url(../img/hero-bg/2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.ms-home .ms-hero-slider .ms-slide-3 {
  background: url(../img/hero-bg/3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.ms-home .main-bg-black {
  padding: 30px 15px 30px 30px;
  height: 100%;
  border: 1px solid #eee;
  border-right: 0;
  overflow: hidden;
}
.ms-home .ms-category-block-2 {
  padding: 30px 30px 30px 15px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, calc(33.33% - 20px));
  grid-row-gap: 30px;
  grid-column-gap: 30px;
  width: 100%;
  grid-auto-rows: 1fr;
  border: 1px solid #eee;
  border-left: 0;
}
.ms-home .ms-category-block-2 .ms-cat-box.more {
  display: none;
}
.ms-home .ms-category-block-2 .ms-cat-box {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
  border: 1px solid transparent;
}
.ms-home .ms-category-block-2 .ms-cat-box:hover {
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
}
.ms-home .ms-category-block-2 .ms-cat-box .ms-cat-icon {
  height: 100%;
  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;
  position: relative;
}
.ms-home .ms-category-block-2 .ms-cat-box .ms-cat-icon:hover .svg_img {
  -webkit-animation: cat-shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: cat-shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
@-webkit-keyframes cat-shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}
@keyframes cat-shake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0);
  }
}
.ms-home .ms-category-block-2 .ms-cat-box .ms-cat-icon .svg_img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 80px;
  height: 80px;
}
.ms-home .ms-category-block-2 .ms-cat-box .ms-cat-icon .ms-cat-title {
  margin: 15px 0 0 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #17181c;
}
.ms-home .ms-category-block-2 .ms-cat-box .ms-cat-icon .items {
  margin: 0;
  font-size: 14px;
  line-height: 28px;
  color: #777;
}
.ms-home .ms-category-block-2 .ms-cat-box .ms-cat-icon .ms-lbl {
  padding: 0 5px;
  position: absolute;
  top: 15px;
  right: 15px;
  background: #3e9172;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.ms-home .ms-category-block-2 .ms-cat-box-1 {
  background: #f2fcf4;
}
.ms-home .ms-category-block-2 .ms-cat-box-2 {
  background: #fafcf2;
}
.ms-home .ms-category-block-2 .ms-cat-box-3 {
  background: #f3ecff;
}
.ms-home .ms-category-block-2 .ms-cat-box-4 {
  background: #fcf7f2;
}
.ms-home .ms-category-block-2 .ms-cat-box-5 {
  background: #f2f4fc;
}
.ms-home .ms-category-block-2 .ms-cat-box-6 {
  background: #fcf2f2;
}
.ms-home .ms-category-block-2 .ms-cat-box-7 {
  background: #e9fffc;
}
.ms-home .ms-category-block-2 .ms-cat-box-8 {
  background: #fef4fb;
}
.ms-home .ms-category-block-2 .ms-cat-box-9 {
  background: #fcf9f2;
}
.ms-home .border-content {
  height: 100%;
  padding: 50px 0 50px 50px;
}
.ms-home .border-content-color {
  height: 100%;
  padding: 5px 50px 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ms-home .ms-copyrights {
  height: 50px;
  padding: 0 50px;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  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;
}
.ms-home .ms-copyrights .ms-copy {
  color: #17181c;
  font-size: 14px;
}
.ms-home .ms-copyrights .ms-copy a {
  color: #3e9172;
}

/*===== Animated banner Section =====*/
.ms-animated-banner {
  width: 100%;
  height: 400px;
  background-image: url(../img/banner/1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
@-webkit-keyframes ms-rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
@keyframes ms-rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
.ms-animated-banner .ms-bnr-detail {
  height: 100%;
  padding: 100px;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
  position: relative;
}
.ms-animated-banner .ms-bnr-detail h2 {
  font-size: 40px;
  font-weight: 700;
  color: #3e9172;
  line-height: 50px;
  z-index: 2;
  position: relative;
}
.ms-animated-banner .ms-bnr-detail h3 {
  margin-top: 15px;
  font-weight: 600;
  z-index: 2;
}
.ms-animated-banner .ms-bnr-detail h3 span {
  font-weight: 300;
}
.ms-animated-banner .ms-bnr-detail a {
  margin-top: 15px;
  padding: 5px 10px;
  z-index: 2;
}
.ms-animated-banner .ms-bnr-detail .fruits {
  position: absolute;
  opacity: 0.8;
}

/*===== New Arrivals, Trending Product, Top Selling, Top Rated =====*/
.ms-new-product-block {
  padding: 15px 0 0 0;
}
.ms-new-product-block .ms-all-product-block:not(:last-child) {
  margin-bottom: 15px;
}
.ms-new-product-block .ms-all-product-inner {
  padding: 15px;
  background-color: #f5f4f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.ms-new-product-block .ms-all-product-inner .label {
  width: 11px;
  height: 11px;
  position: absolute;
  top: 7px;
  right: 7px;
  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;
}
.ms-new-product-block .ms-all-product-inner .label .dot {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
}
.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;
}
.ms-new-product-block .ms-pro-image-outer .ms-pro-image {
  margin-right: 15px;
}
.ms-new-product-block .ms-pro-image-outer .ms-pro-image img {
  width: 70px;
  height: 70px;
}
.ms-new-product-block .ms-pro-content {
  width: calc(100% - 80px);
}
.ms-new-product-block .ms-pro-content .ms-pro-title a {
  text-decoration: none;
  color: #17181c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: capitalize;
}
.ms-new-product-block .ms-pro-content .ms-pro-stitle a {
  color: #777;
  font-size: 14px;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  background-color: transparent;
  border: 0;
  text-transform: capitalize;
  cursor: pointer;
}
.ms-new-product-block .ms-pro-content .ms-pro-stitle a:hover {
  color: #3e9172;
}
.ms-new-product-block .ms-pro-content span.new-price {
  color: #3e9172;
  font-weight: 700;
  font-size: 14px;
}
.ms-new-product-block .ms-pro-content span.old-price {
  font-size: 14px;
  text-decoration: line-through;
  color: #777;
  margin-left: 9px;
  display: none;
}
.ms-new-product-block .ms-pro-content span.qty {
  font-size: 12px;
  color: #777;
  margin-left: 9px;
}

/*===== Offer section css =====*/
.ms-offer-section {
  display: none;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.ms-offer-section .section-title {
  margin-bottom: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ms-offer-section .section-title .dealend-timer {
  padding-right: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  background-color: #f5f4f9;
}
.ms-offer-section .section-title .dealend-timer .time-block {
  margin-left: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  color: #17181c;
}
.ms-offer-section .section-title .dealend-timer .time-block .day {
  margin-left: 5px;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 28px;
  color: #17181c;
}
.ms-offer-section .section-title .dealend-timer .time-block .time {
  min-width: 20px;
  position: relative;
}
.ms-offer-section .section-title .dealend-timer .time-block .dots {
  margin-top: -1px;
  margin-left: 5px;
  color: #17181c;
}

.ms-ofr-banners .ms-bnr-body {
  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-ofr-banners .ms-bnr-body .ms-bnr-img {
  width: 100%;
}
.ms-ofr-banners .ms-bnr-body .ms-bnr-img img {
  width: 100%;
}
.ms-ofr-banners .ms-bnr-body .ms-bnr-img .lbl {
  padding: 0 5px;
  font-size: 14px;
  border-radius: 30px;
  position: absolute;
  top: 15px;
  right: 15px;
  text-transform: capitalize;
  background-color: #17181c !important;
  color: #fff;
}
.ms-ofr-banners .ms-bnr-body .ms-bnr-detail {
  max-width: 200px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ms-ofr-banners .ms-bnr-body .ms-bnr-detail h5 {
  color: #3e9172;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}
.ms-ofr-banners .ms-bnr-body .ms-bnr-detail p {
  color: #777;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 22px;
}
.ms-ofr-banners .ms-bnr-body .ms-bnr-detail a {
  padding: 5px 15px;
}

.ms-spe-section .ms-spe-products {
  margin: 30px auto 0 auto;
  border: 1px solid #17181c;
  border-radius: 15px;
}
.ms-spe-section .ms-spe-pro-inner {
  padding: 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;
  border-radius: 15px;
  background-color: #fff;
}
.ms-spe-section .ms-spe-pro-thumb .ms-spe-pro-slide {
  border: 1px solid #17181c;
  border-radius: 5px;
  overflow: hidden;
  margin: 11px auto;
  cursor: pointer;
  display: block !important;
}
.ms-spe-section .slick-arrow {
  top: -72px;
}

.ms-spe-pro-inner .ms-spe-pro-image {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ms-spe-pro-inner .ms-spe-pro-image img {
  width: 100% !important;
}
.ms-spe-pro-inner .ms-spe-pro-image .image img {
  width: 100%;
  z-index: 1;
  max-width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ms-spe-pro-inner .ms-spe-pro-cover {
  width: calc(100% - 260px);
}
.ms-spe-pro-inner .ms-spe-pro-thumb {
  width: 152px;
  margin-left: 108px;
}
.ms-spe-pro-inner .ms-spe-pro-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 30px;
}
.ms-spe-pro-inner .ms-spe-pro-content .ms-spe-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin-bottom: 36px;
  line-height: 1.2;
}
.ms-spe-pro-inner .ms-spe-pro-content .ms-spe-price span.new-price {
  color: #3e9172;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0;
}
.ms-spe-pro-inner .ms-spe-pro-content .ms-spe-price span.old-price {
  font-size: 20px;
  margin: 0 10px;
  text-decoration: line-through;
  color: #777;
  font-weight: 300;
  letter-spacing: 0;
}
.ms-spe-pro-inner .ms-spe-pro-content .ms-spe-pro-desc {
  font-size: 14px;
  color: #777;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0;
  margin-bottom: 20px;
  max-width: 76%;
}
.ms-spe-pro-inner .ms-spe-pro-content .ms-spe-pro-book {
  font-size: 18px;
  color: #17181c;
  letter-spacing: 0.5px;
  margin-bottom: 11px;
}
.ms-spe-pro-inner .ms-spe-pro-content .ms-spe-pro-book span {
  color: #3e9172;
}
.ms-spe-pro-inner .ms-spe-pro-content .ms-spe-pro-btn {
  margin-bottom: 25px;
}
.ms-spe-pro-inner .ms-spe-pro-content .ms-spe-pro-btn a {
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 600;
  min-width: 150px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 30px;
}
.ms-spe-pro-inner .ms-spe-pro-content .ms-spe-pro-progress-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 9px;
  padding: 0 7px;
}
.ms-spe-pro-inner .ms-spe-pro-content .ms-spe-pro-progress-desc span {
  font-size: 14px;
  font-weight: 400;
  color: #17181c;
  text-transform: uppercase;
  letter-spacing: 0;
  position: relative;
  display: block;
}
.ms-spe-pro-inner .ms-spe-pro-content .ms-spe-pro-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 26px;
  max-width: 100%;
}
.ms-spe-pro-inner .ms-spe-pro-content .ms-spe-pro-progress .ms-spe-pro-progressbar {
  position: relative;
  border: 5px solid #f3f3f3;
  width: 100%;
  border-radius: 10px;
}
.ms-spe-pro-inner .ms-spe-pro-content .ms-spe-pro-progress .ms-spe-pro-progressbar:before {
  position: absolute;
  border: 2px solid #3e9172;
  width: 38%;
  border-radius: 10px;
  top: -2px;
  left: -2px;
  right: auto;
  content: "";
}
.ms-spe-pro-inner .ms-spe-pro-content .countdowntimer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ms-spe-pro-inner .ms-spe-pro-content .ms-spe-count-desc {
  font-size: 14px;
  font-weight: 600;
  color: #17181c;
  text-transform: uppercase;
  letter-spacing: 0;
  position: relative;
  display: block;
  margin-bottom: 15px;
}
.ms-spe-pro-inner .ms-spe-pro-title {
  margin: 0 0 7px;
}
.ms-spe-pro-inner .ms-spe-pro-title a {
  font-size: 14px;
  color: #17181c;
  letter-spacing: 0.1px;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 700;
}
.ms-spe-pro-inner .ms-spe-pro-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  margin-bottom: 14px;
}
.ms-spe-pro-inner .ms-spe-pro-rating .ms-spe-rating-text {
  font-size: 16px;
  color: #999;
}

.ms-spe-products .slick-arrow.slick-prev {
  right: 30px;
  left: auto;
}
.ms-spe-products .slick-arrow.slick-next {
  right: -10px;
  left: auto;
}

.ms-top-vendor .ms-top-vendor-block .ms-vendor-detail {
  padding: 15px;
  background-color: #f5f4f9;
  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-top-vendor .ms-top-vendor-block .ms-vendor-detail .ms-vendor-img {
  width: 80px;
  height: 80px;
  margin-right: 15px;
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-detail .ms-vendor-img img {
  width: 100%;
  -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-detail .ms-vendor-info a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 600;
  color: #17181c;
  text-transform: capitalize;
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-detail .ms-vendor-info a:hover {
  color: #3e9172;
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-detail .ms-vendor-info p {
  margin: 0;
  color: #777;
  font-size: 14px;
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-detail .ms-vendor-info .ms-pro-rating i {
  font-size: 14px;
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-detail .ms-vendor-info .ms-sale {
  position: absolute;
  bottom: 15px;
  right: 15px;
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-detail .ms-vendor-info .ms-sale p {
  font-size: 14px;
  color: #999;
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-products {
  padding: 15px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, calc(50% - 6px));
  grid-row-gap: 12px;
  grid-column-gap: 12px;
  background-color: #f5f4f9;
  border-top: 1px solid #eee;
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-products a {
  border: 1px solid transparent;
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-products a:hover {
  border: 1px solid #17181c;
}

/** Start Listing Section **/
.ms-listing-section {
  display: none;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  overflow: hidden;
}

.ms-listing .ms-list-block:not(:last-child) {
  margin-bottom: 30px;
}
.ms-listing .ms-list-block .ms-list-title {
  margin-bottom: 15px;
  position: relative;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  color: #17181c;
}
.ms-listing .ms-list-block .ms-list-title .label {
  width: 11px;
  height: 11px;
  position: absolute;
  top: 4px;
  right: -20px;
  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;
  opacity: 0.5;
}
.ms-listing .ms-list-block .ms-list-title .label .dot {
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
}
.ms-listing .ms-list-block .ms-list-title .veg {
  border: 1px solid #46c389;
}
.ms-listing .ms-list-block .ms-list-title .veg .dot {
  background-color: #46c389;
}
.ms-listing .ms-list-block .ms-list-title .non-veg {
  border: 1px solid #ff9898;
}
.ms-listing .ms-list-block .ms-list-title .non-veg .dot {
  background-color: #ff9898;
}
.ms-listing .ms-list-block ul {
  margin: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.ms-listing .ms-list-block ul li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #eee;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.ms-listing .ms-list-block ul li:hover {
  background-color: #17181c !important;
}
.ms-listing .ms-list-block ul li:hover a {
  color: #fff;
}
.ms-listing .ms-list-block ul li:hover a span {
  color: #fff;
}
.ms-listing .ms-list-block ul li:hover img {
  display: block;
  opacity: 1;
}
.ms-listing .ms-list-block ul li a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  padding: 15px 20px;
  color: #777;
  font-weight: 400;
  font-size: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-transform: capitalize;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ms-listing .ms-list-block ul li a span {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-left: 30px;
  color: #999;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
}
.ms-listing .ms-list-block ul li .ms-list-img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 200px;
  position: absolute;
  display: none;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  opacity: 0;
  z-index: 1;
}

/** End Listing Section **/
/** Start Newsletter Section **/
.ms-newsletter {
  height: 200px;
  background-image: url(../img/bg/news.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.ms-newsletter .ms-shape-1 {
  width: 100px;
  height: 100px;
  background-color: #871628;
  border-radius: 50%;
  opacity: 0.8;
  position: absolute;
  top: -10px;
  left: 50px;
  -webkit-filter: blur(18px);
  filter: blur(18px);
  -webkit-animation: MoveUpDown1 5s linear infinite;
  animation: MoveUpDown1 5s linear infinite;
}
.ms-newsletter .ms-shape-2 {
  width: 70px;
  height: 70px;
  background-color: #3e9172;
  border-radius: 50%;
  opacity: 0.8;
  position: absolute;
  top: 50px;
  right: 50px;
  -webkit-filter: blur(18px);
  filter: blur(18px);
  -webkit-animation: MoveUpDown2 10s linear infinite;
  animation: MoveUpDown2 10s linear infinite;
}
@-webkit-keyframes MoveUpDown1 {
  0% {
    left: 0px;
  }
  50% {
    left: 100px;
  }
  100% {
    left: 0px;
  }
}
@-webkit-keyframes MoveUpDown2 {
  0% {
    top: 0px;
    right: 0px;
  }
  30% {
    top: 50px;
    right: 50px;
  }
  50% {
    top: 100px;
    right: 75px;
  }
  100% {
    top: 0px;
    right: 0px;
  }
}
.ms-newsletter .ms-newsletter-detail {
  height: 100%;
  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;
  z-index: 3;
  position: relative;
}
.ms-newsletter .ms-newsletter-detail .ms-detail h4 {
  color: #fff;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
}
.ms-newsletter .ms-newsletter-detail .ms-detail p {
  color: #fff;
  text-align: center;
}
.ms-newsletter .ms-newsletter-detail .ms-newsletter-form form {
  width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border: 3px solid #ffffff;
}
.ms-newsletter .ms-newsletter-detail .ms-newsletter-form input {
  display: inline-block;
  vertical-align: top;
  line-height: 44px;
  height: 44px;
  color: #444444;
  font-size: 16px;
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  text-align: left;
  padding: 0 15px;
  letter-spacing: 0.5px;
  font-weight: 500;
  background: #ffffff;
}
.ms-newsletter .ms-newsletter-detail .ms-newsletter-form input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.ms-newsletter .ms-newsletter-detail .ms-newsletter-form button {
  font-size: 16px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  font-weight: 500;
  min-width: 44px;
  text-transform: uppercase;
  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;
}
.ms-newsletter .ms-newsletter-detail .ms-newsletter-form button .svg_img {
  width: 20px;
  height: 20px;
}
.ms-newsletter .ms-newsletter-detail .ms-newsletter-form button:hover .svg_img path {
  fill: #17181c;
}

/** End Newsletter Section **/
/** Start Service Section **/
.ms-ser-inner {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 30px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  border: 1px solid #eee;
  height: 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-color: #fff;
}
.ms-ser-inner:hover {
  border: 1px solid transparent;
  border: 1px solid #17181c;
}
.ms-ser-inner:hover .ec-service-image svg {
  stroke-dashoffset: 0;
  -webkit-transition: fill 0.5s, stroke-dashoffset 6s, -webkit-transform 0.3s;
  transition: fill 0.5s, stroke-dashoffset 6s, -webkit-transform 0.3s;
  transition: transform 0.3s, fill 0.5s, stroke-dashoffset 6s;
  transition: transform 0.3s, fill 0.5s, stroke-dashoffset 6s, -webkit-transform 0.3s;
}
.ms-ser-inner .ms-service-image {
  margin-bottom: 15px;
}
.ms-ser-inner .ms-service-image img {
  width: 50px;
  height: 50px;
}

.ms-service-desc h3 {
  font-size: 18px;
  font-weight: 700;
  color: #17181c;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}
.ms-service-desc p {
  margin: 0;
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

/** End Service Section **/
/** Blog & News Section **/
.ms-news-section {
  display: none;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.ms-news-section .section-title {
  margin-bottom: 15px;
}
.ms-news-section .news-info {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  margin-bottom: 24px;
  padding: 24px;
  background: #fff;
  border-radius: 0px;
  border: 1px solid #eee;
}
.ms-news-section .news-info:hover .news-img img {
  -webkit-transform: rotate(-5deg) scale(1.2);
          transform: rotate(-5deg) scale(1.2);
}
.ms-news-section .news-info .news-img {
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0px;
  position: relative;
  overflow: hidden;
}
.ms-news-section .news-info .news-img img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0px;
  width: 100%;
  height: 100%;
}
.ms-news-section .news-info .detail {
  width: 100%;
  margin: 0;
}
.ms-news-section .news-info .detail label {
  margin-top: 20px;
  display: inline-block;
  font-size: 13px;
  color: #999;
  border-radius: 5px;
}
.ms-news-section .news-info .detail label a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #999;
}
.ms-news-section .news-info .detail label a:hover {
  color: #3e9172;
}
.ms-news-section .news-info .detail h3 {
  margin: 10px 0 15px 0;
  padding: 0;
  line-height: 26px;
}
.ms-news-section .news-info .detail h3 a {
  color: #17181c;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
}
.ms-news-section .news-info .detail p {
  margin-bottom: 15px;
  padding: 0;
  font-size: 14px;
  color: #777;
  line-height: 23px;
  font-weight: 400;
}
.ms-news-section .news-info .detail .more-info a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 5px 10px;
  background: #17181c;
  color: #fff;
  text-align: center;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid #17181c;
  border-radius: 0px;
}
.ms-news-section .news-info .detail .more-info a:hover {
  background: #fff;
  color: #17181c;
}

/** End Blog & News Section **/
/*  Testimonial Section CSS  */
.testim-bg {
  background-image: url(../img/banner/4.png);
  background-color: #f5f4f9;
  background-size: cover;
  background-position: center;
  border: 1px solid #eee;
}

.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: 700px;
  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;
}

.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;
}

/*  Demo 2 Responsive style  */
@media (max-width: 1399px) {
  .ms-home .ms-hero-slider .ms-slide-content .ms-slide-title {
    font-size: 38px;
  }
  .ms-home .ms-category-block-2 .ms-cat-box .ms-cat-icon .svg_img {
    width: 60px;
    height: 60px;
  }
  .ms-home .ms-category-block-2 .ms-cat-box .ms-cat-icon .ms-cat-title {
    font-size: 15px;
  }
  .ms-animated-banner .ms-bnr-img {
    left: -38%;
  }
  .ms-animated-banner .ms-bnr-detail h2 {
    font-size: 38px;
  }
  .ms-ofr-banners .ms-bnr-body .ms-bnr-detail h5 {
    font-size: 28px;
  }
  .ms-test-section .ms-test-name {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .ms-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ms-home {
    height: auto;
    position: relative;
  }
  .ms-home .container-fluid {
    max-width: 930px;
  }
  .ms-home .border-content {
    width: 100%;
    padding: 0 15px;
  }
  .ms-home .main-bg-black {
    padding: 30px 30px 15px 30px;
    border-right: 1px solid #eee;
    border-bottom: 0;
  }
  .ms-home .ms-hero-slider .ms-slide-content .ms-slide-title {
    font-size: 32px;
  }
  .ms-home .border-content-color {
    width: 100%;
    padding: 0 15px 80px 15px;
  }
  .ms-home .ms-category-block-2 {
    padding: 15px 30px 30px 30px;
    border: 1px solid #eee;
    border-top: 0;
  }
  .ms-home .ms-category-block-2 .ms-cat-box .ms-cat-icon {
    padding: 30px;
  }
  .ms-home .ms-copyrights {
    height: 80px;
    padding: 0 15px;
    -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;
  }
  .ms-home .ms-copyrights .ms-copy {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .ms-animated-banner {
    height: 380px;
  }
  .ms-animated-banner .ms-bnr-img {
    width: 800px;
    height: 800px;
  }
  .ms-animated-banner .ms-bnr-detail h2 {
    font-size: 35px;
    line-height: 40px;
  }
  .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-social {
    display: none;
  }
  .ms-ofr-banners .ms-bnr-body .ms-bnr-detail {
    max-width: 160px;
    right: 15px;
  }
  .ms-ofr-banners .ms-bnr-body .ms-bnr-detail h5 {
    font-size: 22px;
  }
  .ms-ofr-banners .ms-bnr-body .ms-bnr-detail p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .ms-product-inner .ms-pro-image .ms-pro-actions {
    opacity: 1;
    right: 10px;
  }
  .ms-product-inner .ms-pro-image .image .label {
    display: none;
  }
  .ms-pro-tab-nav .nav-item:not(:last-child) {
    margin-right: 30px;
  }
  .ms-animated-banner {
    height: 300px;
  }
  .ms-animated-banner .ms-bnr-img {
    width: 600px;
    height: 600px;
  }
  .ms-animated-banner .ms-bnr-detail {
    padding: 50px;
  }
  .ms-animated-banner .ms-bnr-detail h2 {
    font-size: 28px;
    line-height: 35px;
  }
  .ms-animated-banner .ms-bnr-detail h3 {
    font-size: 20px;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    top: -82px;
    right: 200px;
  }
  .ms-ofr-banners .ms-bnr-body .ms-bnr-detail {
    max-width: 250px;
  }
  .ms-ofr-banners .ms-bnr-body .ms-bnr-detail h5 {
    font-size: 32px;
  }
  .m-t-991 {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .ms-home .ms-category-block-2 {
    padding: 0 15px 15px 15px;
    grid-template-columns: repeat(auto-fill, calc(33.33% - 10px));
    grid-row-gap: 15px;
    grid-column-gap: 15px;
  }
  .ms-home .main-bg-black {
    padding: 15px;
  }
  .ms-pro-tab {
    margin: 0 0 15px 0;
  }
  .ms-pro-tab .justify-content-end {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .ms-animated-banner {
    height: 250px;
  }
  .ms-animated-banner .ms-bnr-img {
    width: 500px;
    height: 500px;
    left: -45%;
  }
  .ms-animated-banner .ms-bnr-detail h2 {
    font-size: 20px;
    line-height: 27px;
  }
  .ms-animated-banner .ms-bnr-detail h3 {
    font-size: 16px;
    margin-top: 5px;
  }
  .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;
  }
  .ms-ofr-banners .ms-bnr-body .ms-bnr-detail {
    max-width: 198px;
  }
  .ms-ofr-banners .ms-bnr-body .ms-bnr-detail h5 {
    font-size: 20px;
  }
  .ms-newsletter .ms-newsletter-detail .ms-newsletter-form form {
    width: 100%;
  }
  .ms-newsletter .ms-newsletter-detail .ms-detail h4 {
    font-size: 22px;
  }
  .ms-newsletter .ms-newsletter-detail .ms-detail p {
    font-size: 14px;
  }
  .testim-bg {
    background-size: contain;
  }
}
@media (max-width: 575px) {
  body {
    margin-bottom: 66px;
  }
  .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;
  }
  .section-title h2 {
    font-size: 22px;
  }
  .ms-home .ms-hero-slider .ms-slide {
    height: 60vh;
  }
  .ms-home .ms-hero-slider .ms-slide-content {
    padding: 50px;
  }
  .ms-home .ms-hero-slider .ms-slide-content .ms-slide-title {
    font-size: 24px;
  }
  .ms-home .ms-category-block-2 .ms-cat-box .ms-cat-icon {
    padding: 15px 10px;
  }
  .ms-home .ms-category-block-2 .ms-cat-box .ms-cat-icon .svg_img {
    width: 40px;
    height: 40px;
  }
  .ms-home .ms-category-block-2 .ms-cat-box .ms-cat-icon .ms-cat-title {
    font-size: 14px;
  }
  .ms-home .ms-category-block-2 .ms-cat-box .ms-cat-icon .ms-lbl {
    font-size: 11px;
    top: 0;
    right: 0;
  }
  .ms-home .border-content-color {
    padding: 0 15px 10px 15px;
  }
  .ms-home .ms-copyrights {
    height: 100px;
  }
  .ms-home .ms-copyrights .ms-copy {
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
  }
  .ms-tool {
    top: 230px;
  }
  .ms-product-content {
    max-width: 360px;
    margin: auto;
  }
}
@media (max-width: 480px) {
  .ms-home .ms-category-block-2 .ms-cat-box .ms-cat-icon .ms-cat-title {
    font-size: 12px;
    text-align: center;
  }
  .ms-animated-banner {
    height: 200px;
  }
  .ms-animated-banner .ms-bnr-img {
    width: 400px;
    height: 400px;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    top: -95px;
  }
  .ms-animated-banner .ms-bnr-detail h2 {
    font-size: 18px;
    line-height: 25px;
  }
  .ms-mobile-menu,
  .ms-side-wish,
  .ms-side-cart {
    width: 300px;
  }
  .ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content .ms-availability a {
    width: auto;
    max-width: 100px;
  }
  .ms-pro-tab-nav .nav-item .nav-link {
    font-size: 13px;
    line-height: 28px;
  }
  .ms-pro-tab-nav .nav-item:not(:last-child) {
    margin-right: 20px;
  }
  .ms-animated-banner .ms-bnr-detail .ms-bnr-info {
    padding: 15px;
    background: rgba(255, 255, 255, 0.95);
    z-index: 2;
  }
}
@media (max-width: 420px) {
  .section-title h2 {
    font-size: 20px;
  }
  .ms-home .ms-category-block-2 {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, calc(50% - 8px));
  }
  .ms-home .ms-category-block-2 .ms-cat-box.more {
    display: block;
  }
  .ms-animated-banner .ms-bnr-detail {
    padding: 15px;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    display: none;
  }
  .ms-ofr-banners .ms-bnr-body .ms-bnr-detail {
    max-width: 150px;
  }
  .ms-ofr-banners .ms-bnr-body .ms-bnr-detail h5 {
    font-size: 16px;
  }
  .ms-ofr-banners .ms-bnr-body .ms-bnr-detail p {
    font-size: 13px;
    line-height: 17px;
  }
  .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;
  }
  .section-title .title-link a {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .ms-home .ms-hero-slider .ms-slide-content .ms-slide-title {
    font-size: 18px;
  }
  .ms-home .ms-copyrights .ms-payment img {
    width: 100%;
  }
  .ms-animated-banner .ms-bnr-img {
    left: -56%;
  }
  .ms-animated-banner .ms-bnr-detail .ms-bnr-info {
    margin: auto;
    text-align: center;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    display: none;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-3 {
    bottom: -66px;
    right: -35px;
  }
  .ms-ofr-banners .ms-bnr-body .ms-bnr-detail {
    max-width: 110px;
    top: auto;
    bottom: 15px;
    right: 15px;
    -webkit-transform: none;
            transform: none;
  }
  .ms-ofr-banners .ms-bnr-body .ms-bnr-detail p {
    display: none;
  }
  .ms-ofr-banners .ms-bnr-body .ms-bnr-detail a {
    padding: 3px 10px;
    font-size: 13px;
  }
  .ms-ofr-banners .ms-bnr-body .ms-bnr-img .lbl {
    font-size: 12px;
  }
  .ms-newsletter .ms-newsletter-detail .ms-detail h4 {
    font-size: 20px;
  }
  .ms-newsletter .ms-newsletter-detail .ms-newsletter-form form {
    width: calc(100% - 30px);
    margin: auto;
  }
  .svg_img.test_svg.top {
    left: 15px;
  }
  .svg_img.test_svg.bottom {
    right: 15px;
  }
  .svg_img.test_svg {
    width: 35px;
  }
}
/*# sourceMappingURL=demo-2.css.map */

/*-------------------------------------------------
    Site Footer Section
---------------------------------------------------*/
.ms-footer {
    color: #fff;
    background: #17181c !important;
}

    .ms-footer .footer-top .ms-footer-company {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

        .ms-footer .footer-top .ms-footer-company .ms-app-store {
            margin-bottom: 30px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
        }

    .ms-footer .footer-top .ms-footer-widget .ms-footer-logo {
        /*max-width: 144px;*/
        margin-bottom: 30px;
    }

    .ms-footer .footer-top .ms-footer-widget .ms-footer-detail {
        max-width: 400px;
        margin-bottom: 30px;
        padding: 0;
        font-size: 16px;
        line-height: 27px;
        font-weight: 300;
        color: #bbb;
        display: inline-block;
        position: relative;
    }

    .ms-footer .footer-top .ms-footer-widget .app-img img {
        max-width: 130px;
        margin-bottom: 15px;
    }

    .ms-footer .footer-top .ms-footer-widget .app-img .adroid {
        margin-right: 15px;
    }

    .ms-footer .footer-top .ms-footer-widget .ms-footer-heading {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 30px;
        color: #fff;
        letter-spacing: 0;
        position: relative;
        display: block;
        width: 100%;
        padding-bottom: 7px;
        text-transform: uppercase;
        font-family: "Poppins, sans-serif";
    }

        .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-footer .footer-top .ms-footer-widget .ms-footer-links .ms-footer-link {
        display: block;
        margin: 0;
        line-height: 1.5;
        border: 0;
        padding: 0;
        font-weight: 400;
        font-size: 16px;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .ms-footer .footer-top .ms-footer-widget .ms-footer-links .ms-footer-link:not(:last-child) {
            margin-bottom: 16px;
        }

        .ms-footer .footer-top .ms-footer-widget .ms-footer-links .ms-footer-link a {
            -webkit-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            font-size: 16px;
            line-height: 20px;
            padding: 0;
            color: #bbb;
            margin-bottom: 0;
            display: inline-block;
            position: relative;
            word-break: break-all;
            letter-spacing: 0;
            font-weight: 300;
        }

            .ms-footer .footer-top .ms-footer-widget .ms-footer-links .ms-footer-link a:hover {
                color: #3e9172;
                opacity: 1;
            }

    .ms-footer .footer-top .ms-footer-contact .ms-footer-widget .ms-footer-links li:first-child {
        -webkit-box-align: self-start;
        -ms-flex-align: self-start;
        align-items: self-start;
    }

    .ms-footer .footer-top .ms-footer-contact .ms-footer-widget .ms-footer-links li p {
        margin: 0;
        font-weight: 300;
        color: #bbb;
    }

    .ms-footer .footer-top .ms-footer-contact .ms-footer-widget .ms-footer-links a {
        text-transform: unset;
    }

    .ms-footer .footer-top .ms-footer-contact .ms-footer-widget .ms-footer-links .ms-footer-link span {
        width: 35px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .ms-footer .footer-top .ms-footer-social {
        margin-bottom: 0;
    }

        .ms-footer .footer-top .ms-footer-social ul {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        }

        .ms-footer .footer-top .ms-footer-social .ms-footer-widget .ms-footer-links .ms-footer-link {
            padding-right: 5px;
        }

            .ms-footer .footer-top .ms-footer-social .ms-footer-widget .ms-footer-links .ms-footer-link:not(:last-child) {
                margin-bottom: 0;
            }

            .ms-footer .footer-top .ms-footer-social .ms-footer-widget .ms-footer-links .ms-footer-link a {
                text-transform: capitalize;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                font-size: 15px;
            }

                .ms-footer .footer-top .ms-footer-social .ms-footer-widget .ms-footer-links .ms-footer-link a i {
                    font-size: 25px;
                    margin-right: 10px;
                }

.ms-footer-contact {
    margin-bottom: 30px;
}

.svg_img.foo_svg {
    height: 25px;
    fill: #bbb;
    width: auto;
}

.ms-foo-location .svg_img.foo_svg {
    margin-top: 3px;
}

.ms-foo-call .svg_img.foo_svg {
    height: 24px;
}

.ms-foo-mail .svg_img.foo_svg {
    height: 20px;
}

.footer-bottom {
    padding: 10px 0;
    border-top: 1px solid #2c2f36 !important;
}

    .footer-bottom .ms-bottom-info {
        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;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .footer-bottom .ms-copy {
        color: #bbb;
        font-size: 13px;
        letter-spacing: 1px;
        text-align: center;
        font-weight: 300;
    }

        .footer-bottom .ms-copy a {
            color: #bbb;
        }

        .footer-bottom .ms-copy .site-name:hover {
            color: #3e9172;
        }

/* Responsive footer css */
.ms-heading-res {
    display: none;
}

@media only screen and (max-width: 1399px) {
    .ms-footer .footer-top .ms-footer-widget .ms-footer-links .ms-footer-link a {
        font-size: 15px;
    }

    .ms-footer .footer-top .ms-footer-widget .ms-footer-links li p {
        font-size: 15px;
    }

    .ms-footer .footer-top .ms-footer-widget .app-img img {
        max-width: 120px;
    }

    .ms-footer .footer-top .ms-footer-widget .ms-footer-detail {
        font-size: 15px;
    }
}

@media only screen and (max-width: 1199px) {
    .ms-footer .footer-top .ms-footer-widget .ms-footer-links .ms-footer-link a {
        font-size: 14px;
    }

    .ms-footer .footer-top .ms-footer-widget .ms-footer-links li p {
        font-size: 14px;
    }

    .ms-footer .footer-top .ms-footer-widget .ms-footer-detail {
        font-size: 14px;
    }

    .ms-footer .footer-top .ms-footer-widget .ms-foo-location .svg_img.foo_svg {
        height: 20px;
    }

    .ms-footer .footer-top .ms-footer-widget .ms-foo-call .svg_img.foo_svg {
        height: 18px;
    }

    .ms-footer .footer-top .ms-footer-widget .ms-foo-mail .svg_img.foo_svg {
        height: 17px;
    }

    .ms-footer .footer-top .ms-footer-company .ms-app-store {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@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 .ms-footer-company .ms-app-store {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .ms-footer .footer-top .container > .row {
        padding: 0;
    }

    .ms-footer .footer-top .ms-footer-widget .ms-footer-links ul {
        margin-bottom: 15px;
    }

    .ms-footer .footer-top .ms-footer-widget .ms-footer-links .ms-footer-link:not(:last-child) {
        margin-bottom: 15px;
    }

    .ms-footer .footer-top .col-sm-12.col-lg-3 {
        width: 100%;
        margin-bottom: 0;
    }

    .ms-footer .footer-top .ms-footer-contact .ms-footer-widget .ms-footer-heading {
        margin-bottom: 15px;
    }

    .ms-footer-contact {
        margin-bottom: 0;
    }

    .footer-news-title {
        font-size: 20px;
    }

    .ms-subscribe-form {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58%;
        flex: 0 0 58%;
    }

    .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-links.ms-footer-dropdown {
        display: none;
        padding: 0 0 20px 0;
    }

    .footer-bottom-copy {
        text-align: center;
    }

    .footer-bottom {
        padding: 15px 0;
    }

        .footer-bottom .col {
            -webkit-box-flex: 1;
            -ms-flex: 1 0 100%;
            flex: 1 0 100%;
        }

        .footer-bottom .ms-bottom-info {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
        }

            .footer-bottom .ms-bottom-info .footer-copy {
                margin-bottom: 15px;
            }

    .col.footer-bottom-right {
        margin: 15px auto;
    }

    .footer-bottom-payment.d-flex.justify-content-end {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .ms-footer .footer-top .ms-footer-widget .s-head {
        display: block;
    }

    .ms-footer .footer-top .ms-footer-widget .ms-footer-heading {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .m-minus-991 {
        margin-bottom: -30px;
    }
}

@media (max-width: 360px) {
    .footer-bottom .ms-bottom-info .footer-bottom-right img {
        width: 100%;
    }
}

.text-right2 {
    text-align: right !important;
}