@import url(helper.css);
@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: #27DDE0;
  --blue-dark: #12b1b4;
  --blue-light: #e8f9fa;
  --red: #E4022B;
  --green: #38AE04;
  --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-blue-dark {
  color: var(--blue-dark) !important;
}

.bg-blue-dark {
  background-color: var(--blue-dark) !important;
  border-color: var(--blue-dark) !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: "TikTok Sans", sans-serif;*/
  font-family: "Cairo", sans-serif;
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  padding-top: 150px;
  direction: rtl;
}
body.index-st2 {
  padding-top: 90px;
}
body.index-st3 {
  padding-top: 0;
  background-color: #f9f9f9;
}
body .dividar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-family: "TikTok Sans", sans-serif;*/
  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: 60px 0;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.0666666667);
  left: 0;
  right: auto;
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}


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

/* --------------- buttons --------------- */
/* --------------- navbar --------------- */
.nav-container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99;
}
.nav-container.nav-container-st3 {
  position: relative;
}
.nav-container.nav-container-st3 .navbar .serch-form {
  border-radius: 50px;
  overflow: hidden;
  border: 0;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
}
.nav-container.nav-container-st3 .navbar .serch-form .form-control {
  background-color: transparent;
  color: var(--blue-dark);
  padding: 15px 20px;
}
.nav-container.nav-container-st3 .navbar .serch-form .search-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
  color: #fff;
  margin-inline-end: 5px;
}
.nav-container.nav-container-st3 .navbar .serch-form .search-btn:hover {
  background-color: var(--blue-dark);
}
.nav-container.nav-container-st3 .links-navbar .navbar-wrapper {
  background-color: transparent;
  border-top: 1px solid rgba(153, 153, 153, 0.2666666667);
}
.nav-container.nav-container-st3 .toggle-mega-btn.active * {
  color: var(--blue-dark) !important;
}

.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: 2px solid var(--blue-dark);
}
.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 {
  border: 0;
  background-color: var(--blue-light);
  color: var(--blue-dark);
  flex-shrink: 0;
  padding: 10px 20px;
  transition: all 0.3s ease;
}
.navbar .serch-form .search-btn:hover {
  background-color: var(--blue-dark);
  color: #fff;
}
.navbar .icon-links > a {
  position: relative;
  font-size: 15px;
  margin-inline-start: 20px;
}
.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.navbar-st2 {
  background-color: var(--blue-dark);
  color: #fff;
}
.navbar.navbar-st2 .navbar-nav .nav-item .nav-link {
  color: #fff;
  font-size: 16px;
}
.navbar.navbar-st2 .toggle-mega-btn {
  display: flex;
  background-color: transparent;
  color: #fff;
  border-radius: 0;
  align-items: center;
  padding: 0;
  margin-inline-start: 10px;
}
.navbar.navbar-st2 .dropdown-toggle {
  color: #fff;
}
.navbar.navbar-st2 .dropdown-toggle::after {
  color: #fff;
  border-color: #fff;
  display: none;
}
.navbar.navbar-st2 .icon-links a,
.navbar.navbar-st2 .icon-links .btn {
  position: relative;
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1333333333) !important;
  border-radius: 50%;
  margin-inline-start: 10px;
}
.navbar.navbar-st2 .icon-links a i,
.navbar.navbar-st2 .icon-links .btn i {
  margin: 0;
}
.navbar.navbar-st2 .icon-links a:hover,
.navbar.navbar-st2 .icon-links .btn:hover {
  background-color: #fff !important;
  color: var(--blue-dark);
}
.navbar.navbar-st2 .serch-form {
  border: 0;
  border-radius: 50px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1333333333);
  align-items: center;
}
.navbar.navbar-st2 .serch-form .form-control {
  background-color: transparent;
  color: #fff;
}
.navbar.navbar-st2 .serch-form .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8117647059);
}
.navbar.navbar-st2 .serch-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8117647059);
}
.navbar.navbar-st2 .serch-form .search-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1333333333);
  color: #fff;
  margin-inline-end: 5px;
}
.navbar.navbar-st2 .serch-form .search-btn:hover {
  background-color: #fff;
  color: var(--blue-dark);
}

.toggle-mega-btn {
  display: flex;
  background-color: var(--blue-light);
  color: var(--blue-dark);
  border-radius: 6px;
  align-items: center;
  padding: 15px 15px;
}
.toggle-mega-btn.active {
  background-color: var(--blue);
  color: #fff;
}
.toggle-mega-btn.active * {
  color: #fff !important;
}
.toggle-mega-btn.active .cr-blue {
  color: #fff !important;
}
.toggle-mega-btn.active .fa-chevron-down {
  transform: rotate(180deg);
  transition: all 0.3s ease;
}

.links-navbar {
  position: relative;
  z-index: 90;
}
.links-navbar .navbar-wrapper {
  position: relative;
  padding: 5px 0;
  background-color: var(--light1);
}
.links-navbar .cat-links {
  display: flex;
}
.links-navbar .cat-links a {
  position: relative;
  font-size: 14px;
  margin-inline-start: 40px;
  padding: 15px 0;
}
.links-navbar .cat-links a:hover {
  color: var(--blue);
}
.links-navbar .cat-links a.offer-link {
  color: var(--red);
}
.links-navbar .cat-links a.offer-link i {
  color: #FF6101;
}

.nav-container.nav-scroll {
    position: fixed !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;
  transition: all 0.3s ease;
  pointer-events: none;
}
.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(33% - 10px);
  height: 70px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  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;
}

/* --------------- categories-sec --------------- */
.categories-sec {
  position: relative;
}
.categories-sec .categories {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.categories-sec .categories .item {
  position: relative;
  margin-top: 15px;
  text-align: center;
  width: 10%;
}
.categories-sec .categories .item .img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  background-color: #f0f0f0;
  outline: 1px solid rgba(153, 153, 153, 0.2);
  outline-offset: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
}
.categories-sec .categories .item .cat-name {
  font-size: 13px;
  margin-top: 15px;
}
.categories-sec .categories .item.trendy .img {
  background: #FFF7B6;
}

.swiper-pagination-bullet {
  background-color: var(--blue-dark);
}

/* --------------- categories st2 --------------- */
.categories-st2 {
  position: relative;
  padding: 120px 0 50px;
}
.categories-st2 .categories-slider {
    overflow: hidden;
    padding: 0 15px;
}
.categories-st2 .content {
  position: relative;
  padding: 100px 0;
  background-color: #fff;
  filter: drop-shadow(0 -10px 5px rgba(0, 0, 0, 0.0117647059));
}
.categories-st2 .content .rotate-box {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateY(-50%) translateX(-50%);
  width: 120px;
  height: 120px;
}
.categories-st2 .content .rotate-box .rotate-text {
  font-size: 35px;
  font-weight: bold;
}
.categories-st2 .content .rotate-box .rotate-circle {
  background-color: var(--blue-dark);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.0666666667);
}
.categories-st2 .content .rotate-box .rotate-circle svg {
  width: 120px;
  height: 120px;
  fill: #fff;
}
.categories-st2 .content .rotate-box .icon {
  color: #fff;
}
.categories-st2 .content .rotate-box .bg {
  position: absolute;
  width: 300%;
  height: 200%;
  max-width: unset;
  max-height: unset;
  left: -100%;
  z-index: -1;
  top: -58px;
}
.categories-st2 .cat-item {
  position: relative;
  display: block;
  display: flex;
  justify-content: space-between;
  background-image: linear-gradient(120deg, #f0f0f0, transparent);
  border-radius: 15px;
  overflow: hidden;
  margin: 15px 0;
  box-shadow: -5px -5px 30px rgba(0, 0, 0, 0.0196078431);
}
.categories-st2 .cat-item .info {
  position: relative;
  padding: 30px;
  z-index: 10;
}
.categories-st2 .cat-item .info h4 {
  position: relative;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.categories-st2 .cat-item .img {
  position: relative;
  width: 150px;
  height: 150px;
  transform: translate(15%, 15%);
  flex-shrink: 0;
  z-index: 10;
}
.categories-st2 .cat-item-st2 {
  position: relative;
  display: block;
  border-radius: 30px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.0666666667);
  margin-top: 30px;
}
.categories-st2 .cat-item-st2 .info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px;
  z-index: 10;
}
.categories-st2 .cat-item-st2 .info h4 {
  font-size: 18px;
  line-height: 1.3;
}
.categories-st2 .cat-item-st2 .img {
  position: relative;
  height: 410px;
  border-radius: 30px;
  overflow: hidden;
  background-color: #f0f0f0;
}
.categories-st2 .cat-item-st2 .img .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.categories-st2 .cat-item-st2 .img .img1 {
  position: absolute;
  left: 35px;
  top: 50px;
  width: 140px;
  height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
.categories-st2 .cat-item-st2 .img .img2 {
  position: absolute;
  right: 10px;
  bottom: 110px;
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}

.controls-st2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  margin: 50px auto 20px;
  height: 40px;
}
.controls-st2 .swiper-button-next,
.controls-st2 .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(153, 153, 153, 0.3333333333);
  margin: 0 !important;
  z-index: 20;
}
.controls-st2 .swiper-button-next::after,
.controls-st2 .swiper-button-prev::after {
  font-size: 16px;
  color: #000;
}
.controls-st2 .swiper-pagination {
  bottom: -10px !important;
}
.controls-st2 .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--blue-dark);
  flex-shrink: 0;
}

.controls-st2 .swiper-pagination {
    /*max-width: 100px;*/
    /*display: flex;*/
    /*overflow: hidden;*/
    /*margin-left: 60px;*/
    /*margin-bottom: 3px;*/
    /*transform: translateX(70%);*/
}

.categories-st2 .controls-st2 {
    width: 320px;
}

/* --------------- categories st3 --------------- */
.offers {
  position: relative;
  background-color: #fff;
  z-index: 20;
}
.offers .shap {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: calc((100vw - 1340px) / 2 + 435px);
  height: 100%;
  background-image: url(../images/carrello/offer-bg.jpg);
  background-size: cover;
  z-index: -1;
  border-radius: 0 50px 50px 0;
  overflow: hidden;
}
.offers .shap::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
}
.offers .title-side {
  position: relative;
  color: #fff;
  height: 100%;
  overflow: hidden;
  padding: 100px 0;
}
.offers .title-side .rotate-box {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
}
.offers .offers-content {
  position: relative;
  height: 100%;
  padding: 50px 0;
  overflow: hidden;
}
.offers .offers-content .rotate-box {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.offers .offers-content .rotate-box .icon {
  color: #fff;
}
.offers .offers-content .rotate-box .rotate-text {
  background-color: #000;
}
.offers .offers-content .rotate-box .rotate-text svg {
  fill: #fff;
}
.offers .offers-content .item {
  position: relative;
}
.offers .offers-content .item .img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background-color: #f0f0f0;
}

/* --------------- offers-st2 --------------- */
.offers-st2 {
  position: relative;
  padding: 120px 0 0;
}
.offers-st2 .content {
  position: relative;
  padding: 100px 0;
  background-color: #fff;
  filter: drop-shadow(0 -10px 5px rgba(0, 0, 0, 0.0117647059));
}
.offers-st2 .content .rotate-box {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateY(-50%) translateX(-50%);
  width: 120px;
  height: 120px;
}
.offers-st2 .content .rotate-box .rotate-text {
  font-size: 35px;
  font-weight: bold;
}
.offers-st2 .content .rotate-box .rotate-circle {
  background-color: #000;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.0666666667);
}
.offers-st2 .content .rotate-box .rotate-circle svg {
  width: 120px;
  height: 120px;
  fill: #fff;
}
.offers-st2 .content .rotate-box .icon {
  color: #fff;
}
.offers-st2 .content .rotate-box .bg {
  position: absolute;
  width: 300%;
  height: 200%;
  max-width: unset;
  max-height: unset;
  left: -100%;
  z-index: -1;
  top: -58px;
}
.offers-st2 .offers-slider {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
}
.offers-st2 .offer-card {
  position: relative;
}
.offers-st2 .offer-card .img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background-color: #f0f0f0;
}

/* --------------- rotate-box --------------- */
.rotate-box {
  position: relative;
  width: 150px;
  height: 150px;
  display: block;
  border-radius: 50%;
}
.rotate-box .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 5px;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  color: #000;
}
.rotate-box .rotate-text {
  animation: rotateText 20s linear infinite reverse;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 300;
  background-color: #fff;
}
.rotate-box .rotate-circle svg {
  width: 150px;
  height: 150px;
  fill: #000;
  transform: scale(1.3);
  border-radius: 50%;
}
@keyframes rotateText {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* --------------- products --------------- */
.products {
  position: relative;
}

/* --------------- 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 h5.bg-white {
    background-color: #f9f9f9 !important;
}

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

/* --------------- product-card --------------- */
.product-card {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  padding: 5px;
}
.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 10px;
  background-color: #fff;
  border-radius: 6px 0 0 6px;
}
.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(--blue);
  color: #fff;
}
.product-card .img .cart-icon {
  position: absolute;
  bottom: -20px;
  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 .prod-title {
  position: relative;
  margin-top: 10px;
  font-size: 13px;
  color: #7E859B;
  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: 160px;
  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;
}

/* --------------- product-card --------------- */
.product-card-st4 {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  margin-top: 30px;
  padding: 10px;
  box-shadow: -5px -5px 30px rgba(0, 0, 0, 0.0196078431);
}
.product-card-st4 .img {
  position: relative;
  height: 300px;
  z-index: 10;
  border-radius: 15px;
  background-color: #f0f7f8;
  padding: 15px;
  padding-top: 50px;
  overflow: hidden;
  z-index: 10;
}
.product-card-st4 .img::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url(../images/carrello/prod-bg2.png);
  background-size: cover;
  opacity: 0.07;
  filter: invert(86%) sepia(72%) saturate(5506%) hue-rotate(165deg) brightness(92%) contrast(89%);
  z-index: -1;
}
.product-card-st4 .img .main-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card-st4 .img .brand {
  position: absolute;
  top: 12px;
  left: 15px;
}
.product-card-st4 .img .brand img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 20px;
  max-width: 100px;
}
.product-card-st4 .img .tag {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 30px;
}
.product-card-st4 .img .fav-icon {
  position: absolute;
  top: 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-st4 .img .fav-icon:hover, .product-card-st4 .img .fav-icon.active {
  background-color: var(--blue);
  color: #fff;
}
.product-card-st4 .img .cart-icon {
  position: absolute;
  top: 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-st4 .img .cart-icon:hover, .product-card-st4 .img .cart-icon.active {
  background-color: var(--blue);
  color: #fff;
}
.product-card-st4 .info {
  position: relative;
  padding: 20px;
}
.product-card-st4 .info .prod-title {
  position: relative;
  font-size: 16px;
}
.product-card-st4 .info .prod-title:hover {
  color: var(--blue);
}
.product-card-st4 .info .price-wrapper {
  display: flex;
  align-items: flex-end;
  margin-top: 15px;
}
.product-card-st4 .info .price-wrapper .price {
  font-size: 18px;
  font-weight: bold;
  margin-inline-end: 5px;
  line-height: 1;
}
.product-card-st4 .info .price-wrapper .old-price {
  margin-inline-start: 10px;
  opacity: 0.5;
  font-size: 12px;
  text-decoration: line-through;
  margin-bottom: 3px;
}
.product-card-st4 .info .price-wrapper .prc {
  font-size: 12px;
  color: var(--green);
  margin-bottom: 3px;
  margin-inline-start: 5px;
}
.product-card-st4 .info .rate-wrapper {
  display: flex;
  align-items: center;
  font-size: 12px;
}
.product-card-st4 .info .rate-wrapper .stars {
  font-size: 11px;
  color: rgba(153, 153, 153, 0.3333333333);
  margin: 0 10px;
}
.product-card-st4 .info .rate-wrapper .stars .active {
  color: #FDBC02;
}
.product-card-st4 .info .btns {
  position: relative;
  margin-top: 20px;
  display: flex;
}
.product-card-st4 .info .btns .cart-btn {
  position: relative;
  background-color: var(--blue);
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
}
.product-card-st4 .info .btns .cart-btn:hover {
  background-color: #000;
}
.product-card-st4 .info .btns .fav-btn {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: var(--blue-light);
  border: 1px solid var(--blue-light);
  color: var(--blue-dark);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: 10px;
}
.product-card-st4 .info .btns .fav-btn:hover,
.product-card-st4 .info .btns .fav-btn.active{
  background-color: var(--blue-dark);
  color: #fff;
}
.product-card-st4 .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: 20px;
  text-align: center;
  z-index: 10;
  color: #fff;
}
.banner-card-title .img {
  position: relative;
  height: 290px;
  border-radius: 15px;
  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 {
  position: relative;
  height: 100px;
  border: 1px solid rgba(153, 153, 153, 0.2666666667);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands .brand img {
  height: 60px;
  max-width: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.brands.brands-st2 {
  background-color: var(--blue-light);
}

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

/* --------------- products gender --------------- */
.products-gender {
  position: relative;
}
.products-gender .controls-st2 {
  width: 120px;
}
.products-gender .products-box {
  position: relative;
}
.products-gender .products-box .card-title {
  position: relative;
  height: 500px;
  border-radius: 30px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 10;
  color: #fff;
  min-height: 100%;
  margin-inline-end: 60px;
}
.products-gender .products-box .card-title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  border-radius: 30px;
  background-image: linear-gradient(to top, var(--blue-dark), transparent);
}
.products-gender .products-box .card-title .float-arrow {
  position: absolute;
  right: -60px;
  bottom: 50px;
  width: 100px;
  height: 100px;
  background-color: #f9f9f9;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--blue-dark);
}
.products-gender .products-box .card-title .float-arrow::before {
  position: absolute;
  content: "";
  top: -20px;
  left: 12px;
  height: 30px;
  width: 30px;
  border-bottom-right-radius: 50px;
  box-shadow: 5px 5px 0 5px #f9f9f9;
  transform: rotate(-10deg);
}
.products-gender .products-box .card-title .float-arrow::after {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 12px;
  height: 30px;
  width: 30px;
  border-top-right-radius: 50px;
  box-shadow: 5px -5px 0 5px #f9f9f9;
  transform: rotate(10deg);
}
.products-gender .products-box .card-title .float-title {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
}
.products-gender .products-box .card-title .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  border-radius: 30px;
  overflow: hidden;
}
.products-gender .products-box .products {
  position: relative;
  padding: 30px 30px 50px;
  background-color: #fcf0f1;
  border-radius: 30px;
  height: 100%;
  overflow: hidden;
}
.products-gender .products-box .products .prod-card {
  position: relative;
  padding: 30px 30px 50px;
  z-index: 10;
  text-align: center;
}
.products-gender .products-box .products .prod-card .img {
  height: 150px;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
}
.products-gender .products-box .products .prod-card .shape-one {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.0666666667));
}
.products-gender .products-box .products .prod-card .shape-one svg {
  width: 100%;
  height: 100%;
  color: rgb(251, 251, 251);
  display: block;
  position: absolute;
  stroke-width: 1px;
  stroke: transparent;
  overflow: visible;
  transition: 0.2s ease-out;
}
.products-gender .products-box .products .prod-card .shape-two {
  position: absolute;
  left: 10px;
  top: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  z-index: -1;
  pointer-events: none;
}
.products-gender .products-box .products .prod-card .shape-two svg {
  width: 100%;
  height: 100%;
  color: rgb(218, 193, 220);
  display: block;
  position: absolute;
  overflow: visible;
  transition: 0.2s ease-out;
}
.products-gender .products-box .products .prod-card .cart-btn {
  position: relative;
  background-color: var(--blue);
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
}
.products-gender .products-box .products .prod-card .cart-btn:hover {
  background-color: #000;
}
.products-gender .products-box.products-men .card-title {
  margin-inline-end: 0;
  margin-inline-start: 60px;
  text-align: end;
}
.products-gender .products-box.products-men .card-title .float-arrow {
  right: auto;
  left: -60px;
  transform: rotate(180deg);
}
.products-gender .products-box.products-men .products {
  background-color: #f5f5f5;
}
.products-gender .products-box.products-men .products .prod-card {
  background-color: #fff;
  border-radius: 20px;
}
.products-gender .products-box.products-men .products .prod-card .shape-one,
.products-gender .products-box.products-men .products .prod-card .shape-two {
  display: none;
}

/* --------------- footer --------------- */
.footer .foot-icons {
  position: relative;
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
  /*border: 1px solid #9995;*/
  /*background-color: var(--blue-dark);*/
  /*color: #fff;*/
}
.footer .foot-icons p {
    display: flex;
    align-items: center;
}
.footer .foot-icons .icon {
    font-size: 25px;
}
.footer .foot-content {
  padding: 60px 0;
}
.footer .foot-content .foot-social a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 50%;
  margin-inline-end: 10px;
  font-size: 14px;
}
.footer .foot-content .foot-social a:hover {
  background-color: var(--blue);
  color: #fff;
}
.footer .foot-content .links li a {
  line-height: 2;
  color: #666;
}
.footer .foot-content .links li a:hover {
  color: var(--color-blue1);
}
.footer .foot {
  padding: 40px 0;
  background-color: #ebeef6;
}
.footer .foot .links .links-ul {
  display: flex;
  align-items: center;
}
.footer .foot .links .links-ul > li {
  margin-inline-end: 25px;
}
.footer .foot .links .links-ul > li:first-of-type {
  margin-inline-end: 35px;
}
.footer .foot .links .links-ul > li:last-of-type {
  margin-inline-end: 0;
}
.footer .foot .links .links-ul > li a i {
  font-size: 18px;
}
.footer .foot .links .links-ul > li a:hover {
  color: var(--color-blue1);
}
.footer .foot .links .links-ul > li a.active {
  font-weight: bold;
  color: var(--color-blue1);
}
.footer .foot .links .dropdown-menu li {
  margin-inline-end: 0 !important;
}
.footer .foot .lang-links {
  margin-inline-end: 0;
  margin-inline-start: auto;
}
.footer .foot .lang-links .links-ul > li {
  margin: 0 !important;
  padding: 0 20px;
  border-inline-end: 1px solid rgba(153, 153, 153, 0.6);
}
.footer .foot .lang-links .links-ul > li:last-of-type {
  padding-inline-end: 0;
  border: 0;
}

/* --------------- 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;
  object-fit: contain;
  border: 1px solid #9994;
}
.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;
  object-fit: contain;
}
.product-main-info .product-imgs .gallery-thumbs .swiper-slide-thumb-active img {
  border-color: var(--primary);
  opacity: 1;
}
.product-main-info .info {
  position: relative;
}
.product-main-info .info .brand {
  margin-bottom: 15px;
  height: 50px;
}
.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: 10px 20px;
  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: 0;
  border: 0;
}
.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;
}
.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 .prods .item,
.checkout-pg .prods .item {
  position: relative;
  border: 1px solid rgba(153, 153, 153, 0.2);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.cart-pg .prods .item .img,
.checkout-pg .prods .item .img {
  height: 200px;
  min-height: 100%;
  padding: 2vw;
}
.cart-pg .prods .item .img img,
.checkout-pg .prods .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cart-pg .prods .item .info,
.checkout-pg .prods .item .info {
  position: relative;
  font-size: 13px;
}
.cart-pg .prods .item .info .quant,
.checkout-pg .prods .item .info .quant {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.cart-pg .prods .item .info .quant .form-select,
.checkout-pg .prods .item .info .quant .form-select {
  width: 70px;
  margin-inline-start: 10px;
  font-size: 14px;
}
.cart-pg .prods .item .info .quant a,
.checkout-pg .prods .item .info .quant a {
  margin-inline-start: 10px;
}
.cart-pg .prods .item .info .quant small,
.cart-pg .prods .item .info .quant .small,
.checkout-pg .prods .item .info .quant small,
.checkout-pg .prods .item .info .quant .small {
  font-size: 11px;
}
.cart-pg .prods .item .price-wrapper,
.checkout-pg .prods .item .price-wrapper {
  display: flex;
  align-items: flex-end;
}
.cart-pg .prods .item .price-wrapper .price,
.checkout-pg .prods .item .price-wrapper .price {
  font-size: 18px;
  font-weight: bold;
  margin-inline-end: 5px;
  line-height: 1;
}
.cart-pg .prods .item .price-wrapper .old-price,
.checkout-pg .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 .prods .item .price-wrapper .prc,
.checkout-pg .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;
  left: 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-dark);
}

.form-control {
  position: relative;
  box-shadow: none !important;
  min-height: 50px;
  border-radius: 6px;
  border: 1px solid rgba(153, 153, 153, 0.2);
}

/* --------------- 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 .avatar {
    position: relative;
    display: inline-block;
}

.profile-pg .sidemenu .avatar img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
}

.profile-pg .sidemenu .edit-icon {
    display: none;
    position: absolute;
    bottom: 15px;
    right: 13px;
    color: #000;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    
}
.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);
}
.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);
}

.profile-pg .progress-wrapper {
    position: relative;
}

.profile-pg .prc-num {
    position: absolute;
    left: 0;
    top: 0;
}

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

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

@media (min-width: 992px) {
  .modal-login .modal-lg, .modal-login .modal-xl {
    --bs-modal-width: 650px;
  }
}


.modal-content {
    border-radius: 30px;
    padding: 30px;
}

.modal-login .form-control {
    border-radius: 30px;
}


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


/* --------------- footer --------------- */
/* --------------- footer --------------- */
/* ======== */
@media screen and (max-width: 991px) {
  .navbar .icon-links > a {
    margin: 15px 0 0 20px;
  }
  .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: 100px;
  }
  .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;
  }
  
  .nav-container.nav-scroll {
        position: relative !important;
    }
  
}
/* ======= */
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;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
  }
}/*# sourceMappingURL=style.css.map */


.header-banners-slider {
    position: relative;
}

.header-banners-slider .banners-slider {
    position: relative;
    overflow: hidden;
}

.header-banners-slider .banners-slider .swiper-pagination {
    bottom: 50px;
}

.header-banners-slider .banner {
    position: relative;
    display: block;
     height: 500px; 
    /* border-radius: 20px; */
    overflow: hidden;
}



/* --------------- 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);
  width: 100%;
}
.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, #303AB2 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;
}

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


.checkout-pg .brand {
    height: 50px;
    margin-top: 30px;
}


.product-main-info .product-imgs .gallery-top .share-icon {
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    margin-bottom: 10px;
}
.product-main-info .product-imgs .gallery-top .share-wrapper {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    text-align: left;
}
.product-main-info .product-imgs .gallery-top .share-icons {
    position: relative;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    margin-top: 30px;
    transition: all 0.3s ease;
}
.product-main-info .product-imgs .gallery-top .share-icons a {
    font-size: 16px;
    margin: 0 10px;
    display: inline-block;
}
.product-main-info .product-imgs .gallery-top .share-icons a:hover {
    color: var(--blue);
}
.product-main-info .product-imgs .gallery-top .share-icon:hover ~ .share-icons,
.product-main-info .product-imgs .gallery-top .share-icons:hover {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

