:root {
  --title-font: "ArialMT";
  --body-font: "Poppins", sans-serif;
  --color-page-background: #FFFFFF;
  --color-text: #29252C;
  --color-light-text: #949494;
  --color-button-background: #FECB2B;
  --color-button-text: #333333;
  --color-button-secondary-background: #FFFFFF;
  --color-button-secondary-text: #29252C;
  --color-button-secondary-border: #DDDDDD;
  --color-discount: #E32619;
  --color-cart-dot: #E60012;
  --color-image-background: #F4F7FB;
  --bs-border-radius: 0;
}

body {
  font-family: var(--body-font);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-page-background);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
  font-weight: 500;
  line-height: 1.2;
}

.btn-primary {
  background-color: var(--color-button-background);
  border-color: var(--color-button-background);
  color: var(--color-button-text);
}

.btn-primary:hover {
  background-color: #1a171c;
  border-color: #1a171c;
}

img {
  width: 100%;
}

/* Header 样式 */

header {
  background-color: #000000;
  width: 100%;
  position: relative;
  height: 8rem;
}

@media screen and (max-width: 767px) {
  header {
    position: relative;
    height: 40px;
  }
}

.header-tips {
  height: 45px;
  background-color: #FFFACD;
  color: #29252C;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  display: none;
}

.header-brand-row {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 1.2rem 0;
}

.header-fixed {
  padding: 0.5rem 0;
}

.header-brand-row .col-4 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-brand img {
  width: 260px;
}

/* 导航图标样式调整 */

.navbar-icons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  color: #FFFFFF;
  font-weight: 700;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.navbar-icons .nav-link {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  position: relative;
}

.navbar-icons .bi {
  font-size: 1.5rem;
}

.navbar-icons .nav-link:hover {
  color: #FECB2B;
}

/* 调整移动端图标显示 */

@media (max-width: 767px) {
  .navbar-icons {
    gap: 10px;
  }
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #000000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* 如果需要，可以调整 fixed 状态下的导航栏样式 */

.header-fixed .header-nav-row .navbar-nav .nav-link {
  padding: 0.5rem 1rem;
}

.header-nav-row {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  /* will-change: transform;
  backface-visibility: hidden; */
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
}

.navbar-nav .nav-item {
  position: relative;
}

.navbar-nav .nav-link,
.nav-item a {
  color: #FFFFFF;
  font-weight: 700;
  padding: 1rem 1.5rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:focus,
.nav-link:hover {
  color: #FECB2B;
}

.nav-linkd:focus,
.active {
  color: #FECB2B !important;
}

.navbar-nav .nav-link:hover {
  color: #E32619;
}

.dropdown-menu.show {
  background-color: #000000 !important;
}

/* 下拉菜单样式 - PC端 */

.header-nav-row .navbar-nav .dropdown-menu {
  background-color: #000000 !important;
  border: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  min-width: 200px !important;
  display: none !important;
  z-index: 1000 !important;
}

.header-nav-row .navbar-nav .dropdown-item {
  color: #FFFFFF !important;
  font-weight: 700 !important;
  padding: 0.5rem 1rem !important;
}

.header-nav-row .navbar-nav .dropdown-item:hover {
  background-color: #29252C !important;
  color: #E32619 !important;
}

.header-nav-row .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
  display: block !important;
}

/* Offcanvas 样式 - 优化移动端 */

.offcanvas {
  background-color: #000000;
  color: #FFFFFF;
  width: 90% !important;
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222222;
}

.offcanvas-title {
  color: #FFFFFF;
}

/* 修改关闭按钮颜色为白色 */

.offcanvas .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.offcanvas .navbar-nav {
  flex-direction: column;
  width: 100%;
}

.offcanvas .nav-item {
  width: 100%;
  border-bottom: 1px solid #222222;
}

.offcanvas .nav-link {
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.75rem 1rem;
  display: block;
  width: 100%;
}

.offcanvas .nav-link:hover {
  color: #FECB2B;
}

/* 移动端导航修改 - 只影响侧边栏中的下拉菜单 */

.offcanvas .dropdown-menu {
  position: static !important;
  width: 100%;
  background-color: #222222;
  border: none;
  box-shadow: none;
  transform: none !important;
  margin-top: 0;
  padding-left: 1rem;
}

.offcanvas .dropdown-menu.show {
  display: block !important;
}

.offcanvas .dropdown-item {
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.5rem 1.5rem;
  text-align: left;
}

.offcanvas .dropdown-item:hover {
  background-color: #333333;
  color: #E32619;
}

.span_cart {
  width: 2rem;
  height: 2rem;
  text-align: center;
  background: #ffffff;
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 1rem;
}

/* 移动端调整 */

@media (max-width: 767px) {
  .header-brand-row {
    position: relative;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 767px) {
  .navbar-brand img {
    width: 150px;
    height: 24px;
  }
}

@media (max-width: 767px) {
  .navbar-toggler {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    border-color: #FFFFFF;
  }

  .toggler1 {
    left: -2rem !important;
  }
}

@media (max-width: 767px) {
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

@media (max-width: 767px) {
  .navbar-brand {
    flex-grow: 1;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .navbar-icons {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 767px) {
  .header-nav-row {
    display: none;
  }
}

@media (max-width: 767px) {
  .offcanvas {
    display: block;
  }
}

@media (min-width: 768px) {
  .navbar-toggler {
    display: none;
  }

}

@media (min-width: 768px) {
  .offcanvas {
    display: none;
  }
}

@media (min-width: 992px) {
  .custom-five-cols .col-lg {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* 自定义样式，用于控制滚动 */

.scrollable-container {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
}

/* .scrollable-container .col-sm-4 {
  display: inline-block;
  float: none;
  padding: 0 0.5rem;
} */

/* 可选：添加一些样式美化滚动条（不同浏览器有差异） */

.scrollable-container::-webkit-scrollbar {
  height: 8px;
}

.scrollable-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.scrollable-container::-webkit-scrollbar-thumb {
  background: #888;
}

.scrollable-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* 当屏幕宽度大于等于 768px 时，恢复正常的 Bootstrap 列布局 */

@media (min-width: 960px) {
  .scrollable-container {
    overflow-x: visible;
    white-space: normal;
  }
}

@media (min-width: 960px) {
  .scrollable-container .col-sm-4 {
    display: block;
    float: left;
    padding: 0 12px;
  }
}

.tgbanner {
  width: 100%;
  height: 400px;
  transition: transform 0.6s ease;
  transform: scale(1);
  background-size: cover;
  background-position: center;
  border-radius: 20px 0 0 20px;
}

.tgbanner:hover {
  transform: scale(1.05);
  transform-style: preserve-3d;
}

.ftbanner {
  width: 100%;
  height: 400px;
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease;
  transform: scale(1);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  margin-bottom: 30px;
  position: relative;
}

.ftbanner-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0;
  color: #ffffff;
  width: 100%;
  text-align: center;
}

.container-classic:hover .ftbanner {
  transform: scale(1.10);
  transform-style: preserve-3d;
  filter: brightness(50%);
  cursor: pointer;
  z-index: 300;
}

.container-classic:hover .ftbanner-word {
  font-size: 60px;
  z-index: 300;
}

.carousel-banner {
  border-radius: 20px;
  margin-bottom: 20px;
  height: 500px;
}

.viewmore {
  color: var(--color-text);
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.viewmore:hover::after {
  left: 35%;
  width: 30%;
}

.viewmore::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
  transition: all 0.6s ease;
}

.scrolling-wrapper {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

.scrolling-content {
  display: flex;
  animation: scroll 8s linear infinite;
  gap: 30px;
  white-space: nowrap;
}

.scrolling-content img {
  width: 13rem;
  height: 28rem;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 鼠标悬停暂停 */

.scrolling-wrapper:hover .scrolling-content {
  animation-play-state: paused;
}

.shipping {
  background: var(--color-text);
  color: var(--color-page-background);
  text-align: center;
  padding: 3rem 0;
}

.footer {
  color: var(--bs-gray-700);
}

.shipdiv {
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto;
}

.shipdiv img {
  width: 100%;
  height: 100%;
}

.shiptext {
  margin: 0.5rem 0;
  font-weight: bold;
}

.shipdesc {
  font-size: 12px;
}

.shipbg {
  background: var(--bs-secondary-text-emphasis);
}

.shipgap {
  gap: 1.8rem;
}

.cpfooter {
  background: var(--bs-secondary-text-emphasis);
  color: var(--color-page-background);
  min-height: 12.5rem;
  padding: 1rem;
}

.footer__payment svg {
  width: 2.2rem;
  height: 1.5rem;
  margin-right: 4px;
}

.footer__payment {
  gap: 0.5rem;
}

.footerbankbg {
  background: var(--bs-secondary-text-emphasis);
  color: var(--color-page-background);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  padding: 0;
}

.footerbankbg a {
  color: #fff !important;
  text-decoration: none !important;
}

.footerbankbg a:hover {
  text-decoration: underline !important;
}

.fb-link-text {
  color: #fff;
  text-decoration: none;
}

.fb-link-text:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 12px;
}

.copyright a {
  text-decoration: none;
  color: #fff;
}

.footer-conact-icon {
  width: 1.25rem;
  height: 1.25rem;
  /* display: inline-block; */
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-conact-icon img {
  width: 100%;
  height: 100%;
}

.footer-conact-block {
  display: flex;
  align-items: center;
  word-break: break-all;
}

.footer-conact-link {
  margin: 0 0 0 .5rem;
  text-decoration: none;
  color: #c9c2c2;
}

.footer-warning {
  font-size: 12px;
}

.footer-warning-amount {
  color: #FECB2B;
  margin: 0 2px;
}

.footer-warning-link {
  color: #FECB2B;
  margin: 0 2px;
  text-decoration: none;
}

.footer-login-after {
  display: none;
}

.footer-welcome-back {
  font-size: 16px;
}

label {
  color: #7e7e7e;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

.field {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.4;
  font-size: 14px;
  transition: all 300ms;
  align-items: center;
  color: rgba(var(--color-text));
  background-color: rgba(var(--color-page-background));
  margin-bottom: 20px;
  border-radius: 10px;
}

.field .field__container {
  flex: 1;
  position: relative;
  border-radius: 10px;
}

.field__input {
  width: 100%;
  border-radius: var(--input-border-radius-outset);
  border: none;
  padding: 24px 16px 8px;
  background: none;
  line-height: 1.15;
  box-shadow: none !important;
  color: rgba(var(--color-text));
  height: 56px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 10px !important;
}

.field__suffix {
  display: flex;
  justify-content: center;
  margin-right: 10px;
  padding: 6px;
}

.footer .newsletter-form__button {
  padding: 6px;
}

.field:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(var(--color-text), var(--input-border-opacity));
  pointer-events: none;
  transition: border-color 300ms;
  border-radius: 10px;
  box-shadow: var(--input-shadow-offset-x) var(--input-shadow-offset-y) var(--input-shadow-blur) rgba(var(--color-text), var(--input-shadow-opacity));
}

input:not([type="image" i], [type="range" i], [type="checkbox" i], [type="radio" i]) {
  overflow-clip-margin: 0px !important;
  overflow: clip !important;
}

input[type="email" i] {
  padding-block: 1px;
  outline: none;
}

input {
  text-rendering: auto;
  color: fieldtext;
  letter-spacing: normal;
  word-spacing: normal;
  line-height: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  appearance: auto;
  -webkit-rtl-ordering: logical;
  cursor: text;
  background-color: field;
  margin: 0em;
  padding: 1px 0px;
  border-width: 2px;
  border-style: inset;
  border-color: light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
  border-image: initial;
  padding-block: 1px;
  padding-inline: 2px;
}

/* ===================
9. Single Product Area CSS
=================== */

.mk-product-item {
  border: 1px solid #eee;
  border-radius: 3px;
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
}

/* .mk-product-item:hover .mk-product-item-info .mk-product-image:before {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
} */

.mk-product-item:hover .product-hover-action {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.mk-product-item .product-hover-action {
  position: absolute;
  top: 30%;
  left: 0;
  z-index: 2;
  right: 0;
  text-align: center;
  padding-top: 0;
  transition: all 0.5s ease-in-out;
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.mk-product-item .product-hover-action ul {
  margin: 0;
  padding: 0;
  text-align: center;
}

.mk-product-item .product-hover-action ul li {
  display: inline-block;
  margin: 3px;
}

.mk-product-item .product-hover-action ul li a {
  background: #fcd859;
  padding: 10px;
  width: 50px;
  height: 40px;
  display: block;
  transition: all 0.3s;
}

.mk-product-item .product-hover-action ul li a i {
  font-size: 22px;
  color: #222;
}

.mk-product-item .product-hover-action ul li a:hover {
  background: #353535;
}

.mk-product-item .product-hover-action ul li a:hover i {
  color: #fff;
}

.mk-product-item .mk-product-item-info {
  display: block;
  background: #fff;
}

.mk-product-item .mk-product-item-info .mk-product-image {
  position: relative;
  overflow: hidden;
  background: #ffff;
  padding: 0px;
  text-align: center;
  margin-bottom: 15px;
}

.mk-product-item .mk-product-item-info .mk-product-image:before {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.5s ease-in-out;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.mk-product-item .mk-product-item-info .mk-product-image a img {
  transition: all 0.5s ease-in-out;
}

.mk-product-item .mk-product-item-info .discount-percent-ribbon {
  background-image: url(../../assets/img/./start-1.png);
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  height: 60px;
  width: 60px;
  top: 10px;
  left: 10px;
  padding: 16px 10px;
}

.mk-product-item .mk-product-item-info .discount-percent-ribbon span {
  text-align: center;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
  color: #fff;
}

.mk-product-item .mk-product-item-info .sale-ribbon {
  background-image: url(../../assets/img/./start-3.png);
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  height: 60px;
  width: 60px;
  top: 10px;
  left: 10px;
  padding: 16px 10px;
}

.mk-product-item .mk-product-item-info .sale-ribbon span {
  text-align: center;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
  color: #fff;
  margin: 5px 0;
}

.mk-product-item .mk-product-item-info .new-ribbon {
  background-image: url(../../assets/img/./start-2.png);
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  height: 60px;
  width: 60px;
  top: 10px;
  left: 10px;
  padding: 16px 10px;
}

.mk-product-item .mk-product-item-info .new-ribbon span {
  text-align: center;
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
  color: #fff;
  margin: 5px 0;
}

.mk-product-item .mk-product-content {
  transition: 0.3s;
  padding-left: 10px;
  height: 90px;
}

.mk-product-item .mk-product-content .mk-product-category {
  font-size: 15px;
  line-height: 22.25px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

.mk-product-item .mk-product-content .mk-product-title {
  text-align: left;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  height: 30px;
  text-transform: capitalize;
  color: #333333;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: wrap;
  line-height: 1rem;
  word-wrap: break-word;
  text-decoration: none;
}

.mk-product-item .mk-product-content .mk-product-title:hover {
  text-decoration: underline;
}

.mk-product-item .mk-product-content .mk-product-price {
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
}

.mk-product-item .mk-product-content .mk-product-price .sales-price {
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #353535;
}

.mk-product-item .mk-product-content .mk-product-price .discount-price {
  color: #666;
  margin: 0 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

/* ===================
16. Shop Area CSS
=================== */

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

.shop-area {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .shop-area {
    padding: 20px 0;
  }
}

.shop-area .sidebar-widget .widget-area-title h5 {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  background-color: #FECB2B;
  height: 60px;
  line-height: 60px;
  border-radius: 10px 10px 0 0;
  padding-left: 10px;
  margin-bottom: 0;
}

.shop-area .sidebar-widget .product-category {
  margin-bottom: 48px;
}

.shop-area .sidebar-widget .product-category .accordian {
  margin: 0;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item {
  box-shadow: none;
  border-radius: 0;
  margin: 0;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item:last-child {
  border-radius: 0 0 10px 10px;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item .accordian-item-header {
  padding-left: 15px;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item .accordian-item-header .active {
  border: none;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item .accordian-item-body .accordian-item-body-content {
  border: none;
  padding: 0 25px;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item .accordian-item-body .accordian-item-body-content li {
  margin-bottom: 15px;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item .accordian-item-body .accordian-item-body-content .active {
  position: relative;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item .accordian-item-body .accordian-item-body-content .active::after {
  content: '';
  width: 2px;
  height: 14px;
  position: absolute;
  left: -10px;
  top: 3px;
  background-color: #FECB2B;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item .accordian-item-body .accordian-item-body-content li a:focus {
  color: #353535;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item {
  background-color: white;
  color: #353535;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item-header {
  padding: 0.5rem 3rem 0.5rem 1rem;
  color: #353535 !important;
  min-height: 2.5rem;
  line-height: 1.25rem;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item-header h5 {
  font-size: 14px !important;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item-header::after {
  content: "+";
  font-size: 25px;
  font-weight: 400;
  position: absolute;
  color: #097265;
  right: 1rem;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item-header.active::after {
  content: "−";
  color: #097265;
}

/* .active h5{
  color: #FECB2B !important; 
} */

.shop-area .sidebar-widget .product-category .accordian .accordian-item-body {
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item-body-content {
  padding: 1rem;
  line-height: 1.5;
  border-top: 1px solid #34495e;
}

.shop-area .sidebar-widget .product-category .accordian .accordian-item-body-content li a {
  font-size: 14px;
  width: 100%;
  display: inline-block;
}

.bg-white-index {
  background-color: #ffffff;
  border-radius: 10px;
}

.add-plus-radius {
  background: #FEF0F0;
  border-radius: 100%;
  display: block;
  width: 30px;
  height: 30px;
}

.shop-area .sidebar-widget .brands {
  margin-top: 14px;
  margin-bottom: 30px;
}

.shop-area .sidebar-widget .brands .brand-image {
  margin-top: 30px;
  margin-bottom: 10px;
}

.shop-area .sidebar-widget .brands .brand-image .brand {
  display: flex;
  justify-content: space-between;
}

.shop-area .sidebar-widget .brands .brand-image .brand img {
  border: 1px solid #E5E5E5;
  padding: 15px;
  margin-bottom: 15px;
}

.shop-area .sidebar-widget .checkout-option {
  margin-top: 30px;
}

.shop-area .sidebar-widget .checkout-option *,
.shop-area .sidebar-widget .checkout-option *:before,
.shop-area .sidebar-widget .checkout-option *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.shop-area .sidebar-widget .checkout-option .form-group {
  display: block;
  margin-bottom: 15px;
}

.shop-area .sidebar-widget .checkout-option .form-group input[type=checkbox],
.shop-area .sidebar-widget .checkout-option .form-group input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  display: none !important;
}

.shop-area .sidebar-widget .checkout-option .form-group span {
  float: right;
  color: #CCCCCC;
  font-family: "Open Sans", sans-serif;
}

.shop-area .sidebar-widget .checkout-option .form-group label {
  position: relative;
  cursor: pointer;
  color: #353535;
  font-weight: 600;
}

.shop-area .sidebar-widget .checkout-option .form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #fcd859;
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}

.shop-area .sidebar-widget .checkout-option .form-group input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #fcd859;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.shop-area .prouduct-view-area [data-tab-content] {
  display: none;
}

.shop-area .prouduct-view-area .active[data-tab-content] {
  display: block;
}

.shop-area .prouduct-view-area .form-group {
  margin-bottom: 0;
  margin-left: 30px;
}

.shop-area .prouduct-view-area .form-group select.form-control:not([size]):not([multiple]) {
  height: calc(1.85rem + 2px);
}

.shop-area .prouduct-view-area .form-control {
  border: 1px solid #fcd859;
  padding: 2px 14px;
  box-shadow: none;
}

.shop-area .prouduct-view-area .main {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}

.shop-area .prouduct-view-area .tabs {
  border: 1px solid #fcd859;
  border-radius: 3px;
  display: inline-flex;
}

.shop-area .prouduct-view-area .tabs li {
  display: inline-block;
}

.shop-area .prouduct-view-area .tabs li i::before {
  font-size: 15px;
  color: #C4C4C4;
}

.shop-area .prouduct-view-area .tab {
  cursor: pointer;
  padding: 2px 16px;
}

.shop-area .prouduct-view-area .tab.active {
  background-color: unset;
}

.shop-area .prouduct-view-area .tab.active i::before {
  color: #263E51 !important;
}

/* ===================
29. Top Scroll CSS
=================== */

.top-bottom-scroll {
  display: none;
}

.top-bottom-scroll.fixed {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: block;
}

.top-bottom-scroll.fixed i {
  font-size: 13px !important;
}

.top-bottom-scroll.fixed i::before {
  background: #fcd859;
  font-size: 13px !important;
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 90%;
  color: #353535;
  border: 2px solid #ffffff;
  cursor: pointer;
  text-align: center;
}

[class^=flaticon-]:before,
[class*=" flaticon-"]:before,
[class^=flaticon-]:after,
[class*=" flaticon-"]:after {
  font-family: Flaticon;
  font-size: 20px;
  font-style: normal;
  margin-left: 0 !important;
}

.accordian-item-body-content a {
  text-decoration: none;
  background-color: transparent;
  color: #000;
  outline: medium none;
  box-shadow: none;
}

/* ===================
26. Pagination CSS
=================== */

.pagination {
  text-align: center;
  padding: 20px 0 0 0;
  justify-content: center;
}

.pagination a {
  font-size: 16px;
  width: 45px;
  height: 45px;
  background-color: transparent;
  color: #666666;
  border: 1px solid #DCDFE6;
  vertical-align: middle;
  line-height: 45px;
  text-decoration: none;
  border-radius: 4px;
  margin: 4px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
}

.pagination a:hover,
.pagination a.selected {
  color: #353535;
  background-color: #fcd859;
  border-color: #fcd859;
}

/* ===================
17. Product Details CSS
=================== */

.product-details {
  padding: 100px 0;
}

.product-details .container ul,
.product-details .container ol,
.product-details .container li {
  list-style: none;
}

.product-details .container a {
  color: inherit;
  text-decoration: inherit;
  transition: ease-out 200ms;
}

.product-details .container button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: ease-out 200ms;
}

.product-details .container img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-details .container .product-main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-details .container .product-main .product-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.product-details .container .product-main .product-content .product-media .product-image {
  display: flex;
  border: 1px solid #eee;
  margin-bottom: 15px;
}

.product-details .container .product-main .product-content .product-media .product-image #mainImg {
  width: 400px;
  height: 400px;
  background-size: cover;
  border-radius: 4px;
  background-position: center;
}

/* .product-details .container .product-main .product-content .product-media .product-image img.active {
  display: block;
  margin-bottom: 20px;
} */

.product-details .container .product-main .product-content .product-media .product-thumb {
  display: flex;
  overflow: hidden;
  width: 358px;
}

.product-details .container .product-main .product-content .product-media .product-thumb-list {
  display: flex;
  position: relative;
  left: 0;
}

.product-details .container .product-main .product-content .product-media .product-thumb .thumb-item {
  flex-shrink: 0;
}

.product-details .container .product-main .product-content .product-media .product-thumb .thumb-item:not(:last-child) {
  padding-right: 12px;
}

.product-details .container .product-main .product-content .product-media .product-thumb .thumb-item .thumb-item-img {
  width: 62px;
  height: 62px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 2px solid #fff;
}

.actived {
  border: 3px solid #FECB2B !important;
}

@media screen and (max-width: 767px) {
  .shop-area .sidebar-widget .product-category .accordian .accordian-item-header {
    padding: 0.5rem 1rem 0.5rem 1rem;
  }

  .product-details {
    padding: 20px 0;
  }

  .product-details .container .product-main .product-content .product-media .product-image #mainImg {
    width: 340px;
    height: 340px;
  }

  .product-details .container .product-main .product-content .product-media .product-thumb {
    width: 310px;
  }

  .product-details .container .product-main .product-content .product-media .product-thumb .thumb-item:not(:last-child) {
    padding-right: 6px;
  }

  .product-details .container .product-main .product-content .product-media .product-thumb .thumb-item .thumb-item-img {
    width: 55px;
    height: 55px;
  }

  .product-details .container .product-main .product-content .product-img-prev {
    height: 55px !important;
    line-height: 55px !important;
  }

  .product-details .container .product-main .product-content .product-img-next {
    height: 55px !important;
    line-height: 55px !important;
  }
}

.product-details .container .product-main .product-content .product-box {
  display: flex;
}

.product-details .container .product-main .product-content .product-img-prev {
  width: 16px;
  height: 62px;
  text-align: center;
  line-height: 66px;
  font-size: 18px;
  color: #666666;
  border-radius: 4px;
  border: 1px solid #DCDFE6;
  margin-right: 6px;
  cursor: pointer;
}

.product-details .container .product-information h5 {
  font-size: 20px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  margin-top: 22px;
}

.product-details .container .product-main .product-content .product-img-next {
  width: 16px;
  height: 62px;
  text-align: center;
  line-height: 66px;
  font-size: 18px;
  color: #666666;
  border-radius: 4px;
  border: 1px solid #DCDFE6;
  margin-left: 6px;
  cursor: pointer;
}

.product-details .container .product-information .rating i {
  margin-right: 0 !important;
}

.product-details .container .product-information .rating i::before {
  color: #fcd859;
}

.product-details .container .product-information .psku {
  border: 1px solid #ddd;
  padding: 2px 10px;
  color: #353535;
}

.product-details .container .product-information .description p {
  margin-top: 10px;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.product-details .container .product-information h6 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  color: #353535;
}

.product-details .container .product-information h6 span {
  font-size: 30px;
  font-weight: 700;
}

.product-details .container .product-information h4 {
  margin-top: 0;
  font-size: 25px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
  margin-top: 20px;
}

.product-details .container .product-information .product-cart-btn {
  margin-right: 20px;
}

.product-details .container .product-information .product-cart-btn a.mk-btn-sm.btn {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.product-details .container .product-information .product-cart-btn a.mk-btn-sm.btn:hover {
  color: #353535;
}

.product-details .container .product-information .product-cart-btn a.mk-btn-sm.btn.product-cart-btn {
  background: #fcd859;
  color: #353535;
}

.product-details .container .product-information .product-cart-btn a.mk-btn-sm.btn.product-cart-btn:hover {
  background: #097265;
  color: #fff;
}

.product-details .container .product-information .share-option {
  margin-top: 28px;
  display: flex;
}

.product-details .container .product-information .share-option p {
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #263E51;
  margin-top: 8px;
}

.product-details .container .product-information .share-option span {
  font-size: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #263E51;
  margin: 9px 10px 0px;
}

.product-details .container .product-information .share-option .soical-widget li {
  display: inline-block;
  margin: 0 10px;
}

.product-details .container .product-information .share-option .soical-widget li i.flaticon-facebook::before {
  color: #475993;
  font-size: 25px;
}

.product-details .container .product-information .share-option .soical-widget li i.flaticon-instagram-logo::before {
  color: #C74C4D;
  font-size: 25px;
}

.product-details .container .product-information .share-option .soical-widget li i.flaticon-linkedin::before {
  color: #0E76A8;
  font-size: 25px;
}

.product-details .container .product-information .share-option .soical-widget li i.flaticon-twitter::before {
  color: #55ACEE;
  font-size: 25px;
}

.product-details .container .product-information .alignment-area {
  margin-bottom: 25px;
}

.product-details .container .product-information .alignment-area .car-table {
  border-collapse: collapse;
  width: 100%;
}

.product-details .container .product-information .alignment-area .car-table .color-info .product-color-area .product-color-option {
  float: left;
  margin-right: 10px;
}

.product-details .container .product-information .alignment-area .car-table .color-info .product-color-area .product-color-option label {
  display: block;
  overflow: hidden;
  cursor: pointer;
}

.product-details .container .product-information .alignment-area .car-table .color-info .product-color-area .product-color-option input {
  position: absolute;
  left: -999px;
}

.product-details .container .product-information .alignment-area .car-table .color-info .product-color-area .product-color-option i {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-style: normal;
  border-radius: 0;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #ccc;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.product-details .container .product-information .alignment-area .car-table .color-info .product-color-area .product-color-option input:checked+i {
  border-color: #353535;
}

.product-details .container .product-information .alignment-area .car-table .size-info .product-size-area .product-size-option {
  float: left;
  margin-right: 22px;
}

.product-details .container .product-information .alignment-area .car-table .size-info .product-size-area .product-size-option label {
  display: block;
  width: 35px;
  height: 30px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-details .container .product-information .alignment-area .car-table .size-info .product-size-area .product-size-option input {
  position: absolute;
  left: -999px;
}

.product-details .container .product-information .alignment-area .car-table .size-info .product-size-area .product-size-option i {
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 30px;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-style: normal;
  border-radius: 0;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #ccc;
}

.product-details .container .product-information .alignment-area .car-table .size-info .product-size-area .product-size-option input:checked+i {
  border-color: #353535;
}

.product-details .container .product-information .alignment-area .car-table .info-title {
  font-size: 17px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  padding-left: 0;
  padding-right: 0;
  color: #666666;
}

.product-details .container .product-information .alignment-area .car-table .sub-title {
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}

.product-details .container .product-information .alignment-area .car-table .dots i::before {
  font-size: 10px;
  color: #fcd859;
}

.product-details .container .product-information .alignment-area .car-table .product-quantity .quantity .qty-input {
  display: flex;
}

.product-details .container .product-information .alignment-area .car-table .product-quantity .quantity .qty-input button.qty-count {
  background: none;
  border: 1px solid #a5a5a5;
  color: #a5a5a5;
  font-family: "Open Sans", sans-serif;
  width: 30px;
}

.product-details .container .product-information .alignment-area .car-table .product-quantity .quantity .qty-input button.qty-count--minus {
  border-radius: 4px 0 0 4px;
}

.product-details .container .product-information .alignment-area .car-table .product-quantity .quantity .qty-input button.qty-count--add {
  border-radius: 0 4px 4px 0;
}

.product-details .container .product-information .alignment-area .car-table .detail-price {
  font-weight: bold;
  font-size: 24px;
}

.product-details .container .product-information .alignment-area .car-table .product-quantity .quantity .qty-input .product-qty {
  background: none;
  border: 1px solid #a5a5a5;
  text-align: center;
  outline: none;
  color: #333333;
  width: 50px;
  height: 40px;
  font-size: 16px;
}

.product-details .container .product-information .description {
  border-bottom: 1px solid #DCDFE6;
  margin-bottom: 20px;
}

.product-details .container .product-information .alignment-area .car-table td,
.product-details .container .product-information .alignment-area .car-table th {
  padding: 8px;
}

.mk-btn-sm.btn {
  border: 0;
  background: #263E51;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  padding: 10px 25px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  outline: none;
  box-shadow: none !important;
  border-radius: 45px;
  transition: .3s;
  text-transform: uppercase;
}

.mk-btn-sm.btn:hover {
  background: #fcd859;
  color: #353535;
}

/* ===================
18. Faqs Area CSS
=================== */

.faqs-area .nav-tabs .nav-link {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px !important;
  font-family: "Open Sans", sans-serif;
}

.faqs-area .tab-content .accordion-item a i::before {
  font-size: 14px !important;
  position: relative;
  top: 0px !important;
}

.faqs-area .nav-tabs {
  justify-content: center;
  border: 0;
}

.faqs-area .nav-tabs .nav-item .nav-link {
  font-size: 25px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  border-radius: 0;
}

.faqs-area .nav-tabs .nav-item .nav-link.active.show {
  color: #fcd859;
}

.faqs-area .tab-content {
  border: 1px solid #ddd;
  padding: 40px;
}

.faqs-area .tab-content #product-details p {
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  color: #29252c;
  /* margin-bottom: 40px; */
}

.faqs-area .tab-content #product-details .common-quote {
  margin-bottom: 15px;
}

.faqs-area .tab-content #product-details .common-quote i::before {
  color: #fcd859;
  font-size: 20px;
  vertical-align: middle;
  font-weight: 600;
  margin-right: 15px;
}

.faqs-area .tab-content #product-details .common-quote span {
  font-size: 14px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}

.faqs-area .tab-content #specification #specification-info {
  font-family: "Open Sans", sans-serif;
  border-collapse: collapse;
  width: 100%;
}

.faqs-area .tab-content #specification #specification-info td,
.faqs-area .tab-content #specification .car-table th {
  border: 1px solid #ddd;
  padding: 8px;
}

.faqs-area .tab-content #specification #specification-info .table-heading {
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.faqs-area .tab-content #specification #specification-info .table-data {
  padding: 10px 30px;
  font-size: 18px;
}

.faqs-area .tab-content #reviews h3 {
  font-size: 20px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  position: relative;
}

.faqs-area .tab-content #reviews h3::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 135px;
  background: #263E51;
  left: 0;
  right: 0;
  top: 30px;
}

.faqs-area .tab-content #reviews .review {
  display: flex;
  margin-bottom: 50px;
}

.faqs-area .tab-content #reviews .review i {
  margin-top: 10px;
}

.faqs-area .tab-content #reviews .review i::before {
  font-size: 40px;
  vertical-align: middle;
  margin-right: 14px;
  color: #263E51;
  font-weight: 600;
}

.faqs-area .tab-content #reviews .review .review-information {
  margin-top: 30px;
}

.faqs-area .tab-content #reviews .review .review-information h5 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  font-family: "Open Sans", sans-serif;
}

.faqs-area .tab-content #reviews .review .review-information .rating {
  display: inline-block;
}

.faqs-area .tab-content #reviews .review .review-information .rating i {
  margin-right: 0 !important;
}

.faqs-area .tab-content #reviews .review .review-information .rating i::before {
  font-size: 18px;
  color: #fcd859;
}

.faqs-area .tab-content #reviews .review .review-information span {
  font-size: 14px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.faqs-area .tab-content #reviews .review .review-information p {
  margin-top: 15px;
  margin-bottom: 15px;
  padding-right: 350px;
}

.faqs-area .tab-content #reviews .review .review-information a {
  font-size: 16px;
  font-weight: 700;
  color: #fcd859;
  text-decoration: underline;
}

.faqs-area .tab-content #reviews h4 {
  font-size: 20px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}

.faqs-area .tab-content #reviews span {
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  color: #797979;
}

.faqs-area .tab-content #reviews form {
  margin-top: 30px;
  padding-right: 0px;
}

.faqs-area .tab-content #reviews form .form-group {
  margin-bottom: 30px;
}

.faqs-area .tab-content #reviews form .form-group label {
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  color: #353535;
  margin-bottom: 15px;
}

.faqs-area .tab-content #reviews form .form-group input {
  padding: 20px 20px;
  border: 1px solid #ddd;
  display: block;
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  height: calc(2.7em + .75rem + 2px);
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.faqs-area .tab-content #reviews form .form-group textarea {
  padding: 8px 10px;
  border: 1px solid #ddd;
  display: block;
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.faqs-area {
  margin: 100px 0;
}

.faqs-area .faq-title {
  font-size: 30px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-bottom: 40px;
}

.faqs-area .nav-tabs .nav-link {
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.faqs-area .nav-tabs .nav-link.active {
  color: #097265 !important;
}

.faqs-area .nav-tabs .nav-link.active.show {
  color: #097265;
}

.faqs-area .tab-content {
  padding: 30px 20px;
  border: 1px solid #ddd;
  margin-top: -1px;
}

.faqs-area .tab-content .accordion-item {
  margin-bottom: 20px;
}

.faqs-area .tab-content .accordion-item a.collapsed {
  font-size: 15px;
  text-transform: uppercase;
  margin: 6px 0;
  display: block;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: #097265;
}

.faqs-area .tab-content .accordion-item a {
  color: #097265;
  font-size: 15px;
  text-transform: uppercase;
  margin: 6px 0;
  display: block;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.faqs-area .tab-content .accordion-item a:hover {
  color: #097265;
}

.faqs-area .tab-content .accordion-item a i {
  transform: rotate(180deg);
}

.faqs-area .tab-content .accordion-item a i::before {
  font-size: 20px;
  position: relative;
  top: 3px;
}

.faqs-area .tab-content .accordion-item a.collapsed i {
  transform: rotate(0deg);
}

.faqs-area .tab-content .accordion-item p {
  padding: 0px 28px;
}

/* ===================
19. Cart Product Area CSS
=================== */

.mobile-cart-list-item {
  display: flex;
  margin-bottom: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px 20px;
  position: relative;
}

.cart-product-area {
  margin: 6rem 0;
}

.cart-product-area .car-table {
  border-collapse: collapse;
  width: 100%;
  font-family: "Open Sans", sans-serif;
}

.cart-product-area p.cart-btn,
.cart-product-area p.cart-stock {
  text-align: center;
  margin: 0;
}

.cart-product-area .car-table td,
.cart-product-area .car-table th {
  border: 1px solid #eee;
  text-align: center;
  padding: 5px 20px;
}

.cart-product-area .car-table th {
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: center;
}

.cart-product-area .car-table th span {
  float: left;
}

.cart-product-area .img {
  width: 100px;
  height: 100px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin: 0px auto;
  display: block;
}

.cart-product-area .mimg {
  width: 60px;
  height: 60px;
  margin: 0 10px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin: 0px 10px;
  display: block;
}

.cart-product-area .price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.cart-product-area .cart-product {
  text-align: left;
  width: 300px;
}

@media screen and (max-width: 767px) {
  .cart-product-area .cart-product {
    width: 220px;
  }

  .bj-gray {
    background-color: #F9F9F9;
  }
}

.cart-product-area .cart-product .title {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-product-area .flaticon-cancel {
  cursor: pointer;
}

.cart-product-area .cart-product i::before {
  font-size: 25px;
  color: #fcd859;
  cursor: pointer;
}

.cart-product-area .cart-product p a {
  font-size: 14px;
  font-weight: 600;
  color: #097265;
  font-family: "Open Sans", sans-serif;
  margin-top: 15px;
}

.cart-product-area .price {
  font-size: 16px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  color: #263E51;
}

.cart-product-area .quantity .qty-input {
  display: flex;
  justify-content: center;
}

.cart-product-area .quantity .qty-input button.qty-count {
  background: none;
  border: 1px solid #ddd;
  color: #c2c4c5;
  font-size: 30px;
  padding: 0 20px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .cart-product-area .quantity .qty-input button.qty-count {
    font-size: 20px;
    padding: 0 10px;
  }

  .cart-product-area .quantity .qty-input .product-qty {
    width: 50px !important;
  }
}

.cart-product-area .quantity .qty-input .product-qty {
  background: none;
  border: 1px solid #ddd;
  text-align: center;
  outline: none;
  color: #263E51;
  font-weight: 600;
  border-left: 0;
  border-right: 0;
  width: 80px;
  border-radius: 0;
}

.coupon-all {
  margin-top: 5rem;
}

.cart-product-area .coupon-all .coupon label {
  font-size: 14px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  color: #353535;
  margin-bottom: 10px;
}

.cart-product-area .coupon-all .coupon .coupon-input-area {
  display: flex;
}

.cart-product-area .coupon-all .coupon input {
  padding: 12px 10px;
  color: #ABABAB;
  border-radius: 0;
  border: 1px solid #eee;
}

.cart-product-area .coupon-all .coupon input:focus {
  outline: none !important;
  border: 1px solid rgba(242, 152, 74, 0.5);
}

.cart-product-area .coupon-all .coupon .cupon-btn {
  margin-left: 30px;
  font-size: 14px;
}

.cart-product-area .coupon-all .coupon .cupon-btn:hover {
  background: #fcd859;
}

/* .cart-page-total {
  margin-top: 7rem;
} */

.total-price {
  font-size: 24px;
  text-align: right;
  margin-right: 20px;
  color: red;
  font-weight: 600;
}

.MGINtop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .table-heading {
    font-size: 16px !important;
  }

  #total {
    margin-left: 15px;
  }

  .MGINtop {
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .MGINtop15 {
    margin-top: 15px;
  }

  .total-price {
    font-size: 20px;
    text-align: left;
    /* position: absolute; */
    bottom: 6px;
    left: 20px;
    color: #FF0F23;
    font-weight: bold;
    display: flex;
  }

  .check-out {
    width: 200px;
    padding: 15px 12px !important;
    font-size: 15px !important;
    font-weight: bold;
  }

  .car-footer {
    position: sticky;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 10;
    margin-bottom: 0 !important;
    padding: 10px;
    margin-top: 3rem !important;
  }
}

.cart-product-area .cart-page-total table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #eee;
  overflow-x: auto;
}

.cart-product-area {
  margin-top: 3rem;
  min-height: 26rem;
}

@media screen and (max-width: 767px) {
  .cart-product-area {
    min-height: 10rem;
  }
}

.mobile-order-list-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 10px;
}

.mobile-order-list-item span {
  display: inline-block;
}

.mobile-order-list-item .accordion-button {
  width: 20px;
}

.mobile-order-list-item .order-no {
  border-bottom: 1px solid #dee2e6;
  padding: 4px 0;
  margin-bottom: 4px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .img-main-image {
    width: 80px !important;
  }
}

.mobile-order-list-item .product-items {
  padding-left: 20px;
  color: #999;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 4px;
}

.cart-product-area .car-footer {
  margin-top: 7rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}


.cart-product-area .cart-page-total table .table-heading {
  border: 1px solid #eee;
}

.cart-product-area .cart-page-total table .table-heading th {
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.cart-product-area .cart-page-total table th,
.cart-product-area .cart-page-total table td {
  padding: 20px 40px;
}

.cart-product-area .cart-page-total table td p {
  font-size: 14px;
  font-weight: 600;
  color: #263E51;
  font-family: "Poppins", sans-serif;
}

.cart-product-area .cart-page-total table .table-sub-heading {
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding: 14px 40px;
}

.cart-product-area .cart-page-total table span {
  float: right;
}

.table-heading {
  font-size: 24px;
}

.cart-page-total {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cart-product-area .cart-page-total .proceed-btn:hover {
  background: #fcd859;
}

.cart-product-area .cart-page-total .proceed-btn a {
  color: #fff;
}

.mk-btn.btn {
  border: 0;
  background: #FECB2B;
  color: #333333;
  font-size: 18px;
  line-height: 20px;
  padding: 15px 32px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  outline: none;
  box-shadow: none !important;
  border-radius: 4px;
  transition: .3s;
  text-transform: uppercase;
}

.mk-btn.btn:hover {
  background: #ccc;
  color: #000;
}

.mk-btn-sm.btn {
  border: 0;
  background: #FF0F23;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  padding: 10px 25px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
  outline: none;
  box-shadow: none !important;
  border-radius: 4px;
  transition: .3s;
  text-transform: uppercase;
}

.mk-btn-sm.btn:hover {
  background: #097265;
  color: #353535;
}

/* ===================
21. Checkout Page CSS
=================== */

.mk_checkout-area {
  margin: 6rem 0;
}

@media screen and (max-width: 767px) {
  .cart-page-total {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mk_checkout-area {
    margin: 2rem 0;
  }

  .mk-btn.btn {
    /* margin-left: -160px; */
  }

  .cart-page-total {
    flex-direction: column;
  }
}

.checkout-area p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

.checkout-area p span {
  color: #353535;
}

.checkout-area p a {
  color: #fcd859;
}

.checkout-area .billing-details h4 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 45px;
  margin-top: 35px;
}

.checkout-area .billing-details select,
.checkout-area .billing-details input {
  width: 100%;
  padding: 15px 30px;
  margin-bottom: 35px;
  color: #B8B8B8;
  font-size: 16px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  border: 1px solid #E5E5E5;
}

.checkout-area .billing-details label {
  font-size: 16px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  color: #353535;
  margin-bottom: 10px;
}

.checkout-area .billing-details .name-area {
  display: flex;
}

.checkout-area .shiping-details h4 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 45px;
  margin-top: 35px;
}

.checkout-area .shiping-details h4 input {
  width: auto;
}

.checkout-area .shiping-details .ship-box-info select,
.checkout-area .shiping-details .ship-box-info input {
  width: 100%;
  padding: 15px 30px;
  margin-bottom: 35px;
  color: #B8B8B8;
  font-size: 16px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  border: 1px solid #ddd;
}

.checkout-area .shiping-details .ship-box-info textarea {
  width: 100%;
  color: #B8B8B8;
  font-size: 16px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  border: 1px solid #ddd;
  padding: 15px 30px;
}

.checkout-area .shiping-details .ship-box-info label {
  font-size: 16px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  color: #353535;
  margin-bottom: 10px;
}

.checkout-area .shiping-details .ship-box-info .name-area {
  display: flex;
}

.checkout-area .shiping-details .checkbox label {
  display: flex;
  align-items: center;
}

.checkout-area .shiping-details .checkbox label .checkme {
  margin-right: 10px;
}

.checkout-area .order-area h4 {
  font-size: 20px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 45px;
}

.checkout-area .order-area .order-details {
  border-bottom: 1px solid #CCCCCC;
}

.checkout-area .order-area .order-details .sub-title {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 25px;
}

.checkout-area .order-area .order-details .sub-title h5 {
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.checkout-area .order-area .order-details .order-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.checkout-area .order-area .order-details .order-info .product-name {
  display: flex;
}

.checkout-area .order-area .order-details .order-info .product-name p {
  font-size: 14px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  color: #263E51;
  margin-bottom: 0;
}

.checkout-area .order-area .order-details .order-info .product-name span {
  font-size: 14px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  color: #263E51;
}

.checkout-area .order-area .order-details .order-info .product-name span i {
  color: #fcd859;
  margin: 10px;
}

.checkout-area .order-area .order-details .order-info span {
  font-size: 14px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  color: #263E51;
}

.checkout-area .order-area .order-details .middle-title {
  border-top: 1px solid #CCCCCC;
}

.checkout-area .order-area .order-details .middle-title h5 {
  margin-top: 10px;
}

.checkout-area .order-area .total-price {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.checkout-area .order-area .total-price h5 {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #263E51;
}

.checkout-area .order-area .total-price h3 {
  font-size: 20px;
  font-weight: 700;
  color: #263E51;
  font-family: "Open Sans", sans-serif;
}

.checkout-area .payment-system .pay-method {
  display: flex;
  margin-bottom: 20px;
}

.checkout-area .payment-system .pay-method input {
  margin-right: 10px;
  margin-top: 3px;
}

.checkout-area .payment-system .pay-method .pay-info h5 {
  font-size: 16px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  color: #353535;
}

.checkout-area .payment-system .pay-method .pay-info p {
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  color: #A7A7A7;
}

.checkout-area .pay-btn {
  width: 100%;
}

.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content h5 {
  font-size: 16px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content h5 a {
  color: #fcd859;
}

.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content h4.title-2 {
  margin-bottom: 2rem;
  font-weight: 600;
}

.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content .mk_checkout-single-content-info {
  margin-bottom: 30px;
}

.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content .mk_checkout-single-content-info form .input-item input[type=text],
.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content .mk_checkout-single-content-info form .input-item input[type=password],
.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content .mk_checkout-single-content-info form .input-item input[type=email] {
  background: #fff;
  height: 50px;
  font-size: 14px;
  padding-left: 1rem;
  border: 1px solid #ddd;
  width: 100%;
  margin-bottom: 1rem;
  padding-right: 1rem;
}

.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content .mk_checkout-single-content-info form .input-item input[type=text]:focus,
.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content .mk_checkout-single-content-info form .input-item input[type=password]:focus,
.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content .mk_checkout-single-content-info form .input-item input[type=email]:focus {
  border: 1px solid rgba(242, 152, 74, 0.5) !important;
  outline: none !important;
}

.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content .mk_checkout-single-content-info form .input-item textarea {
  background: #f8f8f8;
  font-size: 14px;
  padding-left: 1rem;
  border: 1px solid #ddd !important;
  width: 100%;
  margin-bottom: 1rem;
  padding-right: 1rem;
}

.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content .mk_checkout-single-content-info form .input-item textarea:focus {
  border: 1px solid rgba(242, 152, 74, 0.5) !important;
  outline: none !important;
}

.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content .mk_checkout-single-content-info form .input-item i.bxs-user {
  position: absolute;
  top: 10%;
  right: 0;
}

.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content .mk_checkout-single-content-info form .input-item i.bxs-lock {
  position: absolute;
  top: 10%;
  right: 0;
}

.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content .mk_checkout-single-content-info form .nice_selection {
  max-width: 100%;
  border: 1px solid #ddd;
  min-width: 100%;
  padding: 10px 10px;
  margin-bottom: 30px;
  background: #f8f8f8;
  height: 50px;
  border-radius: 2px;
  color: #333333;
}

.order-select {
  width: 300px;
}

.serach-box {
  display: flex;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .order-select {
    width: 100%;
    margin-bottom: 4px;
  }

  .serach-box {
    margin-bottom: 10px;
  }
}

.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content .mk_checkout-single-content-info p {
  font-size: 14px;
  font-weight: 500;
  color: #353535;
}

.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content .mk_checkout-single-content-info p a {
  color: #353535;
  transition: all ease-in-out 0.5s;
}

.mk_checkout-area .mk_checkout-inner .mk_checkout-single-content .mk_checkout-single-content-info p a:hover {
  color: #097265;
  transition: all ease-in-out 0.5s;
}

.mk_checkout-area .shoping-cart-total {
  margin-top: 1rem;
}

.mk_checkout-area .shoping-cart-total h4.title-2 {
  padding-bottom: 12px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mk_checkout-area .shoping-cart-total .shoping-cart-table {
  width: 100%;
  min-height: 300px;
  position: relative;
}

.mk_checkout-area .shoping-cart-total .shoping-cart-table tbody tr td {
  padding: 1rem 0;
  vertical-align: top;
  border-top: 1px solid #eee;
}

.mk_checkout-payment-method {
  margin-top: 2rem;
}

.mk_checkout-payment-method h4.title-2 {
  padding-bottom: 12px;
  font-weight: 600;
  margin-bottom: 0rem;
  margin-top: 20px;
}

.mk_checkout-payment-method .mk-btn.btn:hover {
  background: #fcd859;
  color: #353535;
}

.mk_checkout-payment-method .card {
  padding: 1rem 0;
  border-radius: 0;
  border: none;
}

.mk_checkout-payment-method .card h5.mk_card-title {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 0;
  font-size: 16px;
}

.mk_checkout-payment-method .card h5.mk_card-title img {
  margin-left: 15px;
  max-width: 190px;
}

.mk_checkout-payment-method .card h5.mk_card-title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  transform: translateY(-50%);
  border: 0.1rem solid #ddd;
  border-radius: 50%;
}

.mk_checkout-payment-method .card h5.mk_card-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.32rem;
  width: 1rem;
  height: 1rem;
  transition: all 0.5s ease 0s;
  transform: translateY(-50%);
  opacity: 0;
  border-radius: 50%;
  background-color: #fcd859;
}

.mk_checkout-payment-method .card h5.mk_card-title[aria-expanded=true]::after {
  opacity: 1;
}

.mk_checkout-payment-method .card .card-body {
  padding: 5px 35px;
  margin-top: 10px;
  position: relative;
}

.mk_checkout-payment-method .card .card-body::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 25px;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background-color: #FFFFFF;
}

.mk_checkout-payment-method .mk_payment-note {
  margin: 1rem 0;
}

/* ===================
22. Login and Register Page CSS
=================== */

.form-group {
  margin-bottom: 1rem;
}

.my-account-area {
  margin: 100px 0;
}

@media screen and (max-width: 767px) {
  .my-account-area {
    margin: 50px 0;
  }
}

.my-account-area .my-account-wrapper {
  max-width: 500px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.my-account-area .my-account-wrapper h4 {
  text-align: center;
  margin-bottom: 80px;
  font-size: 39px;
}

@media screen and (max-width: 1400px) {
  .my-account-area .my-account-wrapper h4 {
    margin-bottom: 70px;
    font-size: 35px;
  }
}

@media screen and (max-width: 1200px) {
  .my-account-area .my-account-wrapper h4 {
    margin-bottom: 60px;
    font-size: 29px;
  }
}

@media screen and (max-width: 767px) {
  .my-account-area .my-account-wrapper h4 {
    margin-bottom: 40px;
    font-size: 27px;
  }
}

.my-account-area .my-account-wrapper .label {
  display: flex;
}

.my-account-area .my-account-wrapper form input {
  border-radius: 0;
  padding: 5px 12px;
}

.my-account-area .my-account-wrapper form input::placeholder {
  color: #C0C4CC;
  font-size: 14px;
}

.form-check-input {
  padding: 0 !important;
}

.my-account-area .my-account-wrapper form button.btn.btn-primary {
  display: block;
  width: 100%;
  font-size: 20px;
  text-transform: uppercase;
  padding: 10px;
  letter-spacing: 1px;
  font-weight: normal;
  margin-top: 20px;
  background: #FECB2B;
  color: #333333;
  border: none;
  border-radius: 4px;
}

.my-account-area .my-account-wrapper form button.btn.btn-primary:hover {
  background: #fcd859;
}

.my-account-area .my-account-wrapper .login-or-with {
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  margin-top: 35px;
  margin-bottom: 35px;
  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;
}

.my-account-area .my-account-wrapper .login-or-with:after {
  content: "";
  flex: 1 0 0;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #E2E2E2;
  margin-right: -20px;
  margin-left: 10px;
}

.my-account-area .my-account-wrapper .login-or-with:before {
  content: "";
  flex: 1 0 0;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #E2E2E2;
  margin-left: -20px;
  margin-right: 10px;
}

.my-account-area .my-account-wrapper .social-button {
  margin-top: 20px;
}

.my-account-area .my-account-wrapper .social-button a {
  color: #fff;
  padding: 10px 15px;
  display: inline-block;
  border-radius: 5px;
  font-size: 16px;
  margin: 10px;
  text-transform: uppercase;
  text-decoration: none;
}

.my-account-area .my-account-wrapper .social-button a.facebook-btn {
  background: #4267B2;
}

.my-account-area .my-account-wrapper .social-button a.facebook-btn:hover {
  background: #4267b2eb;
}

.my-account-area .my-account-wrapper .social-button a.google-btn {
  background: #D44730;
}

.my-account-area .my-account-wrapper .social-button a.google-btn:hover {
  background: #d44730e6;
  transition: all 0.4s ease;
}

/* account */

.nav-pills-dark .nav-item .nav-link.active {
  background-color: #001e2b;
  color: #ffffff;
}

.nav-pills-dark .nav-item .nav-link {
  background-color: transparent;
  border-radius: .5rem;
  color: var(--fc-gray-800);
  font-weight: 500;
  margin-bottom: .25rem;
  padding: .5rem .75rem;
}

.table-responsive-xxl a {
  text-decoration: none;
}

.p-6 {
  padding: 1.5rem !important;
}

.my-account-area .card-body {
  color: var(--fc-card-color);
  flex: 1 1 auto;
  padding: var(--fc-card-spacer-y) var(--fc-card-spacer-x);
}

.my-account-area .card {
  border-radius: 0.5rem !important;
  --bs-card-border-radius: 0.5rem !important;
  height: 200px;
}

.form-check-label {
  color: #666666;
  display: flex;
}

.form-check-label a {
  text-decoration: none;
}

.text-end a {
  text-decoration: none;
  color: #333333;
}

.my-account-area .btn.disabled,
.my-account-area .btn:disabled,
.my-account-area fieldset:disabled .btn {
  /* background-color: var(--fc-btn-disabled-bg);
  border-color: var(--fc-btn-disabled-border-color);
  color: var(--fc-btn-disabled-color); */
  opacity: 60%;
  pointer-events: none;
}

.btn-group-sm>.btn,
.btn-sm {
  --fc-btn-padding-y: 0.25rem;
  --fc-btn-padding-x: 0.5rem;
  --fc-btn-font-size: 0.765625rem;
  --fc-btn-border-radius: 0.25rem;
}

.my-account-area .btn-outline-gray-400 {
  --fc-btn-color: #c1c7c6;
  --fc-btn-border-color: #c1c7c6;
  --fc-btn-hover-color: #000;
  --fc-btn-hover-bg: #c1c7c6;
  --fc-btn-hover-border-color: #c1c7c6;
  --fc-btn-focus-shadow-rgb: 193, 199, 198;
  --fc-btn-active-color: #000;
  --fc-btn-active-bg: #c1c7c6;
  --fc-btn-active-border-color: #c1c7c6;
  --fc-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
  --fc-btn-disabled-color: #c1c7c6;
  --fc-btn-disabled-bg: transparent;
  --fc-btn-disabled-border-color: #c1c7c6;
  --fc-gradient: none;
  border: 1px solid #c1c7c6;
}

.span_onsale {
  height: 1.8rem;
  line-height: 1.8rem;
  text-align: center;
  background: #eb1d1d;
  position: absolute;
  left: 1.5rem;
  bottom: 1.2rem;
  border-radius: 0;
  color: #fff;
  padding: 0 0.5rem;
  font-weight: bolder;
}

.box {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: #000000;
}

@media screen and (max-width: 767px) {
  .box {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: #000000;
  }
}

/** 商品样式 ***/
.card-body {
  min-height: 80px;
}

.text-dark-emphasis {
  height: 32px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: wrap;
  line-height: 1rem;
  padding-left: 4px;
}

.nav-pills .nav-item .nav-link.active {
  background-color: #FECB2B;
  color: #000000 !important;
}

.nav-pills .nav-item .nav-link.actives {
  background-color: #fff;
  color: #000000;
}

.nav-pills .nav-item:first-child {
  .nav-link {
    border-radius: 30px 0 0 30px !important;
  }
}

.nav-pills .nav-item:last-child {
  .nav-link {
    border-radius: 0 30px 30px 0;
  }
}

.nav-pills .nav-item .nav-link {
  color: #000;
  padding: 0.5rem 1rem;
  font-weight: normal;
  background-color: #ffffff;
}

.nav-pills .nav-item a:hover {
  color: #29252c;
}

.free-gift {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.free-gift a {
  border-radius: 4px !important;
  background-color: #333333;
  color: #ffffff;
  font-size: 20px;
}

.hot-sale {
  color: #D81E06 !important;
  margin-top: 0;
}

.product-one {
  background-color: #F9F9F9;
  border-radius: 4px;
  box-shadow: 0 2px 6px 0 #EEE;
}

.text-red {
  color: #D81E06 !important;
}

.currency {
  font-size: 12px;
}

.goods-img {
  height: 12.2rem;
  background-size: cover;
  border-radius: 10px 10px 0 0;
}

@media screen and (max-width: 767px) {
  .goods-img {
    width: 160px;
    height: 160px;
  }

  .hot-sale {
    /* margin-top: 60px; */
    margin-bottom: 0 !important;
    font-size: 22px;
  }

  .hot-sale img {
    width: 26px !important;
  }

  .mt-mobile {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}

.mt-2 {
  position: relative;
  line-height: 14px;
}

.add-plus {
  color: #D81E06;
  position: absolute;
  top: 0px;
  right: 20px;
  font-size: 26px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FEF0F0;
}

.price {
  font-size: 14px;
  text-align: left;
  padding-left: 4px;
}

.original-price {
  font-size: 11px;
  text-align: left;
  padding-left: 4px;
}

/** 购物车小红点***/
.red-tips {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-color: red;
  color: #ffffff;
  font-size: 11px;
  border-radius: 100%;
  position: absolute;
  right: -8px;
  top: -8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  visibility: hidden;
}

.login-status {
  font-weight: 500;
}

.nav-login-before {
  text-decoration: none;
  color: #ffffff;
}

.nav-login-after {
  text-decoration: none;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .login-status {
    display: none;
  }
}

/** 商品详情***/
.prop-value-active {
  border: 1px solid #FECB2B !important;
  color: #333;
}

.product-cart-btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-buy-btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-cart-btn-disabled:hover {
  background-color: #fcd859 !important;
  color: #353535 !important;
}

.product-buy-btn-disabled:hover {
  background-color: #263E51 !important;
  color: #ffffff !important;
}

.pay-img {
  width: 60px;
  margin-right: 20px;
}

/* 生成订单 */
.pay-title {
  width: 390px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}

.cate1-2 {
  padding-top: 0 !important;
}

@media screen and (max-width: 767px) {
  .pay-title {
    width: 230px;
  }

  .cate1-2 {
    margin-top: 0 !important;
  }
}

.pay-count {
  display: flex;
  justify-content: space-between;
  width: 10rem;
  min-width: 120px;
  /* padding-left: 8px; */
}

.pay-count-num {
  min-width: 20px;
}

.pay-count-amount {
  min-width: 60px;
}

#tbody {
  max-height: 260px;
  overflow-y: scroll;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

/* 隐藏原生滚动条但仍保持滚动功能 */
#tbody::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari/Opera */
}

#tbody .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding: 10px;
}

#tbody .item:last-child {
  border-bottom: 1px solid #eee;
}

.select-h {
  height: 50px;
}

.total-amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding-right: 10px;
}

/** 所有商品**/
.img-bg {
  width: 224px;
  height: 224px;
  border-radius: 10px 10px 0 0;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .img-bg {
    width: 100%;
    height: 160px;
  }
}

/** 个人中心**/
.set-default {
  position: absolute;
  bottom: 20px;
  width: 90%;
}

.set-default-box {
  display: flex;
  justify-content: space-between;
}

.set-as-default {
  text-decoration: none;
  margin-left: 4px;
}

.btn-defalut {
  color: #ffffff;
  font-size: 12px;
  background-color: #409EFF;
  border: none;
}

/** age verification**/
.age-verification-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
}

.age-verification {
  background-color: #ffffff;
  width: 800px;
  height: 300px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  text-align: center;
  visibility: hidden;
}

.age-verification-box {
  text-align: center;
}

.age-verification-title {
  font-weight: bold;
  font-size: 25px;
  margin-top: 50px;
}

.age-verification-content {
  width: 500px;
  font-size: 12px;
  color: #999999;
  margin: 30px auto;
}

.age-verification-warning {
  font-size: 13px;
  color: #999999;
  margin-top: 30px;
}

.age-verification-warning-content {
  font-size: 12px;
  color: #999999;
}

.age-not-reached {
  font-size: 12px;
  color: #999999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
}

.form-btn-white {
  width: 120px;
  height: 44px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  margin-right: 20px;
  border-radius: 4px;
}

.form-btn-yellow {
  width: 120px;
  height: 44px;
  background-color: #FECB2B !important;
  color: #333333;
  border: 1px solid #FECB2B !important;
  margin-right: 20px;
  border-radius: 4px;
}

.product-color-area {
  display: flex;
  flex-wrap: wrap;
}

.info-title {
  padding: 16px;
}

.product-color-option i {
  font-style: normal;
  padding: 6px 12px;
  border: 1px solid #DCDFE6;
  margin-right: 4px;
}

.detail-qty-input {
  display: flex;
}

.detail-qty-input .qty-count--minus {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  color: #999999;
  border-radius: 4px 0px 0px 4px;
  border: 1px solid #DCDFE6;
}

.detail-qty-input .qty-count--add {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  color: #999999;
  border-radius: 0px 4px 4px 0px;
  border: 1px solid #DCDFE6;
}

.detail-price {
  font-size: 22px;
  font-weight: bold;
}

.detail-qty-input .product-qty {
  width: 60px;
  height: 40px;
  border-radius: 0;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #DCDFE6;
}

@media screen and (max-width: 767px) {
  .age-verification {
    width: 320px;
    height: 370px;
  }

  .age-verification-title {
    font-size: 17px;
    margin-top: 36px;
  }

  .age-verification-content {
    width: 274px;
    font-size: 13px;
  }

  .form-btn-white {
    width: 90px;
    height: 46px;
    color: #333333;
    background-color: #ffffff;
    border: 1px solid #ccc;
    margin-right: 20px;
    border-radius: 4px;
    padding: 0;
  }

  .form-btn-yellow {
    width: 90px;
    height: 46px;
    background-color: #FECB2B !important;
    color: #333333;
    border: 1px solid #FECB2B !important;
    margin-right: 20px;
    border-radius: 4px;
    padding: 0;
  }

  .age-verification-warning {
    margin-top: 16px;
  }

  .age-verification-warning-content {
    font-size: 11px;
    padding: 0 20px;
  }

  .age-not-reached {
    width: 300px;
    font-size: 14px;
  }
}

/** banner**/
.swiper-box {
  height: 460px;
  overflow: hidden;
  padding: 50px 0 80px 0;
  background-color: #ffffff;
}

.swiper-slide {
  height: 460px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: none !important;
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: none !important;
}

.container {
  padding-top: 50px;
  padding-bottom: 20px;
}

.product-one {
  background-color: #F9F9F9;
}

.bf {
  background-color: #fff !important;
}

/** order **/
.badge {
  color: #333333;
}

.to-pay {
  font-size: 10px;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
}

.order-status-bg-primary {
  background-color: #4080ff;
  color: #ffffff;
  width: 90%;
  cursor: auto;
  padding: 0 4px;
}

.order-status-bg-warning {
  background-color: #e6a23c;
  color: #ffffff;
  width: 90%;
  cursor: auto;
  padding: 0 4px;
}

.order-status-bg-succcess {
  background-color: #67c23a;
  color: #ffffff;
  width: 90%;
  cursor: auto;
  padding: 0 4px;
}

.order-status-bg-info {
  background-color: #999999;
  color: #ffffff;
  width: 90%;
  cursor: auto;
  padding: 0 4px;
}

.order-status-bg-rejuect {
  background-color: #e63ce6;
  color: #ffffff;
  width: 90%;
  cursor: auto;
  padding: 0 4px;
}

@media screen and (max-width: 767px) {
  .to-pay {
    font-size: 12px;
    position: absolute;
    right: 20px;
  }
}

.text-ellipsis {
  width: 12rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.product-item {
  margin: 20px 0;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
}

.img-main-image {
  width: 50px;
  border-radius: 0.3rem;
}

.product-item a {
  margin: 0 0.5rem;
}

.goods-name {
  width: 10rem;
  display: inline-block;
  white-space: pre-wrap;
}

.page {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.productSkus {
  padding-left: 10px;
  font-size: 12px;
}

@media screen and (max-width: 767px) {

  .m-order-list {
    background-color: #F9F9F9;
  }

  .goods-name {
    width: 220px;
  }

  .my-account-area {
    margin: 50px 0 50px;
  }

  .border-end {
    margin-bottom: 4rem;
  }

  .login-area {
    margin: 80px 0 80px;
  }

  .register-area {
    margin: 80px 0 80px;
  }
}

.masking-waiting {
  font-size: 18px;
  margin: 10px 0 0 10px;
  display: block;
}

.checkout-masking-container {
  width: 50%;
  height: 60%;
  border-radius: 10px;
  position: fixed;
  top: 50%;
  z-index: 20;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.checkout-waiting-icon {
  width: 250px;
  height: 250px;
  position: fixed;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .checkout-masking-container {
    width: 90%;
  }

  .orders-no {
    font-size: 16px !important;
  }
}

.orders-no {
  font-size: 20px;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666666;
  width: 100%;
  text-align: center;
}

.down-time {
  font-size: 50px;
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.checkout-close-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.checkout-masking {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

/** car**/
.no-data {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 4rem;
}

.accordion-header {
  position: relative;
  display: flex;
}

.accordion-button {
  margin-right: 1rem;
}

.product-cart-btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-cart-btn-disabled:hover {
  background-color: #263E51 !important;
  color: #ffffff !important;
}

/** goods detail**/
.custom-select-container {
  position: relative;
  width: 100%;
}

.selected-item {
  padding: 10px;
  border: 1px solid #ccc;
  cursor: pointer;
  background: white;
  font-size: 14px;
  width: 300px;
}

.selected-child {
  padding: 10px;
  border: 1px solid #ccc;
  cursor: pointer;
  background: white;
  font-size: 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  z-index: 10;
}

.drop-content {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  z-index: 10;
  width: 100%;
}

.mk_form_control {
  position: relative;
}

.option-item {
  padding: 8px;
  cursor: pointer;
}

.option-item:hover {
  background-color: #f0f0f0;
}

.child-item {
  padding: 8px;
  cursor: pointer;
}

.selected-child-country {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: none;
}

.selected-child-province {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: none;
}

.country-input {
  margin-bottom: 0 !important;
  padding: 0 1rem !important;
  outline: none !important;
}

.province-input {
  margin-bottom: 0 !important;
  padding: 0 1rem !important;
  outline: none !important;
}

.one-item {
  padding: 8px;
  cursor: pointer;
}

.one-item:hover {
  background-color: #f0f0f0;
}

@media screen and (max-width: 767px) {
  .selected-item {
    width: 250px;
  }

  .title-2 {
    margin-top: 40px;
  }

  .pagination a {
    border-radius: 100%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    margin: 0 20px;
  }
}

.mk_checkout-area {
  margin: 0;
  display: none;
}

.modal-dialog {
  top: 40%;
  transform: translateY(-50%);
}

.title-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.title-2 a {
  color: #337ECC;
  font-size: 14px;
  text-decoration: none;
}

.card {
  border: 2px solid #ddd;

}

.card-active {
  border: 2px solid #FECB2B;
}

.dot-item {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  color: #666;
  margin: 4px 0;
  cursor: pointer;
}

.add-list {
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
}

.checkout-arrow-down {
  width: 12px;
  height: 12px;
}

.checkout-arrow-down-country {
  position: absolute;
  right: 10px;
}

.checkout-arrow-down-province {
  position: absolute;
  right: 10px;
}

.padd-container {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.no-wrap {
  word-break: break-all;
}

.minheight6 {
  min-height: 600px;
}

.pd0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.pda0 {
  padding-right: calc(var(--bs-gutter-x)* .5);
  padding-left: calc(var(--bs-gutter-x)* .5);
  padding-top: 0px;
  padding-bottom: 0px;
}

.mt10 {
  margin-top: 10px;
}

.m0 {
  margin: 0px;
}

.ce {
  text-align: center;
}

.brNone {
  background-color: transparent !important;
  border: none !important;
}

.cf {
  color: #fff !important;
}

.c9c {
  color: #c9c2c2 !important;
}

.ccb {
  color: #CBC2C2 !important;
}

.shop-areaActive {
  /* color: #FECB2B; */
  border-left: 3px solid #FECB2B !important;
  padding-left: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.isphone {
  display: none;
}

.nophone {
  display: block;
}

.alignCenter {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .container {
    padding-top: 0;
  }

  .free-gif {
    padding-top: 30px;
  }

  .swiper-box {
    height: 175px !important;
    padding: 40px 0 0 0;
  }

  .swiper-3d {
    height: 150px !important;
  }

  .ftbanner {
    height: 200px;
    border-radius: 10px;
    margin-left: 0 !important;
  }

  .ftbanner-word {
    font-size: 26px;
  }

  .page-container {
    margin-top: 30px !important;
  }

  .tgbanner {
    height: 200px;
    border-radius: 16px 16px 0 0;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 72px !important;
  height: 72px !important;
  background-color: #000;
  box-shadow: 0px 0 6px 0px rgba(0, 0, 0, 0.2);
  opacity: 0.4;
  border-radius: 50%;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

@media screen and (max-width: 767px) {
  #footer-login-before {
    margin-top: 30px;
  }

  .padd-container {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .centerTop {
    width: 300px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 36px !important;
    height: 36px !important;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 18px !important;
  }

  .mtt20 {
    margin-top: 20px;
  }

  .footer-conact-block {
    margin-bottom: 0px;
  }

  .mt10 {
    margin-top: 10px !important;
  }

  .footer-login-after {
    margin-top: 20px;
  }

  .nav-linkTop {
    padding: 0.5rem 0rem !important;
    text-align: center;
  }

  .isphone {
    display: block !important;
  }

  .nophone {
    display: none !important;
  }

  .pdeft10 {
    padding-left: 10px;
  }

  .faqs-area {
    margin: 50px 0;
  }

  .shop-area .sidebar-widget .widget-area-title h5 {
    font-size: 14px;
  }

  .shop-area .sidebar-widget .product-category .accordian .accordian-item-header::after {
    content: "";
  }

  .shop-area .sidebar-widget .product-category .accordian .accordian-item-header.active::after {
    content: "";
    color: #FECB2B;
  }
}

.mtt20 {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .cart-product-area .flaticon-cancel {
    position: absolute;
    top: 6px;
    right: 6px;
  }

  .cart-product-area .cart-product i::before {
    font-size: 20px !important;
  }
}

.ongpageImg {
  height: 600px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .ongpageImg {
    height: 230px;
    width: 100%;
  }

  .cart-product-area {
    padding: 1.2rem 0 0rem 0;
    margin: 0px;
  }

  #mobile-cart-list {
    margin-top: 20px;
  }

  .cart-product-area {
    background-color: #F9F9F9;
  }

  .personlogo {
    display: none !important;
  }
}

.minheight6 {
  min-height: 600px;
}

.fw8 {
  font-weight: 700 !important;
}

.gt0 {
  margin-top: 0px;
  padding-top: 40px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.footerMrea a {
  color: transparent !important;
}

.owf {
  /* overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; */
  transition: all 0.3s;
  display: flex;
  align-items: flex-start;
  /* width: 100px; */
}

.owf:hover {
  overflow: visible;
  white-space: normal;
  display: flex;
  align-items: flex-start;
}

.footer-conact-block {
  position: relative;
  cursor: pointer;
}

.footer-conact-block .tooltiptext {
  visibility: hidden;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.footer-conact-block:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

#svgItem svg path {
  fill: #CBC2C2 !important;
}

.CZcenter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.SPCZJZ {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.NodataBd {
  border: 1px solid #DCDFE6;
  width: 95%;
  padding: 50px;
}

.xuanzhongImg {
  width: 24px;
  height: 24px;
  display: none;
}

.xuanzhongImg.show {
  display: block;
}

.noDataAddress {
  font-size: 18px;
  font-weight: 600;
}

.Noaddress {
  display: none;
}