/* -------------------- Bootstrap overwrites -------------------- */
.h1, h1 {
    font-size: calc(1.325rem + .9vw);
}
.h2, h2 {
    font-size: calc(1.3rem + .6vw);
}
.h3, h3 {
    font-size: calc(1.275rem + .3vw);
}
.h4, h4 {
    font-size: 1.25rem;
}
.h5, h5 {
    font-size: 1rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}
  
.table>:not(:last-child)>:last-child>* {
    border-bottom-color: inherit;
}

.btn-link {
  text-decoration: none;
}
  
/* .form-floating>.form-control {
    padding: 1.25rem 0.75rem 0.625rem 0.75rem !important;
} */
.form-floating>.form-control, .form-floating>.form-select {
    height: calc(2.5rem + 2px);
    line-height: 1;
    padding-top: 1rem !important;
    border-radius: 0.25rem;
    padding-bottom: 0.5rem !important;
}
.form-floating>label {
    padding: 0.5rem 0.75rem;
    width: 100%;
}

.badge {
    font-weight: normal;
    border-radius: 2.8px;
    transition: color 0.25s ease-in-out,background-color 0.25s ease-in-out,border-color 0.25s ease-in-out,box-shadow 0.2s ease-in-out;
}

.border-top {
    border-top: 1px solid #e3e9ef !important;
}
.border-bottom {
    border-bottom: 1px solid #e3e9ef !important;
}

.breadcrumb {
    border-radius: 0px;
    background-color: rgba(255, 255, 255, 0);
    margin: 0px;
    font-size: 12px;
}

.breadcrumb::-webkit-scrollbar {
  display: none; 
}

.breadcrumb li.breadcrumb-item {
    flex: 0 0 auto;
}

.bg-secondary {
    background-color: #f5f5f5 !important;
}

.text-primary {
    color: var(--primary-color) !important;
  }
  
.nav-tabs .nav-link {
    font-weight: 600;
    margin-bottom: -1px;
    color: inherit;
}

.modal-header .close {
    font-size: 28px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
    display: none;
    float: left;
    padding: 0px;
    margin: 0px;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 2px;
    -webkit-box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.09);
}

.dropdown-menu:not(.megamenu):not(.dropdown-cart) li+li {
    border-top: 1px solid #e3e9ef;
}

.dropdown-menu:not(.megamenu):not(.dropdown-cart) li {
    padding-top: 4px;
    padding-bottom: 4px;
}

.dropdown-item:focus, .dropdown-item:hover {
    background-color: inherit;
}

.accordion-button:not(.collapsed) {
    color: inherit;
    background-color: inherit;
    box-shadow: none;
}
.accordion-button:focus {
    border-color: inherit;
    box-shadow: none;
}

.sticky-md-top {
    z-index: 1 !important;
}

.form-control:focus, 
.select2-container--bootstrap.select2-container--focus .select2-selection, .select2-container--bootstrap.select2-container--open .select2-selection,
.select2-container--bootstrap .select2-dropdown {
    border-color: var(--primary-color) !important;
    box-shadow: none !important;
}

.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-color) !important;
}

 /* -------------------- Main -------------------- */
body {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    background: #ffffff;
    color: var(--main-body-color);
    margin: 0px;
}

p:last-child {
    margin: 0px;
}
  
a, .link {
    color: var(--main-link-color);
    text-decoration: none;
}
  
  a:hover,
  a.active, .link:hover {
      color: var(--main-link-hover-color);
      text-decoration: none;
      outline: 0;
  }

  .link:hover {
    cursor: pointer;
    text-decoration: none !important;
  }

  .info-text a, div[id^="information-"] .container div[class^="col-"] a:not(.btn), div[id^="category-description"] a {
    color: var(--main-text-link-color);
    text-decoration: underline;
}
  
  ::placeholder {
      font-size: 0.75rem;
  }
  
  hr {
      margin: 0;
      border: 0;
      border-top: 1px solid #e3e9ef;
      opacity: 1;
  }
  
  div.required .col-form-label:before {
      content: '* ';
      color: #f00;
      font-weight: bold;
  }

  .btn svg, #information-menu svg, .breadcrumb svg, .alert svg, .step-item svg, .nav-link svg {
    vertical-align: text-bottom;
  }
  
  .spin {
    animation: rotate 2s infinite linear;
  }
  
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(359deg);
    }
  }

.js-module-header {
    font-size: var(--js-module-header-size);
    text-align: var(--js-module-header-text-align);
    padding: var(--js-module-header-padding);
    align-items: var(--js-module-header-align-items);
    justify-content: var(--js-module-header-justify-content);
    display: var(--js-module-header-display);
}

.breadcrumb-container {
    padding: var(--breadcrumb-padding);
    border-top: var(--breadcrumb-top-border);
    border-bottom: var(--breadcrumb-bottom-border);
    background-color: var(--breadcrumb-bg-color);

}

.img-sm, .img-sm img, .img-sm svg {
    width: 13px;
    height: 13px;
}
.img-md, .img-md img, .img-md svg {
    width: 14px;
    height: 14px;
}
.img-lg, .img-lg img, .img-lg svg {
    width: 16px;
    height: 16px;
}
.img-xl, .img-xl img, .img-xl svg {
    width: 18px;
    height: 18px;
}

.bg-banner {
    background-color: var(--banner-bg-color) !important;
}
.bg-brand {
    background-color: var(--brand-bg-color) !important;
}

/* -------------------- Mobile menu -------------------- */
#mm-close-button {
    left: 301px;
    display: block;
    color: red;
    position: fixed;
    background: #fdfdfd;
    border: 0px;
    width: 40px;
    height: 40px;
    top: 0px;
    z-index: 1999;
    padding: 7px;
    cursor: pointer;
}

#mobile-menu {
  position: fixed;
  width: 300px;
  height: 100%;
  background: #fdfdfd;
  top: 0px;
  left: 0px;
  overflow-y: scroll;
	z-index: 2000;
}

#mobile-menu ul {
  margin: 0;
  padding: 0;
}

#mobile-menu a:not(.mm-extra-info a), #mobile-menu div:not(.mm-extra-info, .mm-extra-info div, .side-menu) {
  text-decoration: none;
  display: block;
  padding: 1em 1em 1em 1.2em;
  outline: none;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
  letter-spacing: 1px;
  font-weight: 400;
  cursor: pointer;
}

#mobile-menu a.mm-show-all {
    font-weight: 600 !important;
}

#mobile-menu div.nav-link {
	background: #ececec;
    text-transform: uppercase;
    font-weight: 600;
    color: inherit;
}

#mobile-menu div.nav-link span {
    font-size: 11px;
    color: #8e8e8e;
	font-weight: 400;
}

#mobile-menu ul li {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e3e9ef;
}

#mobile-menu ul li a:hover {
  background-color: #efefef;
}

#mobile-menu li .mobile-menu-arrow {
  font-size: 1.5em;
  line-height: 0.25em;
}

#mobile-menu .hide-menu {
  margin-left: -300px;
 /* transition: all 0.1s ease;*/
}

#mobile-menu .show-menu {
  margin-left: 0 !important;
  /*transition: all 0.1s ease;*/
}

#mobile-menu .side-menu {
  position: absolute;
  top: 0px;
  background: #fdfdfd;
  width: 300px;
}

#mobile-menu .mm-extra-info {
    font-size: 12px;
}


/* -------------------- Desktop mega menu -------------------- */
.desktop-menu .nav-link {
  color: var(--desktop-menu-text-color);
  font-size: var(--desktop-menu-font-size);
  font-weight: var(--desktop-menu-font-weight);
}

.desktop-menu a.nav-link, .desktop-menu a.nav-link:active, .desktop-menu a.nav-link:hover {
    color: var(--desktop-menu-text-color) !important;
}

a.nav-link:active, .desktop-menu a.nav-link:hover {
    color: var(--desktop-menu-link-hover-color) !important;
}

.desktop-menu a.nav-link.show + span.bottom-arrow {
    width: 0px;
    height: 0px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    display: block;
    margin-left: calc(50% + -5px);
    transform: translateX(-50%);
    margin-bottom: -4px;
    margin-top: -4px;
}

.desktop-menu {
  margin-bottom: 0px;
  background-color: var(--desktop-menu-bg-color);
  border-top: var(--desktop-menu-top-border);
  border-bottom: var(--desktop-menu-bottom-border);
}

.desktop-menu a {
    color: var(--main-link-color) !important;
}

.desktop-menu a:hover,.desktop-menu a.active {
    color: var(--main-link-hover-color) !important;
}

.menu-large {
    position: static !important;
}

.megamenu {
    padding: 20px 20px;
    width: 100%;
}

.megamenu>div>li>ul {
    padding: 0;
    margin: 0;
}

.megamenu>div>li>ul>li {
    list-style: none;
}

.megamenu>div>li>ul>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    white-space: normal;
}

.megamenu>div>li>ul>li>a:hover,
.megamenu>div>li>ul>li>a:focus {
    text-decoration: none;
    background-color: #f5f5f5;
}

.megamenu.disabled>a,
.megamenu.disabled>a:hover,
.megamenu.disabled>a:focus {
    color: #999999;
}

.megamenu.disabled>a:hover,
.megamenu.disabled>a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
    cursor: not-allowed;
}

.megamenu.dropdown-header {
    color: #428bca;
    font-size: 18px;
}

.megamenu.dropdown-menu {
  margin-top: 0px;
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 1px solid #f1f4f7;
}


@media (max-width: 768px) {
    .megamenu {
        margin-left: 0;
        margin-right: 0;
    }

    .megamenu>li {
        margin-bottom: 30px;
    }

    .megamenu>li:last-child {
        margin-bottom: 0;
    }

    .megamenu.dropdown-header {
        padding: 3px 15px !important;
    }

    .navbar-nav .open .dropdown-menu .dropdown-header {
        color: #fff;
    }
}



/* -------------------- Extra class -------------------- */
.text-medium, .font-medium {
    font-weight: 500 !important;
}

/*.text-body {
    color: #606975 !important;
}*/

.text-bold {
    font-weight: bold !important;
}

.text-accent {
    color: #4e54c8 !important;
}

.font-size-xs {
    font-size: 13px !important;
}

.font-size-sm {
    font-size: 14px !important;
}

.font-size-md {
    font-size: 15px !important;
}
.font-size-xl {
    font-size: 16px !important;
}

.hr-light {
    opacity: 0.25;
}

.accordion.js-custom-accordion {
    --bs-gutter-x: 0rem;
}

.js-custom-accordion .card {
    border: 0px;
 }

/* ----------------- Sidebar ---------------------------------- */
/* .sidebar {
  box-shadow: 0 0.3rem 1.525rem -0.375rem rgba(0,0,0,0.1) !important;
} */
.sidebar li {
  border: none;
  padding: 12px 15px;
}
.sidebar li+li {
  border-top: 1px solid #e3e9ef !important;
}
.sidebar li a.active {
    font-weight: 600;
}

.quantity-input-box {
    width: 110px;
    min-width: 110px;
}

.quantity-input-box .btn-minus {
    border: 0px;
    background: #f0f0f0 !important;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding-left: 0px;
    padding-right: 0px;
    width: 25px;
}
.quantity-input-box .btn-plus {
    border: 0px;
    background: #f0f0f0 !important;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding-left: 0px;
    padding-right: 0px;
    width: 25px;
}

.quantity-input-box .input-group-text {
    border: 1px solid #f0f0f0 !important;
}

.quantity-input-box .form-control {
    border: 1px solid #f0f0f0;
    background-color: #fff;
}



/* -----------------  Header --------------------------------- */
header {
    background-color: #fff;
}

.icon-menu-title {
    font-size: 6px;
    text-transform: uppercase;
}

.brand-logo {
    width: auto;
    margin-right: 10px;
    /* max-height: 32px; */
}

.top-header {
    font-size: 13px;
    padding-bottom: 6px;
    padding-top: 6px;
    color: var(--header-t-text-color);
    background-color: var(--header-t-bg-color);
}

/* .top-header.style-1 {
    background-color: #f5f5f5;
    color: #626582;
    border-bottom: 1px solid #e1e7ec;
}
.top-header.style-2 {
    background-color: #252525;
    color: #fff;
} */

.top-header ul {
    margin-bottom: 0px;
}

.top-header ul li a {
    color: var(--header-t-text-color);
}

.top-header ul li a:active, .top-header ul li a:hover {
    color: var(--main-link-hover-color);
}


.h-label {
    position: absolute;
    top: -5px;
    left: 11px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    line-height: 12px;
}

.dropdown-cart {
  width: 100%;
  max-width: 360px;
}

.drop-cart-product-image {
    width: 60px;
}

.drop-cart-product-name {
    font-size: 14px;
}

.drop-cart-product-info.flex-grow-1 {
    padding-left: 10px;
    padding-right: 10px;
}

.drop-cart-product-options {
    font-size: 12px;
    color: #a5a5a5;
    margin-bottom: 5px;
}

.drop-cart-product-meta {
    margin-bottom: 10px;
    font-size: 13px;
}

.drop-cart-product-price {
    font-weight: 500;
    color: var(--main-price-color);
}

.drop-cart-product-remove {
    color: #a5a5a5;
}

.drop-cart-product-quantity {
    font-size: 12px;
    color: #a5a5a5;
}

.drop-cart-product {
    border-bottom: 1px solid #e6e6e6;
}

.drop-cart-totals {
    padding: 10px 0px;
}

.drop-cart-totals table {
    width: 100%;
}

.drop-cart-totals tr:last-child td {
    font-weight: 600;
}

.header-icon svg:not(#cart svg) {
    width: 18px;
    height: 18px;
}

/* -------------------- Cart popup -------------------- */
.cart-popup-right-col {
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important;
}


/* -------------------- Header search -------------------- */
#desktop-search {
    max-width: 500px;
}

#desktop-search .search-icon {
  position: absolute;
  right: 14px;
  top: calc(50% - 12px);
}

#desktop-search input {
    background: var(--search-input-bg-color);
    border: var(--search-input-border);
    padding: var(--search-input-padding);
    margin: var(--search-input-margin);
}

#desktop-search inpu:focus {
    border: 1px solid var(--primary-color);
}

.site-search {
    display: block;
    position: relative;
    width: 100%;
    height: 50px;
    transition: .3s;
    background-color: #fff;
    /* opacity: 0; */
    /* visibility: hidden; */
    /* z-index: 10; */
    padding: 0;
    border: 1px solid var(--primary-color);
    /* border-radius: 25px; */
    margin-bottom: 20px;
}

.site-search input {
    padding: 0px;
    width: calc(100% - 40px);
    height: 100%;
    margin: 0px;
    border: 0;
    background-color: #fff;
    /* color: #606975; */
    font-size: 16px;
    outline: 0;
    /* -webkit-border-radius: 25px;
    border-radius: 25px; */
}

.site-search .search-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -12px;
    z-index: 5;
}

.search-tools .clear-search {
    text-align: center;
    /* color: #f0f8ff; */
    text-decoration: underline;
    padding: 2px 5px;
    cursor: pointer;
}

.search-tools .close-search {
    text-align: center;
    /* color: #f0f8ff; */
    text-decoration: underline;
    padding: 2px 5px;
    font-weight: bold;
    cursor: pointer;
}

.search-popup, .search-popup input {
    cursor: pointer;
}

/* -------------------- Footer -------------------- */
footer {
    font-size: 13px;
}

footer .footer-t {
    color: var(--footer-t-text-color);
    border-radius: var(--footer-t-border-radius);
}

footer .footer-b {
    color: var(--footer-b-text-color);
    border-radius: var(--footer-b-border-radius);
}

footer .footer-t a, footer .footer-t a:active, footer .footer-t a:hover {
    color: var(--footer-t-text-color);
}

footer .footer-b a, footer .footer-b a:active, footer .footer-b a:hover {
    color: var(--footer-b-text-color);
}

footer a:active, footer a:hover {
    text-decoration: underline;
}

footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

footer ul>li {
    position: relative;
    margin-bottom: 5px;
}
footer ul>li.li-w-arrow {
    padding-left: 14px;
}

footer ul>li.li-w-arrow::before {
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    left: 3px;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 4px;
    border-color: transparent transparent transparent var(--footer-t-text-color);
    opacity: 0.5;
}

footer ul>li>a {
    display: inline-block;
    font-size: 14px;
    text-decoration: none;
}

.footer-t {
  background-color: var(--footer-t-bg-color);
}

.footer-b {
  background-color: var(--footer-b-bg-color);
}

/* -------------------- Product card -------------------- */
.product-card > a.grey-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,26,39,0.03);
    border-radius: 4px;
}

.product-card .card-img-top {
    position: relative;
}

.product-card {
    padding-bottom: 14px;
    border: 0;
    transition: all 0.15s ease-in-out;
}

.product-card .manufacturer {
	font-weight: 700;
    font-size: var(--product-grid-title-font-size);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.product-card .product-card-actions,
.product-card>.btn-wishlist {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1;
}

.product-card .badges-list {
    top: 10px;
    left: 10px;
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    z-index: 1;
}

.product-card .badge {
    margin: 1px 0px;
}

.product-info-details h1 {
    font-size: var(--product-title-font-size);
    font-weight: var(--product-title-font-weight);
}
.product-info-details .manufacturer:not(.product-card .manufacturer) {
    font-weight: 700;
    font-size: 18px;
    text-decoration: underline;
    display: block;
    margin-bottom: 3px;
}

.product-info-details .manufacturer:not(.product-card .manufacturer) a {
    color: var(--main-link-color) !important;
}

.product-info-details .manufacturer:not(.product-card .manufacturer) a:hover {
    text-decoration: underline;
}

.product-price .price, .product-info-details .price {
    color: var(--main-price-color);
    font-weight: var(--main-price-weight);
    white-space: nowrap;
}

.product-info-details .price:not(.product-card .price) {
    font-size: var(--main-price-font-size);
    white-space: nowrap;
}

.product-card img,
.product-card figure {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    padding: 5px;
}

.product-card .card-body {
    position: relative;
    background-color: #fff;
    z-index: 1;
    border-radius: 5px;
}

.product-card div.out-of-stock span {
    border: 1px solid #ced4db;
    border-radius: 4px;
    margin: 0 20px;
    background: #fff;
    padding: 5px 0px;
    display: block;
    text-transform: uppercase;
    font-weight: 600;
}

.product-card div.out-of-stock {
    text-align: center;
    color: #000;
    width: 100%;
    top: calc(50% - 40px);
    z-index: 2;
    opacity: 0.85;
    position: absolute;
}

.product-meta {
    transition: color 0.25s ease-in-out;
    color: #757575;
    text-decoration: none !important;
    font-size: 12px;
    line-height: 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-bottom: 5px;
}

.product-title > a {
    transition: color 0.25s ease-in-out;
    color: #373f50;
    text-decoration: none !important;
    font-size: var(--product-grid-title-font-size);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .product-price {
    font-size: var(--product-grid-price-font-size);
}

.custom-option-label {
    position: relative;
    width: auto;
    min-width: 32px;
    height: 32px;
    margin-bottom: 0;
    transition: color 0.2s ease-in-out,border-color 0.2s ease-in-out;
    border: 1px solid #e3e9ef;
    border-radius: 3px;
    color: #4b566b;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
    line-height: 28px;
    cursor: pointer;
    padding: 0px 5px;
}

.custom-option {
    padding-left: 0;
}

.custom-option.custom-control-inline {
    margin-right: 4px;
}

.custom-control-input:checked ~ .custom-option-label {
    border-color: #fe696a;
    color: #fe696a;
}

.star-rating {
    display: inline-block;
    white-space: nowrap;
    vertical-align: middle;
    color: var(--primary-color);
    font-size: 11px;
    line-height: 2;
    letter-spacing: -2px;
}

.star-rating.big-stars svg, .star-rating.big-stars img {
    width: 22px;
    height: 22px;
}

.btn-wishlist {
    width: 32px;
    height: 32px;
    padding: 0 !important;
    transition: color 0.25s ease-in-out,background-color 0.25s ease-in-out,border-color 0.25s ease-in-out,box-shadow 0.2s ease-in-out;
    border: 0;
    border-radius: 50%;
    background-color: #f3f5f9;
    color: #373f50;
    text-align: center;
}

.badge-new {
    background-color: var(--badge-new-bg-color);
    color: var(--badge-new-color);
    font-weight: var(--badge-font-weight);
}

.badge-special {
    background-color: var(--badge-special-bg-color);
    color: var(--badge-special-color);
    font-weight: var(--badge-font-weight);
}

.badge-fast-delivery {
    background-color: var(--badge-fast-delivery-bg-color);
    color: var(--badge-fast-delivery-color);
    font-weight: var(--badge-font-weight);
}

.share-like-block {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
}
.share-like-block div {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f3f5f9;
    text-align: center;
    padding: 6px;
}

/* -------------------- Contact Page -------------------- */
#information-contact .contacts svg {
    width: 28px;
    height: 28px;
}
/* -------------------- Product Page -------------------- */
.add-to-cart-btn div {
    margin-right: 1px;
    border-right: 1px solid var(--bs-btn-hover-border-color);
    font-size: 13px;
    width: 60px;
    max-width: 60px;
    min-width: 60px;
    text-align: right;
}

.add-to-cart-btn select {
    border: none !important;
    color: white !important;
    width: 40px;
    padding-left: 0px;
    padding-right: 20px;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='white' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='0' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") no-repeat right 0.25rem center/14px 12px !important;
    text-align: right;
    direction: rtl;
}

.add-to-cart-btn select:active {
    direction: ltr;
}

.add-to-cart-btn select:focus {
    border: none !important;
    box-shadow: none !important;
}

.add-to-cart-btn button {
    min-width: 280px;
    min-height: 44px;
}

.product-info-details a:not(.product-card a), .link-to-review {
    color: var(--main-text-link-color);
    cursor: pointer;
}

.read-more {
    background: none;
    border: none;
    padding: 0px;
    text-decoration: underline;
    color: var(--main-text-link-color);
}
.readall-hide:after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 25px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), white 85%);
}

.images-thumbnails img {
    margin-right: 5px;
}
.images-thumbnails a:last-child img {
    margin-right: 0px;
}

.images-thumbnails img.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.active .card.product-card {
    border: 1px solid var(--primary-color);
}

.product-product .size-table {
    display: none;
}

#accordionblock .accordion-button {
    font-weight: 600;
    background-color: inherit;
}

#accordionblock .accordion-button:not(.collapsed) {
    color: inherit;
    background-color: inherit;
    /* box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color); */
}

#accordionblock .accordion-header {
    background: #fcfcfc;
}

#accordionblock .accordion-item:first-child {
    border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

#accordionblock a:not(.btn, .page-link) {
    text-decoration: underline;
    color: var(--main-text-link-color);
}

div[id^="input-option"] .form-check-inline .form-check-input:checked[type=radio] + label.form-check-label img {
    border-color: var(--primary-color);
}

div[id^="input-option"] .form-check-inline .form-check-input:checked[type=radio] + label.form-check-label span.position-relative::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    content: ' ';
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: 8px 8px;
}

#product div:not(.form-floating) label.col-form-label {
    font-weight: 500;
    padding-top: 0px;
    padding-bottom: 0px;
}

#product input[id^="button-upload"] {
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
}

/* -------------------- Category Page -------------------- */

#category-description .more-text, #category-bottom-description .more-text{
  display: none;
}

/* -------------------- Swiper Slider -------------------- */
.swiper-viewport {
    margin-bottom: -20px !important;
    padding-bottom: 50px;
}

.swiper-slide .from-top,
.swiper-slide .from-bottom,
.swiper-slide .from-left,
.swiper-slide .from-right,
.swiper-slide .scale-up,
.swiper-slide .scale-down {
    transition: all .45s .3s ease-in-out;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-slide .from-top {
    -webkit-transform: translateY(-45px);
    -ms-transform: translateY(-45px);
    transform: translateY(-45px);
}

.swiper-slide .from-bottom {
    -webkit-transform: translateY(45px);
    -ms-transform: translateY(45px);
    transform: translateY(45px);
}

.swiper-slide .from-left {
    -webkit-transform: translateX(-45px);
    -ms-transform: translateX(-45px);
    transform: translateX(-45px);
}

.swiper-slide .from-right {
    -webkit-transform: translateX(45px);
    -ms-transform: translateX(45px);
    transform: translateX(45px);
}

.swiper-slide .scale-up {
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.swiper-slide .scale-down {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.swiper-slide .delay-1 {
    transition-delay: .5s;
}

.swiper-slide .delay-2 {
    transition-delay: .7s;
}

.swiper-slide .delay-3 {
    transition-delay: .9s;
}

.swiper-slide .delay-4 {
    transition-delay: 1.1s;
}

.swiper-slide-active .from-top,
.swiper-slide-active .from-bottom {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.swiper-slide-active .from-left,
.swiper-slide-active .from-right {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
}

.swiper-slide-active .scale-up,
.swiper-slide-active .scale-down {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

/* .swiper-slide .product-card .card-body-hidden-desktop, .swiper-slide .product-card .card-body-hidden-mobile {
    opacity: 0 !important;
    visibility: hidden !important;
} */



/* -------------------- Pagination -------------------- */
.pagination .page-link {
    position: relative;
    display: block;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.25;
    color: #373f50;
    background-color: var(--secondary-color);
    border: 1px solid rgba(0,0,0,0);
    border-radius: 5px;
    font-size: 15px;
    transition: color 0.25s ease-in-out,border-color 0.25s ease-in-out,background-color 0.25s ease-in-out;
}

.pagination .page-link:hover {
    z-index: 2;
    color: var(--primary-btn-color);
    text-decoration: none;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-link>i {
    margin-top: -2px;
    vertical-align: middle;
}

/* .pagination .page-link:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 0 rgba(254,105,106,0.25);
} */
/* .pagination .page-item.active>.page-link {
    box-shadow: 0 0.5rem 1.125rem -0.425rem rgba(254, 165, 105, 0.9);
}*/

.pagination .page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
} 

.pagination .page-item {
    margin: 2.4px;
}

.pagination .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--primary-color);
    border-color: rgba(0,0,0,0);
}

/* -------------------- Toolbar -------------------- */
.toolbar, .toolbar .btn, .toolbar select {
    font-size: 13px;
}
.toolbar .form-select {
    border-radius: var(--bs-btn-border-radius);
}


/* -------------------- Steps -------------------- */
.steps {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.step-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    transition: color 0.25s ease-in-out;
    text-align: center;
    text-decoration: none !important;
    
}
.step-item, .step-item.active, .step-item:active {
    color: #7d879c !important;
}
.step-item:hover {
    color: #4b566b !important;
}
.step-item.active.current {
    color: #373f50 !important;;
    pointer-events: none;
    font-weight: 500;
}
.step-item.active .step-count, .step-item.active .step-progress {
    color: #fff;
    background-color: var(--primary-color);
}
.step-item:first-child .step-progress {
    border-radius: 2px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.step-item:last-child .step-progress {
    border-radius: 2px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.step-count, .step-progress {
    color: #4b566b;
    background-color: #f3f5f9;
}
.step-progress {
    position: relative;
    width: 100%;
    height: 5px;
}
.step-count {
    position: absolute;
    top: -12px;
    left: 50%;
    width: 26px;
    height: 26px;
    margin-left: -13px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 26px;
}
.step-label {
    padding-top: 25px;
}
.step-label>i {
    margin-top: -4px;
    margin-right: 7px;
    font-size: 18px;
    vertical-align: middle;
}

/* -------------------- Cart / Checkout -------------------- */
.cart-controll-buttons {
    font-size: 12px;
    margin-top:10px;
}

.cart-controll-buttons svg, .cart-controll-buttons img {
    width: 12px;
    height: 12px;
    margin-right: 5px;
    vertical-align: middle;
}

#js-checkout-header .js-checkout-heder-right svg, #js-checkout-header .js-checkout-heder-right svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.floating-cart-total {
    font-size: 22px;
    font-weight: bold;
}

#js-checkout-form .table-responsive tr:first-child td {
  border-top: none;
}
.checkout-cart .total-item:last-child {
    font-weight: 600;
font-size: 18px;
    border-top: 1px solid #e3e9ef;
    padding-top: 5px;
    margin-top: 10px;
}
table.totals tr:last-child td:last-child {
    font-size: 18px;
    font-weight: 600;
}

label.active {
    border: 1px solid var(--primary-color) !important;
}

/* -------------------- Fancy box 3  -------------------- */
.fancybox-thumbs__list a:before {
    border: 2px solid var(--primary-color) !important;
}
.fancybox-thumbs__list a {
    border-radius: 4px !important;
}
