/* GLOBALS */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  outline: 0;
}
button,
input,
select,
textarea {
  outline: none !important;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}
strong {
  font-weight: 700 !important;
}
img {
  max-width: 100%;
  height: auto;
  user-select: none;
}
a.link-underline:hover {
  -webkit-text-decoration-color: inherit !important;
  text-decoration-color: inherit !important;
}
.fw-300 {
  font-weight: 300 !important;
}
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-900 {
  font-weight: 900 !important;
}
.rounded-10 {
  border-radius: 10px;
}
/*::-webkit-scrollbar{
  background-color: #000;
}
::-webkit-scrollbar-thumb{
  background-color: @green;
}*/
/*
.col-sm-20,
.col-md-20,
.col-lg-20,
.col-xl-20,
.col-xxl-20{
	position: relative;
	padding-right: 15px;
	padding-left: 15px;
}


@media (min-width: 576px) {
	.col-sm-20 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (min-width: 768px) {
	.col-md-20 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (min-width: 992px) {
	.col-lg-20 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (min-width: 1200px){
	.col-xl-20 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (min-width: 1400px){
	.col-xxl-20 {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

*/
.header {
  width: 100%;
  overflow-anchor: none;
  top: 0;
  z-index: 999;
  background-color: #fff;
  position: sticky;
  transition: 0.2s;
  padding: 10px 0;
  box-shadow: 0 0 6px 4px rgba(0, 0, 0, 0.05);
}
@media (min-width: 992px) {
  .header {
    padding: 10px var(--spacing-small);
  }
}
.header .logo img {
  height: auto;
}
@media (min-width: 992px) {
  .header .logo img {
    width: 120px;
  }
}
@media (min-width: 1500px) {
  .header .logo img {
    width: 130px;
  }
}
.header a {
  color: inherit;
  text-decoration: none;
}
.header .header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--color-primary);
  width: 32px;
  height: 36px;
}
@media (min-width: 500px) {
  .header .header-button {
    width: 40px;
  }
}
@media (min-width: 1200px) {
  .header .header-button {
    width: 30px;
    height: 36px;
  }
  .header .header-button .icon-heart-empty:hover {
    color: var(--color-error) !important;
  }
}
.header .header-button i {
  font-size: 1.2rem;
  line-height: 1rem;
}
@media (min-width: 1200px) {
  .header .header-button i {
    font-size: 1.2rem;
  }
}
.header .header-button .count {
  font-size: 0.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  min-width: 16px;
  height: 12px;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 50%;
  transform: translate(120%, -130%);
}
@media (max-width: 1199px) {
  .header .menu-wrapper {
    position: fixed;
    inset: 0;
    z-index: 99999999;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
}
@media (max-width: 1199px) {
  .header .menu-wrapper .inner {
    position: fixed;
    z-index: 1;
    inset: 0;
    width: 400px;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background-color: #fff;
  }
}
@media (min-width: 1200px) {
  .header .menu-wrapper .inner {
    margin-left: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.header .menu-wrapper .close-bt {
  position: absolute;
  right: 20px;
  cursor: pointer;
  top: 15px;
  z-index: 0;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: 0.2s;
  text-align: center;
  color: #fff;
  background-color: #000;
}
@media (min-width: 1200px) {
  .header .menu-wrapper .close-bt {
    display: none;
  }
}
.header .menu-wrapper .bg-menu {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: 1s;
  opacity: 0;
}
@media (min-width: 1200px) {
  .header .menu-wrapper .bg-menu {
    display: none;
  }
}
@media (max-width: 1199px) {
  .header .menu-wrapper .main-menu {
    width: 100%;
    max-width: 100%;
    padding: 50px 30px;
    flex: 1 0 0;
    background-color: var(--color-primary);
  }
}
.header .menu-wrapper .main-menu .menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1200px) {
  .header .menu-wrapper .main-menu .menu-list {
    display: flex;
  }
}
.header .menu-wrapper .main-menu .menu-item {
  margin: 0;
  padding: 0;
}
@media (min-width: 1200px) {
  .header .menu-wrapper .main-menu .menu-item {
    padding: 0 5px;
    font-size: 0.7rem;
    line-height: 1;
    position: relative;
  }
}
@media (min-width: 1400px) {
  .header .menu-wrapper .main-menu .menu-item {
    padding: 0 7px;
    font-size: 0.875rem;
    line-height: 1;
  }
}
@media (min-width: 1200px) {
  .header .menu-wrapper .main-menu .menu-item.has-submenu .menu-link {
    padding-right: 1rem;
    position: relative;
  }
  .header .menu-wrapper .main-menu .menu-item.has-submenu .menu-link:after {
    display: block;
    content: '\e800';
    font-family: "fontello";
    font-size: 0.7rem;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
  }
  .header .menu-wrapper .main-menu .menu-item.has-submenu:hover .submenu {
    max-height: 312px;
    visibility: visible;
    opacity: 1;
  }
}
@media (max-width: 1199px) {
  .header .menu-wrapper .main-menu .menu-item.has-submenu {
    padding-right: 1rem;
    position: relative;
  }
  .header .menu-wrapper .main-menu .menu-item.has-submenu:after {
    display: block;
    content: '\e802';
    font-family: "fontello";
    font-size: 0.7rem;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
  }
  .header .menu-wrapper .main-menu .menu-item.has-submenu.opened .submenu {
    visibility: visible;
    transform: translateX(0);
  }
}
.header .menu-wrapper .main-menu .menu-link {
  display: flex;
  user-select: none;
  font-weight: 500;
  align-items: center;
  gap: 5px;
}
@media (max-width: 1199px) {
  .header .menu-wrapper .main-menu .menu-link {
    padding: 12px 0;
    color: #fff;
  }
}
@media (min-width: 1200px) {
  .header .menu-wrapper .main-menu .menu-link {
    padding-bottom: 5px;
    margin-top: 5px;
    max-width: 16ch;
    color: var(--color-text);
  }
  .header .menu-wrapper .main-menu .menu-link:hover {
    color: var(--color-primary);
  }
}
.header .menu-wrapper .main-menu .menu-link .icon-category {
  display: block;
  width: 30px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 1199px) {
  .header .menu-wrapper .main-menu .menu-link .icon-category {
    filter: brightness(0) invert(1);
    width: 30px;
  }
}
.header .menu-wrapper .main-menu .submenu {
  transition: 0.2s;
  background-color: var(--color-primary);
}
@media (max-width: 1199px) {
  .header .menu-wrapper .main-menu .submenu {
    padding: 20px 30px 50px ;
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    max-width: 100%;
    z-index: 10;
    height: 100%;
    visibility: hidden;
    transform: translateX(-100%);
    overflow-y: auto;
  }
}
@media (min-width: 1200px) {
  .header .menu-wrapper .main-menu .submenu {
    position: absolute;
    z-index: 10;
    top: 100%;
    width: 240px;
    left: 0;
    background-color: var(--color-primary);
    color: #000;
    box-shadow: 0 0 10px 6px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 5px 20px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow-y: auto;
  }
  .header .menu-wrapper .main-menu .submenu::-webkit-scrollbar {
    width: 0.6rem;
  }
  .header .menu-wrapper .main-menu .submenu::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .header .menu-wrapper .main-menu .submenu::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 40px;
  }
}
.header .menu-wrapper .main-menu .submenu .submenu-mobile-title {
  font-size: 1rem;
  color: #fff;
  display: flex;
  user-select: none;
  font-weight: 700;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  cursor: pointer;
}
.header .menu-wrapper .main-menu .submenu .submenu-mobile-title .icon-category {
  display: block;
  width: 30px;
  max-width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}
.header .menu-wrapper .main-menu .submenu .back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.9rem;
  color: #fff;
  background-color: #000;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 5;
  cursor: pointer;
}
.header .menu-wrapper .main-menu .submenu .submenu-link {
  color: #fff;
  user-select: none;
  line-height: 1;
  padding: 0;
}
@media (min-width: 1200px) {
  .header .menu-wrapper .main-menu .submenu .submenu-link {
    display: block;
    margin: 0 0 20px;
  }
  .header .menu-wrapper .main-menu .submenu .submenu-link:hover {
    text-decoration: underline;
  }
}
@media (max-width: 1199px) {
  .header .menu-wrapper .main-menu .submenu .submenu-link {
    display: block;
    padding: 15px 0;
    line-height: 1;
  }
}
.header .menu-wrapper .secondary-menu {
  position: relative;
}
@media (max-width: 1199px) {
  .header .menu-wrapper .secondary-menu {
    width: 100%;
    max-width: 100%;
    padding: 30px 30px 20px;
  }
}
.header .menu-wrapper .secondary-menu .mobile-link {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.header .menu-wrapper .secondary-menu .secondary-menu-link {
  font-size: 1rem;
  line-height: 1;
  color: #000;
  user-select: none;
  padding: 0;
  display: block;
  margin: 0 0 15px;
}
@media (min-width: 1200px) {
  .header .menu-wrapper .secondary-menu .secondary-menu-link:hover {
    text-decoration: underline;
  }
}
.header .menu-wrapper .secondary-menu .secondary-menu-buton {
  cursor: pointer;
  font-weight: 500;
}
@media (max-width: 1199px) {
  .header .menu-wrapper .secondary-menu .secondary-menu-buton {
    font-size: 1rem;
    line-height: 1;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
}
@media (min-width: 1200px) {
  .header .menu-wrapper .secondary-menu .secondary-menu-buton {
    font-size: 0.7rem;
    height: 36px;
    line-height: 36px;
  }
}
@media (min-width: 1400px) {
  .header .menu-wrapper .secondary-menu .secondary-menu-buton {
    font-size: 0.875rem;
  }
}
.header .menu-wrapper .secondary-menu .secondary-menu-buton i {
  font-size: 0.7rem;
  line-height: 1;
  color: var(--color-primary);
}
@media (max-width: 1199px) {
  .header .menu-wrapper .secondary-menu .secondary-menu-buton i {
    color: var(--color-primary);
  }
  .header .menu-wrapper .secondary-menu .secondary-menu-buton i:before {
    content: '\e802';
  }
}
@media (min-width: 1200px) {
  .header .menu-wrapper .secondary-menu .dropdown {
    position: absolute;
    z-index: 10;
    top: 100%;
    margin-top: 10px;
    right: 0;
    width: 460px;
    background-color: #fff;
    color: #000;
    box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 5px 20px;
    overflow-y: auto;
  }
  .header .menu-wrapper .secondary-menu .dropdown::-webkit-scrollbar {
    width: 0.6rem;
  }
  .header .menu-wrapper .secondary-menu .dropdown::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .header .menu-wrapper .secondary-menu .dropdown::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 40px;
  }
}
@media (min-width: 1200px) {
  .header .bt-open-account-menu {
    position: relative;
    padding-right: 10px;
    width: auto;
  }
  .header .bt-open-account-menu:before {
    display: block;
    font-family: "fontello", sans-serif;
    content: '\e800';
    font-size: 0.7rem;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.header .dropdown-account-menu {
  display: none;
}
@media (min-width: 1200px) {
  .header .dropdown-account-menu {
    position: absolute;
    z-index: 10;
    top: 100%;
    margin-top: 10px;
    right: 0;
    width: 200px;
    background-color: #fff;
    color: #000;
    box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 5px 20px;
    overflow-y: auto;
  }
}
.header .dropdown-account-menu a {
  font-size: 1rem;
  line-height: 1;
  color: #000;
  user-select: none;
  padding: 0;
  display: block;
  margin: 0 0 15px;
}
@media (min-width: 1200px) {
  .header .dropdown-account-menu a:hover {
    text-decoration: underline;
  }
}
.nav-toggle {
  height: 38px;
  line-height: 34px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  z-index: 3;
  position: relative;
}
.nav-toggle span {
  margin-top: -1px;
  transform: translateX(7px);
}
.nav-toggle span,
.nav-toggle span:after,
.nav-toggle span:before {
  right: 16px;
  top: 50%;
  height: 2px;
  width: 22px;
  position: absolute;
  display: block;
  content: '';
  background-color: var(--color-primary);
}
.nav-toggle span:after {
  right: 0;
  top: -8px;
}
.nav-toggle span:before {
  right: 0;
  top: 8px;
}
@media (max-width: 1199px) {
  body.nav-opened {
    height: 100dvh;
    overflow: hidden;
  }
  body.nav-opened .header .menu-wrapper {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  body.nav-opened .header .menu-wrapper .bg-menu {
    opacity: 1;
  }
  body.nav-opened .header .nav-toggle span {
    background: transparent !important;
  }
  body.nav-opened .header .nav-toggle span:before {
    transform: rotate(45deg);
    top: 0;
  }
  body.nav-opened .header .nav-toggle span:after {
    transform: rotate(-45deg);
    top: 0;
  }
}
.header-search-bar {
  --search-filter: 70px;
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .header-search-bar {
    --search-filter: 200px;
  }
}
.header-search-bar .search-filter {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-mov);
  color: #fff;
  border-radius: 4px 0 0 4px;
  flex: 0 0 var(--search-filter);
  font-size: 0.9rem;
}
@media (min-width: 576px) {
  .header-search-bar .search-filter {
    flex: 0 0 var(--search-filter);
    font-size: 1rem;
  }
}
.header-search-bar .search-bar {
  flex: 1 0 0;
  min-width: 100px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 0 4px 4px 0;
  display: flex;
  gap: 10px;
  padding: 0 20px;
}
.header-search-bar .input-search {
  background-color: transparent;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  box-shadow: none;
  border-radius: 4px;
  height: 44px;
  line-height: 44px;
  padding: 0;
  flex: 1 0 0;
  border: none;
  color: #fff;
  min-width: 50px;
}
.header-search-bar .input-search:-moz-placeholder {
  color: #fff;
}
.header-search-bar .input-search::-moz-placeholder {
  color: #fff;
}
.header-search-bar .input-search:-ms-input-placeholder {
  color: #fff;
}
.header-search-bar .input-search::-webkit-input-placeholder {
  color: #fff;
}
.header-search-bar .buton-search {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  cursor: pointer;
  border: none;
  box-shadow: none;
  background-color: transparent;
  color: #fff;
  height: 44px;
  line-height: 44px;
  padding: 0;
  border-radius: 50%;
}
.popup-search {
  top: 100%;
  position: absolute;
  left: 0;
  z-index: 1050;
  width: 100%;
  display: none;
}
.popup-search.is-open {
  display: block;
}
.popup-search.has-backdrop:before {
  display: none;
}
.popup-search-backdrop {
  display: block;
  position: fixed;
  inset: 0;
  top: var(--header-height);
  width: 100%;
  height: 100dvh;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.popup-search:before {
  display: block;
  content: '';
  position: fixed;
  inset: 0;
  top: var(--header-height);
  width: 100%;
  height: 100dvh;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.popup-search .popup-search-wrapper {
  background-color: #fff;
  box-shadow: 1px 6px 18px -12px rgba(0, 0, 0, 0.75);
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  padding: 10px 0 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .popup-search .popup-search-wrapper {
    padding: 10px var(--search-filter);
  }
}
.popup-search .content-search {
  background-color: #fff;
  width: 100%;
  max-height: 450px;
  overflow-y: auto;
}
.popup-search .content-search::-webkit-scrollbar {
  width: 0.4rem;
}
.popup-search .content-search::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.popup-search .content-search::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 40px;
}
/* montserrat-300 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('../font/montserrat-v31-latin_latin-ext-300.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-regular - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../font/montserrat-v31-latin_latin-ext-regular.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-500 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../font/montserrat-v31-latin_latin-ext-500.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-600 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('../font/montserrat-v31-latin_latin-ext-600.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-700 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../font/montserrat-v31-latin_latin-ext-700.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-800 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  src: url('../font/montserrat-v31-latin_latin-ext-800.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-900 - latin_latin-ext */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  src: url('../font/montserrat-v31-latin_latin-ext-900.woff2') format('woff2');
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.footer {
  background-color: #000;
  position: relative;
  color: #fff;
  padding: var(--spacing-large) 0;
}
@media (max-width: 991px) {
  .footer {
    text-align: center;
  }
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer .links a {
  display: table;
  margin: 0 auto 18px;
}
@media (min-width: 992px) {
  .footer .links a {
    display: table;
    margin: 0 0 10px;
  }
}
.footer .links a:hover {
  text-decoration: underline;
}
.footer .social {
  display: flex;
}
@media (max-width: 991px) {
  .footer .social {
    justify-content: center;
  }
}
.footer .social a {
  display: inline-flex;
  color: var(--color-primary);
  font-size: 1.4rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0);
}
.footer .social a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.footer .copy {
  font-size: 0.8rem;
  font-weight: 300;
}
.footer .back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  background: transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
}
.footer .back-to-top:hover {
  color: var(--color-primary);
  background-color: #fff;
}
:root {
  --color-text: #1F1F1F;
  --color-primary: #009534;
  --color-secondary: #E6008C;
  --color-mov: #3C289B;
  --color-mov2: #8d90d1;
  --color-cyan: #00B4E6;
  --color-error: #E01A1C;
  --color-valid: #009534;
  --color-greendark: #23423B;
  --color-greydark: #464646;
  --color-mute: #B7B7B7;
}
.bg-primary {
  background-color: var(--color-primary) !important;
}
.bg-secondary {
  background-color: var(--color-secondary) !important;
}
.bg-greendark {
  background-color: var(--color-greendark);
}
.bg-mov {
  background-color: var(--color-mov);
}
.bg-mov2 {
  background-color: var(--color-mov2);
}
.bg-cyan {
  background-color: var(--color-cyan);
}
.bg-white {
  background-color: #fff;
}
.bg-grey {
  background-color: var(--color-greydark);
}
.bg-mute {
  background-color: #E4E2E2;
}
.bg-black {
  background-color: #000;
}
.color-white {
  color: #fff !important;
}
.color-primary {
  color: var(--color-primary) !important;
}
.color-secondary {
  color: var(--color-secondary) !important;
}
.color-mov {
  color: var(--color-mov) !important;
}
.color-mov2 {
  color: var(--color-mov2) !important;
}
.color-greendark {
  color: var(--color-greendark) !important;
}
.color-cyan {
  color: var(--color-cyan) !important;
}
.color-mute {
  color: var(--color-mute) !important;
}
.color-inherit {
  color: inherit;
}
.color-text {
  color: var(--color-text) !important;
}
.color-black {
  color: #000 !important;
}
.color-error,
.color-danger {
  color: var(--color-error) !important;
}
.color-valid {
  color: var(--color-valid) !important;
}
.small {
  font-size: 0.75rem;
  line-height: calc(6px + 2ex);
}
.fs-xlarge {
  font-size: 2.6rem;
  line-height: 1;
}
@media (min-width: 576px) {
  .fs-xlarge {
    font-size: 4rem;
    line-height: calc(10px + 1.4ex);
  }
}
/*32px*/
h1,
.fs-large {
  font-size: 1.5rem;
  line-height: 1;
}
@media (min-width: 576px) {
  h1,
  .fs-large {
    font-size: 2rem;
  }
}
/*24px*/
h2,
.fs-xmedium {
  font-size: 1.3rem;
  line-height: 1.1;
}
@media (min-width: 576px) {
  h2,
  .fs-xmedium {
    font-size: 1.5rem;
  }
}
/*19px*/
h4,
.fs-medium {
  font-size: 1rem;
  line-height: 1.2;
}
@media (min-width: 576px) {
  h4,
  .fs-medium {
    font-size: 1.1875rem;
  }
}
.fs-normal {
  font-size: 1rem;
}
/*14px*/
.fs-small {
  font-size: 0.875rem;
  line-height: 1.2;
}
/*12px*/
.fs-xsmall {
  font-size: 0.75rem;
  line-height: 1.2;
}
.articol ul li {
  margin-bottom: 1rem;
}
:root {
  color-scheme: light dark;
  --spacing-small: clamp(16px, calc(1vw + 6px), 24px);
  --spacing-medium: clamp(22px, calc(1.25vw + 1rem), 40px);
  --spacing-large: clamp(32px, calc(1.8vw + 1rem), 50px);
  --spacing-xlarge: clamp(40px, calc(2.8vw + 1rem), 70px);
}
html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  min-height: 100%;
  background-color: #F2F2F2;
  font-family: 'Montserrat', sans-serif !important;
  position: relative;
  color: var(--color-text);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.3;
}
body.fixed-body {
  height: 100%;
  overflow: hidden;
}
.main-wrapper {
  position: relative;
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1500px) {
  .container {
    max-width: 1500px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .content-600 {
    max-width: 600px;
  }
}
@media (min-width: 768px) {
  .content-800 {
    max-width: 800px;
  }
}
@media (min-width: 768px) {
  .content-1000 {
    max-width: 1000px;
  }
}
@media (min-width: 768px) {
  .content-1200 {
    max-width: 1200px;
  }
}
.buton {
  display: inline-flex;
  gap: 4%;
  align-items: center;
  justify-content: center;
  text-align: center;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  text-decoration: none !important;
  cursor: pointer;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1;
  padding: 10px 15px;
  border: 1px solid var(--color-primary);
  font-weight: 500;
  transition: 0.2s;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  user-select: none;
}
.buton:hover {
  background-color: color-mix(in srgb, var(--color-primary), transparent 30%);
  color: #fff;
}
.buton.stroke-white {
  color: #fff;
  border-color: #fff;
}
.buton.stroke-white:hover {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: #000;
}
.buton.bg-greendark {
  background-color: var(--color-greendark);
  color: #fff;
  border-color: var(--color-greendark);
}
.buton.bg-greendark:hover {
  background-color: color-mix(in srgb, var(--color-greendark), transparent 30%);
  color: #fff;
}
.buton.bt-edit {
  padding: 6px 12px;
  background-color: var(--color-greendark);
  color: #fff;
  border-color: var(--color-greendark);
}
.buton.bt-edit:hover {
  background-color: color-mix(in srgb, var(--color-greendark), transparent 30%);
  color: #fff;
}
.buton .bt-filter-account {
  padding: 6px 12px;
}
.buton.stroke-black {
  background-color: #fff;
  color: var(--color-text);
  border-color: var(--color-text);
}
.buton.stroke-black:hover {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: #fff3cd;
}
.buton.bg-white {
  background-color: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.buton.bg-white:hover {
  background-color: rgba(255, 255, 255, 0.3) !important;
  color: #fff;
}
.buton.bt-add-fav {
  background-color: var(--color-greendark);
  color: #fff;
  border-color: var(--color-greendark);
}
.buton.bt-add-fav:hover {
  background-color: transparent;
  color: var(--color-error);
  border-color: var(--color-error);
}
.buton.bt-remove-fav {
  background-color: transparent;
  color: var(--color-error);
  border-color: var(--color-error);
}
.buton.bt-remove-fav:hover {
  background-color: var(--color-greendark);
  color: #fff;
  border-color: var(--color-greendark);
}
.buton.bt-out-stoc {
  font-size: 0.7rem;
  background-color: transparent;
  color: var(--color-error);
  border-color: var(--color-error);
  padding: 10px 10px;
  white-space: wrap !important;
}
.buton.bt-out-stoc:hover {
  background-color: var(--color-greendark);
  color: #fff;
  border-color: var(--color-greendark);
}
.buton:disabled,
.buton.disabled {
  filter: grayscale(100%);
  cursor: not-allowed;
  opacity: 0.5;
  box-shadow: none;
  pointer-events: none;
}
.rounded-10 {
  border-radius: 10px;
}
.pb-xlarge {
  padding-bottom: var(--spacing-xlarge);
}
.pt-xlarge {
  padding-top: var(--spacing-xlarge);
}
.mb-xlarge {
  margin-bottom: var(--spacing-xlarge);
}
.pt-large {
  padding-top: var(--spacing-large);
}
.px-large {
  padding-left: var(--spacing-large);
  padding-right: var(--spacing-large);
}
.pb-large {
  padding-bottom: var(--spacing-large);
}
.mb-large {
  margin-bottom: var(--spacing-large);
}
.mt-large {
  margin-top: var(--spacing-large);
}
.pt-medium {
  padding-top: var(--spacing-medium);
}
.pb-medium {
  padding-bottom: var(--spacing-medium);
}
.p-medium {
  padding: var(--spacing-medium);
}
.mb-medium {
  margin-bottom: var(--spacing-medium);
}
.mt-medium {
  margin-top: var(--spacing-medium);
}
.pt-small {
  padding-top: var(--spacing-small);
}
.pb-small {
  padding-bottom: var(--spacing-small);
}
.p-small {
  padding: var(--spacing-small);
}
.mb-small {
  margin-bottom: var(--spacing-small);
}
.breadcrumbs {
  color: var(--color-text);
  font-size: 0.8rem;
  line-height: 1;
}
@media (max-width: 500px) {
  .breadcrumbs {
    font-size: 0.7rem;
  }
}
.breadcrumbs a {
  color: var(--color-text);
  padding-right: 3px;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline !important;
}
.breadcrumbs a:nth-child(1n+2),
.breadcrumbs span:nth-child(1n+2) {
  padding-left: 10px;
  position: relative;
}
.breadcrumbs a:nth-child(1n+2):before,
.breadcrumbs span:nth-child(1n+2):before {
  display: block;
  font-family: 'fontello', sans-serif;
  content: '/';
  position: absolute;
  left: 0;
  top: 4px;
}
@media (max-width: 500px) {
  .breadcrumbs a:nth-child(1n+2):before,
  .breadcrumbs span:nth-child(1n+2):before {
    top: 3px;
  }
}
.breadcrumbs span {
  color: var(--color-mov);
}
.bt-delafarmacie {
  display: flex;
  line-height: 1;
  gap: var(--spacing-medium);
  align-items: center;
  padding-right: var(--spacing-medium);
  position: relative;
  text-decoration: none;
  color: #fff;
  background-color: var(--color-greendark);
  width: fit-content;
}
.bt-delafarmacie .square {
  aspect-ratio: 1/1;
  width: 40px;
}
.bt-delafarmacie:hover {
  background-color: rgba(35, 66, 59, 0.7);
}
.section-label-discount {
  display: flex;
  line-height: 1;
  gap: var(--spacing-medium);
  align-items: center;
  padding-right: var(--spacing-medium);
  position: relative;
}
.section-label-discount .square {
  aspect-ratio: 1/1;
  width: 40px;
}
.section-label-discount .square:after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-color: inherit;
}
.badges .badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3px;
  padding: 5px 3px;
  width: 60px;
  height: 60px;
}
.badges .badge-item img {
  width: 100%;
}
.badges .badge-reducere-card {
  flex-direction: column;
  background-color: var(--color-mov);
  color: #fff;
}
.badges .badge-reducere-card .big {
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1;
}
.badges .badge-reducere-card .text {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.5rem;
  line-height: 1;
}
.badges .badge-transport {
  flex-direction: column;
  background-color: var(--color-mov2);
  color: #fff;
}
.badges .badge-transport .text {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.5rem;
  line-height: 1.1;
}
.badges .badge-reducere {
  flex-direction: column;
  background-color: var(--color-secondary);
  color: #fff;
}
.badges .badge-reducere .big {
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1;
}
.badges .badge-reducere .text {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.5rem;
  line-height: 1;
}
.badges .badge-cadou {
  flex-direction: column;
  background-color: var(--color-cyan);
  color: #fff;
}
.badges .badge-cadou .big {
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1;
}
.badges .badge-cadou .text {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.5rem;
  line-height: 1;
}
.badges .badge-x-la-pret-x {
  background-color: var(--color-secondary);
  color: #fff;
  gap: 1px !important;
}
.badges .badge-x-la-pret-x .big {
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1;
}
.badges .badge-x-la-pret-x .text {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.5rem;
  line-height: 1;
}
.badges .badge-icon {
  flex-direction: column;
  background-color: var(--color-primary);
  color: #fff;
}
.badges .badge-icon .text {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.5rem;
  line-height: 1;
}
.product-grid-item {
  background-color: #fff;
  width: 100%;
  display: flex;
  padding: 15px;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 5px;
}
@media (min-width: 576px) {
  .product-grid-item {
    padding: 10px;
  }
}
.product-grid-item a {
  text-decoration: none;
}
.product-grid-item .inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.product-grid-item .image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
}
.product-grid-item .image img {
  object-fit: cover;
  width: 200px;
  height: auto;
  max-width: 100%;
}
.product-grid-item .product-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-grid-item .product-price {
  margin-bottom: 15px;
}
.product-grid-item .price {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  margin-bottom: 8px;
}
.product-grid-item .price .lab {
  font-size: 0.7rem;
  white-space: nowrap;
}
.product-grid-item .price .value {
  font-size: 1rem;
}
.product-grid-item .price .value sup {
  top: -0.4em;
  font-size: 0.7em;
}
.product-grid-item .price .currency {
  font-size: 0.7em;
}
.product-grid-item .content-bottom .buton {
  white-space: nowrap;
}
.product-grid-item .product-brand {
  font-size: 0.8rem;
  min-width: 100px;
  max-width: 150px;
  position: relative;
}
.product-grid-item .product-brand .brand-name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-grid-item .bt-favorite {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  color: var(--color-primary);
}
.product-grid-item .bt-favorite:hover {
  color: var(--color-error) !important;
}
.product-grid-item .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  max-width: calc(100% - 50px);
}
.carusel-produse-home .swiper-wrapper {
  display: flex;
}
.carusel-produse-home .swiper-slide {
  display: flex;
  height: unset;
  width: 300px;
  max-width: 100%;
}
@media (max-width: 575px) {
  .carusel-produse-home .swiper-slide {
    width: 300px;
  }
}
.carusel-produse-home .swiper-slide > div {
  width: inherit;
}
.carusel-produse-home .swiper-slide.slide-image {
  flex-shrink: 0;
  width: 85vw;
}
@media (min-width: 576px) {
  .carusel-produse-home .swiper-slide.slide-image {
    width: 45vw;
  }
}
@media (min-width: 768px) {
  .carusel-produse-home .swiper-slide.slide-image {
    width: 45vw;
  }
}
@media (min-width: 992px) {
  .carusel-produse-home .swiper-slide.slide-image {
    width: 40vw;
  }
}
@media (min-width: 1200px) {
  .carusel-produse-home .swiper-slide.slide-image {
    width: 30vw;
  }
}
@media (min-width: 1400px) {
  .carusel-produse-home .swiper-slide.slide-image {
    width: 30vw;
  }
}
.carusel-produse-home .promo-image {
  display: flex;
  position: relative;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 5px;
}
.carusel-produse-home .promo-image .image {
  width: 100%;
  position: relative;
}
.carusel-produse-home .promo-image .image img {
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.carusel-produse-home .promo-image .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 1;
}
.carusel-produse-home .promo-image .badges .badge-item {
  transform: scale(1.3);
  transform-origin: left bottom;
}
.carusel-produse-home:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none !important;
}
.carusel-produse-home .swiper-button-next,
.carusel-produse-home .swiper-button-prev {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
.carusel-produse-home .swiper-button-next:after,
.carusel-produse-home .swiper-button-prev:after {
  font-size: 1.2rem;
}
@media (min-width: 1200px) {
  .carusel-produse-home .swiper-button-next:hover,
  .carusel-produse-home .swiper-button-prev:hover {
    background-color: #000;
    color: #fff;
  }
}
.carusel-produse-home .swiper-button-next.swiper-button-disabled,
.carusel-produse-home .swiper-button-prev.swiper-button-disabled {
  opacity: 0.4 !important;
  background-color: #000;
  pointer-events: unset;
}
.carusel-produse-home .swiper-button-next.swiper-button-lock,
.carusel-produse-home .swiper-button-prev.swiper-button-lock {
  display: none !important;
}
@media (max-width: 991px) {
  .carusel-produse-home .swiper-button-next,
  .carusel-produse-home .swiper-button-prev {
    display: none !important;
  }
}
.carusel-produse-home .swiper-pagination-bullet {
  background-color: var(--color-text);
}
@media (min-width: 1200px) {
  .carusel-produse-home.swiper-initialized:hover .swiper-button-next,
  .carusel-produse-home.swiper-initialized:hover .swiper-button-prev {
    display: block;
  }
  .carusel-produse-home.swiper-initialized .swiper-pagination {
    display: none;
  }
}
@media (max-width: 1199px) {
  .carusel-produse-home.swiper-initialized {
    padding-bottom: 30px;
  }
  .carusel-produse-home.swiper-initialized .swiper-pagination {
    display: block;
  }
}
.carusel-produse .swiper-wrapper {
  display: flex;
}
.carusel-produse .swiper-slide {
  display: flex;
  height: unset;
  width: 300px;
  max-width: 100%;
}
@media (max-width: 575px) {
  .carusel-produse .swiper-slide {
    width: 300px;
  }
}
.carusel-produse .swiper-slide > div {
  width: inherit;
}
.carusel-produse:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none !important;
}
.carusel-produse .swiper-button-next,
.carusel-produse .swiper-button-prev {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #000;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
.carusel-produse .swiper-button-next:after,
.carusel-produse .swiper-button-prev:after {
  font-size: 1.2rem;
}
@media (min-width: 1200px) {
  .carusel-produse .swiper-button-next:hover,
  .carusel-produse .swiper-button-prev:hover {
    background-color: #000;
    color: #fff;
  }
}
.carusel-produse .swiper-button-next.swiper-button-disabled,
.carusel-produse .swiper-button-prev.swiper-button-disabled {
  opacity: 0.4 !important;
  background-color: #000;
  pointer-events: unset;
}
.carusel-produse .swiper-button-next.swiper-button-lock,
.carusel-produse .swiper-button-prev.swiper-button-lock {
  display: none !important;
}
@media (max-width: 991px) {
  .carusel-produse .swiper-button-next,
  .carusel-produse .swiper-button-prev {
    display: none !important;
  }
}
.carusel-produse .swiper-pagination-bullet {
  background-color: var(--color-text);
}
@media (min-width: 1200px) {
  .carusel-produse.swiper-initialized:hover .swiper-button-next,
  .carusel-produse.swiper-initialized:hover .swiper-button-prev {
    display: block;
  }
  .carusel-produse.swiper-initialized .swiper-pagination {
    display: none;
  }
}
@media (max-width: 1199px) {
  .carusel-produse.swiper-initialized {
    padding-bottom: 30px;
  }
  .carusel-produse.swiper-initialized .swiper-pagination {
    display: block;
  }
}
.dropdown-category-display .bt-category-sort:after,
.dropdown-category-sort .bt-category-sort:after {
  display: none;
}
.dropdown-category-display .dropdown-menu,
.dropdown-category-sort .dropdown-menu {
  border: none;
  border-radius: 2px;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199px) {
  .dropdown-category-display .dropdown-item,
  .dropdown-category-sort .dropdown-item {
    padding: 10px 10px;
  }
}
.dropdown-category-display .dropdown-item:focus,
.dropdown-category-sort .dropdown-item:focus,
.dropdown-category-display .dropdown-item:hover,
.dropdown-category-sort .dropdown-item:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.dropdown-category-display .dropdown-item.active,
.dropdown-category-sort .dropdown-item.active {
  background-color: var(--color-greendark);
  color: #fff;
}
@media (min-width: 1200px) {
  .dropdown-category-display .bt-category-sort {
    display: none;
  }
  .dropdown-category-display .dropdown-menu {
    position: static;
    display: flex;
    gap: 5px;
    padding: 0;
    box-shadow: none;
    justify-content: end;
    background-color: transparent;
  }
  .dropdown-category-display .dropdown-menu li {
    background-color: #fff;
    border-radius: 2px;
  }
  .dropdown-category-display .dropdown-menu .dropdown-item {
    height: 32px;
    font-size: 1rem;
    padding: 4px 10px;
    border-radius: 2px;
  }
}
.bt-category-sort {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  text-decoration: none !important;
  cursor: pointer;
  border: none;
  background-color: #fff;
  color: var(--color-text);
  box-shadow: none;
  border-radius: 2px;
  font-size: 0.9rem;
  line-height: 1;
  padding: 10px 5px;
}
@media (min-width: 500px) {
  .bt-category-sort {
    font-size: 1rem;
    padding: 8px 10px;
  }
}
@media (min-width: 1200px) {
  .category-wrapper {
    display: flex;
    gap: 15px;
  }
}
.category-wrapper .category-container {
  flex: 1 0 0;
}
.category-wrapper .category-container .category-products-grid {
  display: grid;
  column-gap: 5px;
  row-gap: 15px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 576px) {
  .category-wrapper .category-container .category-products-grid {
    column-gap: 5px;
    row-gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .category-wrapper .category-container .category-products-grid {
    column-gap: 10px;
    row-gap: 15px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .category-wrapper .category-container .category-products-grid {
    column-gap: 10px;
    row-gap: 15px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1400px) {
  .category-wrapper .category-container .category-products-grid {
    column-gap: 10px;
    row-gap: 15px;
    grid-template-columns: repeat(4, 1fr);
  }
}
.category-wrapper .category-container .category-products-grid.list-view {
  grid-template-columns: repeat(1, 1fr) !important;
}
@media (max-width: 576px) {
  .category-wrapper .category-container .category-products-grid.two-cols-view {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 1199px) {
  .category-wrapper .sidebar-filters {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: transparent;
    transition: 0.2s;
    visibility: hidden;
    transform: translate(-100%, 0);
    max-width: none;
    padding-right: 0;
  }
  .category-wrapper .sidebar-filters.opened {
    visibility: visible;
    transform: translate(0, 0);
  }
  .category-wrapper .sidebar-filters .bg-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }
}
@media (max-width: 1199px) and (min-width: 1200px) {
  .category-wrapper .sidebar-filters .bg-menu {
    display: none;
  }
}
@media (min-width: 1200px) {
  .category-wrapper .sidebar-filters {
    flex: 1 0 300px;
    max-width: 300px;
  }
}
.category-wrapper .sidebar-filters .sidebar-container {
  background-color: #fff;
}
@media (max-width: 1199px) {
  .category-wrapper .sidebar-filters .sidebar-container {
    position: relative;
    height: 100%;
    overflow-y: auto;
    width: 400px;
    max-width: 100%;
  }
}
.category-wrapper .sidebar-filters .close-bt {
  position: absolute;
  right: 5px;
  cursor: pointer;
  top: 10px;
  z-index: 0;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: 0.2s;
  text-align: center;
  color: #fff;
  background-color: #000;
}
@media (min-width: 1200px) {
  .category-wrapper .sidebar-filters .close-bt {
    display: none;
  }
}
.category-wrapper .sidebar-filters .active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media (max-width: 1199px) {
  .category-wrapper .sidebar-filters .active-filters {
    padding-right: 30px;
  }
}
.category-wrapper .sidebar-filters .active-filters .filter-badge {
  cursor: pointer;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 6px 5px;
  font-size: 0.8rem;
  line-height: 1;
  color: var(--color-text);
  border: 1px solid var(--color-mute);
  border-radius: 4px;
  text-decoration: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.category-wrapper .sidebar-filters .active-filters .filter-badge:hover {
  background-color: #f4f4f4;
  color: var(--color-mute);
}
.category-wrapper .sidebar-filters .active-filters .filter-badge:hover span {
  color: var(--color-error);
}
.category-wrapper .sidebar-filters .sidebar-item {
  padding: 15px;
}
.category-wrapper .sidebar-filters .sidebar-item:not(:last-child) {
  border-bottom: 1px solid var(--color-mute);
}
.category-wrapper .sidebar-filters .sidebar-item .filter-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
  padding-bottom: 20px;
}
.category-wrapper .sidebar-filters .sidebar-item .filter-title.has-list {
  cursor: pointer;
}
.category-wrapper .sidebar-filters .sidebar-item .filter-title.has-list:after {
  display: block;
  font-family: 'fontello', sans-serif;
  content: '\e803';
  font-size: 0.8rem;
  line-height: 1;
  margin-top: 5px;
}
.category-wrapper .sidebar-filters .sidebar-item .filters-list {
  max-height: 236px;
  overflow-y: auto;
  scrollbar-gutter: stable;
  padding-right: 5px;
  margin-right: -5px;
}
.category-wrapper .sidebar-filters .sidebar-item .filters-list::-webkit-scrollbar {
  width: 0.4rem;
}
.category-wrapper .sidebar-filters .sidebar-item .filters-list::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.category-wrapper .sidebar-filters .sidebar-item .filters-list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 40px;
}
.category-wrapper .sidebar-filters .sidebar-item .filter-checkbox {
  display: flex;
  gap: 5px;
  padding: 5px 0;
  margin-bottom: 10px;
}
.category-wrapper .sidebar-filters .sidebar-item .filter-checkbox .lab {
  display: flex;
  gap: 10px;
}
.category-wrapper .sidebar-filters .sidebar-item .filter-checkbox .lab:before {
  font-family: 'fontello', sans-serif;
  content: '';
  font-size: 0.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  background-color: #ececec;
  width: 18px;
  height: 18px;
  border-radius: 2px;
}
.category-wrapper .sidebar-filters .sidebar-item .filter-checkbox .filter-input {
  position: absolute;
  visibility: hidden;
  left: -99999999999px;
}
.category-wrapper .sidebar-filters .sidebar-item .filter-checkbox .filter-input:checked ~ .lab:before {
  content: '\e81a';
}
.category-wrapper .sidebar-filters .sidebar-item .filter-checkbox .qty {
  font-size: 80%;
  margin-left: auto;
  color: var(--color-mute);
}
.category-wrapper .sidebar-filters .bt-reset-filter {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 6px 5px;
  font-size: 0.8rem;
  line-height: 1;
  color: var(--color-mute);
  border: 1px solid var(--color-mute);
  border-radius: 4px;
  text-decoration: none;
}
.category-wrapper .sidebar-filters .bt-reset-filter:hover {
  color: var(--color-text);
}
.category-wrapper .sidebar-filters .bt-reset-filter.color-primary:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: #fff !important;
}
.category-wrapper .sidebar-filters .filter-search {
  border: 1px solid #B7B7B7;
  background-color: #F5F5F5;
  border-radius: 4px;
  display: flex;
}
.category-wrapper .sidebar-filters .filter-search .filter-search-input {
  font-size: 0.8rem;
  padding-left: 10px;
  padding-right: 10px;
  color: var(--color-text);
  background-color: transparent;
  border-radius: 4px;
  border: none;
  flex: 1 0 0;
  width: 100%;
  min-width: 50px;
  box-shadow: none;
  display: block;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  height: 32px;
  line-height: 32px;
}
.category-wrapper .sidebar-filters .filter-search .filter-search-input:focus {
  box-shadow: none !important;
}
.category-wrapper .sidebar-filters .filter-search .bt-filter-search {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  text-decoration: none !important;
  cursor: pointer;
  border: none;
  background-color: transparent;
  color: var(--color-mute);
  box-shadow: none;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1;
  padding: 0;
  width: 40px;
}
.category-wrapper .sidebar-filters .filter-price-input {
  border: 1px solid var(--color-mute);
  text-align: center;
  border-radius: 4px;
  font-size: 0.9rem;
  height: 28px;
  line-height: 28px;
  padding: 0 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  width: 90px;
  background-color: #fff;
  color: var(--color-text);
}
.category-wrapper .sidebar-filters .range-slider {
  overflow: visible;
  padding: 0 8px;
}
.category-wrapper .sidebar-filters .range-slider .slider.slider-horizontal .slider-tick,
.category-wrapper .sidebar-filters .range-slider .slider.slider-horizontal .slider-handle {
  margin-left: 0;
}
.category-wrapper .sidebar-filters .range-slider .slider.slider-horizontal {
  width: 100%;
}
.category-wrapper .sidebar-filters .range-slider .slider-handle {
  background: var(--color-primary) !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 2px solid #fff !important;
  border-radius: 50% !important;
  margin-top: -1px;
  width: 20px;
  height: 20px;
}
.category-wrapper .sidebar-filters .range-slider .slider-handle.round,
.category-wrapper .sidebar-filters .range-slider .slider-handle.min-slider-handle.round,
.category-wrapper .sidebar-filters .range-slider .slider-handle.max-slider-handle.round {
  background: var(--color-primary) !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 2px solid #fff !important;
  border-radius: 50% !important;
}
.category-wrapper .sidebar-filters .range-slider .slider-handle.max-slider-handle {
  margin-left: -10px !important;
}

/* Direct bootstrap-slider overrides (independent of wrapper classes) */
.slider.slider-horizontal {
  width: 100% !important;
}
.slider.slider-horizontal .slider-track {
  height: 7px !important;
  background: #E6E6E6 !important;
  box-shadow: none !important;
}
.slider.slider-horizontal .slider-selection {
  background: var(--color-primary) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
  background: none !important;
}
.slider-handle.round,
.slider-handle.min-slider-handle.round,
.slider-handle.max-slider-handle.round {
  background: var(--color-primary) !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 2px solid #fff !important;
  border-radius: 50% !important;
  width: 20px !important;
  height: 20px !important;
}
.slider-handle.max-slider-handle.round {
  margin-left: -10px !important;
}
.category-wrapper .sidebar-filters .range-slider .slider-selection {
  background: var(--color-primary) !important;
  border-radius: 0 !important;
}
.category-wrapper .sidebar-filters .range-slider .slider-track-low,
.category-wrapper .sidebar-filters .range-slider .slider-track-high {
  background: none !important;
}
.category-wrapper .sidebar-filters .range-slider .slider-track {
  background: #E6E6E6 !important;
  box-shadow: none !important;
  height: 7px !important;
}
.category-wrapper .sidebar-filters .range-slider .tooltip .arrow {
  display: none !important;
}
.category-wrapper .sidebar-filters .custom-checkbox-toggle {
  position: relative;
  cursor: pointer;
}
.category-wrapper .sidebar-filters .custom-checkbox-toggle input {
  position: absolute;
  left: -99999px;
  visibility: hidden;
}
.category-wrapper .sidebar-filters .custom-checkbox-toggle input:checked ~ .toggle:before {
  transform: translate(100%, 0);
}
.category-wrapper .sidebar-filters .custom-checkbox-toggle input:checked ~ .toggle .no {
  color: var(--color-text);
}
.category-wrapper .sidebar-filters .custom-checkbox-toggle input:checked ~ .toggle .yes {
  color: #fff;
}
.category-wrapper .sidebar-filters .custom-checkbox-toggle .toggle {
  display: flex;
  background-color: #E6E6E6;
  border-radius: 4px;
  overflow: hidden;
  width: 200px;
  max-width: 100%;
  position: relative;
}
@media (max-width: 500px) {
  .category-wrapper .sidebar-filters .custom-checkbox-toggle .toggle {
    width: 100px;
  }
}
.category-wrapper .sidebar-filters .custom-checkbox-toggle .toggle:before {
  display: block;
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  z-index: 0;
  background-color: var(--color-primary);
  border-radius: 4px;
  left: 0;
  top: 0;
  transition: 0.2s;
}
.category-wrapper .sidebar-filters .custom-checkbox-toggle .toggle span {
  width: 50%;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  position: relative;
  z-index: 1;
}
.category-wrapper .sidebar-filters .custom-checkbox-toggle .toggle span.no {
  color: #fff;
}
.category-product-item {
  background-color: #fff;
  width: 100%;
  display: flex;
  padding: 6%;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.1);
}
.category-product-item a {
  text-decoration: none;
}
.category-product-item .inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.category-product-item .image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: relative;
}
.category-product-item .image img {
  object-fit: cover;
  width: 200px;
  height: auto;
  max-width: 100%;
}
.category-product-item .bt-favorite {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: absolute;
  top: -2%;
  right: -5%;
  z-index: 2;
  color: var(--color-primary);
}
.category-product-item .bt-favorite:hover {
  color: var(--color-error) !important;
}
.category-product-item .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  max-width: calc(100% - 50px);
}
.category-product-item .content {
  flex: 1 0 0;
}
.category-product-item .product-title {
  margin-bottom: 15px;
}
.category-product-item .content-bottom {
  margin-top: auto;
}
.category-product-item .product-title-brand {
  display: none;
}
.category-product-item .product-title-brand,
.category-product-item .product-brand {
  font-size: 0.875rem;
  line-height: 1.1;
}
.category-product-item .product-title-brand .lab,
.category-product-item .product-brand .lab {
  font-size: 90%;
}
.category-product-item .product-title-brand a,
.category-product-item .product-brand a {
  text-decoration: none;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.category-product-item .brand-name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.category-product-item .price {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  margin-bottom: 8px;
}
.category-product-item .price .lab {
  font-size: 0.7rem;
}
.category-product-item .price .value {
  font-size: 1rem;
}
.category-product-item .price .value sup {
  top: -0.4em;
  font-size: 0.7em;
}
.category-product-item .price .currency {
  font-size: 0.7em;
}
.category-product-item .group-buttons {
  margin-top: auto;
}
.category-product-item .group-buttons .buton {
  width: 155px;
}
@media (max-width: 500px) {
  .category-product-item .group-buttons .buton {
    font-size: 0.8rem;
    padding: 10px 0;
  }
}
.category-product-item .group-buttons .buton nobr {
  white-space: nowrap;
}
.category-product-item .group-buttons .buton.bt-out-stoc {
  font-size: 0.7rem;
  padding: 5px 0;
  white-space: wrap !important;
}
.category-product-item.list-view {
  padding: 15px 15px;
}
@media (min-width: 768px) {
  .category-product-item.list-view {
    --product-gap: 15px;
  }
}
@media (max-width: 767px) {
  .category-product-item.list-view .inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: start;
  }
}
@media (min-width: 768px) {
  .category-product-item.list-view .inner {
    flex-direction: row;
    gap: var(--product-gap);
  }
}
.category-product-item.list-view .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  max-width: 60%;
}
.category-product-item.list-view .badges .badge-item {
  width: 45px;
  height: 45px;
}
.category-product-item.list-view .badges .badge-item .big {
  font-size: 1rem;
}
.category-product-item.list-view .badges .badge-item .text {
  font-size: 0.4rem;
}
@media (max-width: 767px) {
  .category-product-item.list-view .image {
    grid-row: 1 / 3;
    grid-column: 1;
  }
}
@media (min-width: 768px) {
  .category-product-item.list-view .image {
    flex: 0 0 100px;
  }
}
@media (min-width: 1400px) {
  .category-product-item.list-view .image {
    flex: 0 0 150px;
  }
}
.category-product-item.list-view .image img {
  width: 125px;
}
@media (max-width: 767px) {
  .category-product-item.list-view .content {
    grid-column: 2;
    grid-row: 1;
  }
}
@media (min-width: 768px) {
  .category-product-item.list-view .content {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.category-product-item.list-view .content-bottom {
  margin-top: 0;
}
@media (max-width: 767px) {
  .category-product-item.list-view .content-bottom {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
  }
}
@media (min-width: 768px) {
  .category-product-item.list-view .content-bottom {
    flex: 0 0 auto;
    display: flex;
    gap: var(--product-gap);
  }
}
.category-product-item.list-view .product-title {
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .category-product-item.list-view .product-title {
    font-size: 0.85rem;
  }
}
.category-product-item.list-view .product-title a,
.category-product-item.list-view .product-title p {
  text-decoration: none;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .category-product-item.list-view .product-title-brand {
    display: flex !important;
    gap: 6px;
  }
}
.category-product-item.list-view .product-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  flex: 0 0 180px;
}
@media (min-width: 768px) {
  .category-product-item.list-view .product-price {
    padding-left: var(--product-gap);
  }
  .category-product-item.list-view .product-price:before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #ccc;
  }
}
@media (min-width: 768px) {
  .category-product-item.list-view .bt-favorite {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .category-product-item.list-view .bt-favorite {
    top: auto;
    bottom: 0;
    right: auto;
    left: -3%;
    margin-left: 10px;
  }
}
.category-product-item.list-view .group-buttons {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  gap: 8px;
}
@media (min-width: 768px) {
  .category-product-item.list-view .group-buttons {
    padding-left: var(--product-gap);
  }
  .category-product-item.list-view .group-buttons:before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #ccc;
  }
}
.category-product-item.list-view .group-buttons .product-brand {
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .category-product-item.list-view .group-buttons .product-brand {
    display: none;
  }
}
.category-product-item.list-view .group-buttons .product-brand .fs-small {
  font-size: inherit;
}
.category-product-item.list-view .group-buttons .buton.bt-favorite-list {
  border-color: transparent;
  background-color: transparent;
  color: var(--color-primary);
  padding: 8px 0;
  font-size: 0.7rem;
}
.category-product-item.list-view .group-buttons .buton.bt-favorite-list i {
  font-size: 1rem;
}
.category-product-item.list-view .group-buttons .buton.bt-favorite-list:hover {
  background-color: transparent;
  color: var(--color-error);
  border-color: var(--color-error);
}
@media (min-width: 768px) {
  .category-product-item.list-view .group-buttons .buton.bt-favorite-list {
    display: inline-flex !important;
  }
}
@media (max-width: 500px) {
  .category-product-item.two-cols-view .product-title {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  .category-product-item.two-cols-view .product-title a {
    text-decoration: none;
    color: var(--color-text);
    display: block;
  }
  .category-product-item.two-cols-view .product-brand {
    font-size: 0.7rem;
  }
  .category-product-item.two-cols-view .product-brand .fs-small {
    font-size: inherit;
  }
}
.category-product-item.two-cols-view .badges {
  max-width: calc(100% - 40px);
  gap: 2px;
}
.category-product-item.two-cols-view .badges .badge-item {
  width: 45px;
  height: 45px;
}
.category-product-item.two-cols-view .badges .badge-item .big {
  font-size: 1rem;
}
.category-product-item.two-cols-view .badges .badge-item .text {
  font-size: 0.4rem;
}
.category-product-item.two-cols-view .group-buttons .buton {
  width: 100%;
}
.category-product-item.two-cols-view .price .lab,
.category-product-item.two-cols-view .price .currency {
  font-size: 0.6rem;
}
.category-product-item.two-cols-view .price .value {
  font-size: 0.8rem;
}
.category-products-grid .category-ad-item {
  display: flex;
  background-color: #fff;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.1);
}
.category-products-grid .category-ad-item .ad-item {
  width: 100%;
  align-items: center;
  justify-content: center;
}
.category-products-grid .category-ad-item .ad-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.category-products-grid .ad-item.square {
  display: flex !important;
}
@media (min-width: 576px) {
  .category-products-grid.list-view .ad-item.square {
    display: none !important;
  }
  .category-products-grid.list-view .ad-item.wide {
    display: flex !important;
  }
}
@media (max-width: 567px) {
  .category-products-grid.two-cols-view .category-ad-item {
    grid-column: span 2 !important;
  }
  .category-products-grid.two-cols-view .ad-item.square {
    display: flex !important;
  }
}
@media (max-width: 576px) {
  .pagination nav {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.pagination .page-item {
  padding: 5px 4px;
}
.pagination .page-item .page-link {
  border-radius: 4px;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--color-primary);
  background-color: rgba(255, 255, 255, 0.4);
  width: 28px;
  height: 28px;
  font-size: 0.7rem;
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 576px) {
  .pagination .page-item .page-link {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    line-height: 28px !important;
  }
}
.pagination .page-item .page-link:hover {
  background-color: #000;
  color: #fff;
}
.pagination .page-item .page-link.active {
  background-color: #000;
  color: #fff;
}
.pagination .page-item.active .page-link {
  background-color: #000;
  color: #fff;
}
.pagination .page-item.disabled:not(:first-child) {
  padding: 0;
}
.pagination .page-item.disabled:not(:first-child) span {
  width: 10px;
  background-color: transparent;
}
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  font-size: 1.2rem;
}
.product-details-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-details-section .product-image-col {
  order: 1;
}
.product-details-section .product-description-col {
  order: 2;
}
.product-details-section .product-price-col {
  order: 3;
}
.product-details-section .content-product-description {
  order: 4;
}
@media (min-width: 992px) {
  .product-details-section {
    display: grid;
    align-items: start;
    gap: 20px;
    grid-template-columns: 1fr 290px;
    grid-template-areas: "img   price" "short price" "long  price";
  }
  .product-details-section .product-image-col {
    grid-area: img;
    height: 100%;
  }
  .product-details-section .product-description-col {
    grid-area: short;
  }
  .product-details-section .content-product-description {
    grid-area: long;
  }
  .product-details-section .product-price-col {
    grid-area: price;
    position: sticky;
    top: var(--header-height);
  }
}
@media (min-width: 1200px) {
  .product-details-section {
    grid-template-columns: 33% 1fr 290px;
    grid-template-areas: "img short price" "long long price";
  }
}
.product-details-section .product-image-col {
  position: relative;
  background-color: #fff;
  padding: var(--spacing-small);
}
.product-details-section .product-image-col .image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-details-section .product-image-col .bt-favorite {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  color: var(--color-primary);
}
.product-details-section .product-image-col .bt-favorite:hover {
  color: var(--color-error) !important;
}
.product-details-section .product-description-col {
  padding: var(--spacing-small);
  background-color: #fff;
}
.product-details-section .product-description-col .product-brand {
  display: flex;
  gap: 10px;
}
.product-details-section .product-description-col .product-brand .brand-name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-details-section .product-description-col .package-selector {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.product-details-section .product-description-col .package-selector .package-checkbox {
  position: relative;
  display: block;
  cursor: pointer;
  text-align: center;
}
.product-details-section .product-description-col .package-selector .package-checkbox span {
  display: block;
}
.product-details-section .product-description-col .package-selector .package-checkbox .package-checkbox {
  position: absolute;
  visibility: hidden;
  left: -99999999999px;
}
.product-details-section .product-description-col .package-selector .package-checkbox .package-checkbox-label {
  border: 1px solid #e4e4e4;
  padding: 15px;
  user-select: none;
}
.product-details-section .product-description-col .package-selector .package-checkbox .package-checkbox-label:hover {
  border-color: #d6d6d6;
}
.product-details-section .product-description-col .package-selector .package-checkbox .package-checkbox:checked ~ .package-checkbox-label {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.product-details-section .product-description-col .package-selector .package-checkbox .qty {
  padding-top: 5px;
  font-size: 0.8rem;
  font-weight: 700;
}
.product-details-section .product-price-col {
  background-color: #E9E9E9;
  padding: var(--spacing-small);
}
.product-details-section .product-price-col .badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.product-details-section .product-price-col .badges .badge-items-group {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.product-details-section .product-price-col .badges .badge-item {
  width: 80px;
  height: 80px;
  gap: 3px;
  padding: 10px 5px;
}
.product-details-section .product-price-col .badges .badge-item .big {
  font-size: 2rem;
  line-height: 1;
}
.product-details-section .product-price-col .badges .badge-item .text {
  font-size: 0.6rem;
  line-height: 1.1;
}
.product-details-section .product-price-col .badges .badge-info {
  font-size: 0.7rem;
  flex: 1 1 130px;
  min-width: 130px;
}
.product-details-section .product-price-col .price {
  display: flex;
  gap: 10px;
  align-items: end;
}
.product-details-section .product-price-col .price .value {
  margin-left: auto;
  font-size: 2rem;
  line-height: calc(14px + 1ex);
}
.product-details-section .product-price-col .product-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: #F2F2F2;
  padding: 0 2px;
}
.product-details-section .product-price-col .product-quantity .btn-quantity {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  font-size: 2rem;
  line-height: 1;
  color: #bdbdbd;
  user-select: none;
}
.product-details-section .product-price-col .product-quantity .btn-quantity:hover {
  color: var(--color-text);
  background-color: #fff;
}
.product-details-section .product-price-col .product-quantity .input-quantity {
  font-size: 1.2rem;
  background-color: transparent;
  width: 50px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #1f1f1f;
  border: none;
  font-weight: 700;
}
@media (min-width: 768px) {
  .content-product-description .articol {
    min-width: 600px;
  }
}
.product-description-tabs {
  background-color: #fff;
  overflow-x: auto;
  display: flex;
  gap: 1px;
}
.product-description-tabs .bt-description {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
  background-color: #fff;
  color: var(--color-text);
  text-decoration: none;
  height: 44px;
  padding: 0 10px;
}
.product-description-tabs .bt-description:hover,
.product-description-tabs .bt-description.active {
  background-color: var(--color-text);
  color: #fff;
}
.brand-label {
  background-color: #464646;
  color: #fff;
  padding: 15px var(--spacing-medium);
  border-radius: 4px;
  max-width: 300px;
  min-width: 150px;
}
.alert {
  border-radius: 4px !important;
}
.alert-success {
  background-color: #D9EFE0 !important;
  color: var(--color-primary) !important;
}
.rounded {
  border-radius: 4px !important;
}
.basket-total {
  background-color: #DCDCDC;
  padding: var(--spacing-medium);
}
.basket-total .basket-total-price {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.basket-total .basket-total-price .lab {
  font-size: 0.875rem;
}
.voucher-form {
  display: flex;
  border-radius: 4px;
}
.voucher-form .input-vouher {
  font-size: 0.9rem;
  height: 40px;
  line-height: 40px;
  border: none;
  border-radius: 4px 0 0 4px;
  padding: 0 10px;
  min-width: 0;
  flex: 1 0 0;
  background-color: #fff;
  color: var(--color-text);
}
.voucher-form .bt-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  cursor: pointer;
  border: 1px solid var(--color-primary);
  box-shadow: none;
  background-color: var(--color-primary);
  color: #fff;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
}
.voucher-form .bt-submit:hover {
  background-color: color-mix(in srgb, var(--color-primary), transparent 30%);
  color: #fff;
}
.basket-list-item {
  background-color: #fff;
  width: 100%;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, 0.1);
  padding: 10px 10px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .basket-list-item {
    padding: 10px 15px;
  }
}
.basket-list-item .inner {
  display: flex;
  gap: 10px;
}
@media (min-width: 1200px) {
  .basket-list-item .inner {
    align-items: center;
  }
}
.basket-list-item .bt-delete {
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  text-decoration: none !important;
  cursor: pointer;
  background-color: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
  color: var(--color-mute);
  font-size: 1rem;
  line-height: 1;
}
.basket-list-item .bt-delete:hover {
  color: var(--color-error);
}
.basket-list-item .image {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  flex: 0 0 60px;
}
@media (min-width: 768px) {
  .basket-list-item .image {
    flex: 0 0 90px;
  }
}
.basket-list-item .image img {
  width: 80%;
}
.basket-list-item .content {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 15px;
}
@media (min-width: 1200px) {
  .basket-list-item .content {
    gap: 5px 30px;
  }
}
.basket-list-item .product-title {
  flex: 1 0 100%;
}
@media (min-width: 1200px) {
  .basket-list-item .product-title {
    flex: 1 0 0;
  }
}
@media (max-width: 767px) {
  .basket-list-item .product-title {
    font-size: 0.875rem;
  }
}
.basket-list-item .product-title a {
  text-decoration: none;
  color: var(--color-text);
  display: block;
}
.basket-list-item .more-details {
  max-width: 600px;
}
@media (min-width: 1200px) {
  .basket-list-item .product-price {
    flex: 0 0 150px;
  }
}
.basket-list-item .product-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: #F2F2F2;
  padding: 0 2px;
}
.basket-list-item .product-quantity .btn-quantity {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  font-size: 2rem;
  line-height: 1;
  color: #bdbdbd;
  user-select: none;
}
@media (min-width: 768px) {
  .basket-list-item .product-quantity .btn-quantity {
    width: 34px;
    height: 34px;
  }
}
.basket-list-item .product-quantity .btn-quantity:hover {
  color: var(--color-text);
  background-color: #fff;
}
.basket-list-item .product-quantity .input-quantity {
  font-size: 1.2rem;
  background-color: transparent;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #1f1f1f;
  border: none;
  font-weight: 700;
}
@media (min-width: 768px) {
  .basket-list-item .product-quantity .input-quantity {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.basket-list-item .included-items-wrapper {
  margin-bottom: -5px;
}
@media (max-width: 991px) {
  .basket-list-item .included-items-wrapper {
    margin-top: 10px;
  }
}
.basket-list-item .bt-toggle-included-items {
  color: var(--color-text);
  border-radius: 4px;
  padding: 0 15px;
}
.basket-list-item .bt-toggle-included-items:hover {
  background-color: #e6e6e6;
}
.basket-list-item .included-item {
  padding: 5px 10px 5px 0;
  border: 1px solid #ccc;
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
}
@media (min-width: 1200px) {
  .basket-list-item .included-item {
    align-items: center;
    margin-left: 90px;
  }
}
.basket-list-item .included-item .product-title {
  font-size: 0.875rem;
}
.basket-list-item .included-item .product-title a {
  text-decoration: none;
  color: var(--color-text);
  display: block;
}
.basket-list-item .included-item .image {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  flex: 0 0 60px;
}
@media (min-width: 768px) {
  .basket-list-item .included-item .image {
    flex: 0 0 90px;
  }
}
.basket-list-item .included-item .image img {
  width: 70%;
}
.basket-list-item .included-item .product-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: #fff;
  border: 1px solid #f1f1f1;
  padding: 0 2px;
}
.basket-list-item .included-item .product-quantity .btn-quantity:hover {
  cursor: default;
  color: inherit;
  background-color: inherit;
}
@media (min-width: 1200px) {
  .basket-list-item .included-item .product-price {
    flex: 0 0 140px;
  }
}
.tooltip {
  --bs-tooltip-bg: #fff;
}
.tooltip.show {
  opacity: 1;
}
.tooltip .tooltip-inner {
  background-color: #fff;
  color: #000;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1;
  padding: 10px;
  border-radius: 0;
  box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.15);
}
.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #fff !important;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #fff !important;
}
.tooltip.bs-tooltip-start .tooltip-arrow::before,
.tooltip.bs-tooltip-left .tooltip-arrow::before {
  border-left-color: #fff !important;
}
.tooltip.bs-tooltip-end .tooltip-arrow::before,
.tooltip.bs-tooltip-right .tooltip-arrow::before {
  border-right-color: #fff !important;
}
.sticky-ribon-price {
  background-color: #464646;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 15px 0;
}
.sticky-ribon-price .price {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 500px) {
  .sticky-ribon-price .buton {
    font-size: 0.7rem;
  }
}
.checkout-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-small);
}
@media (min-width: 1200px) {
  .checkout-wrapper {
    gap: 1px var(--spacing-small);
  }
}
.checkout-wrapper .checkout-forms-col {
  width: 100%;
}
@media (min-width: 1200px) {
  .checkout-wrapper .checkout-forms-col {
    flex: 1 0 0;
  }
}
.checkout-wrapper .checkout-basket-col {
  width: 100%;
}
@media (min-width: 1200px) {
  .checkout-wrapper .checkout-basket-col {
    flex: 0 0 420px;
  }
}
.checkout-wrapper .checkout-sidebar {
  position: sticky;
  top: var(--header-height);
}
.checkout-wrapper .checkout-sidebar .basket-total {
  padding: var(--spacing-small);
}
.checkout-wrapper .checkout-form-bloc {
  background-color: #fff;
  padding: var(--spacing-small);
}
.checkout-wrapper .checkout-form-bloc .border-bloc {
  border: 1px solid #E4E2E2;
  padding: var(--spacing-small);
  border-radius: 4px;
}
.checkout-wrapper .last-mobile-block {
  width: 100%;
  order: 3;
}
@media (min-width: 1200px) {
  .checkout-wrapper .last-mobile-block {
    width: calc(100% - 420px - var(--spacing-small));
  }
}
.checkout-checkbox-option {
  width: 100%;
  position: relative;
  display: flex;
  overflow: hidden;
  background-color: #F2F2F2;
  color: var(--color-text);
  cursor: pointer;
}
.checkout-checkbox-option .custom-control-input {
  position: absolute;
  left: -99999px;
}
.checkout-checkbox-option .check {
  padding: var(--spacing-small);
  position: relative;
  width: 100%;
  min-height: 50px;
  border: 1px solid #F2F2F2;
  border-radius: 4px;
}
.checkout-checkbox-option .check:after {
  font-family: 'fontello', sans-serif;
  display: block;
  content: '';
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: 1.6rem;
  line-height: 1;
  z-index: 1;
  color: var(--color-primary);
}
.checkout-checkbox-option .check .icon {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.checkout-checkbox-option .custom-control-input:checked ~ .check {
  border-color: var(--color-primary);
}
.checkout-checkbox-option .custom-control-input:checked ~ .check:after {
  content: '\e817';
}
.checkout-checkbox-option .custom-control-input:disabled ~ .check {
  opacity: 0.4;
  filter: grayscale(100%);
  cursor: default;
}
.checkout-list-item {
  background-color: #fff;
  width: 100%;
  padding: 10px;
}
.checkout-list-item .inner {
  display: flex;
  gap: 10px;
}
.checkout-list-item .image {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  flex: 0 0 50px;
}
.checkout-list-item .content {
  flex: 1 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.checkout-list-item .product-title {
  flex: 1 0 0;
}
.checkout-list-item .product-title a {
  text-decoration: none;
  color: var(--color-text);
  display: block;
}
@media (min-width: 1200px) {
  .checkout-list-item .product-price {
    font-size: 0.9rem;
  }
}
.checkout-list-item .product-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F2F2F2;
  padding: 1px;
  border-radius: 4px;
}
.checkout-list-item .product-quantity .btn-quantity {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  font-size: 2rem;
  line-height: 1;
  color: #bdbdbd;
  user-select: none;
}
.checkout-list-item .product-quantity .btn-quantity:hover {
  color: var(--color-text);
  background-color: #fff;
}
.checkout-list-item .product-quantity .input-quantity {
  font-size: 0.9rem;
  background-color: transparent;
  width: 28px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  color: #1f1f1f;
  border: none;
  font-weight: 700;
}
.checkout-list-item .included-items-wrapper {
  margin-bottom: -5px;
}
@media (max-width: 991px) {
  .checkout-list-item .included-items-wrapper {
    margin-top: 10px;
  }
}
.checkout-list-item .bt-toggle-included-items {
  color: var(--color-text);
  border-radius: 4px;
  padding: 0 15px;
}
.checkout-list-item .bt-toggle-included-items:hover {
  background-color: #e6e6e6;
}
.checkout-list-item .included-item {
  padding: 5px;
  border: 1px solid #D4D4D4;
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
  margin-right: -5px;
  margin-left: -5px;
}
.checkout-list-item .included-item .product-quantity {
  background-color: #fff;
  border: 1px solid #f1f1f1;
}
.checkout-list-item .included-item .product-quantity .btn-quantity:hover {
  cursor: default;
  color: inherit;
  background-color: inherit;
}
@media (min-width: 1200px) {
  .checkout-list-item .included-item .product-price {
    flex: 0 0 140px;
  }
}
.flatpickr-day.selected,
.flatpickr-day .selected:hover {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #fff !important;
}
.flatpickr-day.today {
  border-color: var(--color-primary) !important;
}
.flatpickr-day.today:hover {
  background-color: color-mix(in srgb, var(--color-primary), transparent 80%) !important;
  color: var(--color-primary) !important;
}
.sticky-basket {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
  width: 400px;
  max-width: 100%;
}
@media (max-width: 500px) {
  .sticky-basket {
    width: 100%;
  }
}
.sticky-basket .bt-open-list {
  font-size: 0.875rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 0;
  border-radius: 4px;
  cursor: pointer;
  width: 100px;
  margin: 0 auto 5px;
}
.sticky-basket .bt-open-list:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.sticky-basket .group-buton {
  padding: 0 var(--spacing-small) 10px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
}
@media (max-width: 500px) {
  .sticky-basket .group-buton {
    font-size: 0.7rem;
  }
}
.sticky-basket .group-buton .border-right {
  border-right: 1px solid #fff;
  padding-right: 10px;
}
.sticky-basket .group-buton .price {
  font-size: 1.3rem;
  font-weight: 700;
}
@media (max-width: 500px) {
  .sticky-basket .group-buton .price {
    font-size: 1.1rem;
  }
}
.sticky-basket .group-buton .price .curency {
  font-size: 60%;
  font-weight: 400;
}
@media (max-width: 500px) {
  .sticky-basket .group-buton .buton {
    font-size: 0.7rem;
  }
}
.sticky-basket .basket-list {
  background-color: #fff;
  padding: 10px 10px 0;
}
.sticky-basket .basket-list .scroll-content {
  max-height: 300px;
  overflow-y: auto;
}
.sticky-basket .basket-list .scroll-content::-webkit-scrollbar {
  width: 0.4rem;
}
.sticky-basket .basket-list .scroll-content::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.sticky-basket .basket-list .scroll-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 40px;
}
.sticky-basket .product-list-item {
  background-color: #fff;
  width: 100%;
  padding: 5px 10px;
  border: 1px solid #E8E8E8;
  margin-bottom: 5px;
}
.sticky-basket .product-list-item .inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticky-basket .product-list-item .image {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  flex: 0 0 50px;
}
.sticky-basket .product-list-item .content {
  flex: 1 0 0;
}
.sticky-basket .product-list-item .product-title {
  flex: 1 0 0;
  font-size: 0.7rem;
  line-height: 1.1;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-basket .product-list-item .product-title a {
  text-decoration: none;
  color: var(--color-text);
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1200px) {
  .sticky-basket .product-list-item .product-price {
    font-size: 0.875rem;
  }
}
.sticky-basket .product-list-item .product-price .currency {
  font-size: 0.7rem;
}
.sticky-basket .product-list-item .product-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F2F2F2;
  padding: 1px;
  border-radius: 4px;
}
.sticky-basket .product-list-item .product-quantity .btn-quantity {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1.3rem;
  line-height: 1;
  color: #bdbdbd;
  user-select: none;
}
.sticky-basket .product-list-item .product-quantity .btn-quantity:hover {
  color: var(--color-text);
  background-color: #fff;
}
.sticky-basket .product-list-item .product-quantity .input-quantity {
  font-size: 0.7rem;
  background-color: transparent;
  width: 28px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  color: #1f1f1f;
  border: none;
  font-weight: 700;
}
.sticky-basket .carusel-sticky-recomended {
  padding-top: 10px;
}
.sticky-basket .carusel-sticky-recomended .swiper-wrapper {
  display: flex;
}
.sticky-basket .carusel-sticky-recomended .swiper-slide {
  display: flex;
  height: unset;
  width: 94px;
  max-width: 100%;
}
.sticky-basket .carusel-sticky-recomended .swiper-slide > div {
  width: inherit;
}
.sticky-basket .carusel-sticky-recomended:not(.swiper-initialized) .swiper-slide:not(:first-child) {
  display: none !important;
}
.sticky-basket .carusel-sticky-recomended .swiper-button-next,
.sticky-basket .carusel-sticky-recomended .swiper-button-prev {
  width: 24px;
  height: 24px;
  line-height: 24px;
  background-color: #F2F2F2;
  color: var(--color-primary);
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: none;
}
.sticky-basket .carusel-sticky-recomended .swiper-button-next:after,
.sticky-basket .carusel-sticky-recomended .swiper-button-prev:after {
  font-size: 0.7rem;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .sticky-basket .carusel-sticky-recomended .swiper-button-next:hover,
  .sticky-basket .carusel-sticky-recomended .swiper-button-prev:hover {
    background-color: #000;
    color: #fff;
  }
}
.sticky-basket .carusel-sticky-recomended .swiper-button-next.swiper-button-disabled,
.sticky-basket .carusel-sticky-recomended .swiper-button-prev.swiper-button-disabled {
  display: none !important;
}
.sticky-basket .carusel-sticky-recomended .swiper-button-next.swiper-button-lock,
.sticky-basket .carusel-sticky-recomended .swiper-button-prev.swiper-button-lock {
  display: none !important;
}
@media (max-width: 991px) {
  .sticky-basket .carusel-sticky-recomended .swiper-button-next,
  .sticky-basket .carusel-sticky-recomended .swiper-button-prev {
    display: none !important;
  }
}
.sticky-basket .carusel-sticky-recomended .swiper-button-next {
  right: 0;
}
.sticky-basket .carusel-sticky-recomended .swiper-button-prev {
  left: 0;
}
.sticky-basket .carusel-sticky-recomended .swiper-pagination-bullet {
  background-color: var(--color-text);
}
@media (min-width: 1200px) {
  .sticky-basket .carusel-sticky-recomended.swiper-initialized:hover .swiper-button-next,
  .sticky-basket .carusel-sticky-recomended.swiper-initialized:hover .swiper-button-prev {
    display: block;
  }
  .sticky-basket .carusel-sticky-recomended.swiper-initialized .swiper-pagination {
    display: none;
  }
}
@media (max-width: 1199px) {
  .sticky-basket .carusel-sticky-recomended.swiper-initialized {
    padding-bottom: 20px;
  }
  .sticky-basket .carusel-sticky-recomended.swiper-initialized .swiper-pagination {
    display: block;
  }
}
.sticky-basket .product-recommended-item {
  background-color: #fff;
  width: 100%;
  display: flex;
  padding: 5px;
  border: 1px solid #E8E8E8;
}
.sticky-basket .product-recommended-item a {
  text-decoration: none;
}
.sticky-basket .product-recommended-item .inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.sticky-basket .product-recommended-item .image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  position: relative;
}
.sticky-basket .product-recommended-item .image img {
  object-fit: cover;
  width: 70%;
  height: auto;
  max-width: 100%;
}
.sticky-basket .product-recommended-item .product-title {
  font-size: 0.65rem;
  line-height: 1.1;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-basket .product-recommended-item .content-bottom .buton {
  white-space: nowrap;
  width: 20px;
  height: 21px;
  font-size: 0.65rem;
  padding: 0;
  border-radius: 2px;
}
.sticky-basket .product-recommended-item .product-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F2F2F2;
  padding: 1px;
  border-radius: 2px;
}
.sticky-basket .product-recommended-item .product-quantity .btn-quantity {
  display: inline-flex;
  width: 18px;
  height: 20px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  font-size: 0.9rem;
  line-height: 1;
  color: #bdbdbd;
  user-select: none;
}
.sticky-basket .product-recommended-item .product-quantity .btn-quantity:hover {
  color: var(--color-text);
  background-color: #fff;
}
.sticky-basket .product-recommended-item .product-quantity .input-quantity {
  font-size: 0.6rem;
  background-color: transparent;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #1f1f1f;
  border: none;
  font-weight: 700;
}
@media (min-width: 1200px) {
  .account-section {
    display: flex;
    gap: 15px;
  }
}
@media (max-width: 1199px) {
  .account-section .account-sidebar-col {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: transparent;
    transition: 0.2s;
    visibility: hidden;
    transform: translate(-100%, 0);
    max-width: none;
    padding-right: 0;
  }
  .account-section .account-sidebar-col.opened {
    visibility: visible;
    transform: translate(0, 0);
  }
  .account-section .account-sidebar-col .bg-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }
}
@media (max-width: 1199px) and (min-width: 1200px) {
  .account-section .account-sidebar-col .bg-menu {
    display: none;
  }
}
@media (min-width: 1200px) {
  .account-section .account-sidebar-col {
    flex: 1 0 300px;
    max-width: 300px;
  }
}
.account-section .account-sidebar-col .account-sidebar {
  background-color: #fff;
  padding: 30px 0;
}
@media (max-width: 1199px) {
  .account-section .account-sidebar-col .account-sidebar {
    padding: 55px 0 0;
    position: relative;
    height: 100%;
    overflow-y: auto;
    width: 400px;
    max-width: 100%;
  }
}
.account-section .account-sidebar-col .close-bt {
  position: absolute;
  right: 5px;
  cursor: pointer;
  top: 10px;
  z-index: 0;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: 0.2s;
  text-align: center;
  color: #fff;
  background-color: #000;
}
@media (min-width: 1200px) {
  .account-section .account-sidebar-col .close-bt {
    display: none;
  }
}
.account-section .account-sidebar-col .account-menu {
  width: 100%;
}
.account-section .account-sidebar-col .account-menu a {
  color: var(--color-text);
  padding: 1rem var(--spacing-small);
  display: block;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #E9E9E9;
}
.account-section .account-sidebar-col .account-menu a:hover {
  color: var(--color-primary);
}
.account-section .account-sidebar-col .account-menu a.active {
  background-color: var(--color-greydark);
  color: #fff;
}
.account-section .account-details-col {
  flex: 1 0 0;
}
.account-section .account-details-col .account-content {
  background-color: #fff;
}
@media (min-width: 500px) {
  .account-section .account-details-col .account-content {
    padding: var(--spacing-small);
  }
}
.account-section .account-details-col .account-content .border-bloc {
  border: 1px solid #E4E2E2;
  padding: 10px;
  border-radius: 4px;
}
@media (min-width: 500px) {
  .account-section .account-details-col .account-content .border-bloc {
    padding: var(--spacing-small);
  }
}
.history-table {
  border: 1px solid #D4D4D4;
}
.history-table thead th {
  font-size: 9px;
  text-align: center;
  border: 1px solid #D4D4D4;
  border-right: 1px solid #D4D4D4;
  padding: 10px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #F2F2F2;
}
.history-table thead th:last-child {
  border-color: #D4D4D4;
}
.history-table tbody td {
  border: 1px solid #D4D4D4;
  font-size: 10px;
  padding: 10px;
  text-align: center;
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.modal .modal-header,
.modal .modal-body {
  padding: var(--spacing-small);
}
.modal .btn-close {
  color: var(--color-primary) !important;
  background: none;
}
.modal .modal-dismiss-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  margin: 0;
  line-height: 1;
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  flex-shrink: 0;
  color: inherit;
  opacity: 0.85;
}
.modal .modal-dismiss-icon:hover,
.modal .modal-dismiss-icon:focus {
  opacity: 1;
}
.modal .modal-dismiss-icon:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.modal-card .modal-dialog {
  max-width: 720px;
}
.modal-card .modal-content {
  border: none;
  border-radius: 8px;
  overflow: hidden;
}
.modal-card .modal-header {
  border-bottom: 1px solid #E8E8E8;
  align-items: center;
}
.modal-card .modal-body {
  padding: var(--spacing-small) var(--spacing-medium);
}
.modal-card .form-label {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}
.modal-card .card-modal-consent {
  padding-top: 0.5rem;
  border-top: 1px solid #E8E8E8;
}
.modal-card .card-modal-sms-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #E8E8E8;
}
.modal-card .card-modal-sms-notice {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #f7f7f7;
  border-radius: 6px;
}
.modal-card .card-modal-error:not(:empty) {
  color: #c0392b;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
.modal-card .card-modal-success {
  padding: 1rem;
  background: #f0faf5;
  border-radius: 6px;
  border: 1px solid #d4edda;
}
.product-favorit {
  background-color: #fff;
  width: 100%;
  padding: 5px 10px;
  border: 1px solid #E8E8E8;
  margin-bottom: 5px;
}
.product-favorit .inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-favorit .image {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  flex: 0 0 50px;
}
.product-favorit .content {
  flex: 1 0 0;
}
.product-favorit .product-title {
  flex: 1 0 0;
  font-size: 0.7rem;
  line-height: 1.1;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-favorit .product-title a {
  text-decoration: none;
  color: var(--color-text);
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1200px) {
  .product-favorit .product-price {
    font-size: 0.875rem;
  }
}
.product-favorit .product-price .currency {
  font-size: 0.7rem;
}
.product-favorit .product-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F2F2F2;
  padding: 1px;
  border-radius: 4px;
}
.product-favorit .product-quantity .btn-quantity {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1.3rem;
  line-height: 1;
  color: #bdbdbd;
  user-select: none;
}
.product-favorit .product-quantity .btn-quantity:hover {
  color: var(--color-text);
  background-color: #fff;
}
.product-favorit .product-quantity .input-quantity {
  font-size: 0.7rem;
  background-color: transparent;
  width: 28px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  color: #1f1f1f;
  border: none;
  font-weight: 700;
}
.product-favorit .grp-buttons {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-favorit .grp-buttons .buton {
  display: block;
  padding: 8px 10px;
  font-size: 0.8rem;
}
.produs-favorit {
  background-color: #fff;
  width: 100%;
  padding: 10px;
  border: 1px solid #E8E8E8;
  margin-bottom: 5px;
}
.produs-favorit a {
  text-decoration: none;
}
.produs-favorit .inner {
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .produs-favorit .inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    display: grid;
    column-gap: 10px;
  }
}
@media (min-width: 768px) {
  .produs-favorit .inner {
    display: flex;
    gap: 10px;
  }
}
.produs-favorit .image {
  min-width: 50px;
}
@media (max-width: 767px) {
  .produs-favorit .image {
    grid-row: 1 / 3;
    grid-column: 1;
  }
}
@media (min-width: 768px) {
  .produs-favorit .image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
}
.produs-favorit .image img {
  object-fit: cover;
  width: 100px;
  height: auto;
  max-width: 100%;
}
.produs-favorit .badges {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-width: 100px;
  gap: 2px;
}
.produs-favorit .badges .badge-item {
  width: 44px;
  height: 44px;
}
.produs-favorit .badges .badge-item .big {
  font-size: 1rem;
}
.produs-favorit .badges .badge-item .text {
  font-size: 0.4rem;
}
.produs-favorit .badges .badge-x-la-pret-x {
  gap: 1px;
}
@media (max-width: 767px) {
  .produs-favorit .content {
    grid-column: 2;
    grid-row: 1;
  }
}
@media (min-width: 768px) {
  .produs-favorit .content {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .produs-favorit .content-bottom {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
  }
}
@media (min-width: 768px) {
  .produs-favorit .content-bottom {
    flex: 0 0 auto;
    display: flex;
    gap: 10px;
  }
}
@media (max-width: 1399px) {
  .produs-favorit .product-title {
    font-size: 0.85rem;
  }
}
.produs-favorit .product-title a,
.produs-favorit .product-title p {
  text-decoration: none;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .produs-favorit .product-title-brand {
    display: flex !important;
    align-items: center;
    gap: 6px;
  }
}
.produs-favorit .product-title-brand,
.produs-favorit .product-brand {
  font-size: 0.875rem;
  line-height: 1.1;
}
.produs-favorit .product-title-brand .lab,
.produs-favorit .product-brand .lab {
  font-size: 90%;
}
.produs-favorit .product-title-brand a,
.produs-favorit .product-brand a {
  text-decoration: none;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.produs-favorit .product-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  flex: 0 0 180px;
}
@media (min-width: 768px) {
  .produs-favorit .product-price {
    padding-left: 15px;
  }
  .produs-favorit .product-price:before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #ccc;
  }
}
.produs-favorit .group-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  flex: 0 0 auto;
  gap: 7px;
}
@media (min-width: 768px) {
  .produs-favorit .group-buttons {
    padding-left: 15px;
  }
  .produs-favorit .group-buttons:before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #ccc;
  }
}
.produs-favorit .group-buttons .product-brand {
  font-size: 0.7rem;
}
.produs-favorit .group-buttons .product-brand .fs-small {
  font-size: inherit;
}
@media (min-width: 768px) {
  .produs-favorit .group-buttons .product-brand {
    display: none;
  }
}
.produs-favorit .group-buttons .buton {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .produs-favorit .group-buttons .buton {
    font-size: 0.8rem;
    padding: 10px 15px;
    max-width: 180px;
  }
}
.produs-favorit .bt-favorite {
  background-color: transparent;
  color: var(--color-primary);
}
.produs-favorit .bt-favorite:hover {
  color: var(--color-error);
  border-color: var(--color-error);
}
.produs-favorit .brand-name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.produs-favorit .price {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  margin-bottom: 8px;
}
.produs-favorit .price .lab {
  font-size: 0.7rem;
}
.produs-favorit .price .value {
  font-size: 1rem;
}
.produs-favorit .price .value sup {
  top: -0.4em;
  font-size: 0.7em;
}
.produs-favorit .price .currency {
  font-size: 0.7em;
}
.produs-search-item {
  background-color: #fff;
  width: 100%;
  padding: 10px;
  border: 1px solid #E8E8E8;
}
.produs-search-item:not(:last-child) {
  margin-bottom: 5px;
}
.produs-search-item a {
  text-decoration: none;
}
.produs-search-item .inner {
  position: relative;
  width: 100%;
  display: flex;
  gap: 10px;
}
.produs-search-item .image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  min-width: 60px;
  flex: 0 0 60px;
}
@media (min-width: 576px) {
  .produs-search-item .image {
    flex: 0 0 100px;
  }
}
.produs-search-item .image img {
  object-fit: cover;
  width: 70px;
  height: auto;
  max-width: 100%;
}
.produs-search-item .badges {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: 1;
  max-width: 100px;
  gap: 2px;
}
@media (max-width: 767px) {
  .produs-search-item .badges {
    gap: 1px;
    top: -7px;
    left: -7px;
    max-width: 80px;
  }
}
.produs-search-item .badges .badge-item {
  width: 45px;
  height: 45px;
}
@media (max-width: 767px) {
  .produs-search-item .badges .badge-item {
    width: 32px;
    height: 32px;
  }
}
.produs-search-item .badges .badge-item .big {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .produs-search-item .badges .badge-item .big {
    font-size: 0.7rem;
  }
}
.produs-search-item .badges .badge-item .text {
  font-size: 0.4rem;
}
@media (max-width: 767px) {
  .produs-search-item .badges .badge-item .text {
    font-size: 0.3rem;
  }
}
.produs-search-item .badges .badge-x-la-pret-x {
  gap: 2px;
}
.produs-search-item .badges .badge-x-la-pret-x .text {
  font-size: 0.3rem;
}
@media (max-width: 767px) {
  .produs-search-item .badges .badge-x-la-pret-x .text {
    font-size: 0.2rem;
  }
}
.produs-search-item .content {
  flex: 1 0 0;
  align-self: center;
}
.produs-search-item .product-title {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .produs-search-item .product-title {
    font-size: 0.7rem;
  }
}
.produs-search-item .product-title a,
.produs-search-item .product-title p {
  text-decoration: none;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.produs-search-item .product-price {
  display: flex;
  gap: 5px;
}
@media (max-width: 767px) {
  .produs-search-item .product-price {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .produs-search-item .product-price {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.produs-search-item .product-price .price {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
.produs-search-item .product-price .price .lab {
  font-size: 0.7rem;
}
@media (max-width: 767px) {
  .produs-search-item .product-price .price .lab {
    font-size: 0.6rem;
  }
}
.produs-search-item .product-price .price .value {
  font-size: 1rem;
}
@media (max-width: 767px) {
  .produs-search-item .product-price .price .value {
    font-size: 0.8rem;
  }
}
.produs-search-item .product-price .price .value sup {
  top: -0.4em;
  font-size: 0.7em;
}
@media (max-width: 767px) {
  .produs-search-item .product-price .price .value sup {
    top: -0.6em;
    font-size: 0.5rem;
  }
}
.produs-search-item .product-price .price .currency {
  font-size: 0.7rem;
}
@media (max-width: 767px) {
  .produs-search-item .product-price .price .currency {
    font-size: 0.6rem;
  }
}
.produs-search-item .group-buttons {
  display: flex;
  flex: 0 0 auto;
  align-self: center;
}
.produs-search-item .group-buttons .buton {
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 1rem;
  padding: 0;
}
.product-options {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.was-validated .form-control:invalid {
  border-color: var(--color-error);
  background-image: none;
}
.form-group {
  position: relative;
}
.invalid-tooltip {
  position: static;
  border-radius: 3px;
  text-align: initial;
  background-color: #ffe1e1;
  color: darkred;
  padding: 0.2rem 0.4rem;
  font-size: 0.75rem;
}
.was-validated .form-control:invalid ~ .invalid-tooltip {
  display: block;
}
input.form-control {
  font-size: 1rem;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  color: var(--color-text);
  background-color: #fff;
  border-radius: 4px;
  border-color: #D4D4D4;
  width: 100%;
  box-shadow: none;
  display: block;
  overflow: hidden;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  height: 40px;
  line-height: 40px;
}
input.form-control:focus {
  border-color: #000;
  box-shadow: none !important;
}
textarea.form-control {
  padding: 0.8rem;
  font-size: 1rem;
  width: 100%;
  box-shadow: none;
  display: block;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  border-color: #D4D4D4;
  background-color: #fff;
  color: var(--color-text);
  border-radius: 4px;
  height: 100px;
}
textarea.form-control:focus {
  border-color: #000;
  box-shadow: none !important;
}
.custom-checkbox {
  padding-left: 0;
}
.custom-checkbox .form-check-input {
  position: absolute;
  left: -9999999px;
}
.custom-checkbox .form-check-label {
  font-size: 0.9rem;
  line-height: calc(6px + 1.7ex);
  position: relative;
  padding-left: 32px;
}
.custom-checkbox .form-check-label:before {
  display: block;
  font-family: 'fontello';
  content: '';
  background-color: #fff;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  left: 0;
  top: -2px;
  position: absolute;
  border: 1px solid #D4D4D4;
  color: var(--color-text);
  font-size: 0.9rem;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
}
.custom-checkbox .form-check-label a {
  color: inherit;
}
.custom-checkbox .form-check-input:checked ~ .form-check-label::before {
  content: '\e81a';
  color: var(--color-primary);
  background-color: #fff;
}
.custom-checkbox input.form-check-input[type=radio] ~ .form-check-label::before {
  border-radius: 50%;
}
.custom-checkbox input.form-check-input[type=radio]:checked ~ .form-check-label::before {
  content: '';
  background-color: #fff;
}
.custom-checkbox input.form-check-input[type=radio]:checked ~ .form-check-label::after {
  display: block;
  content: '';
  background-color: var(--color-primary);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  left: 6px;
  top: 4px;
  z-index: 1;
  position: absolute;
}

.form-select {
  font-size: 1rem;
  display: block;
  -moz-background-clip: padding;
  -webkit-background-clip: padding;
  background-clip: padding-box;
  -webkit-appearance: none !important;
  border: 1px solid #D4D4D4;
  background-color: #fff;
  color: var(--color-text) !important;
  border-radius: 6px;
  height: 40px;
  line-height: 40px;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}
.form-select option:disabled {
  display: none;
}
.form-select:focus {
  border-color: #000;
  box-shadow: none !important;
}
.form-select option {
  color: var(--color-text) !important;
  border-radius: 0;
}
.form-select.form-select-sm {
  font-size: 0.875rem;
  height: 34px;
  line-height: 34px;
}
.alert {
  padding: var(--spacing-small);
  border-radius: 10px;
  font-weight: 400;
  border: none;
}
.custom-select option:disabled {
  display: none;
}
.custom-control-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}
.upload {
  border: 1px solid #dee2e6;
  display: flex;
  align-items: center;
  position: relative;
  height: 60px;
  line-height: 60px;
  color: var(--color-primary);
  cursor: pointer;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.upload .file-chosen {
  display: block;
  flex: 1 0 0;
  padding: 0 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.upload .bt-upload {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #eaeaea;
  color: var(--color-text);
}
.upload .bt-upload:hover {
  background-color: var(--color-primary);
  color: #fff;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
