@charset "UTF-8";
:root{
  --theme-color: #0d6efd ;
  --menu-bg: #0d6efd;
  --menu-item-color: white;
  --menu-item-hover-color: #ff0000;
  --order-now-button-color: #ff0000;
  --order-now-button-hover-color: #ff0000;
}
/*-------------------------------------------------
  Fonts Family & Style CSS
---------------------------------------------------*/
/*--  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; */
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
h1 {
  font-family: "Poppins";
  font-weight: 700;
  letter-spacing: 0.01rem;
}

h2,
h3,
h4,
h5,
h6 {
  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: "Poppins", 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: var(--theme-color);
}

.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: var(--theme-color);
}
.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: var(--theme-color);
}
.section-title .title-link a:hover i {
  color: var(--theme-color);
}

.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: var(--theme-color);
}
.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: var(--theme-color);
}
.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;
  -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 .ms-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
#ms-overlay .ms-roller div {
  -webkit-animation: ms-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: ms-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-transform-origin: 40px 40px;
  transform-origin: 40px 40px;
}
#ms-overlay .ms-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #17181c;
  margin: -4px 0 0 -4px;
}
#ms-overlay .ms-roller div:nth-child(1) {
  -webkit-animation-delay: -0.036s;
  animation-delay: -0.036s;
}
#ms-overlay .ms-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
#ms-overlay .ms-roller div:nth-child(2) {
  -webkit-animation-delay: -0.072s;
  animation-delay: -0.072s;
}
#ms-overlay .ms-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
#ms-overlay .ms-roller div:nth-child(3) {
  -webkit-animation-delay: -0.108s;
  animation-delay: -0.108s;
}
#ms-overlay .ms-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
#ms-overlay .ms-roller div:nth-child(4) {
  -webkit-animation-delay: -0.144s;
  animation-delay: -0.144s;
}
#ms-overlay .ms-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
#ms-overlay .ms-roller div:nth-child(5) {
  -webkit-animation-delay: -0.18s;
  animation-delay: -0.18s;
}
#ms-overlay .ms-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
#ms-overlay .ms-roller div:nth-child(6) {
  -webkit-animation-delay: -0.216s;
  animation-delay: -0.216s;
}
#ms-overlay .ms-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
#ms-overlay .ms-roller div:nth-child(7) {
  -webkit-animation-delay: -0.252s;
  animation-delay: -0.252s;
}
#ms-overlay .ms-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
#ms-overlay .ms-roller div:nth-child(8) {
  -webkit-animation-delay: -0.288s;
  animation-delay: -0.288s;
}
#ms-overlay .ms-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@-webkit-keyframes ms-roller {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes ms-roller {
  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 var(--theme-color);
  -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: var(--theme-color);
  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: var(--theme-color);
  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: var(--theme-color);
}

.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: var(--theme-color);
}
.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: var(--theme-color);
}

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

/*===== 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: var(--theme-color) !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: var(--bs-danger);
  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;
  }
}
/*-------------------------------------------------
  Category sidebar  CSS
---------------------------------------------------*/
.ms-side-cat-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-category-sidebar.ms-open-cat {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.ms-category-sidebar {
  width: 350px;
  height: 100%;
  padding: 30px;
  font-size: 14px;
  font-weight: 400;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: auto;
  display: block;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background-color: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
  overflow: auto;
  opacity: 1;
}
.ms-category-sidebar::-webkit-scrollbar {
  width: 12px !important;
  height: 10px !important;
  padding: 8px !important;
}
.ms-category-sidebar::-webkit-scrollbar-track {
  width: 12px !important;
  background-color: #17181c !important;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0) !important;
}
.ms-category-sidebar::-webkit-scrollbar-thumb {
  background-color: #17181c !important;
  border: 3px solid #fff !important;
}
.ms-category-sidebar::-webkit-scrollbar-thumb:hover {
  background-color: var(--theme-color) !important;
}

.cat-sidebar {
  margin-bottom: -15px;
  position: sticky;
}
.cat-sidebar .cat-sidebar-box {
  width: 100%;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap {
  margin-bottom: 30px;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-res {
  display: none;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-block .ms-sb-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-block .ms-sb-title h3 {
  text-decoration: none;
  color: #444;
  display: block;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 5px;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-block .ms-sb-title h3 .ms-close {
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 28px;
  color: #ff8585;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-block .ms-sb-block-content ul {
  margin-bottom: 15px;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-block .ms-sb-block-content .ms-list {
  padding: 5px 15px;
  border: 1px solid #eee;
  border-radius: 3px;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-block .ms-sb-block-content li {
  padding: 0;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-block .ms-sb-block-content li .ms-sidebar-sub-item a {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #777;
  font-size: 14px;
  margin-top: 0;
  line-height: 20px;
  font-weight: 300;
  text-transform: capitalize;
  letter-spacing: 0;
  cursor: pointer;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-block .ms-sb-block-content li .ms-sidebar-sub-item a:hover {
  color: #17181c;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-block .ms-sb-block-content li .ms-sidebar-sub-item a span {
  text-transform: lowercase;
  font-size: 12px;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-block .ms-sb-block-content li .ms-sidebar-block-item {
  padding: 10px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #777;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1;
  cursor: pointer;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-block .ms-sb-block-content li .ms-sidebar-block-item .svg_img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: var(--theme-color);
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-block .ms-sb-block-content li .ms-sidebar-block-item::after {
  content: "\f067";
  position: absolute;
  right: 0;
  top: 40%;
  font-family: "MsIcons";
  cursor: pointer;
  font-size: 10px;
  color: #777;
  font-weight: 400;
  margin-left: 7px;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-block .ms-sb-block-content li li {
  padding: 0 0 6px;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sidebar-block .ms-sb-block-content ul ul {
  border-top: 1px solid #eee;
  display: none;
  padding-top: 13px;
  padding-bottom: 3px;
}
.cat-sidebar .cat-sidebar-box .ms-cat-sidebar-wrap .ms-sb-block-content {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
}

@media (max-width: 360px) {
  .ms-category-sidebar {
    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: var(--theme-color) !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: var(--theme-color);
}
.ms-side-wish .ms-wish-inner .ms-wish-pro-items li .ms-pro-content .ms-availability .not-avail {
  color: var(--bs-danger);
}
.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: var(--bs-danger);
  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 .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: var(--theme-color);
}
#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: var(--theme-color);
}
#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: var(--theme-color);
  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 {
  margin: 0 0 0 15px;
  padding: 10px 20px;
  border-radius: 3px;
}

/**  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 Popup for home page =====*/
#ms-popnews-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 25;
}

#ms-popnews-box {
  width: 100%;
  max-width: 600px;
  padding: 24px;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #17181c;
  display: none;
  z-index: 25;
  text-align: center;
  -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
#ms-popnews-box img {
  width: 100%;
  border-radius: 3px;
}
#ms-popnews-box h2 {
  text-decoration: none;
  color: #17181c;
  display: block;
  font-size: 22px;
  line-height: 33px;
  font-weight: 600;
  margin: 0 auto 10px;
  letter-spacing: 0;
  text-transform: capitalize;
}
#ms-popnews-box p {
  color: #777;
}
#ms-popnews-box form {
  margin-bottom: 0px;
}
#ms-popnews-box input {
  background-color: transparent;
  border: 1px solid #eeeeee;
  color: #17181c;
  font-size: 14px;
  margin-bottom: 27px;
  padding: 0 15px;
  width: 100%;
  outline: none;
  border-radius: 3px;
}

#ms-popnews-close {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  color: var(--bs-danger);
  border-radius: 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;
  font-size: 24px;
  line-height: 1;
  opacity: 0.5;
}
#ms-popnews-close:hover {
  opacity: 1;
}

/*===== Features sideabr css =====*/
.ms-features-sidebar-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 16;
}

.ms-features-sidebar {
  width: 250px;
  height: 100vh;
  position: fixed;
  right: -250px;
  top: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 16;
}
.ms-features-sidebar .tool-title {
  margin-bottom: 15px;
  padding: 15px;
  border-bottom: 1px solid #d9d9d9;
}
.ms-features-sidebar .tool-title h3 {
  line-height: 28px;
  margin: 0;
  font-size: 16px;
  color: #777;
  font-weight: 700;
  text-transform: uppercase;
}
.ms-features-sidebar .ms-tools-sidebar-toggle {
  position: absolute;
  top: 35%;
  right: 252px;
  width: 40px;
  height: 40px;
  background-color: #17181c;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  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: 25px;
  z-index: -1;
  text-decoration: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.ms-features-sidebar .ms-tools-sidebar-toggle .svg_img {
  width: 25px;
  height: 25px;
}
.ms-features-sidebar .ms-tools-sidebar-toggle .svg_img path {
  fill: #fff;
}
.ms-features-sidebar .ms-features-block {
  padding: 15px;
}
.ms-features-sidebar .ms-features-block .ms-features-title {
  margin-bottom: 10px;
  line-height: 20px;
  font-size: 14px;
  color: #777;
  font-weight: 600;
}
.ms-features-sidebar .ms-features-block ul {
  margin-bottom: -10px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
}
.ms-features-sidebar .ms-features-block ul li {
  width: 30px;
  height: 30px;
  margin: 0 10px 10px 0;
}
.ms-features-sidebar .ms-features-block ul li a {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 3px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-align: center;
  border: 2px solid transparent;
}
.ms-features-sidebar .ms-features-block ul li a.colorcode1 {
  background-color: var(--theme-color);
}
.ms-features-sidebar .ms-features-block ul li a.colorcode2 {
  background-color: #F2709C;
}
.ms-features-sidebar .ms-features-block ul li a.colorcode3 {
  background-color: #5243a5;
}
.ms-features-sidebar .ms-features-block ul li a.colorcode4 {
  background-color: #435da5;
}
.ms-features-sidebar .ms-features-block ul li a.colorcode5 {
  background-color: #dbd98d;
}
.ms-features-sidebar .ms-features-block ul li a.colorcode6 {
  background-color: #40526c;
}
.ms-features-sidebar .ms-features-block ul li a.colorcode7 {
  background-color: #db98b1;
}
.ms-features-sidebar .ms-features-block ul li a.colorcode8 {
  background-color: #ff8763;
}
.ms-features-sidebar .ms-features-block ul li a.colorcode9 {
  background-color: #ff6d6d;
}
.ms-features-sidebar .ms-features-block ul li.active a {
  border: 2px solid white;
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
}
.ms-features-sidebar .ms-features-block .ms-change-mode {
  width: 90px;
  height: 30px;
  margin-bottom: 10px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  white-space: nowrap;
  border-radius: 5px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
.ms-features-sidebar .ms-features-block .ms-change-mode div {
  width: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  cursor: pointer;
  color: #ffffff;
  font-size: 12px;
  border-radius: 3px;
  overflow: hidden;
  background: #333;
}
.ms-features-sidebar .ms-features-block .ms-change-mode .ms-mode-switch > * {
  width: 45px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 10px 0;
}
.ms-features-sidebar .ms-features-block .ms-change-mode .ms-mode-on {
  background: #63b760;
  color: #fff;
  display: none;
}
.ms-features-sidebar .ms-features-block .ms-change-mode .ms-mode-off {
  background: #ff7474;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ms-features-sidebar .ms-features-block .ms-change-mode.active .ms-mode-on {
  background: #63b760;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ms-features-sidebar .ms-features-block .ms-change-mode.active .ms-mode-off {
  display: none;
}

/*===== 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: var(--theme-color);
}
.ms-pro-tab-nav .nav-item .nav-link.active {
  color: var(--theme-color);
}

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

.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;
  border-radius: 10px;
}
.ms-product-inner .ms-pro-image {
  position: relative;
  overflow: hidden;
}
.ms-product-inner .ms-pro-image .image {
  display: block;
  overflow: hidden;
}
.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: var(--bs-danger);
}
.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: var(--theme-color);
}
.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: var(--theme-color);
}
.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: 5px 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: var(--theme-color);
  font-size: 12px;
  text-transform: uppercase;
}
.ms-product-inner .ms-pro-content .ms-pro-rat-price {
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 0 10px;
  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 10px;
  font-size: 16px;
  margin: 0 0 5px;
}
.ms-product-inner .ms-pro-content .ms-pro-title a {
  text-decoration: none;
  color: #212529;
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  height: 40px;
  overflow: hidden;
}
.ms-product-inner .ms-pro-content .ms-pro-title a:hover {
  color: var(--theme-color);
}
.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: var(--bs-danger);
  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:hover {
  background-color: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}
.ms-pro-variation .ms-pro-variation-inner.ms-pro-variation-size .ms-pro-variation-content li.active {
  background-color: var(--theme-color) !important;
  color: #fff !important;
  border-color: var(--theme-color) !important;
}

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

.svg_img.pro_svg {
  width: 18px;
  fill: #888888;
}

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

/*-------------------------------------------------
    Site Header Section
---------------------------------------------------*/
.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  max-width: 150px;
  font-size: 14px;
  line-height: 28px;
  color: #777;
}
.bootstrap-select .form-control {
  min-height: 35px !important;
  height: 35px !important;
}
.bootstrap-select .btn-light {
  background-color: transparent;
  border-color: transparent;
}
.bootstrap-select .btn-light:focus, .bootstrap-select .btn-light:active {
  outline: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.bootstrap-select .dropdown-menu {
  border: 1px solid #eee;
  -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
}
.bootstrap-select .dropdown-menu li a span.text {
  margin-right: 34px;
  font-size: 13px;
  color: #777;
}
.bootstrap-select .dropdown-menu .dropdown-item.active,
.bootstrap-select .dropdown-menu .dropdown-item:active {
  background-color: var(--theme-color);
}
.bootstrap-select .dropdown-menu .dropdown-item.active span,
.bootstrap-select .dropdown-menu .dropdown-item:active span {
  color: #fff;
}
.bootstrap-select .bs-actionsbox {
  padding: 8px;
}
.bootstrap-select .bs-actionsbox .btn-group button {
  width: 50%;
  font-size: 12px;
  color: var(--theme-color);
  font-weight: 500;
  border: 1px solid #eee;
}
.bootstrap-select .bs-actionsbox .btn-group button:hover {
  color: #60bb99;
}
.bootstrap-select .bs-ok-default:after {
  content: "✔";
  display: inline-block;
  color: #777;
  border: none;
  -webkit-transform: none;
  transform: none;
}

.ms-header {
  background-color: #fff;
  z-index: 14;
  position: relative;
}

.header-top {
  padding: 10px 0;
  color: #777;
  background-color: #f5f4f9;
}
.header-top .header-top-message {
  font-size: 13px;
}

.header-top-right-inner > div {
  padding-left: 20px;
}
.header-top-right-inner > div:last-child {
  padding-right: 0;
  border: none;
}
.header-top-right-inner > div a {
  color: #fff;
}
.header-top-right-inner > div a:hover {
  color: var(--theme-color);
}

.header-top-social ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-top-social ul li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
}
.header-top-social ul li a {
  margin: 0 5px;
  text-align: center;
  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: 15px;
}
.header-top-social ul li a i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #777;
}
.header-top-social ul li:hover i {
  color: var(--theme-color);
}
.header-top-social ul li.list-inline-item:not(:last-child) {
  margin-right: 15px;
}

.ms-help {
  padding-left: 20px;
  font-size: 13px;
  color: #777;
  letter-spacing: 0.7px;
  font-weight: 400;
}
.ms-help:hover {
  color: var(--theme-color);
}

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

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

.ms-header-bottom {
  padding: 15px 0;
}

.ms-flex {
  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;
}

.header-logo {
  text-align: left;
}
.header-logo img {
  width: 150px;
}

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

.header_svg {
  width: 26px;
  height: 26px;
  fill: var(--theme-color);
}

.svg_cat {
  width: 23px;
  height: 23px;
}

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

.ms-header-user .header_svg {
  width: 29px;
  height: 29px;
}

.ms-header-bottons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.ms-header-bottons .ms-acc-drop {
  position: relative;
}
.ms-header-bottons .ms-acc-drop:hover .ms-dropdown-menu {
  margin-top: 15px;
  opacity: 1;
  visibility: visible;
}
.ms-header-bottons .ms-acc-drop .ms-dropdown-menu {
  min-width: 150px;
  padding: 5px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 25px 0 0 0;
  position: absolute;
  z-index: 16;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  left: 0;
  right: auto !important;
  background: #fff;
  -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
  display: block;
  border-radius: 3px;
}
.ms-header-bottons .ms-acc-drop .ms-dropdown-menu a {
  font-size: 13px;
  color: #777;
}
.ms-header-bottons .ms-acc-drop .ms-dropdown-menu a:hover {
  background: transparent;
  color: var(--theme-color);
}
.ms-header-bottons .ms-header-btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  color: #17181c;
  width: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ms-header-bottons .ms-header-btn:not(:last-child) {
  margin-right: 30px;
}
.ms-header-bottons .ms-header-btn .header-icon {
  position: relative;
}
.ms-header-bottons .ms-header-btn .header-icon .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: #ec716d;
  border-radius: 50%;
  cursor: default;
  display: block;
  position: absolute;
  bottom: 20px;
  left: 0;
  z-index: 3;
  -webkit-animation: wave-animate 1s 1.5s infinite ease-out;
  animation: wave-animate 1s 1.5s infinite ease-out;
}
@-webkit-keyframes wave-animate {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 1;
    -webkit-transform-origin: center;
    transform-origin: center;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
  }
}
@keyframes wave-animate {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 1;
    -webkit-transform-origin: center;
    transform-origin: center;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
    -webkit-transform-origin: center;
    transform-origin: center;
  }
}
.ms-header-bottons .ms-header-btn .ms-header-count {
  width: 15px;
  height: 15px;
  color: #fff;
  background-color: #17181c !important;
  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: 50%;
  font-size: 11px;
  position: absolute;
  top: 0;
  right: -8px;
}
.ms-header-bottons .ms-header-btn:hover {
  color: var(--theme-color);
}
.ms-header-bottons .ms-header-btn:hover .ms-header-count {
  color: #f5f4f9;
}
.ms-header-bottons .ms-header-btn:hover .ms-btn-title {
  color: var(--theme-color);
}
.ms-header-bottons .ms-header-btn:hover .header_svg {
  fill: var(--theme-color);
}
.ms-header-bottons .ms-header-btn i {
  font-size: 21px;
  line-height: 1;
}
.ms-header-bottons .ms-header-btn .header_svg {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ms-header-bottons .ms-header-btn .ms-btn-stitle {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 13px;
  font-weight: 500;
  color: #17181c;
  line-height: 1;
}
.ms-header-bottons .ms-header-btn.ms-side-toggle {
  padding-right: 0;
}
.ms-header-bottons .ms-header-btn.dropdown-toggle::after {
  display: none;
}
.ms-header-bottons .ms-btn-title {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  line-height: 1;
  color: #777;
  margin-bottom: 6px;
  letter-spacing: 0.6px;
  text-transform: capitalize;
  font-weight: 400;
}

.ms-btn-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-transform: uppercase;
  margin-left: 10px;
}

div#ms-main-menu-desk {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 78%;
  flex: 0 0 78%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ms-main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ms-main-menu ul {
  width: 100%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
  position: relative;
}
.ms-main-menu ul li {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 0 15px;
}
.ms-main-menu ul li a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  line-height: 40px;
  text-decoration: none;
  text-transform: capitalize;
  color: var(--menu-item-color);
  display: block;
  font-weight: 500;
  position: relative;
}
.ms-main-menu ul li a i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--menu-item-color);
}
.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:hover > a {
  color: var(--menu-item-color);
}
.ms-main-menu ul li:hover > a .svg_img path {
  fill: var(--menu-item-color);
}
.ms-main-menu ul li:hover > a:after {
  color:var(--menu-item-color);
}
.ms-main-menu ul li .mega-menu {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-top: 15px;
  position: absolute;
  -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 20px 30px;
  opacity: 0;
  visibility: hidden;
  left: 0;
  width: 100%;
  z-index: 2;
  z-index: 15;
  border-radius: 3px;
}
.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: #60bb99;
  font-size: 15px;
  font-weight: 500;
  display: block;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  padding-bottom: 5px;
  height: auto;
}
.ms-main-menu ul li .mega-menu li ul li.menu_title a:hover {
  color: var(--theme-color);
}
.ms-main-menu ul li .mega-menu li ul li {
  border: 0 !important;
}
.ms-main-menu ul li .mega-menu li ul li a {
  color: #777;
  text-transform: capitalize;
  line-height: 30px;
  font-weight: 400;
  font-size: 13px;
  display: block;
  padding: 5px 0;
  border: 0;
  height: auto;
}
.ms-main-menu ul li .mega-menu li ul li a:hover {
  color: var(--theme-color);
}
.ms-main-menu ul li .mega-menu ul.ms-main-banner {
  margin-top: 20px;
}
.ms-main-menu ul li .mega-menu ul.ms-main-banner li {
  width: 25%;
  padding-right: 30px;
}
.ms-main-menu ul li .mega-menu ul.ms-main-banner li a {
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  height: auto;
}
.ms-main-menu ul li.dropdown {
  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;
  margin: 15px 0 0 0;
  position: absolute;
  z-index: 16;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  min-width: 205px;
  left: 0;
  right: auto !important;
  background: #fff;
  -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
  display: block;
  border-radius: 3px;
}
.ms-main-menu ul li.dropdown ul {
  padding-top: 5px;
  padding-bottom: 5px;
}
.ms-main-menu ul li.dropdown ul li.active a {
  color: var(--theme-color);
}
.ms-main-menu ul li.dropdown ul li.active a i {
  color: var(--theme-color);
}
.ms-main-menu ul li.dropdown ul li {
  padding: 0;
  margin: 0;
  display: block;
}
.ms-main-menu ul li.dropdown ul li:hover > a {
  color: var(--menu-bg);
}
.ms-main-menu ul li.dropdown ul li:hover > a i {
  color: var(--menu-bg);
}
.ms-main-menu ul li.dropdown ul li a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: block;
  line-height: 20px;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 13px;
  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 a i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #777;
}
.ms-main-menu ul li.dropdown ul li:first-child {
  border-top: none;
}
.ms-main-menu ul li.dropdown li.position-static {
  position: relative !important;
}
.ms-main-menu ul li.dropdown li.position-static:hover .sub-menu.sub-menu-child {
  margin: -5px 0 0 1px;
  opacity: 1;
  visibility: visible;
}
.ms-main-menu ul li.dropdown ul.sub-menu.sub-menu-child {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 30px 0 0 0;
  left: 100% !important;
  opacity: 0;
  visibility: hidden;
  top: 0;
}
.ms-main-menu ul li.dropdown:hover .sub-menu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.ms-main-menu ul li.dropdown:hover .mega-menu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.ms-main-menu ul .dropdown-arrow {
  position: relative !important;
}
.ms-main-menu ul .dropdown-arrow i {
  position: absolute;
  top: 12px;
  right: -16px;
  font-size: 18px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.ms-main-menu ul li.active > a {
  color: var(--theme-color);
}
.ms-main-menu > ul > li:hover > a {
  opacity: 0.8;
}
.ms-main-menu > ul > li:hover > a:before {
  background: var(--theme-color);
  width: 100%;
}
.ms-main-menu > ul > li:hover > a i {
  color: var(--menu-item-color);
}
.ms-main-menu > ul > li > a:before {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  width: 0;
  margin: 0 auto;
  background: transparent;
  left: 0;
  right: auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ms-main-menu > ul > li.active > a:before {
  background: var(--theme-color);
  width: 100%;
}

.ms-header-cat {
  background-color: var(--menu-bg);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

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

.ms-location-block .ms-location-menu {
  position: relative;
}
.ms-location-block .ms-location-menu .ms-location-toggle {
  min-height: 55px;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  cursor: pointer;
}
.ms-location-block .ms-location-menu .ms-location-toggle .ms-location-title {
  width: calc(100% - 30px);
  padding: 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  color: #777;
  letter-spacing: 0.2px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ms-location-block .ms-location-menu .ms-location-toggle .svg_loc path {
  stroke: #777;
  fill: #777;
}
.ms-location-block .ms-location-menu .ms-location-toggle i {
  font-size: 18px;
  text-transform: uppercase;
  color: #777;
  text-align: center;
  position: absolute;
  right: 15px;
}
.ms-location-block .ms-location-menu .ms-location-toggle i.eci-angle-down {
  font-size: 24 px;
}
.ms-location-block .ms-location-dropdown {
  width: 250px;
  padding: 20px;
  margin-top: 0;
  position: absolute;
  display: none;
  left: auto;
  right: 0;
  top: 100%;
  border-radius: 3px;
  z-index: 14;
  border: 1px solid #eee;
  border-top: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #ffffff none repeat scroll 0 0;
  overflow: auto;
  -webkit-box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.1);
}
.ms-location-block .ms-location-dropdown::-webkit-scrollbar {
  width: 12px !important;
  height: 10px !important;
  padding: 8px !important;
}
.ms-location-block .ms-location-dropdown::-webkit-scrollbar-track {
  width: 12px !important;
  background-color: #17181c !important;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0) !important;
}
.ms-location-block .ms-location-dropdown::-webkit-scrollbar-thumb {
  background-color: #17181c !important;
  border: 3px solid #fff !important;
}
.ms-location-block .ms-location-dropdown::-webkit-scrollbar-thumb:hover {
  background-color: var(--theme-color) !important;
}
.ms-location-block .ms-location-dropdown .loc-grid {
  padding-left: 10px;
  padding-right: 10px;
}
.ms-location-block .ms-location-dropdown .loc-grid .loc-list {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  padding: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  border: 1px solid #eee;
  border-radius: 3px;
  cursor: pointer;
}
.ms-location-block .ms-location-dropdown .loc-grid .loc-list span {
  width: calc(100% - 30px);
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: uppercase;
}
.ms-location-block .ms-location-dropdown .loc-grid .loc-list:not(:last-child) {
  margin-bottom: 10px;
}
.ms-location-block .ms-location-dropdown .loc-grid .loc-list .svg_loc {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.ms-location-block .ms-location-dropdown .loc-grid .loc-list .svg_loc path {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  stroke: #777;
  fill: #777;
}
.ms-location-block .ms-location-dropdown .loc-grid .loc-list:hover {
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
}
.ms-location-block .ms-location-dropdown .loc-grid .loc-list:hover .svg_loc path {
  stroke: var(--theme-color);
  fill: var(--theme-color);
}
.ms-location-block .ms-location-dropdown .loc-grid .current {
  color: var(--theme-color);
  border: 1px solid var(--theme-color);
}
.ms-location-block .ms-location-dropdown .loc-grid .current .svg_loc path {
  stroke: var(--theme-color);
  fill: var(--theme-color);
}
.ms-location-block .ms-location-dropdown li.show a {
  text-align: center;
}
.ms-location-block .ms-location-dropdown li.show a:hover {
  color: #777;
}
.ms-location-block .ms-location-dropdown li.show a:hover img {
  margin-left: 10px;
}
.ms-location-block .ms-location-dropdown li.show a img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 13px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.ms-location-block .ms-location-dropdown li:first-child {
  border-top: none;
}
.ms-location-block .ms-location-dropdown li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.ms-category-menu {
  position: relative;
}
.ms-category-menu .ms-category-toggle {
  min-height: 55px;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  cursor: pointer;
}
.ms-category-menu .ms-category-toggle .svg_cat path {
  fill: #777;
}

.header-search {
  width: 100%;
  min-width: 600px;
  padding: 0 30px;
  position: relative;
}
.header-search .form-control {
  display: block;
  width: 100%;
  min-height: 40px;
  height: 40px;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: #777;
  border-radius: 0;
  background-color: transparent;
  border: none;
  letter-spacing: 0.6px;
}
.header-search .bs-searchbox {
  margin: 4px 8px;
  padding: 0;
  border: 1px solid #eee;
  border-radius: 3px;
}
.header-search input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.header-search .dropdown-menu {
  border-radius: 3px;
}

.ms-header-search {
  margin: 0 auto;
}
.ms-header-search form.ms-search-group-form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #eee;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 3px;
}

.action-form {
  position: relative;
}

.search_submit {
  position: relative;
  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: 48px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48px;
  flex: 0 0 48px;
  height: 100%;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  padding: 0;
  height: 40px;
}
.search_submit .search_svg {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 16px;
  height: 16px;
  fill: var(--theme-color);
}
.search_submit:hover .search_svg {
  fill: #60bb99;
}

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

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

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

.ms-menu-content > ul > li .menu-toggle {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 24px;
  height: 44px;
  cursor: pointer;
  background-color: transparent;
}
.ms-menu-content > ul > li .menu-toggle::before {
  width: 100%;
  content: "\f067";
  font-family: "MsIcons";
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  color: #777;
  font-size: 12px;
}
.ms-menu-content > ul > li.active > .menu-toggle::before {
  content: "\f068";
}
.ms-menu-content > ul > li.active > ul > li.active > .menu-toggle::before {
  content: "\f068";
}

/*===== Mobile menus =====*/
.ms-mobile-menu-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: var(--theme-color) !important;
}
.ms-mobile-menu .ms-menu-title {
  width: 100%;
  margin-bottom: 15px;
  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;
  border-bottom: 2px solid #eee;
}
.ms-mobile-menu .ms-menu-title .menu_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: #17181c;
  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-mobile-search form {
  position: relative;
}
.ms-mobile-menu .ms-menu-inner .ms-mobile-search form input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #eee;
}
.ms-mobile-menu .ms-menu-inner .ms-mobile-search form input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ms-mobile-menu .ms-menu-inner .ms-mobile-search form button {
  position: absolute;
  top: 3px;
  right: 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;
}

/* Responsive Header */
@media (max-width: 1399px) {
  .header-search {
    min-width: 400px;
  }
  .ms-search-select-inner .bootstrap-select {
    width: 150px !important;
  }
  .ms-search-select-inner .dropdown-menu {
    min-width: 200px;
  }
  div#ms-main-menu-desk {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 78%;
    flex: 0 0 70%;
  }
}
@media (max-width: 1199px) {
  .ms-header-bottons .ms-header-btn .ms-btn-stitle {
    font-size: 11px;
  }
  .ms-header-bottons .ms-header-btn .ms-btn-stitle {
    min-width: 48px;
  }
  .header-top-center {
    display: none;
  }
}
@media (max-width: 991px) {
  .ms-header-bottom {
    border-bottom: 1px solid #eee;
  }
  .ms-header-bottom .ms-site-menu-icon .svg_img path {
    fill: #777;
  }
  .ms-header {
    z-index: 16;
  }
  .ms-header-bottons {
    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-header-bottons .right-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .ms-header-bottons .ms-header-btn:not(:last-child) {
    margin-right: 20px;
  }
  .ms-header-bottons .ms-header-btn .header-icon .main-label-note-new {
    display: none;
  }
  .ms-header-btn .header_svg path {
    fill: #777;
  }
  .ms-category-menu .ms-category-toggle {
    min-height: 30px;
    padding: 0;
  }
  .ms-category-menu .ms-category-toggle .svg_img path {
    fill: #777;
  }
  .ms-header-user .header_svg {
    width: 22px;
    height: 22px;
  }
  .ms-wish-toggle .header_svg {
    width: 22px;
    height: 22px;
  }
  .ms-cart-toggle .header_svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  .header-logo img {
    width: 150px;
  }
}
@media (max-width: 480px) {
  .ms-mobile-menu {
    width: 300px;
  }
}
/*-------------------------------------------------
    Site Footer Section
---------------------------------------------------*/
.ms-footer {
  color: #fff;
  background: var(--theme-color) !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 var(--theme-color);
  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: var(--theme-color);
  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: var(--theme-color);
}

/* 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%;
  }
}
/**===== Blog & News Section =====**/
.ms-news-section .section-title {
  margin-bottom: 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ms-blog .section-title, .ms-news-section .section-title {
  margin-bottom: 15px;
}
.ms-blog .news-info, .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: 3px;
  border: 1px solid #eee;
}
.ms-blog .news-info:hover .news-img img, .ms-news-section .news-info:hover .news-img img {
  -webkit-transform: rotate(-3deg) scale(1.1);
  transform: rotate(-3deg) scale(1.1);
}
.ms-blog .news-info .news-img, .ms-news-section .news-info .news-img {
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.ms-blog .news-info .news-img img, .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-blog .news-info .detail, .ms-news-section .news-info .detail {
  width: 100%;
  margin: 0;
}
.ms-blog .news-info .detail label, .ms-news-section .news-info .detail label {
  margin-top: 20px;
  display: inline-block;
  font-size: 13px;
  color: #999;
  border-radius: 5px;
}
.ms-blog .news-info .detail label a, .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-blog .news-info .detail label a:hover, .ms-news-section .news-info .detail label a:hover {
  color: var(--theme-color);
}
.ms-blog .news-info .detail h3, .ms-news-section .news-info .detail h3 {
  margin: 10px 0 15px 0;
  padding: 0;
  line-height: 26px;
}
.ms-blog .news-info .detail h3 a, .ms-news-section .news-info .detail h3 a {
  font-family: "Poppins, sans-serif";
  color: #17181c;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
}
.ms-blog .news-info .detail p, .ms-news-section .news-info .detail p {
  margin-bottom: 15px;
  padding: 0;
  font-size: 14px;
  color: #777;
  line-height: 23px;
  font-weight: 400;
}
.ms-blog .news-info .detail .more-info a, .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: 3px;
}
.ms-blog .news-info .detail .more-info a:hover, .ms-news-section .news-info .detail .more-info a:hover {
  background: #fff;
  color: #17181c;
}

/**  Blog Sidebar  **/
.ms-blogs-sidebar .ms-sb-title {
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
}
.ms-blogs-sidebar .ms-sb-title h3 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  font-family: "Poppins, sans-serif";
  font-size: 18px;
  font-weight: 500;
}
.ms-blogs-sidebar .ms-blog-sidebar-wrap {
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 3px;
}
.ms-blogs-sidebar .ms-blog-search {
  height: 50px;
  width: 100%;
  margin-bottom: 30px;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: 1px solid #eee;
  color: #17181c;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.ms-blogs-sidebar .ms-blog-search .ms-blog-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
}
.ms-blogs-sidebar .ms-blog-search .form-control {
  display: block;
  width: 100%;
  min-height: 48px;
  height: 48px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #777;
  background-color: transparent;
  border: none;
  letter-spacing: 0;
}
.ms-blogs-sidebar .ms-blog-search .submit {
  position: relative;
  height: 48px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  color: #17181c;
}
.ms-blogs-sidebar .ms-sidebar-block ul li a {
  padding-left: 30px;
}
.ms-blogs-sidebar .ms-sidebar-block .ms-sidebar-block-item {
  position: relative;
}
.ms-blogs-sidebar .ms-sidebar-block .ms-sidebar-block-item input {
  width: 100%;
  height: calc(100% - 5px);
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 999;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.ms-blogs-sidebar .ms-sidebar-block .ms-sidebar-block-item input:checked ~ .checked::after {
  display: block;
}
.ms-blogs-sidebar .ms-sidebar-block .ms-sidebar-block-item a {
  width: 100%;
  display: block;
  color: #777;
  font-size: 14px;
  margin-top: 0;
  line-height: 20px;
  font-weight: 400;
  text-transform: capitalize;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.ms-blogs-sidebar .ms-sidebar-block .ms-sidebar-block-item a span {
  color: #999;
  font-size: 13px;
}
.ms-blogs-sidebar .ms-sidebar-block .ms-sidebar-block-item .checked {
  position: absolute;
  top: 50%;
  left: 0;
  height: 18px;
  width: 18px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 3px;
  overflow: hidden;
}
.ms-blogs-sidebar .ms-sidebar-block .ms-sidebar-block-item .checked:after {
  left: -1px;
  top: -1px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--theme-color);
  content: "\f00c";
  position: absolute;
  display: none;
  background: var(--theme-color);
  font-family: "Msicons";
  font-size: 10px;
  color: #fff;
  line-height: 16px;
  text-align: center;
}
.ms-blogs-sidebar .ms-sidebar-block:not(:last-child) {
  margin-bottom: 30px;
}
.ms-blogs-sidebar .ms-sidebar-block .ms-sidebar-block-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.ms-blogs-sidebar .ms-sidebar-block .ms-sidebar-block-item .ms-sidebar-block-img {
  margin-right: 15px;
}
.ms-blogs-sidebar .ms-sidebar-block .ms-sidebar-block-item .ms-sidebar-block-img img {
  width: 100px;
  border-radius: 3px;
}
.ms-blogs-sidebar .ms-sidebar-block .ms-sidebar-block-item .ms-sidebar-block-detial .ms-blog-title a {
  color: #777;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 22px;
  font-weight: 600;
}
.ms-blogs-sidebar .ms-sidebar-block .ms-sidebar-block-item .ms-sidebar-block-detial .ms-blog-date {
  margin-bottom: 5px;
  font-size: 14px;
  color: #999;
  line-height: 1;
  letter-spacing: 0;
}
.ms-blogs-sidebar .ms-sidebar-block .ms-sidebar-block-item .ms-sidebar-block-detial a {
  font-size: 14px;
  color: var(--theme-color);
}

/**  Single blog (Blog details)   **/
.ms-single-blog-item .single-blog-info .news-img img {
  width: 100%;
  border-radius: 3px;
}
.ms-single-blog-item .single-blog-info .single-blog-detail label {
  margin-bottom: 15px;
  color: #999;
}
.ms-single-blog-item .single-blog-info .single-blog-detail label a {
  color: #999;
}
.ms-single-blog-item .single-blog-info .single-blog-detail label a:hover {
  color: var(--theme-color);
}
.ms-single-blog-item .single-blog-info .single-blog-detail h3 {
  font-size: 22px;
  font-weight: 600;
  color: #17181c;
}
.ms-single-blog-item .single-blog-info .single-blog-detail p {
  color: #777;
  font-size: 14px;
}
.ms-single-blog-item .single-blog-info .single-blog-detail .ms-text-highlight {
  font-weight: 500;
  font-style: italic;
}
.ms-single-blog-item .single-blog-info .single-blog-detail .sub-img {
  margin-top: 30px;
}
.ms-single-blog-item .single-blog-info .single-blog-detail .sub-img img {
  width: 100%;
  margin-bottom: 24px;
  border-radius: 3px;
}

.ms-blog-comments .ms-blog-dms-title {
  margin-bottom: 30px;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: 600;
  background-color: #f5f4f9;
  border-radius: 3px;
}
.ms-blog-comments .sub-cmt {
  margin-left: 65px;
}
.ms-blog-comments .ms-single-comment-wrapper {
  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-blog-comments .ms-single-comment-wrapper .ms-blog-user-img {
  width: 50px;
  margin-right: 15px;
}
.ms-blog-comments .ms-single-comment-wrapper .ms-blog-user-img img {
  width: 100%;
  border-radius: 3px;
}
.ms-blog-comments .ms-single-comment-wrapper .ms-blog-comment-content {
  width: calc(100% - 115px);
}
.ms-blog-comments .ms-single-comment-wrapper .ms-blog-comment-content h5 {
  color: #17181c;
  font-size: 16px;
  font-weight: 600;
}
.ms-blog-comments .ms-single-comment-wrapper .ms-blog-comment-content span {
  color: #999;
  font-size: 13px;
}
.ms-blog-comments .ms-single-comment-wrapper .ms-blog-comment-content p {
  margin: 5px 0;
  color: #777;
  font-size: 14px;
}
.ms-blog-comments .ms-single-comment-wrapper .ms-blog-comment-content .ms-blog-details-btn a {
  color: var(--theme-color);
  font-size: 13px;
}
.ms-blog-comments .ms-blog-cmt-form .ms-blog-form input {
  width: 100%;
  height: 45px;
  margin-bottom: 30px;
  padding-left: 20px;
  background: transparent none repeat scroll 0 0;
  border: 1px solid #eee;
  border-radius: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #777;
  font-size: 14px;
}
.ms-blog-comments .ms-blog-cmt-form .ms-blog-form textarea {
  width: 100%;
  height: 200px;
  margin-bottom: 30px;
  padding: 15px 20px;
  border: 1px solid #eee;
  border-radius: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.ms-blog-comments .ms-blog-cmt-form .ms-blog-form textarea:focus {
  outline: none;
}

/*===== Banners section css =====*/
.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%;
  border-radius: 3px;
}
.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: var(--theme-color);
  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;
}

/*===== Category section css =====*/
.ms-category-shop .ms-category-block {
  padding: 0 !important;
  border: 0 !important;
}

.ms-category .ms-category-block {
  margin-top: 15px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: 1px solid #eee;
  border-radius: 3px;
}
.ms-category .ms-category-block .ms-cat-box {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
  background: white;
  border: 1px solid #eee;
}
.ms-category .ms-category-block .ms-cat-box .ms-cat-icon {
  height: 100%;
  padding: 15px 0;
  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;
  gap:10px
}
.ms-category .ms-category-block .ms-cat-box .ms-cat-icon:hover .svg_img {
  -webkit-animation: catshake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: catshake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@-webkit-keyframes catshake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}
@keyframes catshake {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-4px, 0, 0);
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }
}
.ms-category .ms-category-block .ms-cat-box .ms-cat-icon .svg_img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.ms-category .ms-category-block .ms-cat-box .ms-cat-icon .ms-cat-title {
  margin: 15px 0 0 0;
  font-size: 16px;
  font-weight: 400;
  color: #17181c;
}
.ms-category .ms-category-block .ms-cat-box:hover .ms-cat-icon .ms-cat-title{
  color: var(--theme-color);
}
.ms-category .ms-category-block .ms-cat-box .ms-cat-icon .items {
  margin: 0;
  font-size: 14px;
  line-height: 28px;
  color: #777;
}
.ms-category .ms-category-block .ms-cat-box .ms-cat-icon .ms-lbl {
  padding: 0 5px;
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--theme-color);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 3px;
}

/**===== Start Listing | Discover Section ====**/
.ms-listing-section .section-title {
  margin-bottom: 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.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;
  border-radius: 3px;
}
.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;
  border-radius: 3px;
}
.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;
  border-radius: 3px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f5f4f9;
}
.ms-listing .ms-list-block ul li:hover {
  border: 1px solid var(--theme-color);
}
.ms-listing .ms-list-block ul li:hover img {
  display: block;
  opacity: 1;
  border: 1px solid transparent !important;
}
.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 15px 10px;
  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;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.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: 15px;
  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: 35px;
  height: 35px;
  margin: 0 10px;
  position: relative;
  display: block;
  border: 1px solid #eee;
  border-radius: 3px;
  z-index: 1;
}

/*-------------------------------------------------
   Demo 1 Page CSS
---------------------------------------------------*/
/*===== Hero section css =====*/
.ms-hero {
  width: 100%;
  height: 100%;
  /*-----  Slider Style  -----*/
}
.ms-hero .ms-main-content {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, calc(33.3333333333% - 16px));
  grid-row-gap: 24px;
  grid-column-gap: 24px;
}
.ms-hero .ms-main-content .ms-slider-content {
  height: 100%;
  -ms-grid-column-span: 2;
  grid-column-end: span 2;
  -ms-grid-row-span: 2;
  grid-row-end: span 2;
}
.ms-hero .ms-main-content .ms-slider-content .ms-main-slider .ms-slider {
  border-radius: 3px;
}
.ms-hero .ms-main-content .ms-slider-content .ms-main-slider .ms-slider .ms-slide-content {
  margin-left: 50px;
  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;
  position: relative;
  z-index: 9;
}
.ms-hero .ms-main-content .ms-slider-content .ms-main-slider .ms-slider .ms-slide-content .ms-slide-stitle {
  margin-bottom: 15px;
  color: #17181c;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02rem;
  position: relative;
  text-transform: capitalize;
}
.ms-hero .ms-main-content .ms-slider-content .ms-main-slider .ms-slider .ms-slide-content .ms-slide-title {
  font-size: 35px;
  color: var(--theme-color);
  margin-bottom: 15px;
  letter-spacing: 0.05rem;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  line-height: 1;
}
.ms-hero .ms-main-content .ms-slider-content .ms-main-slider .ms-slider .ms-slide-content .ms-slide-desc {
  display: block;
}
.ms-hero .ms-main-content .ms-slider-content .ms-main-slider .ms-slider .ms-slide-content .ms-slide-desc p {
  margin-bottom: 20px;
  margin-right: 78px;
  font-size: 20px;
  color: #777;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
}
.ms-hero .ms-main-content .ms-slider-content .ms-main-slider .ms-slider .ms-slide-content .ms-slide-desc .btn {
  font-size: 15px;
  text-transform: uppercase;
  padding: 0 36px;
  letter-spacing: 0;
  height: 45px;
  line-height: 45px;
}
.ms-hero .ms-main-content .ms-slider-content .ms-main-slider .swiper-slide {
  background-size: cover;
}
.ms-hero .swiper-buttons {
  display: none;
}
.ms-hero .main-slider-dot .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin: 0 2.5px !important;
  display: inline-block;
  border-radius: 3px;
  opacity: 1;
  border: 1px solid #17181c;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: transparent;
}
.ms-hero .main-slider-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #17181c !important;
  width: 30px;
}
.ms-hero .slider-animation > * {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
.ms-hero .swiper-slide-active .slider-animation > * {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.ms-hero .swiper-slide-active .slider-animation > *:nth-child(1) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.ms-hero .swiper-slide-active .slider-animation > *:nth-child(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.ms-hero .swiper-slide-active .slider-animation > *:nth-child(3) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.ms-hero .swiper-slide-active .slider-animation > *:nth-child(4) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.ms-hero .swiper-slide-active .slider-animation > *:nth-child(5) {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.ms-hero .swiper-slide-active .slider-animation > *:nth-child(6) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

/*===== New Product css =====*/
.ms-product-tab {
  display: block;
  -webkit-transform: none;
  transform: none;
}

/*===== Animated banner Section =====*/
.ms-animated-banner {
  width: 100%;
  height: 450px;
  background-image: url(../img/banner/1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
  border-radius: 3px;
}
.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: 50px;
  font-weight: 700;
  color: var(--theme-color);
  line-height: 50px;
  z-index: 2;
  position: relative;
}
.ms-animated-banner .ms-bnr-detail h3 {
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 600;
  z-index: 2;
}
.ms-animated-banner .ms-bnr-detail h3 span {
  font-weight: 400;
  color: #777;
}
.ms-animated-banner .ms-bnr-detail a {
  margin-top: 15px;
  padding: 5px 10px;
  z-index: 2;
}

/*===== 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: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border-radius: 3px;
  border: 1px solid #eee;
}
.ms-new-product-block .ms-all-product-inner:hover .add-to-cart {
  opacity: 1;
}
.ms-new-product-block .ms-all-product-inner .add-to-cart {
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #eee;
  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;
}
.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;
  border-radius: 3px;
}
.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: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  font-family: "Poppins, sans-serif";
}
.ms-new-product-block .ms-pro-content .ms-pro-stitle a {
  color: #777;
  font-size: 13px;
  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;
  font-weight: 500;
}
.ms-new-product-block .ms-pro-content .ms-pro-stitle a:hover {
  color: var(--theme-color);
}
.ms-new-product-block .ms-pro-content span.new-price {
  color: var(--theme-color);
  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;
}

/*===== Deal section css =====*/
.ms-deal-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-deal-section .section-title .dealend-timer {
  padding-right: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
}
.ms-deal-section .section-title .dealend-timer .dealend-timer {
  background-color: #f5f4f9;
  border-radius: 3px;
}
.ms-deal-section .section-title .dealend-timer .time-block {
  margin-left: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  color: #17181c;
}
.ms-deal-section .section-title .dealend-timer .time-block .day {
  margin-left: 5px;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 28px;
  color: #17181c;
}
.ms-deal-section .section-title .dealend-timer .time-block .time {
  min-width: 20px;
  position: relative;
}
.ms-deal-section .section-title .dealend-timer .time-block .dots {
  margin-top: -1px;
  margin-left: 5px;
  color: #17181c;
}

/*===== Top vendor section css =====*/
.ms-vendor-section .section-title {
  margin-bottom: 15px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ms-top-vendor .ms-top-vendor-block {
  overflow: hidden;
  background-color: #f5f4f9;
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-detail {
  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;
  position: relative;
  border-bottom: 1px solid #eee;
}
.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);
  border-radius: 3px;
}
.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: 500;
  color: #17181c;
  text-transform: capitalize;
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-detail .ms-vendor-info a:hover {
  color: var(--theme-color);
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-detail .ms-vendor-info p {
  margin: 0;
  color: #777;
  font-size: 14px;
  line-height: 22px;
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-detail .ms-vendor-info .ms-pro-rating {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.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: 12px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, calc(50% - 6px));
  grid-row-gap: 12px;
  grid-column-gap: 12px;
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-products a {
  border: 1px solid #eee;
  border-radius: 3px;
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-products a:hover {
  border: 1px solid var(--theme-color);
}
.ms-top-vendor .ms-top-vendor-block .ms-vendor-products a img {
  border-radius: 3px;
}

/**===== Start Newsletter Section =====**/
.ms-newsletter {
  height: 200px;
  background-image: url(../img/bg/news.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.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 #fff;
  border-radius: 3px;
}
.ms-newsletter .ms-newsletter-detail .ms-newsletter-form input {
  display: inline-block;
  vertical-align: top;
  line-height: 44px;
  height: 44px;
  color: #777;
  font-size: 15px;
  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: 400;
  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;
  border-radius: 3px !important;
}
.ms-newsletter .ms-newsletter-detail .ms-newsletter-form button .svg_img {
  width: 20px;
  height: 20px;
}

/**===== 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;
  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;
  border-radius: 3px;
}
.ms-ser-inner:hover .ms-service-image svg {
  stroke-dashoffset: 0;
  -webkit-transition: fill 0.5s, stroke-dashoffset 6s, -webkit-transform 0.3s;
  transition: fill 0.5s, stroke-dashoffset 6s, -webkit-transform 0.3s;
  transition: transform 0.3s, fill 0.5s, stroke-dashoffset 6s;
  transition: transform 0.3s, fill 0.5s, stroke-dashoffset 6s, -webkit-transform 0.3s;
}
.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-family: "Poppins, sans-serif";
  font-size: 18px;
  font-weight: 500;
  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;
}

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

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

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

.ms-test-outer {
  max-width: 500px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

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

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

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

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

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

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

.ms-insta-inner {
  padding: 0 12px;
}
.ms-insta-inner a {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid #eee;
}
.ms-insta-inner a:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--theme-color);
  z-index: 2;
  opacity: 0;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ms-insta-inner a:before {
  font-family: "MsIcons";
  content: "\f16d";
  font-size: 35px;
  top: 0;
  left: 0;
  color: #fff;
  z-index: 3;
  position: absolute;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  line-height: 1;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  right: 0;
}
.ms-insta-inner a:hover:after {
  opacity: 0.6;
}
.ms-insta-inner a:hover:before {
  opacity: 1;
  visibility: visible;
}
.ms-insta-inner img {
  max-width: 100%;
  width: 150px;
  border-radius: 3px;
}

/*  Demo 1 Responsive style  */
@media (max-width: 1399px) {
  .ms-hero .ms-main-content .ms-slider-content .ms-main-slider .ms-slider .ms-slide-content .ms-slide-title {
    font-size: 32px !important;
  }
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon .svg_img {
    width: 60px;
    height: 60px;
  }
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon .ms-cat-title {
    font-size: 15px;
  }
  .ms-animated-banner {
    height: 380px;
  }
  .ms-animated-banner .ms-bnr-detail h2 {
    font-size: 38px;
  }
  .ms-test-section .ms-test-name {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .ms-hero {
    height: auto;
    position: relative;
  }
  .ms-hero .container-fluid {
    max-width: 930px;
  }
  .ms-hero .border-content {
    width: 100%;
    padding: 0 15px;
  }
  .ms-hero .main-bg-black {
    padding: 30px 30px 15px 30px;
    border-right: 1px solid #eee;
    border-bottom: 0;
  }
  .ms-hero .ms-main-content {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, calc(50% - 16px));
    grid-row-gap: 24px;
    grid-column-gap: 24px;
  }
  .ms-hero .ms-main-content .ms-slider-content .ms-main-slider .ms-slider .ms-slide-content .ms-slide-title {
    font-size: 25px !important;
  }
  .ms-hero .ms-main-content .ms-banner-content .ms-slider-grid-item {
    height: 200px;
  }
  .ms-hero .ms-main-content .ms-banner-content .ms-slider-grid-item .ms-detail h6 {
    font-size: 17px;
  }
  .ms-hero .ms-main-content .ms-banner-content .ms-slider-grid-item .ms-detail p {
    margin: 0;
  }
  .ms-hero .border-content-color {
    width: 100%;
    padding: 0 15px 80px 15px;
  }
  .ms-hero .ms-category-block {
    padding: 15px 30px 30px 30px;
    border: 1px solid #eee;
    border-top: 0;
  }
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon {
    padding: 30px;
  }
  .ms-animated-banner {
    height: 350px;
  }
  .ms-animated-banner .ms-bnr-detail h2 {
    font-size: 30px;
    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-animated-banner .ms-bnr-detail .fruit-2 {
    top: -53px;
    right: 341px;
  }
  .ms-social {
    display: none;
  }
}
@media (max-width: 991px) {
  .ms-hero .ms-main-content .ms-slider-content .ms-main-slider .ms-slider .ms-slide-content .ms-slide-title {
    font-size: 23px !important;
  }
  .ms-new-product-block .ms-all-product-inner .add-to-cart {
    opacity: 1;
  }
  .ms-pro-tab-nav .nav-item:not(:last-child) {
    margin-right: 30px;
  }
  .ms-animated-banner {
    height: 300px;
  }
  .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;
  }
  .m-t-991 {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .ms-hero .ms-main-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-hero .ms-main-content .ms-banner-content {
    width: 100%;
  }
  .ms-hero .ms-main-content .ms-banner-content .ms-slider-grid-item {
    padding: 50px 30px;
  }
  .ms-hero .ms-category-block {
    padding: 0 15px 15px 15px;
    grid-template-columns: repeat(auto-fill, calc(33.33% - 10px));
    grid-row-gap: 15px;
    grid-column-gap: 15px;
  }
  .ms-hero .main-bg-black {
    padding: 15px;
  }
  .ms-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-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-newsletter {
    background-size: auto;
  }
  .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;
  }
  .ms-top-vendor .ms-top-vendor-block .ms-vendor-detail .ms-vendor-info .ms-sale p {
    display: none;
  }
  #ms-popnews-box {
    width: 90%;
  }
  #ms-popnews-box img {
    display: none;
  }
  .m-t-767 {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {

  .ms-deal-section .section-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ms-deal-section .section-title #dealend {
    margin-top: 15px;
  }
  .ms-vendor-section .section-title, .ms-news-section .section-title, .ms-listing-section .section-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ms-vendor-section .section-title .title-link, .ms-news-section .section-title .title-link, .ms-listing-section .section-title .title-link {
    margin-top: 15px;
  }
  .ms-vendor-section .section-title .title-link a, .ms-news-section .section-title .title-link a, .ms-listing-section .section-title .title-link a {
    font-size: 14px;
  }
  .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-hero .ms-hero-slider .ms-slide {
    height: 60vh;
  }
  .ms-hero .ms-hero-slider .ms-slide-content {
    padding: 50px;
  }
  .ms-hero .ms-hero-slider .ms-slide-content .ms-slide-title {
    font-size: 24px;
  }
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon {
    padding: 15px 10px;
  }
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon .svg_img {
    width: 40px;
    height: 40px;
  }
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon .ms-cat-title {
    font-size: 14px;
  }
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon .ms-lbl {
    font-size: 11px;
    top: 0;
    right: 0;
  }
  .ms-hero .border-content-color {
    padding: 0 15px 100px 15px;
  }
  .ms-tool {
    top: 230px;
  }
  .owl-carousel .ms-product-content {
    width: 100%;
    margin: auto;
  }
  section.ms-instagram-section {
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: -15px;
  }
  .ms-insta-inner img {
    width: 100px;
  }
}
@media (max-width: 480px) {
  .ms-hero .ms-category-block .ms-cat-box .ms-cat-icon .ms-cat-title {
    font-size: 12px;
    text-align: center;
  }
  .ms-animated-banner {
    height: 200px;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    top: -95px;
  }
  .ms-animated-banner .ms-bnr-detail h2 {
    font-size: 18px;
    line-height: 25px;
  }
  .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.6);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border-radius: 3px;
    z-index: 2;
  }
}
@media (max-width: 420px) {
  .section-title h2 {
    font-size: 20px;
  }
  .ms-hero .ms-category-block {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, calc(50% - 8px));
  }
  .ms-hero .ms-category-block .ms-cat-box.more {
    display: block;
  }
  .ms-hero .ms-main-content .ms-banner-content .ms-slider-grid-item {
    height: 160px;
  }
  .ms-hero .ms-main-content .ms-slider-content .ms-main-slider .swiper-slide {
    background-position: center;
  }
  .ms-hero .ms-main-content .ms-slider-content .ms-main-slider .ms-slider .ms-slide-content {
    margin-left: 30px;
  }
  .ms-hero .ms-main-content .ms-slider-content .ms-main-slider .ms-slider .ms-slide-content .ms-slide-title {
    font-size: 18px !important;
  }
  .ms-hero .ms-main-content .ms-slider-content .ms-main-slider .ms-slider .ms-slide-content .ms-slide-stitle {
    font-size: 16px;
  }
  .ms-hero .ms-main-content .ms-slider-content .ms-main-slider .ms-slider .ms-slide-content .ms-slide-desc p {
    font-size: 14px;
  }
  .ms-hero .swiper-pagination {
    display: none;
  }
  .ms-animated-banner .ms-bnr-detail {
    padding: 15px;
  }
  .ms-animated-banner .ms-bnr-detail .fruit-2 {
    display: none;
  }
  .ms-offer-section .section-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ms-offer-section .section-title h2 {
    margin-bottom: 15px;
  }
  .ms-offer-section .section-title .dealend-timer {
    max-width: 195px;
  }
  .section-title .title-link a {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .ms-hero .ms-main-content .ms-slider-content .ms-main-slider .ms-slider .ms-slide-content .ms-slide-title {
    font-size: 16px !important;
  }
  .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-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;
  }
}
.btn-danger {
  background-color: #ff0018;
  border-color: #ff0018;
}

/*-------------------------------------------------
  Single product Page CSS
---------------------------------------------------*/
.ms-single-product {
  margin-bottom: 0;
  /*-----  Single Product  -----*/
  /*-----  Add More Product  -----*/
  /*-----  Product Info Tabs  -----*/
}
.ms-single-product .single-pro-img-no-sidebar {
  width: 40%;
}
.ms-single-product .single-pro-desc-no-sidebar {
  width: 60%;
}
.ms-single-product .single-pro-img {
  position: relative;
  width: 47.3%;
}
.ms-single-product .single-pro-img .single-product-scroll {
  padding: 15px;
  position: sticky;
  top: 30px;
  background: #f5f4f9;
  border-radius: 3px;
  border: 1px solid #eee;
}
.ms-single-product .single-pro-img .ms-360-lbl {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  height: 40px;
  width: 40px;
  text-align: center;
  -ms-flex-line-pack: center;
  align-content: center;
  display: -ms-grid;
  display: grid;
  opacity: 0.7;
}
.ms-single-product .single-pro-img .ms-360-lbl:hover {
  opacity: 1;
}
.ms-single-product .single-pro-img .ms-video-icon {
  position: absolute;
  display: -ms-grid;
  display: grid;
  top: 15px;
  right: 15px;
  height: 40px;
  width: 40px;
  text-align: center;
  -ms-flex-line-pack: center;
  align-content: center;
  cursor: pointer;
  z-index: 1;
  opacity: 0.7;
}
.ms-single-product .single-pro-img .ms-video-icon:hover {
  opacity: 1;
}
.ms-single-product .single-pro-desc {
  width: 52.7%;
  background-color: #fff;
}
.ms-single-product .single-pro-img-no-sidebar {
  width: 40%;
}
.ms-single-product .single-pro-desc-no-sidebar {
  width: 60%;
}
.ms-single-product .space-6 > div {
  margin-top: 30px;
}
.ms-single-product .space-6 > div:nth-child(-n+2) {
  margin-top: 0;
}
.ms-single-product .single-product-cover {
  overflow: hidden;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  border-radius: 3px;
}
.ms-single-product .single-nav-thumb {
  width: 100%;
  overflow: hidden;
}
.ms-single-product .single-nav-thumb .slick-list {
  margin: 0 -8px;
}
.ms-single-product .single-nav-thumb .single-slide {
  padding: 11px 11px 0 11px;
  display: block !important;
}
.ms-single-product .single-nav-thumb .slick-slide img {
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  border-radius: 3px;
}
.ms-single-product .single-nav-thumb .slick-slide:hover img {
  border-color: var(--theme-color);
}
.ms-single-product .single-nav-thumb .slick-slide.slick-current.slick-active img {
  border-color: var(--theme-color);
}
.ms-single-product .single-nav-thumb .slick-arrow {
  top: 42%;
}
.ms-single-product .single-nav-thumb .slick-arrow.slick-prev {
  left: 0;
  right: auto;
}
.ms-single-product .single-nav-thumb .slick-arrow {
  position: absolute;
  top: 55%;
  left: auto;
  right: auto;
  margin: 0 auto;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.ms-single-product .single-nav-thumb .slick-arrow:before {
  content: "";
  color: #777;
  position: relative;
  font-size: 30px;
  font-family: "EcIcons";
  width: 100%;
  line-height: 30px;
  height: 30px;
}
.ms-single-product .single-nav-thumb .slick-arrow.slick-prev:before {
  content: "\f104";
  font-family: "MsIcons";
}
.ms-single-product .single-nav-thumb .slick-arrow.slick-next {
  right: 0;
  left: auto;
}
.ms-single-product .single-nav-thumb .slick-arrow.slick-next:before {
  content: "\f105";
  font-family: "MsIcons";
}
.ms-single-product .single-pro-content .ms-single-title {
  color: #17181c;
  font-size: 22px;
  text-transform: capitalize;
  text-decoration: none;
  display: block;
  font-family: "Poppins, sans-serif";
  font-weight: 500;
  line-height: 35px;
  letter-spacing: 0.02rem;
}
.ms-single-product .single-pro-content p {
  font-size: 14px;
  color: #17181c;
  margin: 0 0 12px;
  font-weight: 600;
}
.ms-single-product .single-pro-content p span {
  font-weight: 400;
}
.ms-single-product .single-pro-content .single-para {
  font-weight: 400;
  color: #17181c;
  line-height: 26px;
}
.ms-single-product .single-pro-content .ms-single-rating-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ms-single-product .single-pro-content .ms-single-rating-wrap i.ecicon {
  margin-right: 2px;
  line-height: 20px;
  font-size: 16px;
  float: unset;
}
.ms-single-product .single-pro-content .ms-single-rating-wrap .ms-read-review {
  color: #999;
}
.ms-single-product .single-pro-content .ms-single-rating-wrap .ms-read-review a {
  color: #999;
  font-size: 14px;
  line-height: 20px;
}
.ms-single-product .single-pro-content .ms-single-rating-wrap .ms-read-review a:hover {
  color: var(--theme-color);
}
.ms-single-product .single-pro-content .ms-single-rating {
  padding-right: 15px;
  line-height: 17px;
}
.ms-single-product .single-pro-content .ms-read-review {
  line-height: 17px;
}
.ms-single-product .single-pro-content .ms-single-desc {
  margin-bottom: 12px;
  color: #777;
  font-size: 14px;
  letter-spacing: 0;
  word-break: break-all;
  line-height: 26px;
  font-family: "Poppins, sans-serif";
}
.ms-single-product .single-pro-content .ms-single-list ul {
  margin-bottom: 30px;
  padding-left: 18px;
}
.ms-single-product .single-pro-content .ms-single-list ul li {
  margin: 10px 0;
  color: #777;
  font-size: 14px;
  list-style: circle;
}
.ms-single-product .single-pro-content .ms-single-list ul li strong {
  font-weight: 600;
}
.ms-single-product .single-pro-content .ms-single-price-stoke {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.ms-single-product .single-pro-content .ms-single-price-stoke > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.ms-single-product .single-pro-content .ms-single-price-stoke .ms-single-ps-title {
  line-height: 1;
  font-size: 16px;
  color: var(--theme-color);
  letter-spacing: 0;
}
.ms-single-product .single-pro-content .ms-single-price-stoke .ms-single-sku {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 32px;
  color: #17181c;
  font-weight: 600;
}
.ms-single-product .single-pro-content .ms-single-price .new-price {
  color: red;
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  font-family: "Poppins, sans-serif";
  letter-spacing: 0;
}
.ms-single-product .single-pro-content .ms-single-price .final-price .price-des {
  margin-left: 15px;
  color: var(--theme-color);
  font-weight: 500;
  font-size: 18px;
}
.ms-single-product .single-pro-content .ms-single-price .old-price {
  color: #999;
  text-decoration: line-through;
}
.ms-single-product .single-pro-content .ms-single-qty {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
}
.ms-single-product .single-pro-content .ms-single-qty .qty-plus-minus {
  width: 120px;
  height: 40px;
  padding: 10px;
  border: 1px solid #eee;
  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;
  border-radius: 3px;
}
.ms-single-product .single-pro-content .ms-single-qty .qty-plus-minus .ms_qtybtn {
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
  font-size: 22px;
  color: #17181c;
}
.ms-single-product .single-pro-content .ms-single-qty .qty-plus-minus input.qty-input {
  background: transparent none repeat scroll 0 0;
  border: medium none;
  color: #17181c;
  float: left;
  font-size: 15px;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 40px;
  outline: none;
  font-weight: 500;
}
.ms-single-product .single-pro-content .ms-single-qty .qty-plus-minus .dec.ms_qtybtn {
  border-right: 1px solid #eee;
}
.ms-single-product .single-pro-content .ms-single-qty .qty-plus-minus .inc.ms_qtybtn {
  border-left: 1px solid #eee;
}
.ms-single-product .single-pro-content .ms-single-qty .ms-single-cart .ms-btn-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  line-height: 50px;
  text-align: center;
  font-size: 14px;
  margin: 0 10px;
  text-transform: uppercase;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 160px;
  letter-spacing: 0.02rem;
  border: 0;
}
.ms-single-product .single-pro-content .ms-single-qty .ms-single-cart .ms-btn-2 svg {
  margin-right: 8px;
}
.ms-single-product .single-pro-content .ms-single-qty .ms-btn-group {
  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: 40px;
  height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  color: #17181c !important;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 3px;
}
.ms-single-product .single-pro-content .ms-single-qty .ms-btn-group .svg_img.pro_svg path {
  fill: #17181c !important;
}
.ms-single-product .single-pro-content .ms-single-qty .ms-btn-group:hover {
  color: #fff;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.ms-single-product .single-pro-content .ms-single-qty .ms-btn-group:hover .svg_img.pro_svg path {
  fill: #fff !important;
}
.ms-single-product .single-pro-content .ms-single-qty .ms-single-wishlist {
  margin-right: 10px;
}
.ms-single-product .single-add-more .add-more-item {
  height: 100%;
  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;
  border: 1px solid #eee;
  border-radius: 3px;
}
.ms-single-product .single-add-more .add-more-item:hover a {
  opacity: 1;
}
.ms-single-product .single-add-more .add-more-item a {
  position: absolute;
  top: 5px;
  right: 5px;
  opacity: 0;
}
.ms-single-product .single-add-more .add-more-item .add-more-img {
  margin-right: 15px;
  position: relative;
}
.ms-single-product .single-add-more .add-more-item .add-more-img img {
  width: 75px;
}
.ms-single-product .single-add-more .add-more-item .add-more-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.ms-single-product .single-add-more .add-more-item .add-more-info h5 {
  color: #777;
  display: block;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.85px;
  text-transform: capitalize;
}
.ms-single-product .single-add-more .add-more-item .add-more-info .ms-pro-rating {
  margin-bottom: 5px;
}
.ms-single-product .single-add-more .add-more-item .add-more-info .ms-pro-rating i {
  font-size: 12px;
}
.ms-single-product .single-add-more .add-more-item .add-more-info .new-price {
  font-size: 15px;
}
.ms-single-product .single-add-more .add-more-item .add-more-info .old-price {
  margin-left: 5px;
  font-size: 14px;
  color: #777;
  text-decoration: line-through;
}
.ms-single-product .ms-single-pro-tab {
  margin-top: 40px;
}
.ms-single-product .ms-single-pro-tab .ms-single-pro-tab-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.ms-single-product i.msicon.msi-star-o.fill {
  color: #ff6262;
}
.ms-single-product i.msicon.msi-star-o {
  color: #b2b2b2;
  float: left;
  font-size: 14px;
}
.ms-single-product .ms-single-pro-tab-nav {
  width: 100%;
  margin: auto;
  border-bottom: none;
  position: relative;
  display: block;
  text-align: center;
  float: left;
}
.ms-single-product .ms-single-pro-tab-nav .nav-tabs {
  border-bottom: none;
  display: inline-block;
  float: left;
  background: #fff;
}
.ms-single-product .ms-single-pro-tab-nav .nav-tabs li:last-child {
  margin-right: 0;
}
.ms-single-product .ms-single-pro-tab-nav .nav-tabs li {
  margin: 0 5px 5px auto;
}
.ms-single-product .ms-single-pro-tab-nav .nav-tabs .nav-link {
  border: 1px solid #eee;
  text-transform: capitalize;
  line-height: 24px;
  color: #17181c;
  padding: 8px 28px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
  display: inline-block;
  cursor: pointer;
  background-color: #fff;
  border-radius: 3px;
  letter-spacing: 0;
}
.ms-single-product .ms-single-pro-tab-nav .nav-tabs .nav-link:hover {
  color: #fff;
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
}
.ms-single-product .ms-single-pro-tab-nav .nav-tabs .nav-link.active {
  color: #fff;
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
}
.ms-single-product .ms-single-pro-tab-nav li {
  display: inline-block;
  float: left;
  margin-right: 2px;
}
.ms-single-product .tab-pane p {
  color: #777;
  font-family: "Poppins, sans-serif";
  font-size: 14px;
  font-weight: 500;
}
.ms-single-product .ms-single-pro-tab-content {
  overflow: hidden;
  background-color: #fff;
  text-align: left;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 0;
  color: #202020;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.6;
  border-radius: 3px;
}
.ms-single-product .ms-single-pro-tab-content .ms-t-review-wrapper {
  margin-top: 10px;
}
.ms-single-product .ms-single-pro-tab-content .ms-single-pro-tab-desc > p:last-child {
  margin-bottom: 0;
}
.ms-single-product .ms-single-pro-tab-content .ms-single-pro-tab-desc p {
  margin-bottom: 15px;
  font-size: 14px;
  letter-spacing: 0;
  color: #777;
  line-height: 28px;
  font-weight: 400;
}
.ms-single-product .ms-single-pro-tab-content .ms-single-pro-tab-desc ol {
  padding-left: 24px;
}
.ms-single-product .ms-single-pro-tab-content .ms-single-pro-tab-desc ol li {
  list-style: outside;
  margin-bottom: 4px;
  color: #777;
}
.ms-single-product .ms-single-pro-tab-content .ms-single-pro-tab-desc ul {
  margin-bottom: 15px;
  padding-left: 24px;
}
.ms-single-product .ms-single-pro-tab-content .ms-single-pro-tab-desc ul li {
  font-size: 15px;
  list-style: outside;
  margin-bottom: 4px;
  color: #777;
}
.ms-single-product .ms-single-pro-tab-content .ms-single-pro-tab-moreinfo p {
  color: #777;
  font-family: "Poppins, sans-serif";
  font-size: 14px;
  font-weight: 400;
}
.ms-single-product .ms-single-pro-tab-content .ms-single-pro-tab-moreinfo ol {
  padding-left: 24px;
}
.ms-single-product .ms-single-pro-tab-content .ms-single-pro-tab-moreinfo ol li {
  list-style: outside;
  margin-bottom: 4px;
  color: #777;
}
.ms-single-product .ms-single-pro-tab-content .ms-single-pro-tab-moreinfo ul {
  padding-left: 24px;
}
.ms-single-product .ms-single-pro-tab-content .ms-single-pro-tab-moreinfo ul li {
  margin-bottom: 4px;
  font-size: 15px;
  list-style: outside;
  color: #777;
}
.ms-single-product .ms-single-pro-tab-content .ms-single-pro-tab-moreinfo li span {
  margin: 0 25px 0 0;
  min-width: 150px;
  font-size: 15px;
  color: #17181c !important;
  display: inline-block;
  font-weight: 500;
  color: #777;
}
.ms-single-product .ms-single-pro-tab-content .ms-t-review-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}
.ms-single-product .ms-single-pro-tab-content .ms-t-review-item p {
  color: #777;
}
.ms-single-product .ms-single-pro-tab-content .ms-t-review-item .ms-t-review-avtar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  margin: 0 15px 0 0;
}
.ms-single-product .ms-single-pro-tab-content .ms-t-review-item .ms-t-review-avtar img {
  max-width: 100%;
  border-radius: 3px;
}
.ms-single-product .ms-single-pro-tab-content .ms-t-review-item .ms-t-review-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 0 10px;
}
.ms-single-product .ms-single-pro-tab-content .ms-t-review-item .ms-t-review-top .ms-t-review-name {
  margin-bottom: 25px;
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
  display: block;
  color: #17181c;
}
.ms-single-product .ms-single-pro-tab-content .ms-t-review-item .ms-t-review-top .ms-t-review-rating {
  font-size: 16px;
  margin-top: 5px;
}
.ms-single-product .ms-single-pro-tab-content .ms-t-review-item .ms-t-review-top a {
  color: #17181c;
}
.ms-single-product .ms-single-pro-tab-content .ms-t-review-item .ms-t-review-top a:hover {
  color: #17181c;
}
.ms-single-product .ms-single-pro-tab-content .ms-t-review-item .ms-t-review-bottom p {
  width: 100%;
  margin: 0;
  font-size: 14px;
  color: #777;
  line-height: 24px;
  font-weight: 400;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  font-family: "Poppins, sans-serif";
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5px 0 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-star span {
  margin: 0 18px 0 0;
  font-size: 16px;
  color: #202020;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-star i {
  font-size: 18px;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input:not(:last-child) {
  margin-bottom: 10px;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input input {
  width: 100%;
  margin-bottom: 15px;
  padding: 5px 20px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #eee;
  color: #777;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input input,
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input textarea {
  font-size: 14px;
  border-radius: 3px;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input input::-webkit-input-placeholder, .ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input input::-moz-placeholder, .ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input input:-ms-input-placeholder, .ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input textarea:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input input::-ms-input-placeholder, .ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input textarea::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input input::placeholder,
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input textarea::placeholder {
  color: #999;
  opacity: 1;
}
.ms-single-product .ms-single-pro-tab-content .ms-ratting-content .ms-ratting-input textarea {
  background: transparent;
  border: 1px solid #eee;
  color: #17181c;
  height: 150px;
  padding: 20px;
  margin-bottom: 15px;
  width: 100%;
  outline: none;
  font-size: 14px;
}
.ms-single-product .ms-single-pro-tab-content .ms-product-vendor .ms-vendor-info {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.ms-single-product .ms-single-pro-tab-content .ms-product-vendor .ms-vendor-info img {
  width: 80px;
  margin-right: 15px;
  border: 1px solid #eee;
}
.ms-single-product .ms-single-pro-tab-content .ms-product-vendor .ms-vendor-info h5 {
  font-size: 15px;
  font-weight: 600;
}
.ms-single-product .ms-single-pro-tab-content .ms-product-vendor .ms-vendor-info p {
  margin-bottom: 0;
}
.ms-single-product .ms-single-pro-tab-content .ms-product-vendor .ms-detail ul {
  margin-bottom: 15px;
}
.shipping-charge > div{
  background: var(--bs-gray-400);
  padding: 10px 5px;
  margin-bottom: 10px ;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  cursor: pointer;
}
.shipping-charge > div label{
  margin-bottom:0px;
}
.shipping-charge > div:has(input:checked) {
  background-color: green;

}
.shipping-charge > div:has(input:checked) label{
  color: white;
}


.ms-cart-section .shop-all-btn {
  margin-bottom: 0;
}
.ms-cart-section .ms-sidebar-wrap {
  padding: 15px;
  border-radius: 3px;
  border: 1px solid #eee;
}
.ms-cart-section .ms-sidebar-wrap h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 21px;
}
.ms-cart-section .ms-sidebar-wrap .ms-sb-block-content {
  margin-bottom: 0;
  border-bottom: none;
}
.ms-cart-section .ms-sidebar-wrap .ms-ship-title {
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  border-bottom: 1px solid #eee;
  color: #777;
  padding-bottom: 15px;
  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;
}
.ms-cart-section .ms-sidebar-wrap .ms-ship-title::after {
  content: "\f107";
  position: relative;
  font-family: "MsIcons";
  font-size: 18px;
  color: #777;
  font-weight: 400;
}

.ms-cart-content .table-content table {
  width: 100%;
  background-color: #fff;
}
.ms-cart-content .table-content table thead > tr {
  background-color: #fff;
  border-bottom: 2px solid #eee;
}
.ms-cart-content .table-content table thead > tr > th {
  border-top: medium none;
  color: #17181c;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 14px 12px;
  text-align: left;
  text-transform: capitalize;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0;
}
.ms-cart-content .table-content table tbody > tr {
  border-bottom: 1px solid #eee;
}
.ms-cart-content .table-content table tbody > tr td {
  color: #17181c;
  font-size: 16px;
  padding: 15px 14px;
  text-align: left;
}
.ms-cart-content .table-content table tbody > tr td .ms-cart-pro-img {
  width: 61px;
}
.ms-cart-content .table-content table tbody > tr td .cart-qty-plus-minus {
  border: 1px solid #eee;
  border-radius: 3px;
  display: inline-block;
  height: 35px;
  overflow: hidden;
  padding: 0;
  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;
  margin: 0 auto;
}
.ms-cart-content .table-content table tbody > tr td .cart-qty-plus-minus 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: 40px;
  outline: none;
  font-weight: 600;
  line-height: 38px;
}
.ms-cart-content .table-content table tbody > tr td .cart-qty-plus-minus .ms_cart_qtybtn {
  color: #17181c;
  float: left;
  font-size: 20px;
  height: auto;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ms-cart-content .table-content table tbody > tr td .cart-qty-plus-minus .ms_qtybtn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0;
  color: #17181c;
  height: 19px;
  position: relative;
}
.ms-cart-content .table-content table tbody > tr td .cart-qty-plus-minus .ms_qtybtn:before {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #17181c;
  height: 19px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  font-family: "MsIcons";
  overflow: hidden;
  font-size: 15px;
}
.ms-cart-content .table-content table tbody > tr td .cart-qty-plus-minus .dec.ms_qtybtn:before {
  padding-bottom: 4px;
  content: "\f107";
  color: #999;
}
.ms-cart-content .table-content table tbody > tr td .cart-qty-plus-minus .inc.ms_qtybtn:before {
  padding-top: 4px;
  content: "\f106";
  color: #999;
}
.ms-cart-content .table-content table tbody > tr td.ms-cart-pro-name {
  width: 40%;
}
.ms-cart-content .table-content table tbody > tr td.ms-cart-pro-name a {
  color: #777;
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  letter-spacing: 0.6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ms-cart-content .table-content table tbody > tr td.ms-cart-pro-subtotal {
  color: #17181c;
  font-weight: 500;
  font-size: 15px;
}
.ms-cart-content .table-content table tbody > tr td.ms-cart-pro-price {
  color: #17181c;
  font-weight: 500;
  font-size: 15px;
}
.ms-cart-content .table-content table tbody > tr td.ms-cart-pro-qty .qty-plus-minus {
  display: inline-block;
  height: 40px;
  padding: 0;
  position: relative;
  width: 110px;
}
.ms-cart-content .table-content table tbody > tr td.ms-cart-pro-remove {
  width: 90px;
  text-align: right;
}
.ms-cart-content .table-content table tbody > tr td.ms-cart-pro-remove a {
  font-size: 22px;
  margin: 0 auto;
  color: #17181c;
}
.ms-cart-content .table-content table tbody > tr td.ms-cart-pro-remove a i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ms-cart-content .table-content table tbody > tr td.ms-cart-pro-remove a:hover i {
  color: #ff9d9d;
}
.ms-cart-content .ms-cart-update-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px 0 0;
}

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

.ms-cart-form {
  padding-top: 19px;
}
.ms-cart-form label {
  margin-bottom: 9px;
  color: #17181c;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
.ms-cart-form p {
  color: #777;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.ms-cart-form input {
  height: 40px;
  background-color: transparent;
  border: 1px solid #bab6b6;
  color: #17181c;
  font-size: 14px;
  padding: 0 15px;
  width: 100%;
  outline: none;
  border-radius: 3px;
}
.ms-cart-form input[type="radio"] {
  width: auto;
  height: auto;
  margin: 0px;
}
.ms-cart-form select {
  padding: 0 15px;
  webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0 !important;
  background: #fff;
  background-image: none;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 10px;
  color: #777;
  cursor: pointer;
  border-radius: 3px;
}
.ms-cart-form .ms-cart-select-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50px;
  border-radius: 0;
  border: 1px solid #eee;
  font-size: 14px;
  padding: 0;
  margin-bottom: 28px;
  border-radius: 3px;
}
.ms-cart-form .ms-cart-select-inner::after {
  content: "\f107";
  position: absolute;
  font-family: "MsIcons";
  top: 0;
  right: 0;
  padding: 0 10px;
  cursor: pointer;
  pointer-events: none;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  line-height: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #777;
}

.ms-cart-summary-bottom .ms-cart-summary > * {
  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;
  margin-bottom: 10px;
}
.ms-cart-summary-bottom .ms-cart-summary .text-left {
  color: #17181c;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
}
.ms-cart-summary-bottom .ms-cart-summary .text-right {
  color: #17181c;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
}
.ms-cart-summary-bottom .ms-cart-summary .text-right a {
  color: #eb2629;
  font-weight: 500;
}
.ms-cart-summary-bottom .ms-cart-summary .ms-cart-summary-total {
  border-top: 1px solid #eee;
  padding-top: 19px;
  margin-bottom: 0;
  margin-top: 16px;
}
.ms-cart-summary-bottom .ms-cart-summary .ms-cart-summary-total .text-left {
  font-size: 16px;
  font-weight: 500;
}
.ms-cart-summary-bottom .ms-cart-summary .ms-cart-summary-total .text-right {
  font-size: 16px;
  font-weight: 500;
}

.ms-cart-summary-bottom .ms-cart-summary .ms-cart-coupan-content {
  display: none;
  margin-bottom: 0;
}

.ms-cart-coupan-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #eee;
  padding: 5px;
  border-radius: 3px;
}
.ms-cart-coupan-form .ms-coupan {
  display: inline-block;
  vertical-align: top;
  line-height: 35px;
  height: 35px;
  color: #777;
  font-size: 14px;
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  text-align: left;
  padding-left: 10px;
  padding-right: 10px;
  letter-spacing: 0.5px;
  outline: none;
  border-radius: 3px;
}
.deal-owl-carousel.owl-carousel .owl-stage-outer{
  overflow: visible;
}
span.ms-cart-wrap {
  display: block;
  margin-bottom: 10px;
}
span.ms-cart-wrap p {
  font-size: 14px;
  color: var(--bs-danger);
  display: none;
}

.ms-cart-wrap .has-error + p
{
  display: block;
}
.btn-order-now{
  background: var(--theme-color);
  color: var(--bs-white);
}
.btn-order-now:hover{
  color: var(--bs-white);
}