@charset "UTF-8";
@font-face {
  font-family: "adapter";
  src: url(../fonts//adapter/adapter.ttf);
}
@font-face {
  font-family: "adapter-bold";
  src: url(../fonts//adapter/adapter-bold.ttf);
}
*,
* button:focus {
  outline: 0;
}

:root {
  --blue: #2d1935;
  --red: #E4022B;
  --green: #e0714b;
  --orange: #FF6101;
  --light1: #F5F6F8;
  --gray: #7E859B;
  /* --subColor2: #77643d; */
}

.cr-blue {
  color: var(--blue) !important;
}

.bg-blue {
  background-color: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff;
}

.cr-red {
  color: var(--red) !important;
}

.bg-red {
  background-color: var(--red) !important;
  border-color: var(--red) !important;
  color: #fff;
}

.cr-green {
  color: var(--green) !important;
}

.bg-green {
  background-color: var(--green) !important;
  border-color: var(--green) !important;
  color: #fff;
}

.cr-orange {
  color: var(--orange) !important;
}

.bg-orange {
  background-color: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff;
}

.cr-gray {
  color: var(--gray) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
  border-color: var(--gray) !important;
  color: #fff;
}

.bg-light1 {
  background-color: var(--light1) !important;
  border-color: var(--light1) !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "adapter";
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  direction: rtl;
}
body .dividar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  z-index: 999;
  transition: all linear;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "adapter-bold";
  margin: 0;
  line-height: 1.6;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

[type=email], [type=number], [type=tel], [type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
small,
strong,
label,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
  color: #7E859B;
}
.text.small,
.text *.small {
  font-size: 12px;
}

small.text {
  font-size: 12px;
}

.section_padding {
  padding: 80px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
  left: auto;
  right: 0;
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}
.dropdown .dropdown-menu.ltr {
  left: 0;
  right: auto;
}

/* --------------- to_top button --------------- */
.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 80px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.0666666667);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: translateX(-100px);
  z-index: 99;
  transition: all 200ms linear;
}
.progress-wrap::after {
  background: url(../images/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: #000;
  left: 13px;
  top: 13px;
  height: 25px;
  width: 25px;
  display: block;
}
.progress-wrap svg path {
  fill: #f8f8f8;
}
.progress-wrap svg.progress-circle path {
  stroke: #000;
  stroke-width: 5;
  box-sizing: border-box;
}
.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------- buttons --------------- */
.butn {
  position: relative;
  padding: 12px 50px;
  background-color: var(--blue);
  color: #fff;
  border-radius: 50px;
  border: 0;
  text-align: center;
  font-size: 15px;
}
.butn:hover {
  background-color: var(--green);
  color: #fff;
}
.butn.butn-line {
  background-color: #fff;
  border: 1px solid var(--blue);
  color: var(--blue);
}
.butn.butn-line:hover {
  background-color: var(--blue);
  color: #fff;
}
.butn.butn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--blue);
}
.butn.butn-white:hover {
  background-color: var(--blue);
  color: #fff;
}
.butn.butn-blue-light {
  background-color: rgba(48, 58, 178, 0.0666666667);
  border: 0;
  color: var(--blue);
}
.butn.butn-blue-light:hover {
  background-color: var(--blue);
  color: #fff;
}
.butn.sm-butn {
  padding: 5px 15px;
  font-size: 13px;
}
.butn.md-butn {
  padding: 8px 20px;
  font-size: 15px;
}
.butn.disabled {
  opacity: 0.5;
  filter: grayscale(1);
  pointer-events: none;
  color: var(--blue);
  background-color: rgba(153, 153, 153, 0.6);
}

/* --------------- buttons --------------- */
/* --------------- navbar --------------- */
.navbar {
  position: relative;
  padding: 15px 0;
  z-index: 999;
}
.navbar .navbar-brand img {
  height: 40px;
}
.navbar .serch-form {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(153, 153, 153, 0.2);
}
.navbar .serch-form .form-control {
  border-radius: 0;
  background-color: #fff;
  border: 0;
  min-height: 50px;
  font-size: 14px;
}
.navbar .serch-form .form-control::-moz-placeholder {
  opacity: 0.7;
}
.navbar .serch-form .form-control::placeholder {
  opacity: 0.7;
}
.navbar .serch-form .form-select {
  border-inline-start: 1px solid rgba(153, 153, 153, 0.2);
  font-size: 13px;
  width: -moz-max-content;
  width: max-content;
  padding-inline-end: 100px;
  box-shadow: none;
}
.navbar .serch-form .search-btn {
  width: 50px;
  border: 0;
  background-color: var(--blue);
  color: #fff;
  flex-shrink: 0;
}
.navbar .icon-links > a {
  position: relative;
  font-size: 15px;
  margin-inline-start: 20px;
  font-weight: 700;
}
.navbar .icon-links > a i {
  font-size: 17px;
  margin-inline-end: 5px;
}
.navbar .dropdown-toggle::after {
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
  border-top: 0;
  border-left: 0;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
}
.navbar .city-dropdown {
  position: relative;
  min-width: 100px;
  flex-shrink: 0;
  margin-inline-end: 20px;
}
.navbar .city-dropdown .text {
  font-size: 12px;
}
.navbar .city-dropdown .dropdown {
  font-size: 12px;
}
.navbar .city-dropdown .dropdown .btn {
  border: 0;
  background-color: transparent;
  padding: 0;
}
.navbar .city-dropdown .form-control {
  min-height: unset;
  border: 0;
  padding: 0;
  margin-top: 5px;
  font-size: 14px;
  border-radius: 0;
}

.links-navbar {
  position: relative;
  z-index: 90;
}
.links-navbar .navbar-wrapper {
  position: relative;
  padding: 5px 0;
  background-color: var(--blue);
  color: #fff;
}
.links-navbar .toggle-mega-btn {
  display: flex;
  background-color: #fff;
  color: var(--blue);
  border-radius: 6px;
  align-items: center;
  padding: 12px 15px;
}
.links-navbar .toggle-mega-btn.active {
  background-color: var(--green);
  color: #fff;
}
.links-navbar .toggle-mega-btn.active * {
  color: #fff !important;
}
.links-navbar .toggle-mega-btn.active .cr-blue {
  color: #fff !important;
}
.links-navbar .toggle-mega-btn.active .fa-chevron-down {
  transform: rotate(180deg);
  transition: all 0.3s ease;
}
.links-navbar .cat-links {
  display: flex;
}
.links-navbar .cat-links a {
  position: relative;
  font-size: 14px;
  margin-inline-start: 35px;
  white-space: nowrap;
}
.links-navbar .cat-links a:hover {
  color: var(--green);
}
.links-navbar .cat-links a.offer-link {
  color: var(--red);
}
.links-navbar .cat-links a.offer-link i {
  color: #FF6101;
}
.links-navbar .cat-links .butn {
    border: 1px solid #fff5;
}
.links-navbar .cat-links .links-slider {
  position: relative;
  overflow: hidden;
}
.links-navbar .cat-links .links-slider .swiper-slide {
  width: -moz-max-content !important;
  width: max-content !important;
}

.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 30px 3vw;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.0666666667);
  z-index: 80;
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}
.megamenu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.megamenu .links-group {
  position: relative;
}
.megamenu .links-group .links-list {
  position: relative;
}
.megamenu .links-group .links-list li a {
  position: relative;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--gray);
  display: flex;
  align-items: center;
}
.megamenu .links-group .links-list li a i {
  position: relative;
  top: 1px;
  font-size: 5px;
  margin-inline-end: 10px;
  color: #111;
}
.megamenu .links-group .links-list li a:hover {
  color: var(--blue);
}
.megamenu .brands-group {
  position: relative;
}
.megamenu .brands-group .brands {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.megamenu .brands-group .brands .brand {
  position: relative;
  width: calc(20% - 15px);
  height: 90px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.megamenu .brands-group .brands .brand img {
  width: 100%;
  height: 100%;
  max-height: 60%;
  max-width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.megamenu .brands-group .brands .brand:hover {
  background-color: rgba(48, 58, 178, 0.0274509804);
  border-color: var(--blue);
}
.megamenu .banners {
  position: relative;
}
.megamenu .banners .banner {
  height: 340px;
  border-radius: 8px;
  text-align: end;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-color: #ededfb;
  border: 1px solid rgba(153, 153, 153, 0.0666666667);
  margin: 0 !important;
  top: calc(50% - 20px);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  color: var(--blue);
  transform: rotate(180deg);
}

.swiper-button-prev {
  left: auto;
  right: 0;
}

.swiper-button-next {
  right: auto;
  left: 0;
}

.swiper-arrows {
  position: relative;
  width: 120px;
  background-color: #fff;
  padding: 0 15px;
  height: 40px;
}
.swiper-arrows .swiper-button-prev {
  left: auto;
  right: 15px;
}
.swiper-arrows .swiper-button-next {
  right: auto;
  left: 15px;
}

/* --------------- categories-sec --------------- */
.categories-sec {
  position: relative;
}
.categories-sec .categories {
  position: relative;
  display: block;
  padding: 0 50px;
  overflow: hidden;
}
.categories-sec .categories .categories-slider {
  position: relative;
  overflow: hidden;
}
.categories-sec .categories .categories-slider .swiper-slide {
  text-align: center;
}
.categories-sec .categories .item {
  position: relative;
  margin-top: 15px;
  text-align: center;
}
.categories-sec .categories .item .img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f0f0f0;
    background: linear-gradient(34.21deg, #e0714b30 20.23%, #f1e09ded 84.26%);
    display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  padding: 10px;
}
.categories-sec .categories .item .cat-name {
  font-size: 14px;
  margin-top: 8px;
}
.categories-sec .categories .item.trendy .img {
  background: #FFF7B6;
}

/* --------------- products --------------- */
.products {
  position: relative;
  background-color: var(--light1);
}

/* --------------- line-title --------------- */
.line-title {
  position: relative;
}
.line-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: calc(50% - 4px);
  width: 100%;
  height: 8px;
  background-image: url(../images/title-line.png);
  background-size: contain;
  background-repeat: repeat-x;
}
.line-title h5 {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  z-index: 10;
  font-size: 24px;
}

/* --------------- line-title style 2 --------------- */
.line-title-st2 {
  position: relative;
}
.line-title-st2::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 8px;
  background-image: url(../images/title-line.png);
  background-size: contain;
  background-repeat: repeat-x;
}
.line-title-st2 h5 {
  position: relative;
  z-index: 10;
  font-size: 18px;
  padding-top: 15px;
}


.banners-sec1 .banner {
    height: 260px;
}

/* --------------- product-card --------------- */
.products-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.products-flex .product-card {
  width: calc(20% - 20px);
}

.product-card {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  padding: 5px;
  border: 1px solid #9992;
}
.product-card .img {
  position: relative;
  height: 280px;
  z-index: 10;
}
.product-card .img .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.product-card .img .brand {
  position: absolute;
    top: 10px;
    right: 0;
    padding: 5px 0 5px 5px;
    background-color: #fff;
    border-radius: 6px 0 0 6px;
    max-width: 60px;
}
.product-card .img .brand img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card .img .fav-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-size: 16px;
}
.product-card .img .fav-icon:hover, .product-card .img .fav-icon.active {
  background-color: var(--green);
  color: #fff;
}
.product-card .img .cart-icon {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
  color: #fff;
  font-size: 14px;
}
.product-card .img .cart-icon:hover, .product-card .img .cart-icon.active {
  background-color: var(--green);
}
.product-card .info {
  position: relative;
  padding: 10px;
}

.product-card .info .tag {
    display: flex;
    font-size: 11px;
    color: #777;
    margin-bottom: 5px;
}

.product-card .info .tag i {
    margin-top: 4px;
    margin-inline-end: 10px;
    flex-shrink: 0;
}

.product-card .info .prod-title {
  position: relative;
  margin-top: 10px;
  font-size: 15px;
  /*color: #7E859B;*/
  color: #222;
  min-height: 40px;
}
.product-card .info .prod-title:hover {
  color: var(--blue);
}
.product-card .info .price-wrapper {
  display: flex;
  align-items: flex-end;
  margin-top: 15px;
}
.product-card .info .price-wrapper .price {
  font-size: 18px;
  font-weight: bold;
  margin-inline-end: 5px;
  line-height: 1;
}
.product-card .info .price-wrapper .old-price {
  margin-inline-start: 10px;
  opacity: 0.5;
  font-size: 12px;
  text-decoration: line-through;
  margin-bottom: 3px;
}
.product-card .info .price-wrapper .prc {
  font-size: 12px;
  color: var(--green);
  margin-bottom: 3px;
  margin-inline-start: 5px;
}
.product-card .small {
  font-size: 12px;
}

/* --------------- product-card --------------- */
.product-card-st3 {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  padding: 5px;
}
.product-card-st3 .img {
  position: relative;
  height: 250px;
  z-index: 10;
  border-radius: 8px;
  background: linear-gradient(138.9deg, #F5F6F8 16.07%, #D9F5FB 84.18%), rgba(13, 36, 76, 0.04);
  padding: 15px;
}
.product-card-st3 .img .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card-st3 .img .brand {
  position: absolute;
  top: 10px;
  right: 0;
  padding: 5px 10px;
  background-color: #fff;
  border-radius: 6px 0 0 6px;
}
.product-card-st3 .img .brand img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card-st3 .img .fav-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-size: 16px;
}
.product-card-st3 .img .fav-icon:hover, .product-card-st3 .img .fav-icon.active {
  background-color: var(--blue);
  color: #fff;
}
.product-card-st3 .img .cart-icon {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background-color: #fff;
  font-size: 14px;
}
.product-card-st3 .img .cart-icon:hover, .product-card-st3 .img .cart-icon.active {
  background-color: var(--blue);
  color: #fff;
}
.product-card-st3 .info {
  position: relative;
  padding: 10px;
}
.product-card-st3 .info .prod-title {
  position: relative;
  margin-top: 10px;
  font-size: 13px;
  min-height: 40px;
}
.product-card-st3 .info .prod-title:hover {
  color: var(--blue);
}
.product-card-st3 .info .price-wrapper {
  display: flex;
  align-items: flex-end;
  margin-top: 15px;
}
.product-card-st3 .info .price-wrapper .price {
  font-size: 18px;
  font-weight: bold;
  margin-inline-end: 5px;
  line-height: 1;
}
.product-card-st3 .info .price-wrapper .old-price {
  margin-inline-start: 10px;
  opacity: 0.5;
  font-size: 12px;
  text-decoration: line-through;
  margin-bottom: 3px;
}
.product-card-st3 .info .price-wrapper .prc {
  font-size: 12px;
  color: var(--green);
  margin-bottom: 3px;
  margin-inline-start: 5px;
}
.product-card-st3 .info .rate-wrapper {
  display: flex;
  align-items: center;
  font-size: 12px;
}
.product-card-st3 .info .rate-wrapper .stars {
  font-size: 11px;
  color: rgba(153, 153, 153, 0.3333333333);
  margin: 0 10px;
}
.product-card-st3 .info .rate-wrapper .stars .active {
  color: #FDBC02;
}
.product-card-st3 .small {
  font-size: 12px;
}

/* --------------- banners-sec3 --------------- */
.banner-card-title {
  position: relative;
}
.banner-card-title .float-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  z-index: 10;
  color: #fff;
}
.banner-card-title .img {
  position: relative;
  height: 290px;
  border-radius: 8px;
  overflow: hidden;
}

/* --------------- brands --------------- */
.brands {
  position: relative;
}
.brands .brands-box {
  position: relative;
  box-shadow: 6px 6px 0px rgba(48, 58, 178, 0.2), 0px 0px 1px 1px rgba(38, 47, 64, 0.12);
  border-radius: 5px;
  padding: 20px;
  margin-inline-start: 6px;
}
.brands .brands-slider {
  position: relative;
  overflow: hidden;
}

.brands .brand {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(34.21deg, #e0714b30 20.23%, #f1e09ded 84.26%);
    padding: 20px;
    border-radius: 10px;
}

/* --------------- brands --------------- */
.brands-st2 {
  position: relative;
}
.brands-st2 .brands-box {
  position: relative;
  border-radius: 5px;
}
.brands-st2 .brands-slider {
  position: relative;
  overflow: hidden;
}

/* --------------- products-st2 --------------- */
.products-st2 {
  position: relative;
}
.products-st2 .products-box {
  position: relative;
  box-shadow: 6px 6px 0px #F1DF9C, 0px 0px 1px 1px rgba(38, 47, 64, 0.12);
  border-radius: 5px;
  padding: 20px;
  margin-inline-start: 6px;
}
.products-st2 .product-card {
  padding: 0;
}
.products-st2 .product-card .img {
  height: 220px;
  z-index: 10;
}
.products-st2 .product-card .info .prod-title {
  margin-top: 0;
}

/* --------------- footer --------------- */
.footer {
  position: relative;
}
.footer .top-footer {
  position: relative;
  background-color: var(--blue);
  background-size: cover;
  padding: 20px 0;
}
.footer .top-footer * {
  color: #fff !important;
}
.footer .icon-item {
  position: relative;
  display: flex;
  align-items: center;
}
.footer .icon-item .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin-inline-end: 20px;
  flex-shrink: 0;
}
.footer .icon-item h6 {
  font-size: 24px;
  font-weight: bolder;
  color: var(--blue);
}
.footer .icon-item .text {
  font-size: 17px;
  color: #7E859B;
}
.footer .contact-item {
  position: relative;
  display: flex;
  align-items: flex-end;
}
.footer .contact-item .icon {
  margin-inline-end: 10px;
  flex-shrink: 0;
}
.footer .contact-item a {
  font-size: 16px;
  margin-top: 5px;
}
.footer .social-icons a {
  font-size: 16px;
  margin-inline-start: 30px;
}
.footer .list-icon {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.footer h6 {
    font-size: 13px;
}
.footer .list-icon li {
  position: relative;
  width: 100%;
  display: flex;
  margin: 5px 0;
  font-size: 13px;
}
.footer .list-icon li a {
    display: inline-flex;
}

.footer .list-icon li .text {
    font-size: 12px;
}
.footer .list-icon li .icon {
  display: inline-block;
  margin-inline-end: 10px;
  flex-shrink: 0;
  font-size: 10px;
  position: relative;
  top: 3px;
}
.footer .list-icon li .icon .fa-tags {
  color: #B5935D;
}
.footer .list-icon li .icon .fa-circle {
  font-size: 6px;
  opacity: 0.5;
}
.footer .list-icon.list-half li {
  width: 50%;
}
.footer .contact-group .item {
  position: relative;
  display: flex;
  margin-bottom: 15px;
}
.footer .contact-group .item h6 {
  font-size: 14px;
}
.footer .contact-group .item .icon {
  margin-inline-end: 20px;
  flex-shrink: 0;
  font-size: 18px;
}
.footer .contact-group .item .small {
  padding-inline-start: 20px;
  border-inline-start: 1px solid rgba(153, 153, 153, 0.3333333333);
}
.footer .foot {
  position: relative;
  padding-top: 20px;
  padding-bottom: 50px;
  margin-top: 30px;
  border-top: 1px solid rgba(153, 153, 153, 0.3333333333);
  display: flex;
  align-items: center;
}
.footer .foot .logo {
  height: 35px;
  margin-inline-end: 30px;
}
.footer .foot .links a {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  margin-inline-end: 20px;
}

/* --------------- breadcrumb --------------- */
.nav-breadcrumb {
  position: relative;
  padding: 15px 0;
}
.nav-breadcrumb .links a {
  font-size: 13px;
  color: #7E859B;
  margin-inline-end: 10px;
}

/* --------------- single product page --------------- */
.product-main-info {
  position: relative;
}
.product-main-info .product-imgs {
  position: relative;
  overflow: hidden;
}
.product-main-info .product-imgs .gallery-top {
  position: relative;
  overflow: hidden;
}
.product-main-info .product-imgs .gallery-top img {
  width: 100%;
  height: 600px;
  border-radius: 10px;
}
.product-main-info .product-imgs .gallery-top .share-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-size: 18px;
  z-index: 10;
}
.product-main-info .product-imgs .gallery-top .share-icon:hover, .product-main-info .product-imgs .gallery-top .share-icon.active {
  background-color: var(--blue);
  color: #fff;
}
.product-main-info .product-imgs .gallery-thumbs {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.product-main-info .product-imgs .gallery-thumbs img {
  height: 110px;
  width: 100%;
  padding: 3px;
  border: 1px solid #eee;
  border-radius: 5px;
  transition: all 0.3s linear;
  opacity: 0.7;
  cursor: pointer;
}
.product-main-info .product-imgs .gallery-thumbs .swiper-slide-thumb-active img {
  border-color: var(--blue);
  opacity: 1;
}
.product-main-info .info {
  position: relative;
}
.product-main-info .info .brand {
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(34.21deg, #e0714b30 20.23%, #f1e09ded 84.26%);
    padding: 15px 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.product-main-info .info .rate-wrapper {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin-top: 15px;
}
.product-main-info .info .rate-wrapper .stars {
  font-size: 11px;
  color: rgba(153, 153, 153, 0.3333333333);
  margin: 0 10px;
}
.product-main-info .info .rate-wrapper .stars .active {
  color: #FDBC02;
}
.product-main-info .info .price-wrapper small {
  font-size: 12px;
}
.product-main-info .info .add-btns {
  position: relative;
}
.product-main-info .info .add-btns .form-select {
  min-height: 50px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 50px;
  color: var(--blue);
  text-align: center;
}
.product-main-info .info .add-btns .fav-icon {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.2);
  font-size: 18px;
  color: rgba(153, 153, 153, 0.6);
}
.product-main-info .info .add-btns .fav-icon:hover, .product-main-info .info .add-btns .fav-icon.active {
  border-color: var(--blue);
  background-color: var(--blue);
  color: #fff;
}
.product-main-info .info .feat-box {
  position: relative;
  display: flex;
  padding: 20px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 15px;
  gap: 40px;
}
.product-main-info .info .feat-box .item {
  position: relative;
  text-align: center;
}
.product-main-info .info .feat-box .item .icon {
  width: 45px;
  height: 45px;
  margin: auto;
}
.product-main-info .info .feat-box .item h6 {
  font-size: 13px;
  margin-top: 10px;
  line-height: 1;
}

.select-btns {
  position: relative;
}
.select-btns .form-check {
  position: relative;
  margin-inline-end: 15px;
  padding: 0;
  margin-top: 10px;
}
.select-btns .form-check .form-check-input {
  display: none;
}
.select-btns .form-check .form-check-label {
  position: relative;
  background-color: var(--light1);
  border-radius: 7px;
  padding: 13px 25px;
  border: 1px solid rgba(153, 153, 153, 0.0666666667);
  outline: 3px solid #fff;
  outline-offset: -4px;
  cursor: pointer;
}
.select-btns .form-check .form-check-input:checked ~ .form-check-label {
  border-color: var(--blue);
  color: var(--blue);
}

.form-check-input:checked {
  background-color: var(--blue);
  border-color: var(--blue);
}

.connected-products {
  position: relative;
}
.connected-products .cards {
  position: relative;
  padding: 15px;
  background-color: #F7F9FE;
  border-radius: 15px;
}
.connected-products .cards .item .form-check {
  position: relative;
  padding: 0;
}
.connected-products .cards .item .form-check .form-check-input {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  z-index: 20;
  box-shadow: none;
}
.connected-products .cards .item .form-check .form-check-label {
  width: 100%;
  cursor: pointer;
}
.connected-products .cards .item .form-check .form-check-label .product-card {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  padding: 5px;
  border: 2px dashed transparent;
  border-radius: 15px;
}
.connected-products .cards .item .form-check .form-check-label .product-card .img {
  position: relative;
  height: 140px;
  z-index: 10;
}
.connected-products .cards .item .form-check .form-check-label .product-card .img .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.connected-products .cards .item .form-check .form-check-label .product-card .info {
  position: relative;
  padding: 10px;
}
.connected-products .cards .item .form-check .form-check-label .product-card .info .prod-title {
  position: relative;
  margin-top: 0;
  font-size: 14px;
  color: var(--blue);
  min-height: -moz-max-content;
  min-height: max-content;
}
.connected-products .cards .item .form-check .form-check-label .product-card .info .price-wrapper {
  display: flex;
  align-items: flex-end;
  margin-top: 15px;
}
.connected-products .cards .item .form-check .form-check-label .product-card .info .price-wrapper .price {
  font-size: 18px;
  font-weight: bold;
  margin-inline-end: 5px;
  line-height: 1;
}
.connected-products .cards .item .form-check .form-check-label .product-card .info .price-wrapper .old-price {
  margin-inline-start: 10px;
  opacity: 0.5;
  font-size: 12px;
  text-decoration: line-through;
  margin-bottom: 3px;
}
.connected-products .cards .item .form-check .form-check-label .product-card .info .price-wrapper .prc {
  font-size: 12px;
  color: var(--green);
  margin-bottom: 3px;
  margin-inline-start: 5px;
}
.connected-products .cards .item .form-check .form-check-label .product-card .small {
  font-size: 12px;
}
.connected-products .cards .item .form-check .form-check-input:checked ~ .form-check-label .product-card {
  border-color: rgba(48, 58, 178, 0.6);
}

.product-sub-info {
  position: relative;
}
.product-sub-info .info-list {
  position: relative;
}
.product-sub-info .info-list li {
  position: relative;
  padding: 12px 20px;
}
.product-sub-info .info-list li:nth-of-type(odd) {
  background-image: linear-gradient(to left, var(--light1), transparent);
}

.product-rates {
  position: relative;
}
.product-rates .progress-box {
  position: relative;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #F7F9FE;
}
.product-rates .progress-box .stars {
  font-size: 18px;
  color: rgba(153, 153, 153, 0.3333333333);
}
.product-rates .progress-box .stars .active {
  color: #FDBC02;
}
.product-rates .progress-content {
  position: relative;
  margin: 15px 0;
}
.product-rates .progress-content .progress-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}
.product-rates .progress-content .progress-item .txt {
  color: var(--blue);
  width: 30px;
  flex-shrink: 0;
  font-size: 13px;
}
.product-rates .progress-content .progress-item .prc {
  width: 30px;
  flex-shrink: 0;
  font-size: 13px;
}
.product-rates .progress-content .progress-item .progress {
  height: 8px;
  width: 100%;
  border-radius: 8px;
}
.product-rates .progress-content .progress-item .progress .progress-bar {
  background-color: var(--blue);
  border-radius: 8px;
}

.comments .comment-card {
  position: relative;
  margin-top: 25px;
  display: flex;
}
.comments .comment-card .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  margin-inline-end: 15px;
  flex-shrink: 0;
}
.comments .comment-card .cont {
  flex-grow: 1;
}
.comments .comment-card .cont .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comments .comment-card .cont .cont-body {
  position: relative;
  padding: 15px;
  background-color: #F7F9FE;
  margin-top: 10px;
  border-radius: 10px;
}
.comments .comment-card .cont .cont-body .stars {
  font-size: 14px;
  color: rgba(153, 153, 153, 0.3333333333);
}
.comments .comment-card .cont .cont-body .stars .active {
  color: #FDBC02;
}

/* --------------- products-pg --------------- */
.products-pg {
  position: relative;
}
.products-pg .product-filter {
  position: relative;
}
.products-pg .product-filter > .accordion .accordion-item {
  border-radius: 20px;
    border: 1px solid #9993;
    overflow: hidden;
    padding: 10px;
    margin-bottom: 15px;
}
.products-pg .product-filter > .accordion .accordion-header .filter-button {
  background-color: #fff;
  /*border-bottom: 1px solid rgba(153, 153, 153, 0.3333333333);*/
  border-radius: 0;
  box-shadow: none;
  padding: 20px 10px;
}
.products-pg .product-filter > .accordion .accordion-header .filter-button i {
  position: relative;
  top: -2px;
  font-size: 15px;
}
.products-pg .product-filter > .accordion .accordion-header .filter-button h5 {
  font-size: 18px;
}
.products-pg .product-filter > .accordion .accordion-header .filter-button::after {
  background-size: 16px;
}
.products-pg .product-filter > .accordion .accordion-body {
  padding: 0;
}
.products-pg .product-filter .category-filter {
  position: relative;
  background-color: var(--light1);
}
.products-pg .product-filter .category-filter .accordion {
  padding: 20px 24px 0;
  border-radius: 15px;
  overflow: hidden;
}

.products-pg .product-filter > .accordion .accordion-body {
    border-radius: 15px;
    overflow: hidden;
}

.products-pg .product-filter .category-filter .accordion .accordion-item {
  border: 0;
  border-radius: 0;
  background-color: transparent;
  padding-bottom: 20px;
}
.products-pg .product-filter .category-filter .accordion .accordion-item .accordion-header .accordion-button {
  border: 0;
  margin: 0;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
  padding: 0;
  /*padding-inline-start: 30px;*/
}
.products-pg .product-filter .category-filter .accordion .accordion-item .accordion-header .accordion-button::after {
  position: absolute;
  right: 0;
  top: 2px;
  background-image: none;
  content: "\f067";
  font-family: "Font Awesome 6 Pro";
  font-size: 9px;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 50%;
  text-align: center;
  padding-top: 1px;
  transform: rotate(0) !important;
}
.products-pg .product-filter .category-filter .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.products-pg .product-filter .category-filter .accordion .accordion-item .accordion-body {
  position: relative;
  margin-top: 20px;
  padding: 0;
  padding-inline-start: 15px;
  margin-inline-start: 7px;
  border-inline-start: 1px dashed rgba(48, 58, 178, 0.3333333333);
}
.products-pg .product-filter .category-filter .accordion .cat-checks .form-check {
  position: relative;
  margin: 10px 0;
}
.products-pg .product-filter .category-filter .accordion .cat-checks .form-check .form-check-input {
  border-radius: 50%;
  box-shadow: none;
}
.products-pg .product-filter .category-filter .accordion .cat-checks .form-check .form-check-label {
  opacity: 0.5;
  font-size: 13px;
}
.products-pg .product-filter .category-filter .accordion .cat-checks .form-check .form-check-input:checked ~ .form-check-label {
  opacity: 1;
}
.products-pg .product-filter .num-checks .form-check {
  position: relative;
  margin: 10px 0;
}
.products-pg .product-filter .num-checks .form-check .form-check-label {
  opacity: 0.5;
  font-size: 13px;
  display: flex;
}
.products-pg .product-filter .num-checks .form-check .form-check-label .num {
  margin-inline-start: auto;
}
.products-pg .product-filter .search-form {
  position: relative;
  margin-bottom: 20px;
}
.products-pg .product-filter .search-form .form-group {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 7px 15px;
  border-radius: 6px;
  border: 1px solid rgba(153, 153, 153, 0.2);
}
.products-pg .product-filter .search-form .form-group .icon-btn {
  border: 0;
  background: transparent;
}
.products-pg .product-filter .search-form .form-group .form-control {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.products-pg .product-filter .price-inputs {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.products-pg .product-filter .price-inputs .text {
  margin: 0 20px;
  flex-shrink: 0;
}
.products-pg .product-filter .stars {
  font-size: 14px;
  color: rgba(153, 153, 153, 0.3333333333);
  margin-inline-start: 5px;
}
.products-pg .product-filter .stars .active {
  color: #FDBC02;
}
.products-pg .products-content .categories {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.products-pg .products-content .categories .item {
  position: relative;
  margin-top: 15px;
  text-align: center;
  width: 12%;
}
.products-pg .products-content .categories .item .img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f0f0f0;
  background: linear-gradient(34.21deg, #F0C0C9 20.23%, #F0D9C1 84.26%), #BAF3E6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
}
.products-pg .products-content .categories .item .cat-name {
  font-size: 14px;
  margin-top: 8px;
}
.products-pg .products-content .categories .item.trendy .img {
  background: #FFF7B6;
}
.products-pg .product-card {
  border: 1px solid rgba(153, 153, 153, 0.2);
  margin-bottom: 8px;
}

.pagination {
  position: relative;
  align-items: center;
}
.pagination .page-item .page-link {
  border: 0;
  color: var(--gray);
  font-size: 14px;
}
.pagination .page-item .page-link.num {
  position: relative;
  width: 45px;
  height: 45px;
  margin: 0 5px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
}
.pagination .page-item .page-link.num:hover, .pagination .page-item .page-link.num.active {
  border-color: var(--blue);
  background-color: rgba(48, 58, 178, 0.1333333333);
}

/* --------------- cart-pg --------------- */
.cart-pg,
.checkout-pg {
  position: relative;
}
.cart-pg .checkout-item,
.checkout-pg .checkout-item {
  position: relative;
}
.cart-pg .checkout-item .gray-box,
.checkout-pg .checkout-item .gray-box {
  position: relative;
}
.cart-pg .checkout-item .gray-box .brand,
.checkout-pg .checkout-item .gray-box .brand {
  position: absolute;
  inset-inline-end: 30px;
  top: 30px;
  height: 50px;
  max-width: 100px;
}
.cart-pg .checkout-item .prods .item,
.checkout-pg .checkout-item .prods .item {
  position: relative;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.cart-pg .checkout-item .prods .item .img,
.checkout-pg .checkout-item .prods .item .img {
  height: 200px;
  min-height: 100%;
}
.cart-pg .checkout-item .prods .item .img img,
.checkout-pg .checkout-item .prods .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart-pg .checkout-item .prods .item .info,
.checkout-pg .checkout-item .prods .item .info {
  position: relative;
  font-size: 13px;
}
.cart-pg .checkout-item .prods .item .info .quant,
.checkout-pg .checkout-item .prods .item .info .quant {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.cart-pg .checkout-item .prods .item .info .quant .form-select,
.checkout-pg .checkout-item .prods .item .info .quant .form-select {
  width: 70px;
  margin-inline-start: 10px;
  font-size: 14px;
}
.cart-pg .checkout-item .prods .item .info .quant a,
.checkout-pg .checkout-item .prods .item .info .quant a {
  margin-inline-start: 10px;
}
.cart-pg .checkout-item .prods .item .info .quant small,
.cart-pg .checkout-item .prods .item .info .quant .small,
.checkout-pg .checkout-item .prods .item .info .quant small,
.checkout-pg .checkout-item .prods .item .info .quant .small {
  font-size: 11px;
}
.cart-pg .checkout-item .prods .item .price-wrapper,
.checkout-pg .checkout-item .prods .item .price-wrapper {
  display: flex;
  align-items: flex-end;
}
.cart-pg .checkout-item .prods .item .price-wrapper .price,
.checkout-pg .checkout-item .prods .item .price-wrapper .price {
  font-size: 18px;
  font-weight: bold;
  margin-inline-end: 5px;
  line-height: 1;
}
.cart-pg .checkout-item .prods .item .price-wrapper .old-price,
.checkout-pg .checkout-item .prods .item .price-wrapper .old-price {
  margin-inline-start: 10px;
  opacity: 0.5;
  font-size: 12px;
  text-decoration: line-through;
  margin-bottom: 3px;
}
.cart-pg .checkout-item .prods .item .price-wrapper .prc,
.checkout-pg .checkout-item .prods .item .price-wrapper .prc {
  font-size: 12px;
  color: var(--green);
  margin-bottom: 3px;
  margin-inline-start: 5px;
}

.sticky-card {
  position: sticky;
  top: 20px;
}

.price-box {
  position: relative;
  padding: 15px;
  border-radius: 10px;
  background-color: #F7F9FE;
}
.price-box .code-group {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 7px 15px;
  border-radius: 6px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  margin-top: 20px;
}
.price-box .code-group button {
  border: 0;
  background: transparent;
  color: var(--blue);
}
.price-box .code-group .form-control {
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
}
.price-box .price-list {
  position: relative;
  margin: 20px 0;
}
.price-box .price-list li {
  position: relative;
  font-size: 14px;
  color: var(--gray);
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}
.price-box .price-list li .txt small {
  display: block;
  font-size: 11px;
  opacity: 0.4;
}

.checkout-pg .prods .item .img {
  height: 140px !important;
}
.checkout-pg .payment-way {
  position: relative;
}
.checkout-pg .payment-way .nav-pills {
  flex-wrap: nowrap;
  gap: 15px;
}
.checkout-pg .payment-way .nav-pills .nav-item {
  width: 33%;
  flex-grow: 1;
}
.checkout-pg .payment-way .nav-pills .nav-item .nav-link {
  position: relative;
  padding: 30px;
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 6px;
  color: #111;
  width: 100%;
  height: 100%;
}
.checkout-pg .payment-way .nav-pills .nav-item .nav-link .icon {
  margin-bottom: 15px;
  height: 25px;
}
.checkout-pg .payment-way .nav-pills .nav-item .nav-link .icon-txt {
  height: 25px;
  width: 40px;
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.checkout-pg .payment-way .nav-pills .nav-item .nav-link.active {
  border-color: var(--blue);
  background-color: rgba(48, 58, 178, 0.031372549);
  color: var(--blue);
}
.checkout-pg .payment-way .nav-pills .nav-item .nav-link.active .icon {
  filter: invert(17%) sepia(35%) saturate(7031%) hue-rotate(235deg) brightness(90%) contrast(90%);
}
.checkout-pg .adress-item {
  position: relative;
  border: 1px solid var(--blue);
  border-radius: 6px;
  background-color: rgba(48, 58, 178, 0.031372549);
  padding: 20px;
}
.checkout-pg .adress-item .btns {
  position: absolute;
  inset-inline-end: 20px;
  top: 20px;
  font-size: 13px;
}
.checkout-pg .adress-item .btns a {
  margin-inline-start: 10px;
  font-size: 13px;
}
.checkout-pg .adress-item .btns a i {
  font-size: 10px;
}

.icon-title-st1 {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2666666667);
}

.orders-pg {
  position: relative;
}
.orders-pg .filter {
  position: relative;
}
.orders-pg .filter .nav-pills {
  position: relative;
  padding: 5px;
  background-color: var(--light1);
  border-radius: 6px;
  width: -moz-max-content;
  width: max-content;
}
.orders-pg .filter .nav-pills .nav-item .nav-link {
  position: relative;
  background-color: transparent;
  border: 0;
  color: var(--gray);
  border: 6px;
  padding: 10px 30px;
}
.orders-pg .filter .nav-pills .nav-item .nav-link.active {
  background-color: #fff;
  color: var(--blue);
}
.orders-pg .filter .form {
  display: flex;
  position: relative;
}
.orders-pg .filter .form .search-group {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 7px 15px;
  border-radius: 6px;
  border: 1px solid rgba(153, 153, 153, 0.2);
}
.orders-pg .filter .form .search-group .icon-btn {
  border: 0;
  background: transparent;
}
.orders-pg .filter .form .search-group .form-control {
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  min-height: -moz-max-content;
  min-height: max-content;
}
.orders-pg .filter .form .select-group {
  width: calc(40% - 15px);
  margin-inline-start: 15px;
  flex-shrink: 0;
}
.orders-pg .filter .form .select-group .form-select {
  min-height: 50px;
  background-color: var(--light1);
  box-shadow: none;
  font-size: 13px;
}
.orders-pg .orders .orders-tab .order-card {
  position: relative;
  margin-bottom: 10px;
  background-color: var(--light1);
  border-radius: 10px;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  overflow: hidden;
}
.orders-pg .orders .orders-tab .order-card .order-head {
  padding: 15px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2666666667);
}
.orders-pg .orders .orders-tab .order-card .order-head .status {
  position: relative;
  width: 80px;
  height: 50px;
  background-color: #fff;
  padding: 0 15px;
  border-radius: 6px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  text-align: center;
  font-size: 13px;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.orders-pg .orders .orders-tab .order-card .order-head .status.delivered {
  color: var(--green);
}
.orders-pg .orders .orders-tab .order-card .order-head .status.waiting {
  color: var(--gray);
}
.orders-pg .orders .orders-tab .order-card .order-head .status.rejected {
  color: var(--red);
}
.orders-pg .orders .orders-tab .order-card .order-head .text {
  font-size: 13px;
  line-height: 1.5;
}
.orders-pg .orders .orders-tab .order-card .order-head .small {
  font-size: 10px;
}
.orders-pg .orders .orders-tab .order-card .order-body {
  padding: 15px;
  background-color: #fff;
}
.orders-pg .orders .orders-tab .order-card .order-body .order-main {
  position: relative;
}
.orders-pg .orders .orders-tab .order-card .order-body .order-main .img-wrapper {
  position: relative;
  display: flex;
}
.orders-pg .orders .orders-tab .order-card .order-body .order-main .img-wrapper .img {
  width: 90px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  margin-inline-end: 15px;
  flex-shrink: 0;
}
.orders-pg .orders .orders-tab .order-card .order-body .share-btns {
  position: relative;
  display: flex;
}
.orders-pg .orders .orders-tab .order-card .order-body .share-btns a {
  font-size: 13px;
  color: var(--blue);
  border-radius: 50px;
  padding: 10px 20px;
  height: 40px;
  width: 100px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 5px;
  margin-top: 10px;
}
.orders-pg .orders .orders-tab .order-card .order-body .share-btns a:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.orders-pg .order-details .order-track {
  position: relative;
  padding: 20px 0;
}
.orders-pg .order-details .order-track .track-item {
  position: relative;
  margin: 15px 0;
}
.orders-pg .order-details .order-track .track-item .icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(153, 153, 153, 0.2);
  margin-inline-end: 15px;
  flex-shrink: 0;
}
.orders-pg .order-details .order-track .track-item .icon .fa-check {
  display: none;
}
.orders-pg .order-details .order-track .track-item .icon .fa-hourglass {
  display: none;
}
.orders-pg .order-details .order-track .track-item.done .icon {
  background-color: var(--green);
  border-color: var(--green);
  color: #fff;
  font-size: 18px;
}
.orders-pg .order-details .order-track .track-item.done .icon i {
  display: none;
}
.orders-pg .order-details .order-track .track-item.done .icon i.fa-check {
  display: inline-block;
}
.orders-pg .order-details .order-track .track-item.done strong {
  color: var(--green);
}
.orders-pg .order-details .order-track .track-item.waiting {
  position: relative;
  padding-bottom: 80px;
}
.orders-pg .order-details .order-track .track-item.waiting::after {
  position: absolute;
  content: "";
  bottom: 10px;
  right: calc(25% + 28px);
  width: 1px;
  height: 60px;
  background-color: var(--gray);
  opacity: 0.5;
}
.orders-pg .order-details .order-track .track-item.waiting .icon {
  background-color: var(--orange);
  border-color: var(--orange);
  color: #fff;
  font-size: 18px;
}
.orders-pg .order-details .order-track .track-item.waiting .icon i {
  display: none;
}
.orders-pg .order-details .order-track .track-item.waiting .icon i.fa-hourglass {
  display: inline-block;
}
.orders-pg .order-details .order-track .track-item.waiting strong {
  color: var(--orange);
}
.orders-pg .order-details .order-card {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}
.orders-pg .order-details .order-card .order-head {
  padding: 20px 15px;
  background-color: var(--light1);
  border-radius: 10px;
}
.orders-pg .order-details .order-card .order-head .status {
  position: relative;
  width: 80px;
  height: 50px;
  background-color: #fff;
  padding: 0 15px;
  border-radius: 6px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  text-align: center;
  font-size: 13px;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.orders-pg .order-details .order-card .order-head .status.delivered {
  color: var(--green);
}
.orders-pg .order-details .order-card .order-head .status.waiting {
  color: var(--gray);
}
.orders-pg .order-details .order-card .order-head .status.rejected {
  color: var(--red);
}
.orders-pg .order-details .order-card .order-head .text {
  font-size: 13px;
  line-height: 1.5;
}
.orders-pg .order-details .order-card .order-head .small {
  font-size: 10px;
}
.orders-pg .order-details .order-card .order-body {
  background-color: #fff;
}
.orders-pg .order-details .order-card .order-body .item {
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}
.orders-pg .order-details .order-card .order-body .order-main {
  position: relative;
}
.orders-pg .order-details .order-card .order-body .order-main .img-wrapper {
  position: relative;
  display: flex;
}
.orders-pg .order-details .order-card .order-body .order-main .img-wrapper .img {
  width: 90px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  margin-inline-end: 15px;
  flex-shrink: 0;
}
.orders-pg .order-details .order-card .order-body .share-btns {
  position: relative;
  display: flex;
}
.orders-pg .order-details .order-card .order-body .share-btns a {
  font-size: 13px;
  color: var(--blue);
  border-radius: 50px;
  padding: 10px 20px;
  height: 40px;
  width: 100px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 5px;
  margin-top: 10px;
}
.orders-pg .order-details .order-card .order-body .share-btns a:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.custom-pills {
  position: relative;
  padding: 5px;
  background-color: #f0f0f0;
  border-radius: 6px;
  width: -moz-max-content;
  width: max-content;
}
.custom-pills .nav-item .nav-link {
  position: relative;
  background-color: transparent;
  border: 0;
  color: var(--gray);
  border: 6px;
  padding: 10px 30px;
}
.custom-pills .nav-item .nav-link.active {
  background-color: #fff;
  color: var(--blue);
}

.form-control {
  position: relative;
  box-shadow: none !important;
  min-height: 50px;
  border-radius: 6px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  font-size: 14px;
}

.empty {
  max-width: 300px;
  margin: 0 auto;
}

/* --------------- profile-pg --------------- */
.profile-pg {
  position: relative;
}
.profile-pg .sidemenu {
  position: relative;
  background: linear-gradient(270deg, rgba(245, 246, 248, 0) 0%, #F5F6F8 100%);
  border-radius: 12px;
  overflow: hidden;
}
.profile-pg .sidemenu .dividar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-pg .sidemenu .author-wrapper {
  position: relative;
  padding: 30px;
  text-align: center;
}
.profile-pg .sidemenu .author-wrapper .avatar {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
}
.profile-pg .sidemenu .links .lnk {
  position: relative;
  font-size: 15px;
  color: var(--gray);
  padding: 10px 15px;
  display: flex;
  border-inline-start: 4px solid transparent;
}
.profile-pg .sidemenu .links .lnk .icon {
  color: var(--blue);
  width: 30px;
}
.profile-pg .sidemenu .links .lnk:hover, .profile-pg .sidemenu .links .lnk.active {
  background-color: #fff;
  border-color: var(--blue);
  color: var(--blue);
}
.profile-pg .sidemenu .links .lnk.sign-out {
  color: var(--red);
  margin-top: 80px;
  margin-bottom: 15px;
}
.profile-pg .sidemenu .links .lnk.sign-out .icon {
  color: var(--red);
}
.profile-pg .sidemenu .links .lnk.sign-out:hover, .profile-pg .sidemenu .links .lnk.sign-out.active {
  background-color: transparent;
  border-color: var(--red);
}

.adress-tab {
  position: relative;
}
.adress-tab .map {
  position: relative;
  height: 370px;
  border-radius: 15px;
  overflow: hidden;
}
.adress-tab .map iframe {
  margin-bottom: -6px;
}
.adress-tab .adress-form {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: var(--light1);
}
.adress-tab .adress-form .map-form {
  position: relative;
  height: 470px;
  min-height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.adress-tab .adress-form .map-form iframe {
  margin-bottom: -6px;
}
.adress-tab .adress-form .map-form .float-butn {
  position: absolute;
  right: 15px;
  top: 15px;
}
.adress-tab .form {
  position: relative;
  padding: 30px;
}
.adress-tab .form .form-group {
  position: relative;
  margin-bottom: 20px;
}
.adress-tab .form .form-group .form-control {
  margin-top: 5px;
}
.adress-tab .adress-item {
  position: relative;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  border-radius: 6px;
  background-color: #f0f0f0;
  padding: 20px;
  margin-bottom: 24px;
}
.adress-tab .adress-item .btns {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 13px;
}
.adress-tab .adress-item .btns a {
  margin-inline-start: 10px;
  font-size: 13px;
}
.adress-tab .adress-item .btns a i {
  font-size: 10px;
}
.adress-tab .adress-item.active {
  border-color: var(--blue);
  background-color: rgba(48, 58, 178, 0.031372549);
}

.account-tab .progress-box .avatar-wrapper {
  position: relative;
  text-align: center;
}
.account-tab .progress-box .avatar-wrapper .avatar {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
}
.account-tab .progress-box .avatar-wrapper .prc-num {
  background-color: var(--blue);
  display: block;
  width: -moz-max-content;
  width: max-content;
  padding: 5px 20px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  border-radius: 8px;
  margin: -20px auto 0;
}
.account-tab .progress-box .progress-wrapper .progress {
  position: relative;
  height: 8px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 10px;
}
.account-tab .progress-box .progress-wrapper .progress .progress-bar {
  background: linear-gradient(90deg, #2d1935 0%, #E4022B 100%);
  border-radius: 8px;
}
.account-tab .form-group {
  position: relative;
  margin-bottom: 24px;
}
.account-tab .form-group .edit-lnk {
  position: absolute;
  left: 15px;
  bottom: 15px;
  z-index: 10;
  color: var(--blue);
  font-size: 13px;
  font-weight: bold;
}

.payment-tab {
  position: relative;
}
.payment-tab .payment-cards {
  height: 500px;
  min-height: -moz-max-content;
  min-height: max-content;
  max-height: 100vw;
}
.payment-tab .payment-cards .item {
  position: relative;
  margin-bottom: 15px;
  background-color: #fff;
  padding: 30px;
}
.payment-tab .payment-cards .item .icon {
  height: 30px;
}

.refund-tab {
  position: relative;
}
.refund-tab .refund-cards {
  position: relative;
}
.refund-tab .refund-cards .item {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  display: block;
}
.refund-tab .refund-cards .item .img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 90px;
  width: 90px;
  max-width: 100%;
}
.refund-tab .refund-cards .item .float-arrow {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 10;
}
.refund-tab .prod-box .prod-item {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  display: block;
}
.refund-tab .prod-box .prod-item .img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 90px;
  width: 90px;
  max-width: 100%;
}
.refund-tab .prod-box .prod-item .float-price {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 10;
  font-size: 20px;
}
.refund-tab .prod-box .prod-item .float-price small {
  font-size: 12px;
}
.refund-tab .refund-steps .cont {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}
.refund-tab .refund-steps .step-item {
  display: block;
  margin-top: 24px;
}
.refund-tab .refund-steps .step-done {
  display: flex;
  align-items: center;
}
.refund-tab .refund-steps .step-done .check {
  width: 60px;
  height: 60px;
  background-color: rgba(56, 174, 4, 0.1333333333);
  font-size: 30px;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-inline-end: 30px;
  flex-shrink: 0;
}
.refund-tab .refund-steps .adress-item {
  position: relative;
  border: 1px solid var(--blue);
  border-radius: 6px;
  background-color: rgba(48, 58, 178, 0.031372549);
  padding: 20px;
}
.refund-tab .refund-steps .adress-item .btns {
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 13px;
}
.refund-tab .refund-steps .adress-item .btns a {
  margin-inline-start: 10px;
  font-size: 13px;
}
.refund-tab .refund-steps .adress-item .btns a i {
  font-size: 10px;
}
.refund-tab .refund-steps .steps-line-wrapper {
  display: flex;
}
.refund-tab .refund-steps .steps-line-wrapper .item {
  position: relative;
  text-align: center;
  color: var(--green);
  filter: grayscale(1);
  flex-shrink: 0;
}
.refund-tab .refund-steps .steps-line-wrapper .item .icon {
  width: 60px;
  height: 60px;
  background-color: rgba(56, 174, 4, 0.1333333333);
  font-size: 30px;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
  flex-shrink: 0;
}
.refund-tab .refund-steps .steps-line-wrapper .item.active {
  filter: grayscale(0);
}
.refund-tab .refund-steps .steps-line-wrapper .line {
  height: 1px;
  width: 100%;
  background-color: var(--gray);
  margin: 30px 15px;
}

.refund-pg .side-btns .item-box .cont {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
}
.refund-pg .side-btns .item-box .cont .icon {
  height: 30px;
  margin-inline-end: 15px;
  flex-shrink: 0;
}
.refund-pg .side-btns .item-box .cont h6 {
  font-size: 14px;
  margin-bottom: 5px;
}
.refund-pg .side-btns .item-box .cont p {
  font-size: 10px;
  color: var(--gray);
}
.refund-pg .side-btns .item-box .cont .arrow {
  margin-top: 5px;
}

.modal-refund .prod-box .prod-item {
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  display: block;
}
.modal-refund .prod-box .prod-item .img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 90px;
  width: 90px;
  max-width: 100%;
}
.modal-refund .prod-box .prod-item .float-price {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 10;
  font-size: 20px;
}
.modal-refund .prod-box .prod-item .float-price small {
  font-size: 12px;
}

.dot-list {
  position: relative;
}
.dot-list li {
  display: flex;
  color: var(--gray);
  margin-top: 10px;
}
.dot-list li small {
  font-size: 4px;
  margin-inline-end: 10px;
  margin-top: 10px;
}

.upload__box {
  margin-top: 30px;
}
.upload__box .upload__inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.upload__box .upload__btn {
  display: inline-block;
  background-color: #fff;
  border: 1px solid rgba(153, 153, 153, 0.2);
  padding: 50px 100px;
}
.upload__box .upload__btn:hover {
  background-color: unset;
  color: #4045ba;
  transition: all 0.3s ease;
}
.upload__box .upload__btn-box {
  margin-bottom: 10px;
}
.upload__box .upload__img-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.upload__box .upload__img-box {
  width: 200px;
  padding: 0 10px;
  margin-bottom: 12px;
}
.upload__box .upload__img-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  line-height: 24px;
  z-index: 1;
  cursor: pointer;
}
.upload__box .upload__img-close:after {
  content: "✖";
  font-size: 14px;
  color: white;
}
.upload__box .img-bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  padding-bottom: 100%;
  border-radius: 10px;
  margin-top: 10px;
}
.upload__box .upload__img-close {
  display: none;
}

.code-group {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  direction: ltr;
}
.code-group .item {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: 0;
  background-color: #f5f5f5;
  border: 1px solid rgba(153, 153, 153, 0.6);
  text-align: center;
  font-size: 20px;
}
.code-group .item.focused {
  border-color: var(--blue);
  background-color: #fff;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1333333333);
}

/* --------------- mob-nav --------------- */
.mob-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.0666666667);
  z-index: 99;
}
.mob-nav .links-list {
  display: flex;
}
.mob-nav .links-list .item {
  position: relative;
  flex-grow: 1;
}
.mob-nav .links-list .item .lnk {
  position: relative;
  display: block;
  text-align: center;
  padding: 10px;
  border-top: 1px solid transparent;
}
.mob-nav .links-list .item .lnk .icon {
  display: block;
  margin-bottom: 3px;
  font-size: 17px;
  color: var(--blue);
}
.mob-nav .links-list .item .lnk:hover, .mob-nav .links-list .item .lnk.active {
  background-color: rgba(48, 58, 178, 0.0666666667);
  color: var(--blue);
  border-color: var(--blue);
}

/* --------------- login --------------- */
.modal {
  display: block !important;
}
.modal:not(.show) {
  visibility: hidden;
}
.modal.show {
  visibility: visible;
  z-index: 9999999;
}

.modal-rate .product-card .img {
  height: 130px;
  border-radius: 10px;
  overflow: hidden;
}

.stars-content .star-rating {
  display: flex;
  flex-direction: row-reverse;
  font-size: 17px;
  justify-content: center;
  padding: 30px 15px;
  text-align: center;
  margin: auto;
}
.stars-content .star-rating i {
  margin: 0 5px;
}
.stars-content .star-rating input {
  display: none;
}
.stars-content .star-rating label {
  color: #ccc;
  cursor: pointer;
}
.stars-content .star-rating :checked ~ label {
  color: #FFD06A;
  opacity: 1;
}
.stars-content .star-rating label:hover,
.stars-content .star-rating label:hover ~ label {
  color: #FFB820;
  opacity: 1;
}
.stars-content textarea {
  padding: 20px;
}

.login-imgs-sliders {
  position: relative;
}
.login-imgs-sliders .marq-slider {
  position: relative;
  overflow: hidden;
  margin: 5px 0;
}
.login-imgs-sliders .marq-slider .swiper-wrapper {
  transition-timing-function: linear !important;
  position: relative;
  pointer-events: none;
}
.login-imgs-sliders .marq-slider .swiper-wrapper .swiper-slide {
  width: -moz-max-content !important;
  width: max-content !important;
}
.swiper-notification {
  display: none;
}

.modal-login .logo-wrapper {
  position: relative;
  padding: 30px 0;
  /* background-color: #fff; */
  text-align: center;
}

.modal-login .logo-wrapper .logo {
  height: 50px;
}

@media (min-width: 992px) {
  .modal-login .modal-lg, .modal-login .modal-xl {
    --bs-modal-width: 650px;
  }
}


/* --------------- modal-cat-content --------------- */
.modal-category .modal-content {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  border: 0;
}
.modal-category .modal-content .cat-item {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 15px;
}
.modal-category .modal-content .cat-item .img {
  position: relative;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
}

/* --------------- loader --------------- */
.loader_circle_1s {
  animation: rotateClockwise 1s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.loader_circle_12s {
  animation: rotateClockwise 12s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.loader_circle_144s {
  animation: rotateClockwise 144s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.loader_circle_1 {
  animation: rotateClockwise 1.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.loader_circle_2 {
  animation: rotateClockwise 2.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.loader_circle_3 {
  animation: rotateClockwise 3.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.loader_circle_4 {
  animation: rotateClockwise 4.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.loader_circle_5 {
  animation: rotateClockwise 5.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.loader_circle_6 {
  animation: rotateClockwise 6.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loader_circle_1_counter {
  animation: rotateCounterClockwise 1.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.loader_circle_2_counter {
  animation: rotateCounterClockwise 2.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.loader_circle_3_counter {
  animation: rotateCounterClockwise 3.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.loader_circle_4_counter {
  animation: rotateCounterClockwise 4.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.loader_circle_5_counter {
  animation: rotateCounterClockwise 5.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.loader_circle_6_counter {
  animation: rotateCounterClockwise 6.5s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes rotateCounterClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
/* --------------- faq-pg --------------- */
.faq-pg {
  position: relative;
}
.faq-pg .accordion > .accordion-item {
  border: 0;
  padding: 20px;
  border-radius: 10px;
  background-color: #F5F6F8;
  margin-bottom: 30px;
}
.faq-pg .accordion > .accordion-item .accordion-button {
  padding: 10px 0;
  border: 0;
  box-shadow: none;
  background-color: transparent;
  color: #000;
}
.faq-pg .accordion > .accordion-item .accordion-button::after {
  filter: brightness(0);
  background-image: none;
  content: "\f067";
  font-family: "Font Awesome 6 Pro";
  font-size: 13px;
  font-weight: 300;
  transform: rotate(0);
}
.faq-pg .accordion > .accordion-item .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.faq-pg .accordion > .accordion-item .accordion-body {
  padding: 0;
  padding-bottom: 30px;
}
.faq-pg .accordion > .accordion-item .accordion-body .text {
  font-size: 15px;
}
.faq-pg .nav-pills {
  margin: 30px 0;
}
.faq-pg .nav-pills .nav-link {
  color: #000;
  font-size: 14px;
  background-color: transparent;
  border-radius: 10px;
  background-color: #f5f5f5;
  padding: 15px 40px;
  margin: 10px;
}
.faq-pg .nav-pills .nav-link.active {
  background-color: var(--blue);
  color: #fff;
  font-weight: bold;
}

/* --------------- warranty-pg --------------- */
.warranty-pg {
  position: relative;
}
.warranty-pg li {
  margin: 15px 0;
  color: #777;
}
.warranty-pg .main-text {
  margin-top: 15px;
  color: #333;
  font-size: 18px;
}
.warranty-pg .text {
  margin-top: 15px;
  color: #777;
  font-size: 14px;
}

.table {
  position: relative;
  margin-top: 30px;
}
.table th, .table td {
  padding: 15px;
}
.table td {
  font-size: 13px;
}
.table th {
  background-color: #F7F9FE;
}

/* --------------- code-pg --------------- */
.code-group {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  direction: ltr;
}
.code-group .item {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: 0;
  background-color: #fff;
  text-align: center;
  font-size: 20px;
}
.code-group .item.focused {
  background-color: #fff;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

/* --------------- warranty-pg --------------- */
/* --------------- warranty-pg --------------- */
/* --------------- warranty-pg --------------- */
/* --------------- warranty-pg --------------- */
/* ======== */
@media screen and (max-width: 991px) {
  .navbar .icon-links > a {
    margin: 15px 20px 0 0;
  }
  .navbar .serch-form {
    margin-top: 20px;
  }
  .categories-sec .categories,
  .products-pg .products-content .categories {
    flex-wrap: wrap;
  }
  .categories-sec .categories .item,
  .products-pg .products-content .categories .item {
    width: 49%;
  }
  .categories-sec .categories .item .img {
      margin: 0 auto;
  }
  .megamenu .banners .banner {
    height: -moz-max-content;
    height: max-content;
    margin-top: 15px;
  }
  .footer .foot {
    display: block;
  }
  .footer .foot .links a {
    margin: 10px 0;
  }
  .footer .foot .logo {
    margin-bottom: 20px;
  }
  .cart-pg .prods .item, .checkout-pg .prods .item {
    padding: 15px;
  }
  .cart-pg .prods .item .img, .checkout-pg .prods .item .img {
    border-radius: 10px;
    overflow: hidden;
  }
  .checkout-pg .payment-way .nav-pills {
    flex-wrap: wrap;
  }
  .checkout-pg .payment-way .nav-pills .nav-item {
    width: 100%;
  }
  .orders-pg .order-details .order-track .track-item .date {
    margin-bottom: 15px;
  }
  .orders-pg .order-details .order-track .track-item.waiting::after {
    right: 20px;
    bottom: 0;
  }
  .orders-pg .filter {
    margin-bottom: 20px;
  }
  .orders-pg .orders .orders-tab .order-card .order-body .share-side {
    margin-top: 20px;
  }
  .product-main-info .product-imgs .gallery-top img,
  .product-main-info .product-imgs .gallery-thumbs .swiper-slide,
  .product-main-info .product-imgs .gallery-thumbs img {
    height: -moz-max-content !important;
    height: max-content !important;
  }
  .product-main-info .product-imgs .gallery-thumbs {
    height: -moz-max-content;
    height: max-content;
    margin-bottom: 30px;
  }
  .product-main-info .info .feat-box {
    gap: 10px;
  }
  .product-main-info .info .feat-box .item h6 {
    font-size: 11px;
    line-height: 1.5;
  }
  .connected-products .cards .item .form-check .form-check-label .product-card {
    margin-bottom: 15px;
  }
  .profile-pg .sidemenu {
    margin-bottom: 20px;
  }
  footer {
    padding-bottom: 80px;
  }
  .banners-sec1 .banner {
    height: max-content;
  }
  
  .megamenu .brands-group .brands .brand {
      width: calc(25% - 15px);
  }
  
  .product-card .img .main-img {
      object-fit: contain;
  }
  
  .products-pg .product-card {
      height: calc(100% - 8px);
  }
  
  .select-btns .form-check .form-check-label {
      padding: 10px 15px;
      font-size: 12px;
  }
  
}
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}/*# sourceMappingURL=style.css.map */