:root,
[data-bs-theme="light"] {
  --tb-blue-light: #dbe6f0;
  --tb-blue-200: #dbe5f0;
  --tb-blue-300: #f1f4f8;
  --tb-blue-100: #f2f5f8;
  --tb-blue-400: #6b72f7;
  --tb-blue-800: #2e3bdd;
  --tb-indigo: #405189;
  --tb-purple: #2e285d;
  --tb-purple-300: #daddfa;
  --tb-purple-400: #2930b4;
  --tb-purple-500: #183f7f;
  --tb-purple-secondary: #183f7f;
  --tb-orange: #DF610F;
  --tb-orange-700: #DF610F;
  --tb-yellow: #f1be46;
  --tb-green: #17ce69;
  --tb-teal: #4ab0c1;
  --tb-cyan: #1ea6d3;
  --tb-black: #000;
  --tb-white: #fff;
  --tb-gray: #878a99;
  --tb-gray-dark: #0c192c;
  --tb-gray-100: #f3f6f9;
  --tb-gray-200: #acadaf;
  --tb-gray-300: #e6e6e6;
  --tb-gray-400: #ced4da;
  --tb-gray-500: #7a7a7a;
  --tb-gray-600: #878a99;
  --tb-gray-700: #132846;
  --tb-gray-800: #0c192c;
  --tb-gray-900: #0b1729;
  --tb-primary: #4b93ff;
  --tb-secondary: #7c6bff;
  --tb-success: #06d6a0;
  --tb-info: #1ea6d3;
  --tb-warning: #f1be46;
  --tb-danger: #d32600;
  --tb-light: #f3f6f9;
  --tb-dark: #0b1729;
  --tb-primary-bg-subtle: #dbe9ff;
  --tb-secondary-bg-subtle: #e5e1ff;
  --tb-success-bg-subtle: #cdf7ec;
  --tb-info-bg-subtle: #d2edf6;
  --tb-warning-bg-subtle: #fcf2da;
  --tb-danger-bg-subtle: #fcdae2;
  --tb-light-bg-subtle: #f9fbfc;
  --tb-dark-bg-subtle: #ced4da;
  --tb-primary-border-subtle: #b7d4ff;
  --tb-secondary-border-subtle: #cbc4ff;
  --tb-success-border-subtle: #9befd9;
  --tb-info-border-subtle: #a5dbed;
  --tb-warning-border-subtle: #f9e5b5;
  --tb-danger-border-subtle: #f9b5c5;
  --tb-light-border-subtle: #eff2f7;
  --tb-dark-border-subtle: #adb5bd;
  --tb-white-rgb: 255, 255, 255;
  --tb-black-rgb: 0, 0, 0;
  --tb-font-sans-serif: "Plus Jakarta Sans";
  --tb-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --tb-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --tb-body-font-family: var(--tb-font-sans-serif);
  --tb-border-width: 2px;
  --tb-text-black-700: #47464f;
  --tb-text-danger-500: #dc3545;
  --tb-text-primary-500: #7366ff;
  --tb-text-secondary-500: #f73164;
  --tb-text-success-500: #51bb25;
  --tb-text-info-500: #a927f9;
  --tb-text-light-500: #f4f4f4;
  --tb-text-dark-500: #2c323f;
  --tb-text-warning-500: #f8d62b;
  --bg-soft-mist: #f8f9fb;
}

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-ExtraLight.ttf") format("ttf")
    format("truetype");
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Light.ttf") format("ttf")
    format("truetype");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Regular.ttf") format("ttf")
    format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Medium.ttf") format("ttf")
    format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-SemiBold.ttf") format("ttf")
    format("truetype");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Bold.ttf") format("ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-ExtraBold.ttf") format("ttf")
    format("truetype");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}

* {
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.text-blue-800 {
  color: var(--tb-blue-800);
}

.bg-soft-mist {
  background: var(--bg-soft-mist);
}

.bg-blue-100 {
  background-color: var(--tb-blue-100);
}

.fw-extrabold {
  font-weight: 800;
}

.bg-blue-400 {
  background-color: var(--tb-blue-400);
}

.text-blue-400 {
  color: var(--tb-blue-400);
}

.border-blue-400 {
  border-color: var(--tb-blue-400);
}

.bg-green {
  background-color: var(--tb-green);
}

.btn-close {
  opacity: 1;
}

.bg-orange-700 {
  background: var(--tb-orange-700);
}

.bg-danger-700 {
  background: var(--tb-danger);
}

.bg-orange {
  background: var(--tb-orange);
}

.bg-gray-100 {
  background: var(--tb-gray-100);
}

.bg-purple-300 {
  background: var(--tb-purple-300);
}

.bg-purple-secondary {
  background: var(--tb-purple-secondary);
}

.text-top-tagbar {
  line-height: 15.12px;
  letter-spacing: 1.6px;
}

.text-purple-secondary {
  color: var(--tb-purple-secondary);
}

.text-color-orange {
  color: var(--tb-orange);
}

.text-purple-400 {
  color: var(--tb-purple-400);
}

.fs-30 {
  font-size: 30px;
}
.fs-20 {
  font-size: 20px;
}
.fs-24 {
  font-size: 24px;
}
.border-top-white {
  border-top: 1px solid #fff;
}

.border-1-gray-100 {
  border: 1px solid #f1f1f1;
}

.item-profile {
  background-color: #f1f4f8;
  padding-left: 16px;
  padding-right: 28px;
}

.user-information .name-profile {
  color: #47464f;
  line-height: 17.64px;
}

.user-information .position-profile {
  color: #88888f;
  line-height: 12.6px;
}

.container-product-mini-cart {
  border: 1px solid #e0e0e0;
  border-radius: 7px;
}

.list-group-item {
  padding: 10px 10px;
}

.text-midnight {
  color: #3d3d41 !important;
}

.text-purple-500 {
  color: var(--tb-purple-500);
}

.text-orange {
  color: var(--tb-orange);
}

.text-black-700 {
  color: var(--tb-text-black-700);
}


.text-danger-500{color: var(--tb-text-danger-500);}
.text-primary-500{color: var(--tb-text-primary-500);}
.text-secondary-500{color: var(--tb-text-secondary-500);}
.text-success-500{color: var(--tb-text-success-500);}
.text-info-500{color: var(--tb-text-info-500);}
.text-light-500{color: var(--tb-text-light-500);}
.text-dark-500{color: var(--tb-text-dark-500);}
.text-warning-500{color: var(--tb-text-warning-500);}

.input-step button {
  background: var(--tb-blue-light);
  color: var(--tb-gray-500);
  border-radius: 2px;
  padding-bottom: 9px !important;
}

.py-3 {
  padding-top: 15px;
  padding-bottom: 18px;
}

.pt-6 {
  padding-top: 66px;
}

.blue-light-200 {
  background: var(--tb-blue-200);
}

.blue-light-300 {
  background: var(--tb-blue-300);
}

.rounded-sm-5 {
  border-radius: 5px;
}

.text-button-dark {
  color: var(--tb-purple);
}

.btn-info {
  background: var(--tb-orange);
  border: 1px solid var(--tb-orange);
}

.bg-purple {
  background-color: var(--tb-purple) !important;
  border-color: var(--tb-purple) !important;
}

.page-wrapper {
  padding: 159px 0 58px;
}

.fs-22 {
  font-size: 22px;
}

.lh-sm,
.breadcrumb-item + .breadcrumb-item::before {
  line-height: 17.64px !important;
}

.breadcrumb-item > a {
  color: white;
}

.fw-regular {
  font-weight: 400;
}

.lh-21 {
  line-height: 21px;
}

.lh-27 {
  line-height: 27px;
}

.lh-30 {
  line-height: 30px;
}

.text-gray-500 {
  color: var(--tb-gray-500);
}

.text-gray-muted {
  color: #88888f;
}

.card {
  border: 1px solid var(--tb-gray-300);
  border-radius: 5px;
}

.h-112 {
  height: 120px;
}

.of-cover {
  object-fit: cover;
}

.btn-default {
  background: var(--tb-purple-secondary);
  border-radius: 5px;
  padding: 0.8rem 0.9rem;
  border: unset;
}

.card-code-disccount {
  width: 395px;
}

.form-control {
  border-radius: 5px;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--tb-border-color-translucent);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--tb-purple);
}

.form-select {
  border-width: 1px;
  border-color: #e7e7e7;
}

.form-control::placeholder {
  color: var(--tb-gray-200);
}

.container-order {
  border-bottom: 1px solid #fff;
}

.container-cart-review-order {
  gap: 50px;
}

.container-product-list {
  width: 70%;
}

.container-order-review {
  width: 30%;
}

.card-radio .form-check-label {
  background: #f8f9fb;
  border: unset;
  white-space: unset;
  padding: 21px;
  display: flex;
  flex-direction: column;
}

.card-radio .form-check-label:has(input[type="radio"]:checked) {
  border: 2px solid #6b72f7;
}

.w-109 {
  width: 138px;
}

.container-total-review-order {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.btn:hover {
  background: var(--tb-purple-secondary);
  border-color: var(--tb-purple-secondary);
  color: #fff !important;
}

.container-option-shipping input[type="radio"],
.container-option-address input[type="radio"] {
  width: 17px;
  height: 17px;
}

.container-option-shipping input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background-color: #30277d;
  border-radius: 50%;
  margin: auto;
}

.container-option-address input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  background-color: #30277d;
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: 24px;
  right: 24px;
}

.container-option-shipping input[type="radio"]::after {
  content: "";
  display: block;
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  margin: auto;
  border: 1px solid #e2e2e2;
}

.container-option-address input[type="radio"]::after {
  content: "";
  display: block;
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  margin: auto;
  border: 1px solid #e2e2e2;
}

.pt-45 {
  padding-top: 45px;
}

.nav-pills > li > a {
  color: #3d3d41;
  background-color: #f1f4f8;
}

.custom-nav .nav-link.active {
  background-color: #2e3bdd;
}

.arrow-navtabs .nav-item .nav-link.active:before {
  border-top-color: #2e3bdd;
}

.lh-24 {
  line-height: 24px;
}

.rounded-0 {
  border-radius: 0px;
}

.upload-area {
  border: 1px dashed #e1e1e1;
  cursor: pointer;
}

.upload-area p {
  color: #88888f;
}

.card-info-credit input::placeholder {
  color: #88888f;
}

.pb-6 {
  padding-bottom: 80px;
}

.banner-product-details {
  padding: 50px 0 1px;
}

.banner-product-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #30277d, #463e8b00);
  z-index: 1;
}

.banner-product-details h1 {
  font-size: 45px;
  line-height: 56.7px;
}

.productSwiper .swiper-slide.swiper-slide-thumb-active .product-thumb {
  border-color: var(--tb-purple);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: var(--tb-purple);
}

.lh-27 {
  line-height: 27px;
}

.lh-16 {
  line-height: 16px;
}

.discount-price {
  padding-right: 13px;
  border-radius: 0px 5px 5px 0px;
  padding-top: 1px;
  padding-left: 7px;
}

.shipping-product-detail {
  border: 1px solid #2e3bdd;
  border-radius: 15px;
}

.text-gray-600 {
  color: #6f6f74;
}

.box-call-us::after {
  content: "";
  width: 1px;
  height: 64px;
  background: #c9c9c9;
  position: absolute;
  right: 17px;
}

.tab-transfer {
  border-radius: 5px 0px 0px 5px !important;
}

.tab-yape {
  border-radius: 0px 5px 5px 0px !important;
}

.nav-tabs-custom {
  border-bottom: 2px solid #d9d9d9;
}

.nav-tabs-custom .nav-item .nav-link::after {
  background: #2e285d;
  height: 2px;
  bottom: -1px;
}

.nav-tabs-custom .nav-item .nav-link.active,
.nav-tabs-custom .nav-item .nav-link:hover {
  color: #2e285d !important;
}

.nav-tabs-custom .nav-link {
  background: unset !important;
}

#transit .table-bordered > :not(caption) > * {
  border-width: var(--tb-border-width) 0;
}

.flag-offer {
  background: #463e8b;
  width: 88px;
  height: 35px;
  position: absolute;
  left: -26px;
  top: 47px;
  border-radius: 3px;
  transform: rotate(269deg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  letter-spacing: 3px;
}

.flag-offer-out {
  background: #d32600;
  width: 128px;
  height: 35px;
  position: absolute;
  left:0;
  top: 10px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  letter-spacing: 1px;
}

.products-search input::placeholder {
  color: #47464f;
}

.container-img-product-grid {
  height: 287px;
}

.bar-edit-address {
  border-radius: 0px 0px 5px 5px;
}

.tabs-product-details .nav-item .active {
  color: var(--tb-purple) !important;
}

.w-60 {
  width: 60%;
}

.w-40 {
  width: 40%;
}

.bg-purple-100 {
  background: #f6f8fb;
}

.steps {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.steps .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  width: 41px;
  font-size: 22px;
  font-weight: 500;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #183f7f;
  transition: all 200ms ease;
  z-index: 1;
}

.steps .circle.active i {
  color: #183f7f !important;
}

.steps .progress-bar {
  position: absolute;
  top: 31%;
  left: 24px;
  transform: translateY(-50%);
  height: 1px;
  width: 91%;
  background: #dbe6f0;
  z-index: 0;
}

.progress-bar .indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #303482;
  transition: width 300ms ease;
}

.select2-container--open .select2-dropdown {
  left: 0;
  background: white;
  border: 1px solid #e1e1e1;
  padding: 13px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #e1e1e1 !important;
  border-radius: 5px !important;
  padding: 7px 3px !important;
  margin-bottom: 14px;
}

span.select2-selection.select2-selection--single {
  background: white;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  height: 100% !important;
}

.custom-select span.selection {
  height: 100% !important;
  display: block !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  padding: 7px 16px !important;
}

.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #2e285d !important;
}

[type="search"] {
  outline-offset: 0px !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  top: 87% !important;
  left: 38% !important;
}

#step-shipping {
  margin-top: 66px;
}

#cards-container,
#new-card-payment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.max-witdh {
  max-width: 504px;
}

.container-left-distributor h1 {
  color: #fff !important;
  font-size: 45px;
  line-height: 56.7px;
}

.container-categories-header {
  background-color: #E9ECF0;
  padding: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.btn:hover .ph-shopping-cart::before {
  color: white;
}

.container-categories-header
  a.ecommerce-navbar
  .navbar-nav
  .nav-item
  .nav-link.dropdown-toggle:after {
  display: none !important;
}

.range-slider {
  width: 100%;
  position: relative;
}

.range-slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  position: absolute;
  pointer-events: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #4a3fbf;
  border-radius: 50%;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.range-slider .track {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #463e8b;
  top: 9px;
}

.tabs-checkout .nav-pills .nav-item .active {
  color: white !important;
}

.container-categories {
  background-color: #f1f4f7;
}

.fs-28 {
  font-size: 28px;
}

.container-categories .row {
  row-gap: 60px;
}

.container-products img {
  width: 176px;
  height: 147px;
  object-fit: cover;
}

.carousel-container {
  height: 500px;
}

.carousel-item {
  background-size: cover;
  background-position: center;
  height: 300px;
  color: #fff;
  position: relative;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.carousel-control-prev,
.carousel-control-next {
  background-color: #463e8b;
  width: 37px;
  height: 37px;
  border-radius: 5px;
  opacity: 1;
  top: 40%;
}

.content-carousel h5 {
  font-size: 38px;
}

.content-carousel .subtitle {
  letter-spacing: 20px;
}

.content-carousel .description {
  width: 415px;
}

button.carousel-control-next {
  right: 20px;
}

button.carousel-control-prev {
  left: 20px;
}

.container-offers {
  margin-top: 100px;
}

.latest-slider .swiper-button-prev {
  right: 55px !important;
  left: unset;
}

.contact-info button {
  border: 1px solid #2e285d;
  width: 71%;
}

.container-executive::after,
.container-executive-products::after {
  content: "";
  width: 2px;
  height: 113px;
  background: #ebebeb;
  position: absolute;
  right: 0;
  top: 56px;
}

.content-account-bank img {
  width: 61px;
}

.content-account-bank p {
  line-height: 28px;
}

.bar-banner {
  height: 16px;
  width: 59%;
  position: absolute;
  bottom: 0;
}

.img-popup-home img {
  width: 370px;
}

.container-steps-distributor {
  border-radius: 10px;
}

.step-custom {
  background-color: #dbe6f0 !important;
  border-radius: 50% !important;
  width: 41px;
  height: 41px;
  padding: 0 !important;
}

.step-custom span {
  color: #463e8b;
}

.step-first {
  background-color: #463e8b !important;
  border-radius: 50% !important;
  width: 41px;
  height: 41px;
  padding: 0 !important;
}

.max-witdh-custom {
  max-width: 900px;
}

.w-33 {
  width: 33%;
}

.banner-main {
  height: 585px;
  padding-top: 99px;
}

.content-banner-home {
  padding: 0 98px !important;
}

.content-banner-home p {
  width: 404px;
  line-height: 24px;
}

.button-steps .button-next {
  width: 221px;
  padding-right: 0px;
  padding-left: 56px;
}

.button-steps .button-next span {
  background: #282b5d;
  border-radius: 5px;
  padding: 12px 17px;
}

.button-preview {
  width: 221px;
  background: #dbe5f0;
  padding-right: 56px;
  padding-left: 0px;
}

.button-preview span {
  background: #c2d1e2;
  border-radius: 5px;
  padding: 12px 17px;
}

.container-login {
  min-height: 100vh;
}

.step-1 .line {
  position: absolute;
  width: 100%;
  top: 26%;
  right: -111px;
  background-color: #dbe6f0 !important;
}

.step-2 .line {
  position: absolute;
  width: 100%;
  right: -111px;
  top: 26%;
  background-color: #dbe6f0 !important;
}

.step.active .step-custom,
.completed .step-custom {
  background-color: #463e8b !important;
}

.step.active .step-custom span,
.completed .step-custom span {
  color: white;
}

.banner-main {
  background-repeat: no-repeat;
  background-size: cover;
}

.content-banner-home a {
  width: 220px;
  border: 1px solid white;
  margin-top: 20px;
}

.fs-25 {
  font-size: 25px;
}

.card-product:hover {
  border: 1px solid #2e3bdd !important;
}

.content-banner-offer {
  height: 295px;
}

.content-banner-offer .subtitle {
  letter-spacing: 18px;
}

.content-banner-offer h5 {
  font-size: 38px;
}

.content-banner-offer .description {
  width: 415px;
}

.content-banner-offer {
  gap: 64px;
}

.bar-banner-offers {
  background-color: #463e8b;
  height: 16px;
  width: 50%;
  position: absolute;
  bottom: 0;
  border-radius: 5px 5px 0px 0px;
}

.zoom-container {
  overflow: hidden;
  position: relative;
}

.zoom-image {
  transition: transform 0.3s ease;
}

.zoom-container:hover .zoom-image {
  transform: scale(3);
}

.step .step-trigger {
  pointer-events: none;
}

@media (min-width: 1800px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1600px;
  }
}

#searchModal .search-widget-icon {
  position: absolute;
  top: 14px;
  left: 19px;
}

@media (max-width: 1300px) {
  .chart-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 1100px) {
  .card-account {
    height: 250px;
  }
}

@media (max-width: 1024px) {
  .h-112 {
    height: 100%;
  }

  .content-banner-offer {
    gap: 64px;
    flex-direction: column;
    height: auto;
    padding: 55px 20px;
  }

  .content-banner-offer .description {
    width: 100%;
  }

  .content-banner-offer img {
    width: 100%;
  }

  .card-code-disccount {
    width: 100%;
  }

  .container-cart-review-order {
    flex-direction: column;
    gap: 30px;
  }

  .container-order-review,
  .container-product-list {
    width: 100%;
  }

  .md-w-100 {
    width: 100% !important;
  }

  .md-flex-col {
    flex-direction: column;
  }

  .banner-product-details h1 {
    font-size: 30px;
    line-height: 34.7px;
  }

  .ecommerce-navbar {
    top: 0;
  }

  .banner-main {
    height: 780px;
  }

  .content-banner-home p {
    width: 100%;
  }

  .content-banner-home {
    flex-direction: column;
    gap: 20px;
  }

  .content-banner-home {
    padding: 0 20px !important;
  }

  .content-banner-home .content-img img {
    width: 253px;
    margin-top: 43px;
  }
}

@media (max-width: 768px) {
  .custom-nav {
    flex-direction: column;
  }

  .arrow-navtabs .nav-item .nav-link.active:before,
  .box-call-us::after,
  .container-left-distributor {
    display: none !important;
  }

  .nav-tabs-custom .nav-item .nav-link::after {
    height: 5px;
    bottom: 0px;
  }

  .tabs-scroll-container .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: scroll;
    white-space: nowrap;
  }

  .px-0-sm {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .content-tab {
    padding-left: 20px;
    padding-right: 20px;
  }

  .steps .circle {
    height: 30px;
    width: 30px;
  }

  .steps .circle.active i {
    font-size: 20px !important;
  }

  .steps .progress-bar {
    top: 26%;
    left: 27px;
    height: 1px;
    width: 86%;
  }

  .container-select-orders {
    margin-top: 20px;
  }

  .container-login {
    justify-content: center;
  }

  .ecommerce-navbar {
    top: 0;
  }

  .container-price-shop {
    flex-direction: column;
  }

  .content-carousel h5 {
    font-size: 25px;
    width: 219px;
  }

  button.carousel-control-prev {
    left: 11px;
  }

  button.carousel-control-next {
    right: 11px;
  }

  .container-executive,
  .container-executive-products {
    margin-bottom: 65px;
  }

  .container-categories .row {
    row-gap: 18px;
  }

  .container-tracking-shipping span {
    font-size: 11px !important;
  }

  .scrollable-form {
    max-height: 100%;
    overflow-y: unset;
  }

  .button-steps {
    gap: 13px;
  }

  .button-preview {
    padding-right: 21px;
  }

  .button-steps .button-next {
    padding-left: 21px;
  }

  span.title-step {
    font-size: 11px !important;
  }

  .step-1 .line {
    right: -47px;
  }

  .step-2 .line {
    right: -65px;
  }

  .img-carousel img {
    width: 83%;
  }

  .custom-arrow-carousel .swiper-button-next {
    right: 3px;
    width: 25px;
    height: 25px;
  }

  .custom-arrow-carousel .swiper-button-prev {
    left: 2px;
    width: 25px;
    height: 25px;
  }

  .modal-custom-header {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .modal-custom-body {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (min-width: 768px) {
  .productSwiper .swiper-slide {
    height: auto !important;
  }
}
