@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Raleway:wght@400;500;600;700;800;900&display=swap");

:root {
  --text-color: #444;
  --theme-border-color: #f1f3f5;
  --color-secondary: rgba(242, 242, 242, 1);
}

*,
*::after,
*::before {
  margin: 0px;
  padding: 0px;
  outline: 0px;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
  display: inline-block;
}

a:hover {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
span,
label {
  margin-bottom: 0px;
}

.col-md-12,
.col-lg-12 {
  padding: 0;
}

body {
  color: #444;
  font-size: 16px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222;
  font-weight: 700;
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #777;
  font-size: 15px;
  letter-spacing: 0.3px;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #777;
  font-size: 15px;
  letter-spacing: 0.3px;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #777;
  font-size: 15px;
  letter-spacing: 0.3px;
}

input::placeholder,
textarea::placeholder {
  color: #777;
  font-size: 15px;
  letter-spacing: 0.3px;
}

button:focus {
  outline: none;
}

/*=====================================
              DROPDOWN MENU STYLE
  ======================================*/
.dropdown-menu {
  border: none;
  padding: 0px;
  width: 240px;
  border-top: 2px solid var(--main-theme-color);
  -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.dropdown-item {
  color: #777;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 25px;
  text-transform: capitalize;
  border-bottom: 1px solid #eee !important;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  color: #fff;
  background: var(--main-theme-color);
}

.header-widget .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  top: 50px;
}

.header-widget .dropdown .dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
}

.navbar-nav {
  margin-bottom: 100px;
}

.navbar-nav .dropdown-menu {
  display: none;
  width: 100%;
  height: 150px;
  overflow-y: scroll;
}

.navbar-nav .nav-item.active .dropdown-menu {
  display: block;
}

/*=====================================
          ROUND SHAPE ICON STYLE
  ======================================*/
.round-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.round-icon li:not(:last-child) {
  margin-right: 1rem;
}

.round-icon li:last-child {
  margin-right: 0px;
}

.round-icon li a {
  position: relative;
}

.round-icon li a sup {
  position: absolute;
  top: 15px;
  right: -8px;
  height: 17px;
  line-height: 17px;
  padding: 0 5px;
  border-radius: 30px;
  background: var(--main-theme-color);
  color: #f1f3f5;
  font-size: 12px;
}

/*=====================================
              ACCORDION MENU STYLE
  ======================================*/
.accordion li {
  border-bottom: 1px solid #e8e8e8;
}

.accordion li:last-child {
  border-bottom: none;
}

.accordion li a {
  width: 100%;
  padding: 15px 25px;
  border-radius: 8px;
  color: #232d3b;
  text-transform: capitalize;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.accordion li a:hover {
  color: #fff;
  background: var(--main-theme-color);
}

.accordion li a i {
  font-size: 13px;
}

.accordion li ul {
  background: #f5f5f5;
  padding: 0px 30px;
}

.accordion li ul li a {
  font-size: 15px;
  padding: 8px 25px;
}

.cate-list {
  height: 300px;
  overflow-y: scroll;
}

.accor-ghape {
  margin-bottom: 100px;
}

/*=====================================
              ALL BUTTON STYLE
  ======================================*/
.btn {
  border: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  /* border-radius: 8px; */
  padding: 12px 26px;
  letter-spacing: 0.5px;
}

.btn:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn-inline {
  color: #fff;
  background: var(--main-theme-color);
}

.btn-inline:hover {
  color: #fff;
  opacity: 0.88;
}

.btn-light {
  background: var(--main-theme-color);
  color: #fff;
}

.btn-light:hover {
  opacity: 0.88;
  color: #fff;
  background-color: var(--main-theme-color);
}

.btn-outline {
  color: #141a46;
  border: 2px solid #141a46;
}

.btn-outline i {
  color: #141a46;
}
.btn-outline:hover i {
  color: #fff;
}

.btn-outline:hover {
  color: #fff;
  background: var(--main-theme-color);
  border-color: var(--main-theme-color);
}

.btn-search {
  background-color: #222;
}

/*=====================================
           NAVBAR SEARCH-BAR STYLE
  ======================================*/

.navbar-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #f1f3f5;
  border-radius: 8px;
}

.navbar-form form input {
  width: 100%;
  height: 42px;
  border: none;
  background: transparent;
  padding: 0px 20px;
}

.navbar-form form .btn {
  width: 15.2rem;
  text-align: center;
  padding: 12px 0px;
  font-size: 12px;
}

.navbar-form form .btn i {
  margin-right: 8px;
}

/*=====================================
           FOOTER NEWSLETTER STYLE
  ======================================*/
.footer-form {
  width: 100%;
}

.footer-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-form form input {
  width: 100%;
  height: 50px;
  border: none;
  background: #fbf2f2;
  border-radius: 8px;
  padding: 0px 20px;
  margin-bottom: 20px;
}

.footer-form form .btn {
  width: 100%;
  border-radius: 8px;
  text-align: center;
  padding: 12px 0px;
  font-size: 13px;
}

.footer-form form .btn i {
  margin-right: 8px;
}

/*=====================================
              REVIEW FORM STYLE
  ======================================*/
.review-form h3 {
  margin: 0px 0px 25px 15px;
}

.review-form .btn {
  margin-left: 15px;
}

.grid-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
}

.grid-input input {
  width: 100%;
  height: 50px;
  margin: 0px 15px;
  padding: 0px 20px;
  border-radius: 2px;
  background: #f1f3f5;
  border: 1px solid #e8e8e8;
}

.grid-input input:focus-within {
  border-color: var(--main-theme-color);
}

.row-input {
  margin: 0px 15px 20px;
}

.row-input input,
.row-input textarea {
  width: 100%;
}

.row-input textarea {
  height: 250px;
  padding: 15px 20px;
  border-radius: 2px;
  background: #f1f3f5;
  border: 1px solid #e8e8e8;
}

#review .grid-input input,
#review .row-input textarea {
  background-color: #fff;
}

.row-input textarea:focus-within {
  border-color: var(--main-theme-color);
}

.review-rating {
  margin: 0px 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.review-rating li {
  margin-right: 15px;
}

.review-rating li i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background: #f5f5f5;
  color: #555555;
  font-size: 14px;
  text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.review-rating li i:hover {
  color: #ffffff;
  background: #ffcc23;
}

@media (max-width: 767px) {
  .grid-input {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0px;
  }
  .grid-input input {
    margin-bottom: 20px;
  }
  .row-input {
    margin: 0px 0px 20px;
  }
  .star-rating {
    margin: 0px 0px 20px !important;
  }
  .review-form .btn {
    margin-left: 0px;
  }
}

/*=====================================
              SLIDER ARROW STYLE
  ======================================*/
.dandik,
.bamdik {
  position: absolute;
  top: 46%;
  opacity: 0.7;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2.9rem;
  height: 2.9rem;
  line-height: 45px;
  color: #141a46;
  cursor: pointer;
  z-index: 1;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.product-slider .slick-arrow {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.product-slider:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}

.dandik:hover,
.bamdik:hover {
  opacity: 1;
}

.dandik {
  right: 25px;
}

.bamdik {
  left: 25px;
}

/*=====================================
       SLIDER ARROW RESPONSIVE STYLE
  ======================================*/
@media (min-width: 576px) and (max-width: 1199px) {
  .dandik {
    right: 10px;
  }
  .bamdik {
    left: 10px;
  }
}

/*=====================================
             BREADCRUMB PART STYLE
  ======================================*/
.breadcrumb {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: none;
  font-weight: 400;
  font-size: 1.3rem;
  padding: 0px;
}

.breadcrumb li a {
  color: #fff;
  transition: all 0.3s;
}

.breadcrumb li a:hover {
  color: #b4b4b4;
}

.breadcrumb .active {
  color: #b4b4b4;
}

/*=====================================
            NAV-TABS BUTTON STYLE
  ======================================*/
.nav {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nav-tabs li {
  width: 100%;
  background-color: #b4b4b4;
}

.nav-tabs li .nav-link {
  width: 100%;
  border: none;
  padding: 16px 0px;
  border-radius: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

.nav-tabs li .active {
  color: #fff !important;
  background: var(--main-theme-color) !important;
  border-color: var(--main-theme-color) !important;
  margin-right: 1.2rem;
}

.tab-pane {
  display: none;
  padding: 2.4rem 0;
}

.tab-pane.active {
  display: block;
}

@media (max-width: 575px) {
  .nav-tabs li .nav-link {
    font-size: 12px;
    padding: 12px 0px;
  }
  .tab-pane {
    padding: 30px 0px;
  }
}

/*=====================================
              STAR RATING STYLE
  ======================================*/
.star-rating {
  direction: rtl;
  margin: 0px 0px 25px 15px;
}

.star-rating input {
  display: none;
}

.star-rating input:checked ~ label::after {
  opacity: 1;
}

.star-rating label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-right: 15px;
}

.star-rating label:hover::after {
  opacity: 1;
}

.star-rating label:hover:hover ~ label::after {
  opacity: 1;
}

.star-rating label::before {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 35px;
  display: block;
  color: #dfdfdf;
}

.star-rating label::after {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 35px;
  position: absolute;
  display: block;
  top: 0px;
  left: 0px;
  color: #ffcc23;
  opacity: 0;
}

/*=====================================
          SLIDER RANGE PART STYLE
  ======================================*/
#slider-range {
  margin-bottom: 15px;
  border-radius: 30px;
}

#slider-range span {
  border-radius: 50%;
}

#amount {
  color: var(--main-theme-color);
  font-size: 3.2rem;
  font-weight: 600;
  border: none;
  background: none;
  text-align: center;
  width: 100%;
}

.ui-state-active {
  background: var(--main-theme-color) !important;
  border-color: var(--main-theme-color) !important;
}

/*=====================================
          SELECT OPTION PART STYLE
  ======================================*/
.custom-select {
  height: 40px;
  width: 250px;
  font-size: 15px;
  cursor: pointer;
}

.custom-select:focus {
  border-color: var(--main-theme-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*=====================================
          PAGINATION PART STYLE
  ======================================*/
.pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-item {
  margin: 0px 6px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border-radius: 50%;
}

.page-item .active {
  color: #fff;
  background: var(--main-theme-color);
}

.page-link {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  border: none;
  padding: 0px;
  color: #888;
  background: #fff;
}

.page-link:hover {
  color: #fff;
  background: var(--main-theme-color);
}

.page-link:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*=====================================
        PAGINATION RESPONSIVE STYLE
  ======================================*/
@media (max-width: 575px) {
  .page-link {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
  .pagi-ghape {
    margin-bottom: 60px;
  }
}

/*=====================================
           CART LIST PART STYLE
  ======================================*/

.cart-item {
  display: flex;
  padding: 15px 0px 2.8rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.cart-img a img {
  width: 68px;
  height: 80px;
  object-fit: contain;
  border: 1px solid #e5e5e5;
}

.cart-info {
  margin-left: 1.2rem;
}

.cart-info a {
  color: #333;
  margin-bottom: 5px;
}

.cart-info p {
  font-size: 14px;
  color: #333;
}

.cart-info p span {
  font-weight: 500;
}

.cart-remove a {
  color: #333;
}

/*=====================================
              SECTION HEADING STYLE
  ======================================*/
.section-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0px 0px 50px;
}

@media (max-width: 575px) {
  .section-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/*=====================================
              PRODUCT CARD STYLE
  ======================================*/
.product-slider .dandik {
  right: -3.2rem;
}

.product-slider .bamdik {
  left: -3.2rem;
}

.product-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.product-card {
  width: 300px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  margin: 15px;
  transition: all 0.3s;
}

.product-img {
  height: 27rem;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-name {
  padding: 0px 15px;
}

.product-name h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 13px;
}

.product-name p {
  display: none;
}

.product-price {
  padding: 0px 15px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-price h4 {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}

.product-price p {
  font-size: 18px;
  color: #232d3b;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.product-price p del {
  color: var(--main-theme-color);
  font-size: 14px;
}

.product-cart .btn {
  width: 100%;
  padding: 12px 0px;
  color: var(--main-theme-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.product-cart .btn i {
  margin-right: 5px;
}

/*=====================================
       PRODUCT CARD RESPONSIVE STYLE
  ======================================*/
@media (max-width: 575px) {
  .product-card {
    margin: 5px;
    width: 135px;
  }
  .product-name {
    text-align: left;
  }
  .product-name h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .product-price h4 {
    margin-bottom: 8px;
  }
  .product-price p {
    font-size: 16px;
  }
  .product-price p del {
    display: block;
    line-height: 12px;
  }
  .product-cart .btn {
    font-size: 12px;
    padding: 10px 0px;
  }
  .product-cart .btn i {
    margin-top: -2px;
  }
}

@media (min-width: 350px) and (max-width: 400px) {
  .product-card {
    width: 150px;
  }
}

@media (min-width: 401px) and (max-width: 450px) {
  .product-card {
    width: 175px;
  }
  .product-name h3 {
    margin-bottom: 12px;
  }
}

@media (min-width: 451px) and (max-width: 500px) {
  .product-card {
    width: 190px;
    margin: 10px;
  }
  .product-name h3 {
    margin-bottom: 12px;
  }
}

@media (min-width: 501px) and (max-width: 550px) {
  .product-card {
    width: 215px;
    margin: 10px;
  }
  .product-name h3 {
    margin-bottom: 12px;
  }
}

@media (min-width: 551px) and (max-width: 575px) {
  .product-card {
    width: 240px;
    margin: 10px;
  }
  .product-name h3 {
    margin-bottom: 12px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .product-card {
    width: 225px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .product-card {
    width: 200px;
  }
}

/*=====================================
          PRODUCT LIST CARD STYLE
  ======================================*/
.product-list-card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.product-list-card .product-img img {
  width: 260px;
}

.product-list-card .product-content {
  width: 100%;
  margin: 30px 0px;
  padding: 0px 30px;
  border-left: 1px solid #e8e8e8;
}

.product-list-card .product-name {
  padding: 0px;
  margin-bottom: 15px;
}

.product-list-card .product-name h3 {
  font-size: 22px;
}

.product-list-card .product-name p {
  display: block;
}

.product-list-card .product-price {
  padding: 0px;
  margin-bottom: 20px;
}

.product-list-card .product-price h4 {
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
}

.product-list-card .product-price p {
  font-size: 22px;
  color: #232d3b;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.product-list-card .product-price p del {
  color: var(--main-theme-color);
  font-size: 18px;
}

/*=====================================
     PRODUCT LIST CARD RESPONSIVE STYLE
  ======================================*/
@media (max-width: 575px) {
  .product-list-card {
    width: 100%;
  }
  .product-list-card .product-content {
    margin: 15px 0px;
    padding: 0px 15px;
  }
  .product-list-card .product-img img {
    width: 130px;
  }
  .product-list-card .product-name {
    margin-bottom: 0px;
  }
  .product-list-card .product-name h3 {
    font-size: 16px;
  }
  .product-list-card .product-name p {
    display: none;
  }
  .product-list-card .product-price {
    margin-bottom: 10px;
  }
  .product-list-card .product-price h4 {
    font-size: 16px;
    margin-bottom: 0px;
  }
  .product-list-card .product-price p {
    font-size: 18px;
  }
  .product-list-card .product-price p del {
    font-size: 16px;
  }
}

@media (min-width: 500px) and (max-width: 575px) {
  .product-list-card .product-img img {
    width: 180px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .product-list-card .product-img img {
    width: 200px;
  }
  .product-list-card .product-name p {
    display: none;
  }
}

/*=====================================
          REVIEW LIST PART STYLE
  ======================================*/
.review-list {
  margin-bottom: 50px;
}

.review-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  padding: 30px 0px;
  border-bottom: 1px solid #e8e8e8;
}

.reviewer-img {
  margin-right: 30px;
}

.reviewer-img a img {
  width: 50px;
  border-radius: 50px;
}

.reviewer-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.reviewer-meta a {
  color: #232d3b;
  font-weight: 500;
}

.reviewer-meta p {
  font-size: 15px;
}

.reviewer-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 13px;
}

.reviewer-rating li {
  margin-right: 5px;
}

.reviewer-rating li i {
  font-size: 14px;
  color: #bbbbbb;
}

.reviewer-rating li .active {
  color: #ffcc23;
}

.reviewer-descrip {
  width: 100%;
}

@media (max-width: 575px) {
  .review-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .reviewer-img {
    margin-bottom: 25px;
  }
}

/*=====================================
              HEADER PART STYLE
  ======================================*/
.header-part {
  background-color: #fbf3f3;
}

.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-content li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-right: 1px solid #444;
}

.header-content li:last-child {
  border-right: 0px;
}

.header-content li i {
  font-size: 1.3rem;
  margin-right: 8px;
  color: var(--main-theme-color) !important;
}

.header-content li p,
.header-content li a {
  font-size: 1.4rem;
  color: #333;
  cursor: pointer;
}

.header-content li a {
  text-transform: capitalize;
}

.header-content li ul li {
  padding: 0px;
  border-right: 0px;
}

.header-widget {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-widget li .dropdown-item {
  color: #777;
}

.header-widget li .dropdown-item:hover {
  color: #fff;
}

.header-widget .dropdown .dropdown-menu {
  top: 60px;
}

.header-widget .dropdown .header-dropdown {
  width: 100%;
}

.header-widget .dropdown:hover .dropdown-menu {
  top: 44px;
}

/*=====================================
          HEADER RESPONSIVE STYLE
  ======================================*/
@media (max-width: 767px) {
  .header-content {
    display: none;
  }
  .header-widget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/*=====================================
              NAVBAR PART STYLE
  ======================================*/
.navbar-part {
  padding: 0.2rem 4.2rem;
  border-bottom: 1px solid #e8e8e8;
  background-color: #fff;
  position: sticky;
  z-index: 111;
  top: 0;
}

.navbar-part .container {
  max-width: 120rem;
}

/* .navbar-fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 3;

  /* -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
} */

.navbar-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.2rem 0;
}

.navbar-nav .active .nav-link {
  color: var(--main-theme-color);
}

.navbar-nav .nav-link {
  width: 100%;
  padding: 15px 25px;
  border-radius: 6px;
  color: #232d3b;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  border-bottom: 1px solid #e8e8e8;
}

.navbar-nav .nav-link:hover {
  color: #fff;
  background: var(--main-theme-color);
}

.navbar-nav .nav-link i {
  margin-right: 8px;
}

.navbar-nav .nav-item:last-child .nav-link {
  border-bottom: none;
}

/**************** NAVBAR EDITS ************************/

.navbar-logo a img {
  height: 7.6rem;
}

/*=====================================
          NAVBAR RESPONSIVE STYLE
  ======================================*/
@media (max-width: 767px) {
  .navbar-part {
    padding: 1.2rem 1.4rem;
  }

  .navbar-content {
    justify-content: space-between;
  }

  .navbar-part .container {
    padding: 0px 15px;
  }
  .round-icon li {
    margin-right: 8px;
  }
  .round-icon li a i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }
  .navbar-logo a img {
    margin: 0px 15px;
  }
  .left-widget li:nth-child(2) {
    display: block;
  }
  .left-bar {
    margin-right: 0px;
  }
  .navbar-form {
    display: none;
  }
  .right-widget li:nth-child(2) {
    display: none;
  }
}

@media (min-width: 351px) and (max-width: 575px) {
  .round-icon li {
    margin-right: 12px;
  }
  .round-icon li a i {
    height: 35px;
    line-height: 35px;
    font-size: 13px;
  }
}

@media (min-width: 401px) and (max-width: 575px) {
  .round-icon li {
    margin-right: 15px;
  }
  .round-icon li a i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 13px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .navbar-part .container {
    max-width: 550px;
  }
  .round-icon li {
    margin-right: 18px;
  }
  .round-icon li a i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 13px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .left-bar {
    margin-right: 15px;
  }
  .navbar-form {
    margin: 0px 30px;
  }
}

/*=====================================
          RIGHT SIDEBAR PART STYLE
  ======================================*/
.right-sidebar {
  position: fixed;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 3333;
  visibility: hidden;
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.right-sidebar-cover {
  position: fixed;
  top: 0px;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: #fbfbfb;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 3;
  -webkit-transition: all linear 0.4s;
  transition: all linear 0.4s;
}

.right-sidebar-cover .container {
  padding: 0px 25px;
}

.right-sidebar-cover::-webkit-scrollbar {
  width: 0px;
}

.right-sidebar.active {
  visibility: visible;
  opacity: 1;
}

.right-sidebar.active .right-sidebar-cover {
  right: 0px;
}

.cross-btn {
  position: absolute;
  top: 15px;
}

.cross-btn i {
  color: #333;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  /* text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 10px 1px rgba(0, 0, 0, 0.1); */
}

.cross-btn i:hover {
  color: #fff;
  background: var(--main-theme-color);
}

.right-cross {
  left: 15px;
}

.sidebar-logo {
  text-align: center;
  padding: 50px 0px 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e8e8e8;
}

.sidebar-logo a img {
  width: 160px;
  height: auto;
}

.sidebar-heading {
  margin-bottom: 30px;
}

.sidebar-heading h4 {
  font-weight: 500;
}

.cart-price {
  margin-bottom: 30px;
}

.cart-price li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-end;
  margin: 8px 0px;
}

.cart-price li span {
  color: #333;
  font-size: 1.5rem;
  text-transform: capitalize;
}

.cart-price li span:nth-child(2) {
  font-weight: 700;
}

.cart-btn {
  margin-bottom: 100px;
}

.cart-btn li {
  margin-bottom: 15px;
}

.cart-btn li .btn {
  width: 100%;
}

/*=====================================
           LEFT SIDEBAR PART STYLE
  ======================================*/
.left-sidebar {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 222;
  visibility: hidden;
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.left-sidebar-cover {
  position: fixed;
  top: 0px;
  left: -400px;
  width: 400px;
  height: 100vh;
  background: #fbfbfb;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 3;
  -webkit-transition: all linear 0.4s;
  transition: all linear 0.4s;
}

.left-sidebar-cover .container {
  padding: 0px 25px;
}

.left-sidebar-cover::-webkit-scrollbar {
  width: 0px;
}

.left-sidebar.active {
  visibility: visible;
  opacity: 1;
}

.left-sidebar.active .left-sidebar-cover {
  left: 0px;
}

.left-cross {
  right: 15px;
}

.sidebar-src {
  margin: 30px 0px;
}

/*=====================================
          SIDEBAR RESPONSIVE STYLE
  ======================================*/
@media (max-width: 575px) {
  .sidebar-cover {
    width: 80%;
  }
  .sidebar-logo a img {
    width: 130px;
  }
}

@media (max-width: 767px) {
  .sidebar-src {
    display: block;
  }
}

@media (max-width: 450px) {
  .sidebar-src {
    display: block;
  }
  .sidebar-src form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .sidebar-src form input {
    height: 50px;
  }
}

/*=====================================
              FOOTER PART STYLE
  ======================================*/
.footer-part {
  padding: 80px 0px 0px;
}

.footer-about a img {
  width: 160px;
  margin-bottom: 25px;
}

.footer-about p {
  margin-bottom: 30px;
}

/* .footer-icon li a i {
  background: #f5f5f5;
} */

.footer-heading h3 {
  margin-bottom: 25px;
}

.footer-heading p {
  margin-bottom: 25px;
}

.footer-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-widget ul li {
  margin: 15px 0px;
}

.footer-widget ul li a {
  color: #888;
}

.footer-widget ul li a:hover {
  color: var(--main-theme-color);
  text-decoration: underline;
}

.footer-bottom .container p {
  color: #666;
  font-size: 1.4rem;
  font-weight: 600;
}

.footer-bottom .container ul li {
  display: inline-block;
}

.footer-bottom .container ul li a img {
  width: 40px;
  border-radius: 3px;
}

/*=====================================
          FOOTER RESPONSIVE STYLE
  ======================================*/
@media (max-width: 767px) {
  .footer-part {
    padding: 60px 0px 0px;
  }
  .footer-about {
    text-align: center;
    margin-bottom: 50px;
  }
  .footer-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer-icon li a i {
    font-size: 16px;
  }
  .footer-heading {
    text-align: center;
  }
  .footer-widget {
    width: 290px;
    margin: 0 auto 50px;
  }
  .footer-bottom {
    padding: 10px 0px;
  }
  .footer-bottom .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 575px) and (max-width: 767px) {
  .footer-bottom {
    padding: 15px 0px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-widget {
    margin-bottom: 30px;
  }
}

/*=====================================
              BANNER PART STYLE
  ======================================*/

.banner-cate {
  /* background: #fbf2f2; */
  /* border: 1px solid var(--border-color); */
  /* border-radius: 8px; */
  /* overflow: hidden; 
  background-color: var(--main-theme-color); */
  position: relative;
  display: none;
}

.cate-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: start;
  width: 85%;
  margin: 0 auto;
  padding: 8px 0px;
  /* border-radius: 8px; */
  /* background: var(--main-theme-color); */
}

.cate-heading i {
  font-size: 16px;
  color: var(--main-theme-color);
  margin-right: 7px;
}

.cate-heading h4 {
  text-transform: capitalize;
  font-weight: 600;
  font-size: 1.4rem;
  cursor: pointer;
}

/* .active-category:hover .cate-scroll {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
} */

.cate-scroll {
  /* height: 50rem; */
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  position: absolute;
  left: 8%;
  z-index: 333333;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.active-category:hover ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cate-scroll li {
  border-bottom: 1px solid #e8e8e8;
}

.cate-scroll li:last-child {
  border-bottom: none;
}

.cate-scroll li a {
  width: 100%;
  padding: 12px 25px;
  color: var(--text-color);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 1.4rem;
}

.cate-scroll li a:hover {
  color: var(--main-theme-color);
  /* background: #ffe6e6; */
}

.banner-slider a img {
  width: 100%;
  height: 80vh;
  border-radius: 5px;
  object-fit: cover;
}

.banner-slider ul {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.banner-slider ul li {
  width: 25px;
  height: 5px;
  border-radius: 15px;
  background: #f5f5f5;
  margin: 0px 10px;
  display: inline-block;
  cursor: pointer;
  -webkit-box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
}

.banner-slider ul li button {
  display: none;
}

.banner-slider ul li.slick-active {
  background: var(--main-theme-color);
}

/*=====================================
        BANNER PART RESPONSIVE STYLE
  ======================================*/
@media (max-width: 991px) {
  .cate-heading {
    padding: 12px 0px;
  }
  .cate-heading i {
    font-size: 16px;
  }
  .cate-heading h4 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .banner-cate {
    margin-bottom: 1.2rem;
  }
  .banner-cate.active .cate-scroll {
    height: 0px;
    opacity: 0;
    visibility: hidden;
  }
  /* .banner-slider {
    height: 40rem;
  } */
}

@media (min-width: 768px) and (max-width: 991px) {
  .cate-scroll {
    height: 175px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cate-scroll {
    height: 280px;
  }
}

/*=====================================
              OFFER PART STYLE
  ======================================*/
.offer-part {
  padding-bottom: 30px;
  border-bottom: 1px solid #e8e8e8;
}

.offer-part .container {
  padding: 0px 0px;
}

.offer-slider a {
  margin: 0px 15px;
}

.offer-slider a img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  border-radius: 8px;
}

.offer-slider .dandik {
  right: -10px;
}

.offer-slider .bamdik {
  left: -10px;
}

/*=====================================
              TRENDING PART STYLE
  ======================================*/
.trend-part {
  padding: 0 0 7.6rem 0;
}

/*=====================================
              BEST SELL PART STYLE
  ======================================*/
.best-part {
  padding: 100px 0px 0px;
}

/*=====================================
              NEW PART STYLE
  ======================================*/
.new-part {
  padding: 7.6rem 0;
  background-color: rgba(242, 242, 242, 1);
}

/*=====================================
              ADD PART STYLE
  ======================================*/
.add-part {
  padding: 50px 0px;
  border-bottom: 1px solid #e8e8e8;
}

.add-part a {
  width: 100%;
}

.add-part a img {
  width: 100%;
  height: 50rem;
  object-fit: cover;
  border-radius: 8px;
}

/*=====================================
       SOME COMMON RESPONSIVE STYLE
  ======================================*/

/*=====================================
          PRODUCT LIST PART STYLE
  ======================================*/
.product-list {
  padding: 50px 0px;
}

.product-list .col-lg-2 {
  flex-basis: 24.666667%;
  max-width: 24.666667%;
}

.product-list .col-lg-10 {
  max-width: 75.333333%;
  flex-basis: 75.333333%;
}

.product-list-bar {
  margin-bottom: 30px;
  background-color: #f0f0f0;
  padding: 1.2rem;
}

.product-list-bar h4 {
  padding: 15px 0px;
  border-bottom: 1px solid #e8e8e8;
}

.color-filter li {
  margin: 15px 0px;
}

.color-filter li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.color-filter li a:hover p {
  color: var(--main-theme-color);
}

.color-filter li a span {
  width: 80px;
  padding: 3px 0px;
  text-align: center;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
}

.color-filter li a p {
  color: #888;
}

.clr-1 {
  background: blue;
}

.clr-2 {
  background: green;
}

.clr-3 {
  background: orange;
}

.clr-4 {
  background: purple;
}

.product-size li {
  margin: 15px 0px;
}

.product-size li label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-size li label:hover h5,
.product-size li label:hover p {
  color: var(--main-theme-color);
}

.product-size li label h5 {
  font-size: 16px;
  font-weight: 500;
  margin-left: 0.6rem;
}
.product-size li label h5 input {
  margin-right: 1rem;
}

.product-size li label p {
  color: #888;
}

.product-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-tags li {
  margin: 5px;
}

.product-tags li label {
  font-size: 14px;
  color: #555555;
  padding: 3px 18px;
  /* border-radius: 30px; */
  border: 1px solid #141a46;
  text-transform: capitalize;
}
.product-tags li label {
  font-size: 14px;
  color: #555555;
  padding: 3px 18px;
  /* border-radius: 30px; */
  border: 1px solid #141a46;
  text-transform: capitalize;
}
.product-tags li a {
  font-size: 14px;
  color: #555555;
  padding: 3px 18px;
  /* border-radius: 30px; */
  border: 1px solid #e8e8e8;
  text-transform: capitalize;
}

.product-tags li label:hover {
  color: #fff;
  background: var(--main-theme-color);
  border-color: var(--main-theme-color);
}

.product-tags li label.active {
  color: #fff;
  background: var(--main-theme-color);
  border-color: var(--main-theme-color);
}

.product-filter {
  background: #fff;
  border-radius: 4px;
  padding: 15px 25px;
  margin: 0px 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-card-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-page-number {
  font-weight: 500;
}

.product-card-type li {
  margin-left: 12px;
}

.product-card-type li i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
  background: #f5f5f5;
}

.grid-verti.active i,
.grid-hori.active i {
  color: #fff;
  background: var(--main-theme-color);
}

/*=====================================
       PRODUCT LIST RESPONSIVE STYLE
  ======================================*/
@media (max-width: 575px) {
  .product-filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0px 0px 15px;
  }
  .product-page-number {
    margin-bottom: 12px;
  }
  .custom-select {
    width: 100%;
    margin-bottom: 15px;
  }
}

@media (max-width: 991px) {
  .product-list {
    padding: 60px 0px 30px;
  }
  .product-list .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

/*=====================================
          SINGLE BANNER PART STYLE
  ======================================*/
.single-banner {
  padding: 3.2rem 0 2.4rem 0;
  background-color: var(--main-theme-color);
}

.single-content {
  text-align: center;
}

.single-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: #fff;
}

/*=====================================
          SINGLE PRODUCT PART STYLE
  ======================================*/
.single-product {
  padding: 4rem 0 100px 0px;
}

.single-product-slider {
  margin-bottom: 30px;
}

.single-product-slider img {
  width: 100%;
  height: 60rem;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #f1f1f1;
}

.single-thumb-slider img {
  height: 8rem;
  object-fit: contain;
  border: 1px solid #f1f1f1;
  margin: 0px 0.2rem;
  padding: 0.2rem;
}

.single-thumb-slider .slick-slide {
  cursor: pointer;
}

.single-thumb-slider .slick-current {
  border: 1px solid #999;
}

.single-product-info {
  margin-left: 2.4rem;
}

.single-product-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 18px;
}

.single-product-name h3 {
  font-weight: 500;
  font-size: 2.8rem;
}

.single-product-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.single-product-review li {
  margin-right: 5px;
}

.single-product-review li i {
  font-size: 14px;
  color: #ffcc23;
}

.single-product-price h3 del {
  font-size: 20px;
  color: var(--main-theme-color);
  font-weight: 500;
  margin-right: 8px;
}

.single-product-describe {
  padding-bottom: 28px;
  font-size: 1.5rem;
  margin-bottom: 28px;
  border-bottom: 1px solid #e8e8e8;
}

.single-product-widget {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 2.4rem;
}

.single-product-widget h5 {
  margin-right: 1.2rem;
}

.single-product-widget ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.single-product-widget ul li {
  margin-right: 15px;
}
.single-product-widget ul li a {
  font-size: 1.4rem;
  font-weight: 500;
}
.single-product-widget.product-share a {
  background-color: var(--color-secondary);
  height: 3rem;
  width: 3rem;
}

.single-product-widget.product-share a > i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.single-product-widget ul li a:hover {
  font-weight: 600;
}

.product-quantity ul li input {
  width: 100px;
  padding: 0px 15px;
  height: 45px;
  border: 2px solid #bbbbbb;
}

.product-quantity ul li input:focus-within {
  border-color: var(--main-theme-color);
}

.product-quantity ul li .btn {
  height: 45px;
  padding: 11px 30px;
}

.wishlist-icon .active {
  color: var(--main-theme-color);
  fill: var(--main-theme-color);
}

.payment-card ul li a img {
  width: 60px;
}

.submit_text {
  letter-spacing: 0.5px;
}

.product-cta {
  align-items: stretch !important;
}

.product-cta > li:last-child {
  border: 1px solid var(--main-theme-color);
  border-radius: 0.2rem;
  display: flex;
  align-items: center;
  padding: 0 0.9rem;
}

.product-cta > li:last-child:hover {
  background-color: var(--main-theme-color);
}

.product-cta > li:last-child:hover svg {
  fill: #fff;
}

/*=====================================
      SINGLE PRODUCT RESPONSIVE STYLE
  ======================================*/
@media (max-width: 991px) {
  .single-product {
    padding: 1.2rem 0;
  }
  .single-thumb-slider {
    margin-bottom: 50px;
  }
  .single-product-info {
    margin-left: 0px;
  }
  .single-product-name h3 {
    font-size: 18px;
  }
  .product-quantity ul li input {
    width: 80px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .single-product-info {
    margin-left: 30px;
  }
  .container {
    max-width: 120rem;
  }
}

/*=====================================
              RELATED PART STYLE
  ======================================*/
.related-part {
  padding: 3.2rem 0;
}
.related-part .section-heading h2 {
  font-size: 3.2rem;
}

/*=====================================
          PRODUCT DETAILS PART STYLE
  ======================================*/
.details-descrip p {
  line-height: 28px;
}

.details-descrip p span {
  display: block;
  margin-top: 30px;
}

.details-part {
  padding: 3.2rem 0;
  background-color: var(--color-secondary);
}

@media (max-width: 767px) {
  .details-part {
    padding: 25px 0px 25px;
  }
}
/*# sourceMappingURL=main.css.map */
.whatsapp {
  display: inline-block;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}
@media (max-width: 576px) .whatsapp-btn {
  width: 40px;
  height: 40px;
}
.whatsapp-btn {
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
}

@media (max-width: 576px) {
  .whatsapp {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  #whatsapp-icon {
    fill: #ffffff;
  }
}

@media (max-width: 576px) #whatsapp-icon, #a2c-icon {
  display: block;
  margin: 0 auto;
  margin-bottom: 2px;
}
@media (max-width: 576px) .whatsapp-btn svg {
  width: 22px;
  height: 22px;
}
.whatsapp-btn svg {
  fill: #fff;
  width: 28px;
  height: 28px;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}

@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}

.content-placeholder {
  display: inline-block;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
  animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  background: #f6f7f8;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(8%, #eeeeee),
    color-stop(18%, #dddddd),
    color-stop(33%, #eeeeee)
  );
  background: -webkit-linear-gradient(
    left,
    #eeeeee 8%,
    #dddddd 18%,
    #eeeeee 33%
  );
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  -webkit-background-size: 800px 104px;
  background-size: 800px 104px;
  height: inherit;
  position: relative;
}

.product_preload {
  height: 260px;
  width: auto;
}

.slider_preload {
  height: 400px;
  width: 100%;
}

.ads_preload {
  height: 200px;
  width: 100%;
}

.none {
  display: none;
}
.h-20 {
  width: 100%;
  height: 20px;
}
.active_language {
  background-color: var(--main-theme-color);
}

/*=====================================
              PRODUCT CARD STYLE
  ======================================*/
.product-card {
  background: #fff;
  cursor: pointer;
}

.product-card:hover .product-name h3 {
  text-decoration: underline;
}

.product-img {
  position: relative;
}

.product-img img {
  width: 100%;
}

.new-badge {
  position: absolute;
  top: 15px;
  right: 5px;
  font-size: 13px;
  color: #ffffff;
  background: rgba(250, 128, 114, 0.952);
  text-transform: capitalize;
  padding: 3px 12px 5px 12px;
}

.product-widget {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  opacity: 0;
  transition: all linear 0.3s;
}

.product-card:hover .product-widget {
  opacity: 1;
  bottom: 15px;
}

.product-widget li {
  margin: 0px 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
}

.product-widget li a i {
  color: #ffffff;
}

.product-content {
  margin: 15px;
}

.product-cate p {
  color: #444;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 7px;
}

.product-name h3 {
  color: #232d3b;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 13px;
}

.product-price {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-rating {
  list-style: none;
}

.product-rating li {
  display: flex;
  align-items: center;
}

.product-rating li i {
  color: #ffcc23;
  font-size: 12px;
  margin-right: 3px;
}

.product-rating li span {
  font-size: 12px;
  font-weight: 600;
}

.product-price p {
  font-size: 2rem;
  color: #333;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 0.5rem 0;
}

.product-price sup {
  font-size: 1.2rem;
}

.product-price p del {
  color: #dc3545;
  font-size: 16px;
}

.nav-tabs {
  gap: 1.2rem;
}
/***************EDIT TAEK *********************/

/*********************HEADER Taek***************************/
.header {
  background-color: rgba(242, 242, 242, 1);
}
.header__top {
  border-bottom: 1px solid #ccc;
}

.header__top--nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 120rem;
  margin: 0 auto;
}

.header__nav-link:link,
.header__nav-link:visited {
  color: #444;
  font-weight: 500;
  font-size: 1.5rem;
  padding: 0.8rem 1.2rem;
  border-left: 1px solid #d9d9d9;
  transition: all 0.15s;
  letter-spacing: 0.6px;
}

.nav__list__left a:hover {
  color: #b4b4b4;
}

.icon--menu {
  display: none;
}

/* .header__nav-link:last-child {
  border-right: 1px solid #d9d9d9;
} */

.header__socials a:link,
.header__socials a:visited {
  color: #444;
}

.header__socials i,
.header__socials--demo i {
  font-size: 1.3rem !important;
  color: #444 !important;
}

.nav__list__right {
  position: relative;
}

.nav__list__left,
.nav__list__right {
  display: flex;
  align-items: center;
  color: #fff;
  border-right: 1px solid #d9d9d9;
}
.nav__list__right .header__nav-link:first-child {
  border-right: 1px solid #d9d9d9;
}

.header__nav-link--cart {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.8rem;
}

.header__nav-link--cart #cart_total {
  font-weight: 500;
  color: #333;
  font-size: 2rem;
}

.cart__count {
  background: var(--main-theme-color);
  border-radius: 50%;
  color: #fff;
  padding: 0.1rem 0.6rem;
  font-size: 1.2rem;
  margin: 0 1.4rem 0 0.4rem;
}

.header > .container > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.header i {
  color: #555;
  font-size: 1.1rem;
}

.header > .container > div > .header__nav,
.header__search {
  flex: 0 0 40%;
}

.header__logo img {
  height: 7.6rem;
}

.header__nav ul {
  display: flex;
  gap: 2.4rem;
}

.header__nav--sec {
  padding: 1.8rem 0;
  display: flex;
  justify-content: center;
}

.header__nav--sec .header__nav__list {
  gap: 4.6rem;
}

.header__nav__list--demo {
  gap: 4.6rem !important;
}

.header__nav--sec a {
  border: none;
  font-weight: 700;
  font-size: 1.8rem;
  color: #444;
  letter-spacing: 0.8px;
}

.header__search {
  display: flex;
  justify-content: flex-end;
}

.header__search input,
.header__search button {
  border: none;
  background: none;
}

.header.footer-icon i {
  font-size: 1.4rem;
}

.search--sd,
.header__nav__list > i {
  display: none;
}

.carts {
  position: absolute;
  right: -2px;
  top: 100%;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  padding: 2.4rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.2s cubic-bezier(0.41, 0.05, 0.77, 0.8);
}

.carts.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  z-index: 99999;
}

.cart__item {
  margin-top: 1.2rem;
}

.cart__item a {
  display: flex;
  justify-content: space-between;
  color: #555;
}

.cart__details {
  margin-left: 1.2rem;
}
.cart-remove {
  flex: 1;
  text-align: end;
}

.cart__footer--cta {
  display: flex;
  gap: 0.6rem;
}

.cart__footer {
  margin-top: 1.2rem;
  border-top: 1px solid #e5e5e5;
  padding-top: 1.2rem;
}

.cart__subtotal {
  text-align: end;
  margin-bottom: 0.9rem;
}

.cart__footer--cta .btn {
  color: #fff;
  background-color: #333;
}

.cart__image img {
  height: 10.6rem;
  border: 1px solid #e5e5e5;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(17, 17, 17, 0.6);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu-icon--sec {
  display: none;
}

/*********************HEADER END ***************************/

/********************* BANNER TAEK ***************************/
.section {
  padding: 7.6rem 0;
}

.banner__slide {
  position: relative;
}

.banner__slide img {
  height: 50rem;
  width: 100%;
  object-fit: cover;
}

.banner__slide--texts {
  position: absolute;
  top: 30%;
  left: 5%;
}

.banner__slide--demo {
  display: flex !important;
}

.banner__slide--demo img {
  height: 45rem;
  flex: 1;
  object-fit: contain;
}

.banner__slide--demo .banner__slide--texts {
  position: static;
}

.banner__slide--demo .banner__slide--texts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 0 0 40%;
  margin-left: 12.4rem;
}

.banner__slide--texts a {
  padding: 1rem 1.4rem;
  background: var(--main-theme-color);
  color: #fff;
  margin-top: 2.4rem;
}
.banner__slide--texts h1 {
  font-weight: 800;
}

.banner__slide--texts a {
  padding: 1rem 1.4rem;
  background: var(--main-theme-color);
  color: #fff;
  margin-top: 2.4rem;
}

.banner-part svg {
  height: 6.4rem;
  position: absolute;
  top: 43%;
  opacity: 0;
  transition: all 0.3s;
  cursor: pointer;
  z-index: 22222;
}

.banner-part:hover svg {
  opacity: 1;
}

.banner-part svg:last-child {
  right: 2%;
}
.banner-part svg:first-child {
  left: 2%;
}

/********************* BANNER END TAEK ***************************/
/********************* CATEGORY  TAEK ***************************/
.section-categories {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-categoriess {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.4rem;
}

.category__item h1 {
  font-size: 3.2rem;
}

.category_content {
  text-align: center;
  margin-top: 2.4rem;
}

.category__item a {
  background-color: var(--main-theme-color);
  color: #fff;
  margin-top: 3.2rem;
  padding: 0.8rem 1.2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.category__image {
  overflow: hidden;
}
.category__image img {
  transition: all 0.4s;
  overflow: hidden;
  max-width: 100%;
  height: 100%;
}

.category__item:hover img {
  transform: scale(1.1);
}
.category__item:hover a {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/********************* CATEGORY END TAEK ***************************/

/*********************PRODUCT START ***************************/

.section-default--products .container {
}

.products--sec .product-name {
  display: flex;
  flex-direction: column;
}

.products--sec .product-card:hover .product-name h3 {
  text-decoration: none;
}

.product-img > a {
  height: 100%;
  width: 100%;
}

.products--sec .product-card,
.products--sec .product-card--demo {
  background-color: transparent;
  width: auto;
  margin: 0;
}

.products--sec .product-card,
.products--sec .product-card--demo {
  margin: 0 1.4rem;
}

.products--sec .product-img {
  height: 37rem;
  overflow: hidden;
  transition: all 0.3s;
  background-color: #fff;
}

.products--sec .product-img img {
  height: 100%;
  transition: all 0.7s ease;
  object-position: 50% 50%;
  border-radius: 0;
  object-fit: contain;
}

.products--sec .product-price p {
  font-size: 2.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
  margin-top: 0.7rem;
}

.products--sec .product-widget li {
  margin: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}

.products--sec .product-rating {
  order: -1;
}
.products--sec .product-rating li i {
  color: #ccc;
}

.product-widget {
  bottom: -30px;
  transition: all 0.2s;
}

.product-card--demo:hover .product-widget,
.product-card:hover .product-widget {
  opacity: 1;
  bottom: 0px;
}

.product-widget li a i {
  color: var(--main-theme-color);
  font-size: 1.9rem;
  padding: 1.2rem;
}

.product-widget li a:hover i {
  background-color: var(--main-theme-color);
  color: #fff;
}

.product-widget {
  justify-content: flex-start;
}

.products--sec .product-card-details {
  margin-top: 1.4rem;
}

.products--sec .product-name,
.products--sec .product-price {
  padding: 0;
}

.products--sec .product-price {
  padding-left: 0;
  margin: 0;
}

.products--sec .product-name h3 {
  margin-bottom: 0;
  margin-top: 0.8rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #444;
}

.section-heading {
  padding: 0 12.2rem 3.2rem 12.2rem;
}

.section-heading p {
  color: #888;
  font-weight: 400;
  font-size: 1.5rem;
  margin: 1.4rem 0;
}

/*********************PRODUCT END ***************************/

/*********************FOOTER PART ***************************/

.footer-part {
  background-color: #f2f2f2;
  padding: 7.6rem 0 1.2rem 0;
}

.footer-part .row {
  justify-content: center;
}

.footer__logo img {
  height: 8.6rem;
}

.footer-part--first {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 5.4rem;
}

.footer__logo {
  margin-right: 3.2rem;
  grid-column: 1 / span 2;
}

.footer-part--sec {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.4rem;
}

.footer__nav__list li:after {
  content: "";
  height: 0.8rem;
  width: 0.1rem;
  background-color: #959595;
  display: inline-block;
}

.footer__nav__list li > a {
  padding: 0 2.4rem;
}

.footer-bottom a {
  margin-top: 0.6rem !important;
}

.footer__nav__list span {
  font-size: 1.4rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid #ddd;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__contract-part {
  margin-top: 2.4rem;
  font-style: italic;
}

.footer-bigbag .header-content li a {
  border: 1px solid #ccc;
  padding: 0.8rem 2.4rem;
}

.footer-bigbag .header-widget {
  margin-top: 1.8rem;
  justify-content: flex-start;
}

.footer-bigbag .header-content li a {
  margin-top: 0;
}

.footer-bigbag .dropdown-item {
  border: none !important;
}

.footer-bigbag .dropdown-item:hover {
  background-color: #999;
}

.footer__store-desc {
  margin-top: 1.2rem;
}

.footer__store-desc,
.footer__contract-part {
  font-size: 1.4rem;
  font-weight: 500;
}

.footer-menu a {
  font-size: 1.5rem;
  font-weight: 500;
  color: #444;
  margin-top: 1.2rem;
}

.footer-part--first .mb-3 {
  text-transform: uppercase !important;
  font-weight: 500;
  color: #555;
}

/* .header-content li:last-child {
  border-bottom: 1px solid #888;
} */
/*********************FOOTER PART END ***************************/

.product-list .product-card {
  width: auto;
}

.banner-part .container {
  max-width: 130rem;
}

.banner-part {
  padding-bottom: 3.2rem;
}

.icon-menu svg {
  width: 24px;
  color: #333;
  border: 1px solid #333;
}

.navbar-logo {
  margin: 0 3.2rem 0 2.2rem;
}

.sidebar-src {
  width: 100%;
}

.btn-light {
  background-color: var(--main-theme-color);
  color: #fff;
  font-weight: 600;
}

.section-heading h2 {
  font-size: 6rem;
  font-weight: 800;
}

.icon {
  width: 3.2rem;
  color: #333;
  cursor: pointer;
}

.btn-inline i {
  color: #fff;
}

.icon:hover {
  color: var(--main-theme-color);
}

.section-padding {
  background-color: #ccc;
}

.product-qty {
  display: flex;
  align-items: center;
  margin-bottom: 2.4rem;
}

.product-qty input {
  width: 5rem;
  text-align: center;
  border: 1px solid #141a46;
}

.product-cta li:first-child {
  flex: 1;
}

.cart-btnn {
  width: 100%;
  border: 1px solid #141a46;
}
.product-brand {
  display: flex;
  align-items: center;
}

.product-tags li a {
  border: 1px solid #141a46;
}

.product-share {
  flex-direction: row;
  align-items: center;
  margin-top: 4.6rem;
}

.footer-icon i {
  font-size: 1.6rem;
  color: #666;
}

.footer-icon i:hover {
  color: #141a46;
}

.product-list-bar h4 {
  font-size: 2.2rem;
  font-weight: 500;
}

#left_sidebar {
  position: sticky;
  top: 120px;
  margin-top: 10.4rem;
  z-index: 99;
  max-height: 90vh;
}

.product-list .container {
  max-width: 136rem;
}

.details-descrip {
  padding: 0 1.2rem;
  font-size: 1.5rem;
}

.details-descrip h2 {
  font-size: 1.6rem;
}

.wishlist-i {
  width: 3.2rem;
  color: var(--main-theme-color);
}

.single-product-slider .dandik {
  right: 0;
  height: 7.2rem;
  background-color: var(--main-theme-color);
  color: #fff;
}
.single-product-slider .bamdik {
  left: 0;
  height: 7.2rem;
  background-color: var(--main-theme-color);
  color: #fff;
}
.category-product {
  display: flex;
  align-items: center;
}
.icon-sidebar--cart {
  width: 2rem;
  transform: translateY(-2px);
}

.icon-sidebar--cart:hover {
  color: currentColor;
}

.navs--left {
  display: flex;
  align-items: center;
}

.category-product li a {
  border: 1px solid #141a46;
  padding: 0.2rem 0.8rem;
}

/**********/

.left-sidebar .btn-inline {
  display: none;
}

.cart--details {
  padding-top: 2.4rem;
}

.terms-of_order {
  font-size: 1.4rem;
  color: #444;
  font-weight: 500;
  margin-top: 0.9rem;
  line-height: 1.4;
}

.product-card--demo,
.category__item--demo {
  display: none;
}

@keyframes ldio-4j5ay0xf86g {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.loading-wrapper {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
  background-color: #fff;
}

.ldio-4j5ay0xf86g div {
  left: 94px;
  top: 48px;
  position: absolute;
  animation: ldio-4j5ay0xf86g linear 1s infinite;
  background: #222;
  width: 12px;
  height: 24px;
  border-radius: 6px / 12px;
  transform-origin: 6px 52px;
}

.ldio-4j5ay0xf86g div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -0.9166666666666666s;
  background: #222;
}

.ldio-4j5ay0xf86g div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -0.8333333333333334s;
  background: #222;
}

.ldio-4j5ay0xf86g div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.75s;
  background: #222;
}

.ldio-4j5ay0xf86g div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.6666666666666666s;
  background: #222;
}

.ldio-4j5ay0xf86g div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.5833333333333334s;
  background: #222;
}

.ldio-4j5ay0xf86g div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.5s;
  background: #222;
}

.ldio-4j5ay0xf86g div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.4166666666666667s;
  background: #222;
}

.ldio-4j5ay0xf86g div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.3333333333333333s;
  background: #222;
}

.ldio-4j5ay0xf86g div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.25s;
  background: #222;
}

.ldio-4j5ay0xf86g div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.16666666666666666s;
  background: #222;
}

.ldio-4j5ay0xf86g div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.08333333333333333s;
  background: #222;
}

.ldio-4j5ay0xf86g div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
  background: #222;
}

.loading-bigbag-spinner-spinner-977el9wwy2v {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ldio-4j5ay0xf86g {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0;
  /* see note above */
}

.ldio-4j5ay0xf86g div {
  box-sizing: content-box;
}

/*************************************MEDIA QUERIES******************************/

@media (max-width: 62em) {
  html {
    font-size: 50%;
  }
  .header .container {
    max-width: 120rem;
  }
}

@media (max-width: 59em) {
  .add-part a img {
    height: 45rem;
  }
  .navbar-logo a img {
    height: 5.6rem;
  }

  .single-product-widget h5 {
    font-size: 1.8rem;
  }
}

@media (max-width: 48em) {
  .add-part a img {
    height: 30rem;
  }
  .banner-slider {
    padding: 0 2.2rem;
  }

  .banner-slider a img {
    height: 40rem;
  }

  .default__offer img {
    height: 16rem;
  }
  .default__offer {
    gap: 1.2rem;
  }

  .section-heading {
    padding: 0 2.4rem 4.6rem 2.4rem;
  }
  .section-heading h2 {
    font-size: 4.2rem;
  }
  .products--sec .product-card {
    margin-left: 1.2rem;
    margin-right: 1.2rem !important;
  }
  .product-slider .bamdik {
    left: 0;
  }

  .products--sec .product-img {
    height: 30rem;
  }

  .banner__slide--demo {
    flex-direction: column;
    align-items: center;
  }
  .banner__slide--demo img {
    order: -1;
    flex: auto;

    height: 42rem;
    width: auto;
  }

  .top-categoriess {
    grid-template-columns: 1fr;
  }
  .category__image img {
    width: 100%;
  }
  .footer-part--first {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer__logo {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer__lang--widget {
    justify-self: end;
  }

  .footer__store-desc {
    grid-column: 1 / span 2;
  }
  .footer-part {
    padding: 7.6rem 1.2rem 1.2rem 1.2rem;
  }

  .footer-part--first {
    grid-gap: 1.4rem;
  }
}

@media (max-width: 44em) {
  .header__top {
    position: relative;
  }
  .nav__list__left {
    position: absolute;
    top: 4rem;
    left: 1rem;
    flex-direction: column;
    background: #fff;
    align-items: stretch;
    border: 1px solid #a8a8a8;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav__list__left.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .icon--menu {
    display: block;
  }

  .header__top .icon--menu {
    margin-left: 2.2rem;
  }

  .menu-icon--sec {
    display: flex;
    align-items: center;
  }

  .nav__list__left .header__nav-link:link,
  .nav__list__left .header__nav-link:visited {
    border-left: none;
    padding: 0.8rem 3.2rem;
  }

  .nav__list__left li:not(:last-child) {
    border-bottom: 1px solid #a8a8a8;
  }
  .menu-icon--sec {
    display: flex;
  }

  .nav__list__right > li:first-child {
    display: none;
  }

  .search--sd,
  .header__nav__list > i {
    display: block;
  }
  .search--sd {
    position: relative;
  }

  .search--sd i {
    font-size: 1.6rem;
  }
  .search--sd .header__search {
    padding: 0.6rem 1.8rem;
    border: 1px solid #ddd;
    position: absolute;
    top: 3rem;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .header__nav--first,
  .header__logo + .header__search {
    display: none;
  }

  .header__nav--sec .header__nav__list,
  .header__nav__list--demo {
    position: fixed;
    top: 0;
    background-color: #fff;
    flex-direction: column;
    left: -24rem;
    height: 100%;
    z-index: 11111;
    width: 25rem;
    padding: 2.4rem 3.2rem;
    gap: 0.8rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s linear;
  }

  .header__nav--sec .header__nav__list.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    left: 0;
  }

  .header__nav--sec .header__nav__list > i {
    font-size: 2rem;
    text-align: end;
  }

  .header__nav--sec a {
    font-size: 1.8rem;
    letter-spacing: 0.3px;
    font-weight: 500;
    color: #555;
  }
  .header > .container > div {
    justify-content: center;
  }
  .header__nav--sec {
    justify-content: space-between;
  }

  .search--sd .header__search {
    background-color: #fff;
    z-index: 11111;
  }
  .search--sd .fa-search {
    display: block;
  }
  .search--sd .fa-xmark {
    display: none;
  }
  .search--sd.search-open .fa-search {
    display: none;
  }
  .search--sd.search-open .fa-xmark {
    display: block;
  }
  .search--sd.search-open .header__search {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .footer-part .footer-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-part--sec {
    grid-template-columns: 1fr;
  }
  .footer__newsletter {
    grid-column: 1;
  }
  .footer__socials-part {
    padding-bottom: 4.6rem;
  }
  .footer-part--first p {
    font-size: 1.7rem;
  }
  .product-slider .dandik {
    right: 0;
  }
  .trend-part .product-img img {
    border: 1px solid #ddd;
  }
  .footer__socials-part ul a {
    height: 4rem;
    width: 4rem;
  }
  .cart__footer--cta {
    flex-direction: column;
  }
  .cart__footer--cta .btn {
    width: 100%;
  }

  .carts {
    width: 33rem;
  }
  .nav__list__right .header__nav-link:first-child {
    border-left: 1px solid #d9d9d9;
    padding: 0.5rem 0.8rem;
  }
  .product-slider .slick-arrow {
    opacity: 1;
    visibility: visible;
  }
  .top-categoriess {
    grid-template-columns: 1fr;
  }

  .category__item a {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .banner__slide--demo {
    flex-direction: column;
    align-items: center;
  }
  .banner__slide--demo img {
    order: -1;
    flex: auto;

    height: 42rem;
    width: auto;
  }
  .banner__slide--demo .banner__slide--texts {
    margin-left: 0;
    align-items: center;
    text-align: center;
  }
  .banner__slide--texts h1 {
    font-size: 3.6rem;
    margin-bottom: 1.2rem;
  }
  .banner__slide--texts p {
    font-size: 1.8rem;
  }
}

@media (max-width: 28em) {
  .banner-slider a img {
    height: 34rem;
  }

  .navbar-logo a img {
    height: 5rem;
  }
  .add-part a img {
    height: 20rem;
  }
  .product-card {
    min-height: 36rem;
  }
  .product-img {
    height: 26rem;
  }
  .single-product-slider img {
    height: 45rem;
  }
  .details-review {
    padding: 0 2.4rem;
  }

  .footer-bigbag .col-md-4 {
    width: 33%;
  }
  .footer-about a img {
    margin-bottom: 0;
  }
}

/***************EDIT TAEK *********************/
