/* stylelint-disable */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/material-icons.woff2) format("woff2");
}

/* stylelint-enable */
.material-icons {
  display: inline-block;
  width: 1em;
  height: 1em;
  font-family: "Material Icons", Arial, sans-serif;
  font-size: 24px;
  /* Preferred icon size */
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  vertical-align: middle;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

body,
html {
  height: 100%;
}

body {
  font-family: var(--font_primary);
  font-size: 1rem;
  line-height: 1.25em;
  color: var(--color_font);
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

.container {
  max-width: 100%;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

@media (min-width: 576px) {
  .container {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .container {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .container {
    width: 100%;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (min-width: 1200px) {
  .container {
    width: var(--width-container);
    max-width: 100%;
  }

  .full_width_generic>.container {
    width: 100%;
  }
}

ul {
  padding-left: 0;
  list-style: none;
}

a {
  color: var(--color_link);
}

a:hover {
  color: var(--color_hover);
  text-decoration: none;
}

p {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color_font);
}

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

label .color,
.variant-links .color,
.custom-checkbox input[type="checkbox"]+span.color {
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0.3125rem;
  margin-right: 0.5rem;
  cursor: pointer;
  background-size: contain;
  border: 1px solid #979797;
}

label .color.active,
label .color:hover,
.variant-links .color.active,
.variant-links .color:hover,
.custom-checkbox input[type="checkbox"]+span.color.active,
.custom-checkbox input[type="checkbox"]+span.color:hover {
  border: 2px solid var(--color_font);
}

.facet-label.active .custom-checkbox span.color,
.facet-label:hover .custom-checkbox span.color {
  border: 1px solid #979797;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.h1,
.h2,
.h3 {
  color: var(--color_font);
}

.h1,
h1 {
  font-size: 1.375rem;
  line-height: 1.375rem;
}

.h3,
h3,
.h4,
h4 {
  font-size: 1rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.h4 {
  font-weight: 700;
  color: var(--color_font);
}

.h6,
h6 {
  font-size: 0.9375rem;
}

.h3.title,
.h3.products-section-title {
  text-transform: none;
  margin: 0 0 1rem;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0;
}

.btn-primary,
.btn-secondary {
  padding: 0.5rem 1.25rem;
}

.btn-primary .material-icons,
.btn-secondary .material-icons {
  margin: -4px 0 0 0;
  font-size: 18px;
}

.btn-primary {
  color: var(--button_p_color);
  background-color: var(--button_p_bk);
  border-color: transparent;
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:hover {
  color: var(--button_p_color_hover);
  background-color: var(--button_p_bk_hover);
  border-color: transparent;
}

.btn-primary.active,
.btn-primary:active,
.btn-primary.dropdown-toggle {
  color: var(--button_p_color_hover);
  background-color: var(--button_p_bk_hover);
  border-color: transparent;
  color: var(--button_p_color);
  background-color: var(--button_p_bk);
  border-color: transparent;
  background-image: none;
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover {
  color: var(--button_p_color_hover);
  background-color: var(--button_p_bk_hover);
  border-color: transparent;
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary:disabled.focus,
.btn-primary:disabled:focus,
.btn-primary:disabled:hover {
  background-color: var(--button_p_bk_hover);
  border-color: transparent;
}

.btn-secondary,
.btn-tertiary {
  padding: 0.25rem;
  margin: 0.25rem 0;
  color: var(--button_s_color);
  background-color: var(--button_s_bk);
}

.btn-secondary .material-icons,
.btn-tertiary .material-icons {
  font-size: 1rem;
}

.btn-secondary:hover,
.btn-tertiary:hover {
  border: 1px solid rgba(35, 35, 35, 0.2);
}

.btn-unstyle {
  padding: 0;
  text-align: inherit;
  background-color: transparent;
  border: none;
}

.btn-unstyle:focus {
  outline: 0;
}

.btn-unstyle:focus .expand-more {
  color: var(--primary_color);
}

.card {
  border: none;
}

label,
.label {
  font-size: 0.875rem;
  color: var(--color_font);
  text-align: right;
}

small.label,
small.value {
  font-size: 0.8125rem;
}

/*.form-control-label {
  padding-top: 0.625rem;
}*/
.form-control {
  padding: 0.5rem 1rem;
  color: var(--color_font);
  background: inherit;
  border: 1px solid #d2d2d2;
  width: 100%;
  font-family: inherit !important;
}

.form-control:focus {
  color: var(--color_font);
}

.input-group .form-control:focus {
  outline: none;
}

.input-group .form-control:disabled,
.input-group .form-control[readonly] {
  background-color: var(--background);
}

.input-group .input-group-btn {
  height: 100%;
}

.input-group .input-group-btn>.btn {
  padding: 7px;
  margin-left: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  border: 0;
  box-shadow: none;
}

.input-group .input-group-btn>.btn[data-action="show-password"] {
  padding: 7px;
  background: #7a7a7a;
}

input,
textarea {
  /* stylelint-disable */
  /* stylelint-enable */
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #7a7a7a;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #7a7a7a;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #7a7a7a;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #7a7a7a;
}

input:active::-webkit-input-placeholder,
textarea:active::-webkit-input-placeholder {
  color: var(--color_font);
}

input:active::-moz-placeholder,
textarea:active::-moz-placeholder {
  color: var(--color_font);
}

input:active:-ms-input-placeholder,
textarea:active:-ms-input-placeholder {
  color: var(--color_font);
}

input:active:-moz-placeholder,
textarea:active:-moz-placeholder {
  color: var(--color_font);
}

.form-control-select {
  height: 2.625rem;
  padding: 0 0.5rem;
  background: #fff url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAQAAAD9CzEMAAAAPklEQVR4Ae3TwREAEBQD0V/6do4SXPZg7EsBhsQ8IEmSMOsiuEfg3gL3oXC7wK0bd1G4o8X9F4yIkyQfSrIByQBjp7QuND8AAAAASUVORK5CYII=") no-repeat scroll right 0.5rem center/1.25rem 1.25rem;
  /* stylelint-disable */
  -moz-appearance: none;
  -webkit-appearance: none;
  /* stylelint-enable */
}

.form-control-valign {
  padding-top: 0.5rem;
}

.form-control-comment {
  padding-top: 0.5rem;
  font-size: 0.8em;
  color: #7a7a7a;
  font-style: italic;
}

.form-control-submit.disabled {
  color: #fff;
  background: #24b9d7;
}

.form-group {
  margin-bottom: 15px;
}

.form-group.has-error input,
.form-group.has-error select {
  outline: 0.1875rem solid #ff4c4c;
}

.form-group.has-error .help-block {
  color: #ff4c4c;
}

.group-span-filestyle label {
  margin: 0;
}

.group-span-filestyle .btn-default,
.group-span-filestyle .bootstrap-touchspin .btn-touchspin,
.bootstrap-touchspin .group-span-filestyle .btn-touchspin {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  text-transform: uppercase;
  background: var(--primary_color);
  border-radius: 0;
}

.bootstrap-touchspin {
  display: inline-block;
  float: left;
  width: auto;
}

.bootstrap-touchspin input:focus {
  outline: none;
}

.bootstrap-touchspin input.form-control,
.bootstrap-touchspin input.input-group {
  float: left;
  width: 3rem;
  height: 1.65rem;
  padding: 0.175rem 0.5rem;
  color: var(--color_font);
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.bootstrap-touchspin .btn-touchspin {
  height: 0.8875rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.bootstrap-touchspin .btn-touchspin:hover {
  background-color: #f6f6f6;
}

.bootstrap-touchspin .input-group-btn-vertical {
  float: left;
  width: auto;
  color: var(--color_font);
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
  border-radius: 0;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  border-radius: 0;
}

.bootstrap-touchspin .input-group-btn-vertical .touchspin-up::after {
  content: "\E5CE";
}

.bootstrap-touchspin .input-group-btn-vertical .touchspin-down::after {
  content: "\E5CF";
}

.bootstrap-touchspin .input-group-btn-vertical i {
  top: 0.0625rem;
  left: 0.1875rem;
  font-size: 0.9375rem;
}

.radio-inline .custom-radio {
  margin-right: 0.5rem;
}

.radio-inline:first-of-type {
  margin-right: 1rem;
}

form section .form-informations {
  display: inline-block;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  color: var(--color_font);
}

form section .form-informations-title,
form section .form-informations-option {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

form .form-control-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color_font);
}

.custom-radio {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  cursor: pointer;
  background: #fff;
  border: #979797 1px solid;
  border-radius: 50%;
}

.custom-radio input[type="radio"] {
  cursor: pointer;
  opacity: 0;
}

.custom-radio input[type="radio"]:checked+span {
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  display: block;
  width: 12px;
  height: 12px;
  background-color: var(--primary_color);
  border-radius: 50%;
}

.custom-radio input[type="radio"]:focus+span {
  border-color: #7a7a7a;
}

.custom-checkbox {
  position: relative;
}

.custom-checkbox input[type="checkbox"] {
  position: absolute;
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  cursor: pointer;
  opacity: 0;
}

.custom-checkbox input[type="checkbox"]+span {
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  pointer-events: none;
  cursor: pointer;
  border: 1px #979797 solid;
}

.custom-checkbox input[type="checkbox"]+span .checkbox-checked {
  display: none;
  margin: -0.125rem;
  font-size: 1.25rem;
  color: var(--color_font);
}

.custom-checkbox input[type="checkbox"]:checked+span .checkbox-checked {
  display: block;
}

.custom-checkbox input[type="checkbox"]:focus+span {
  border-color: #7a7a7a;
}

.custom-checkbox label {
  text-align: left;
}

.text-muted {
  font-size: 0.875rem;
}

.done {
  display: inline-block;
  padding: 0 0.8125rem;
  margin-right: 1.563rem;
  color: #4cbb6c;
}

.thumb-mask>.mask {
  position: relative;
  width: 3.438rem;
  height: 3.438rem;
  margin: 0.625rem 0;
  overflow: hidden;
  border: #f6f6f6 1px solid;
}

.thumb-mask>.mask img {
  width: 55px;
  height: 55px;
}

.definition-list dl {
  display: flex;
  flex-wrap: wrap;
}

.definition-list dl dt {
  font-weight: 500;
}

.definition-list dl dd,
.definition-list dl dt {
  flex: 0 0 45%;
  padding: 0.625rem;
  margin: 0.125rem;
  background: #f6f6f6;
}

.definition-list dl dd:nth-of-type(even),
.definition-list dl dt:nth-of-type(even) {
  background: var(--background);
}

.help-block {
  margin-top: 0.625rem;
}

.btn.disabled,
.btn.disabled:hover {
  color: #ddd;
  background: #f6f6f6;
  opacity: 1;
}

.alert-warning .material-icons {
  padding-top: 0.3125rem;
  margin-right: 0.625rem;
  font-size: 2rem;
  color: #ff9a52;
}

.alert-warning .alert-text {
  padding-top: 0.625rem;
  font-size: 0.9375rem;
}

.alert-warning .alert-link {
  padding: 0.3125rem 1.25rem;
  margin-left: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6c868e;
  border-width: 2px;
  border-radius: 2px;
}

.alert-warning ul li:last-child .alert-link {
  color: #fff;
}

.alert-warning .warning-buttons {
  margin-top: 0.3125rem;
}

.btn-warning {
  transition: all 0.4s ease-in-out;
}

.btn-tertiary-outline {
  color: #6c868e;
  background-color: transparent;
  background-image: none;
  border: 0.15rem solid #6c868e;
  border-color: #6c868e;
  transition: all 0.4s ease-in-out;
}

.btn-tertiary-outline:hover {
  color: #bbcdd2;
  border-color: #bbcdd2;
}

.alert {
  font-size: 0.8125rem;
}

.nav-item .nav-link,
.nav-item .nav-separtor {
  font-weight: 600;
  color: #7a7a7a;
}

.nav-item .nav-link.active,
.nav-item .nav-separtor.active {
  color: var(--color_font);
}

.separator {
  margin: 0;
  border-color: rgba(0, 0, 0, 0.25);
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - (30px * 2));
}

.popover {
  font-family: inherit;
}

input[type="number"] {
  /* stylelint-disable */
  -moz-appearance: textfield;
  /* stylelint-enable */
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.ui-autocomplete.ui-front {
  z-index: 999;
}

.imgs_payment {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.imgs_payment li {
  padding: 3px;
  width: 48px;
  text-align: center;
  background-color: #FFF;
  border-radius: 2px;
  box-shadow: 0 0 1px 1px #e4e7ee;
  margin-right: 10px;
  margin-bottom: 0;
  height: 28px;
}

.imgs_payment li img {
  width: 37px;
  vertical-align: middle;
  height: auto;
}

#full-column {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
}

.datatext {
  cursor: pointer;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-inline {
  display: inline !important;
}

.float-xs-left {
  float: left !important;
}

.float-xs-right {
  float: right !important;
}

.float-xs-none {
  float: none !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.splide .splide__track {
  margin-left: -14px;
  margin-right: -14px;
}

.images-container .splide .splide__track {
  margin-left: 0;
  margin-right: 0;
}

.modal.fade:not(.in).right .modal-dialog {
  -webkit-transform: translate3d(25%, 0, 0);
  transform: translate3d(25%, 0, 0);
}

.modal.fade:not(.in).left .modal-dialog {
  -webkit-transform: translate3d(-25%, 0, 0);
  transform: translate3d(-25%, 0, 0);
}

.card-block {
  padding: 1.25rem;
}

@media (max-width: 991px) {
  .card {
    background-color: #fff !important;
  }

  .filestyle {
    max-width: 90%;
  }
}

/* SPLIDEJS */
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__container {
  position: relative;
  box-sizing: border-box;
}

.splide__list {
  margin: 0 !important;
  padding: 0 !important;
  width: -webkit-max-content;
  width: max-content;
  will-change: transform;
}

.splide.is-active .splide__list {
  display: flex;
}

.splide__pagination {
  display: inline-flex;
  align-items: center;
  width: 95%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

.splide__pagination li {
  list-style-type: none;
  display: inline-block;
  line-height: 1;
  margin: 0;
}

.splide {
  visibility: hidden;
}

.splide,
.splide__slide {
  position: relative;
  outline: none;
}

.splide__slide {
  box-sizing: border-box;
  list-style-type: none !important;
  margin: 0;
  flex-shrink: 0;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__slider {
  position: relative;
}

.splide__spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #999;
  border-left-color: transparent;
  animation: splide-loading 1s linear infinite;
}

.splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.splide--draggable>.splide__track>.splide__list>.splide__slide {
  -webkit-user-select: none;
  user-select: none;
}

.splide--fade>.splide__track>.splide__list {
  display: block;
}

.splide--fade>.splide__track>.splide__list>.splide__slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}

.splide--fade>.splide__track>.splide__list>.splide__slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide--ttb>.splide__track>.splide__list {
  display: block;
}

.splide--ttb>.splide__pagination {
  width: auto;
}

.splide__arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  opacity: .7;
  background: #ccc;
}

.splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
}

.splide__arrow:hover {
  cursor: pointer;
  opacity: .9;
}

.splide__arrow:focus {
  outline: none;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide__pagination {
  position: absolute;
  z-index: 1;
  bottom: .5em;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}

.splide__pagination__page {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 3px;
  padding: 0;
  transition: transform .2s linear;
  border: none;
  opacity: .7;
}

.splide__pagination__page.is-active {
  transform: scale(1.4);
  background: #fff;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: .9;
}

.splide__pagination__page:focus {
  outline: none;
}

.splide__progress__bar {
  width: 0;
  height: 3px;
  background: #ccc;
}

.splide--nav>.splide__track>.splide__list>.splide__slide {
  border: 3px solid transparent;
}

.splide--nav>.splide__track>.splide__list>.splide__slide.is-active {
  border-color: #000;
}

.splide--nav>.splide__track>.splide__list>.splide__slide:focus {
  outline: none;
}

.splide--rtl>.splide__arrows .splide__arrow--prev,
.splide--rtl>.splide__track>.splide__arrows .splide__arrow--prev {
  right: 1em;
  left: auto;
}

.splide--rtl>.splide__arrows .splide__arrow--prev svg,
.splide--rtl>.splide__track>.splide__arrows .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide--rtl>.splide__arrows .splide__arrow--next,
.splide--rtl>.splide__track>.splide__arrows .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide--rtl>.splide__arrows .splide__arrow--next svg,
.splide--rtl>.splide__track>.splide__arrows .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide--ttb>.splide__arrows .splide__arrow,
.splide--ttb>.splide__track>.splide__arrows .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide--ttb>.splide__arrows .splide__arrow--prev,
.splide--ttb>.splide__track>.splide__arrows .splide__arrow--prev {
  top: 1em;
}

.splide--ttb>.splide__arrows .splide__arrow--prev svg,
.splide--ttb>.splide__track>.splide__arrows .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide--ttb>.splide__arrows .splide__arrow--next,
.splide--ttb>.splide__track>.splide__arrows .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide--ttb>.splide__arrows .splide__arrow--next svg,
.splide--ttb>.splide__track>.splide__arrows .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide--ttb>.splide__pagination {
  display: flex;
  flex-direction: column;
  bottom: 50%;
  left: auto;
  right: .5em;
  transform: translateY(50%);
}

#main .page-header {
  margin-bottom: 1.563rem;
}

#main .page-content {
  margin-bottom: 1.563rem;
}

#main .page-content h6 {
  margin-bottom: 1.125rem;
}

#main .page-content #notifications {
  margin-right: -15px;
  margin-left: -15px;
}

#main .page-footer {
  margin-bottom: 1.563rem;
}

#wrapper {
  padding-top: 1rem;
  background: var(--background);
  padding-bottom: 3rem;
}

#wrapper .banner {
  display: block;
  margin-bottom: 1.5rem;
}

#wrapper .breadcrumb {
  padding: 0;
  background: transparent;
  margin-bottom: 1rem;
}

#wrapper .breadcrumb[data-depth="1"] {
  display: none;
}

#wrapper .breadcrumb ol {
  padding-left: 0;
  margin-bottom: 0;
}

#wrapper .breadcrumb li {
  display: inline;
}

#wrapper .breadcrumb li::after {
  margin: 0.3125rem;
  color: var(--color_font);
  content: ">";
  font-size: 10px;
}

#wrapper .breadcrumb li:last-child {
  margin: 0;
  color: var(--color_font);
  content: "/";
}

#wrapper .breadcrumb li:last-child::after {
  content: "";
}

#wrapper .breadcrumb li a {
  color: var(--color_font);
  font-size: 12px;
}

#wrapper .breadcrumb li a span:hover {
  color: var(--color_hover);
}

#wrapper .breadcrumb li span {
  color: var(--color_font);
  font-size: 12px;
}

#wrapper #left-column {
  padding-left: 0;
}

#wrapper #content-wrapper {
  padding-right: 0;
}

@media (max-width: 991px) {
  #wrapper .breadcrumb {
    display: block;
    overflow: auto;
    white-space: nowrap;
  }
}

#products .products,
.featured-products .products,
.product-accessories .products,
.product-miniature .products {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#products .product-thumbnail,
.featured-products .product-thumbnail,
.product-accessories .product-thumbnail,
.product-miniature .product-thumbnail {
  display: block;
}

#products .thumbnail-container,
.featured-products .thumbnail-container,
.product-accessories .thumbnail-container,
.product-miniature .thumbnail-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 1.563rem;
  overflow: hidden;
  background: #fff;
}

#products .thumbnail-container:hover .highlighted-informations,
#products .thumbnail-container:focus .highlighted-informations,
.featured-products .thumbnail-container:hover .highlighted-informations,
.featured-products .thumbnail-container:focus .highlighted-informations,
.product-accessories .thumbnail-container:hover .highlighted-informations,
.product-accessories .thumbnail-container:focus .highlighted-informations,
.product-miniature .thumbnail-container:hover .highlighted-informations,
.product-miniature .thumbnail-container:focus .highlighted-informations {
  top: calc(250px - 4.4rem);
  bottom: 5.5rem;
}

#products .thumbnail-container:hover .highlighted-informations::after,
#products .thumbnail-container:focus .highlighted-informations::after,
.featured-products .thumbnail-container:hover .highlighted-informations::after,
.featured-products .thumbnail-container:focus .highlighted-informations::after,
.product-accessories .thumbnail-container:hover .highlighted-informations::after,
.product-accessories .thumbnail-container:focus .highlighted-informations::after,
.product-miniature .thumbnail-container:hover .highlighted-informations::after,
.product-miniature .thumbnail-container:focus .highlighted-informations::after {
  opacity: 1;
}

#products .thumbnail-container:hover .highlighted-informations.no-variants,
#products .thumbnail-container:focus .highlighted-informations.no-variants,
.featured-products .thumbnail-container:hover .highlighted-informations.no-variants,
.featured-products .thumbnail-container:focus .highlighted-informations.no-variants,
.product-accessories .thumbnail-container:hover .highlighted-informations.no-variants,
.product-accessories .thumbnail-container:focus .highlighted-informations.no-variants,
.product-miniature .thumbnail-container:hover .highlighted-informations.no-variants,
.product-miniature .thumbnail-container:focus .highlighted-informations.no-variants {
  top: calc(250px - 2.5rem);
  bottom: 2.2rem;
}

#products .thumbnail-container .product-thumbnail,
.featured-products .thumbnail-container .product-thumbnail,
.product-accessories .thumbnail-container .product-thumbnail,
.product-miniature .thumbnail-container .product-thumbnail {
  position: relative;
  height: calc(100% - 70px);
}

#products .thumbnail-container .product-thumbnail img,
.featured-products .thumbnail-container .product-thumbnail img,
.product-accessories .thumbnail-container .product-thumbnail img,
.product-miniature .thumbnail-container .product-thumbnail img {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  max-height: 100%;
  height: auto;
  margin: auto;
}

#products .product-title,
.featured-products .product-title,
.product-accessories .product-title,
.product-miniature .product-title {
  text-transform: capitalize;
  margin-top: .7rem;
  height: 40px;
  overflow: hidden;
  color: var(--color_font);
  font-size: .875rem;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.4;
  padding: 0 .5rem;
  text-align: left;
  font-weight: 400;
}

#products .product-title:hover,
.featured-products .product-title:hover,
.product-accessories .product-title:hover,
.product-miniature .product-title:hover {
  color: var(--color_hover);
}

#products .product-price-and-shipping,
.featured-products .product-price-and-shipping,
.product-accessories .product-price-and-shipping,
.product-miniature .product-price-and-shipping {
  font-weight: 700;
  color: var(--color_font);
  text-align: left;
  font-size: 19px;
}

#products .product-price-and-shipping .discount-product,
.featured-products .product-price-and-shipping .discount-product,
.product-accessories .product-price-and-shipping .discount-product,
.product-miniature .product-price-and-shipping .discount-product {
  display: none;
}

#products .product-list-reviews,
.featured-products .product-list-reviews,
.product-accessories .product-list-reviews,
.product-miniature .product-list-reviews {
  position: initial;
  justify-content: flex-start;
  margin-left: -7px;
  padding-bottom: 8px;
  visibility: visible;
}

#products .product-list-reviews .grade-stars .stars_empty,
.featured-products .product-list-reviews .grade-stars .stars_empty,
.product-accessories .product-list-reviews .grade-stars .stars_empty,
.product-miniature .product-list-reviews .grade-stars .stars_empty {
  margin-left: 7px;
}

#products .product-list-reviews .grade-stars .stars_empty i,
.featured-products .product-list-reviews .grade-stars .stars_empty i,
.product-accessories .product-list-reviews .grade-stars .stars_empty i,
.product-miniature .product-list-reviews .grade-stars .stars_empty i {
  font-size: 20px;
  width: 13px;
  line-height: 17px;
  height: auto;
  color: #d6d6d6;
}

#products .product-list-reviews .grade-stars.small-stars>i,
.featured-products .product-list-reviews .grade-stars.small-stars>i,
.product-accessories .product-list-reviews .grade-stars.small-stars>i,
.product-miniature .product-list-reviews .grade-stars.small-stars>i {
  font-size: 20px;
  width: 13px;
  line-height: 17px;
  height: auto;
  color: #d6d6d6;
}

#products .product-list-reviews .grade-stars-empty .stars_empty,
.featured-products .product-list-reviews .grade-stars-empty .stars_empty,
.product-accessories .product-list-reviews .grade-stars-empty .stars_empty,
.product-miniature .product-list-reviews .grade-stars-empty .stars_empty {
  margin-left: 7px;
}

#products .product-list-reviews .grade-stars-empty .stars_empty i,
.featured-products .product-list-reviews .grade-stars-empty .stars_empty i,
.product-accessories .product-list-reviews .grade-stars-empty .stars_empty i,
.product-miniature .product-list-reviews .grade-stars-empty .stars_empty i {
  font-size: 20px;
  width: 13px;
  line-height: 17px;
  height: auto;
  color: #d6d6d6;
}

#products .variant-links,
.featured-products .variant-links,
.product-accessories .variant-links,
.product-miniature .variant-links {
  position: relative;
  top: -0.25em;
  width: 100%;
  min-height: 2.5rem;
  padding-top: 0.1875rem;
  text-align: center;
  background: #fff;
}

#products .highlighted-informations,
.featured-products .highlighted-informations,
.product-accessories .highlighted-informations,
.product-miniature .highlighted-informations {
  position: absolute;
  top: 250px;
  bottom: 1.25rem;
  z-index: 2;
  width: 250px;
  height: auto;
  padding-top: 0.625rem;
  text-align: center;
  background: #fff;
  transition: top 0.3s, bottom 0.3s;
}

#products .highlighted-informations .quick-view,
.featured-products .highlighted-informations .quick-view,
.product-accessories .highlighted-informations .quick-view,
.product-miniature .highlighted-informations .quick-view {
  font-size: 1rem;
  color: #7a7a7a;
}

#products .highlighted-informations .quick-view:hover,
.featured-products .highlighted-informations .quick-view:hover,
.product-accessories .highlighted-informations .quick-view:hover,
.product-miniature .highlighted-informations .quick-view:hover {
  color: var(--color_hover);
}

#products .product-description,
.featured-products .product-description,
.product-accessories .product-description,
.product-miniature .product-description {
  position: relative;
  bottom: 0;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0 .5rem;
  overflow: hidden;
  background: #fff;
}

#products .product-description .add-to-cart-category,
.featured-products .product-description .add-to-cart-category,
.product-accessories .product-description .add-to-cart-category,
.product-miniature .product-description .add-to-cart-category {
  text-transform: initial;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  font-weight: 400;
}

#products .product,
.featured-products .product,
.product-accessories .product,
.product-miniature .product {
  padding: 0;
}

.page-index #products .product,
.page-search #products .product,
.page-index .featured-products .product,
.page-search .featured-products .product,
.page-index .product-accessories .product,
.page-search .product-accessories .product,
.page-index .product-miniature .product,
.page-search .product-miniature .product {
  width: 25%;
  min-width: 250px;
}

#products .product-miniature,
.featured-products .product-miniature,
.product-accessories .product-miniature,
.product-miniature .product-miniature {
  margin: 0 0.8125rem;
}

#products .product-miniature .product-flags li.product-flag,
.featured-products .product-miniature .product-flags li.product-flag,
.product-accessories .product-miniature .product-flags li.product-flag,
.product-miniature .product-miniature .product-flags li.product-flag {
  min-width: 3.125rem;
  min-height: 1.875rem;
  font-weight: 600;
}

#products .product-miniature .product-flags li.product-flag.online-only,
.featured-products .product-miniature .product-flags li.product-flag.online-only,
.product-accessories .product-miniature .product-flags li.product-flag.online-only,
.product-miniature .product-miniature .product-flags li.product-flag.online-only {
  top: 13.1rem;
}

#products .product-miniature .add,
.featured-products .product-miniature .add,
.product-accessories .product-miniature .add,
.product-miniature .product-miniature .add {
  padding: 0 0 8px;
}

#products .comments_note,
.featured-products .comments_note,
.product-accessories .comments_note,
.product-miniature .comments_note {
  color: #7a7a7a;
  text-align: center;
}

#products .regular-price,
.featured-products .regular-price,
.product-accessories .regular-price,
.product-miniature .regular-price {
  display: inline-block;
  font-size: 0.875rem;
  color: #adada9;
  text-decoration: line-through;
}

#products .count,
.featured-products .count,
.product-accessories .count,
.product-miniature .count {
  position: relative;
  bottom: 0.5rem;
  font-weight: 700;
  color: #7a7a7a;
}

#products .all-product-link,
.featured-products .all-product-link,
.product-accessories .all-product-link,
.product-miniature .all-product-link {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  clear: both;
  font-weight: 500;
  color: #7a7a7a;
}

.lang-rtl #products .all-product-link .material-icons,
.lang-rtl .featured-products .all-product-link .material-icons,
.lang-rtl .product-accessories .all-product-link .material-icons,
.lang-rtl .product-miniature .all-product-link .material-icons {
  transform: rotate(-180deg);
}

.prev_pagination .btn_volver {
  margin: 0 auto 1rem;
  display: table;
}

.product-flags {
  pointer-events: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 2;
  align-items: flex-end;
}

.product-flags li.product-flag {
  width: fit-content;
  padding: 0.3125rem 0.4375rem;
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  pointer-events: auto;
  background: var(--primary_color);
}

.product-flags li.product-flag.online-only {
  position: absolute;
  top: 25rem;
  right: 0;
  z-index: 1;
  margin-top: 0;
  font-size: 0.8125rem;
}

.product-flags li.product-flag.online-only::before {
  margin: 0.3125rem;
  font-family: "Material Icons", Arial, sans-serif;
  vertical-align: middle;
  content: "\E30A";
}

.product-flags li.product-flag.discount-percentage,
.product-flags li.product-flag.discount-amount,
.product-flags li.product-flag.discount {
  background-color: var(--second_color);
}

.product-flags li.product-flag.on-sale {
  order: -1;
  width: 100%;
  margin-top: 0 !important;
  text-align: center;
  background: var(--second_color);
}

#products {
  color: #7a7a7a;
}

#products .products-select {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

#products .up {
  margin-bottom: 1rem;
}

#products .up .btn-secondary {
  color: #7a7a7a;
  text-transform: inherit;
}

#products .up .btn-secondary .material-icons {
  margin-right: 0;
}

#products .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#products .products>div {
  width: 25%;
}

#products .pagination {
  width: 100%;
  flex-direction: column;
}

#products .pagination .text__infinitescroll {
  width: 100%;
  text-align: center;
}

#products .pagination .progress {
  display: block;
  width: 200px;
  height: 2px;
  background-color: #D6D6D6;
  margin: 0 auto 20px;
}

#products .pagination .progress .progress-bar {
  height: 2px;
  background: var(--primary_color);
}

#products .pagination #btn_inifinitescroll {
  background-color: var(--button_p_bk);
  color: var(--button_p_color);
  border: 0;
  margin: 0 auto;
  display: table;
}

#products .pagination #btn_inifinitescroll:hover {
  background-color: var(--button_p_bk_hover);
  color: var(--button_p_color_hover);
}

#js-product-list-top {
  margin: 1rem 0;
}

#js-product-list-top>div {
  padding: 0;
}

#js-product-list-top #selectProductSort {
  display: inline-block;
  width: 100%;
  color: var(--color_font);
  background: #fff !important;
  padding: 5px;
  cursor: pointer;
  max-width: 200px;
  float: right;
  height: auto !important;
  font-size: 1rem;
  z-index: 999;
}

@media (max-width: 1199px) {
  #products .products>div {
    width: 25%;
  }
}

@media (max-width: 991px) {
  .featured-products .products {
    justify-content: center;
  }

  .featured-products .products>div,
  .product-accessories .products>div,
  .product-miniature .products>div {
    width: 50%;
  }

  #products .products {
    padding: 0 5px;
  }

  #products .product-miniature,
  .featured-products .product-miniature,
  .splide__slide .product-miniature {
    margin: 0 10px;
  }

  .splide .splide__track {
    margin-left: -10px;
    margin-right: -10px;
  }

  #products .products>div {
    width: 33%;
  }
}

@media (max-width: 767px) {
  .featured-products .products {
    justify-content: center;
  }

  .featured-products .products>div,
  .product-accessories .products>div,
  .product-miniature .products>div {
    width: 50%;
  }

  #products .products {
    padding: 0 8px;
  }

  #products .product-miniature,
  .featured-products .product-miniature,
  .splide__slide .product-miniature {
    margin: 0 7px;
  }

  .splide .splide__track {
    margin-left: -7px;
    margin-right: -7px;
  }

  #products .products>div {
    width: 50%;
  }
}

@media (max-width: 575px) {
  #products .products>div {
    width: 50%;
  }
}

#header {
  position: relative;
  color: var(--header_color);
  background: var(--header_bk);
}

#header .logo {
  max-width: 100%;
  height: auto;
}

#header #_desktop_logo h1 {
  margin-bottom: 0;
}

#header a {
  color: var(--header_link);
  cursor: pointer;
}

#header a:hover {
  color: var(--header_hover);
  text-decoration: none;
}

#header .menu {
  display: inline-block;
}

#header .menu>ul>li {
  display: inline-block;
}

#header .header-nav {
  max-height: 50px;
  background-color: var(--topbar_bk);
}

#header .header-nav span,
#header .header-nav p,
#header .header-nav strong,
#header .header-nav i {
  color: var(--topbar_color);
  font-size: 0.9375rem;
}

#header .header-nav .headernav_flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#header .header-nav .headernav_flex .displayNav1,
#header .header-nav .headernav_flex .displayNav2 {
  width: 33%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#header .header-nav .headernav_flex .displayNav2 {
  justify-content: flex-end;
}

#header .header-nav .headernav_flex .displayNavCenter {
  width: 30%;
}

#header .header-nav .headernav_flex .mobile {
  width: 100%;
}

#header .header-nav #menu-icon {
  margin: 0 1rem;
  vertical-align: middle;
  cursor: pointer;
}

#header .header-nav #menu-icon .material-icons {
  line-height: 50px;
}

#header .header-nav .right-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

#header .header-nav .currency-selector {
  /*margin-top: 0.9375rem;*/
  margin-left: 0.9375rem;
  white-space: nowrap;
}

#header .header-nav .language-selector {
  /* margin-top: 0.9375rem;*/
  margin-left: 0.9375rem;
  white-space: nowrap;
}

#header .header-top {
  padding: 1.25rem 0;
}

#header .header-top>.container {
  position: relative;
}

#header .header-top>.container>.row:first-of-type {
  display: flex;
  align-items: center;
}

#header .header-top .header__flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

#header .header-top .header__flex .displayTopCenter {
  min-width: 65%;
}

#header .header-top .header__flex .displayTop {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  min-height: 40px;
}

#header .header-top .header__flex .displayTop #_desktop_user_info {
  margin: 0 12px;
}

#header .header-top .header__flex .displayTop #_desktop_user_info span {
  color: var(--header_color);
}

#header .header-top .header__flex .displayTop #_desktop_cart {
  display: block;
  position: relative;
}

#header .header-top .header__flex .displayTop #_desktop_cart i {
  color: var(--header_color);
}

#header .header-top .header__flex .displayTop #_desktop_cart .cart-products-count {
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0px 7px;
  background-color: var(--primary_color);
  color: #FFF;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
}

#header .header-top .header__flex .displayTop span,
#header .header-top .header__flex .displayTop p,
#header .header-top .header__flex .displayTop strong,
#header .header-top .header__flex .displayTop i {
  color: var(--header_color);
}

#header .header-top .menu {
  padding-left: 15px;
}

#header .header-top-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .header-top .position-static {
  position: static;
}

#header .header-top a[data-depth="0"] {
  color: #7a7a7a;
  text-transform: uppercase;
}

#header .top-menu-link {
  margin-left: 1.25rem;
}

#header .dbmenu {
  background-color: inherit;
}

@media (max-width: 991px) {
  #header .header-top .header__flex .displayTopCenter form{
    display: none;
  }


  #header .header-nav {
    background: var(--header_bk);
    color: var(--header_color);
    border-bottom: 0;
    margin-bottom: 0;
    padding: 0;
  }

  #header .header-nav .mobile {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 0;
    padding: 0.5rem 0;
  }

  #header .header-nav .mobile .top-logo {
    display: flex;
    align-items: center;
    padding-top: 3px;
  }

  #header .header-nav .mobile .top-logo img {
    max-height: 40px;
    width: auto;
  }

  #header .header-nav .mobile .top-logo>h1 {
    margin: 0;
  }

  #header .header-nav .mobile i {
    margin-left: 15px;
  }

  #header .header-nav .mobile #_mobile_contact_info {
    margin-left: auto;
    margin-top: 0;
  }

  #header .header-nav .mobile .blockcart {
    position: relative;
  }

  #header .header-nav .mobile .blockcart .cart-products-count {
    position: absolute;
    top: -5px;
    right: -10px;
    padding: 0px 7px;
    background-color: var(--primary_color);
    color: #FFF;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
  }

  #header .header-nav i {
    font-size: 24px;
  }

  #header .header-nav span,
  #header .header-nav p,
  #header .header-nav strong,
  #header .header-nav i {
    color: var(--header_color);
  }

  #header .header-top {
    padding: 1.25rem 0;
  }

  #header .header-top .header__flex .displayTopCenter {
    width: 55%;
    min-width: inherit;
  }

  #header .header-top .header__flex .displayTopCenter .search-widget form button[type="submit"] {
    color: var(--header_color);
  }

  #header .header-top .header__flex .displayTop {
    min-height: 0;
  }

  #header .header-top #mobile_top_menu_wrapper {
    padding: 0;
  }

  #header .header-top .search-widget form input[type="text"] {
    min-width: inherit;
    color: var(--seach_color);
    background-color: var(--search_bk);
  }
}

@media (max-width: 767px) {
  #header .header-top {
    padding-bottom: 0;
    padding-top: 0;
    border-top: 1px solid var(--background);
  }

  #header .header-top .header__flex .displayTopCenter {
    width: calc(100% - 35px);
    min-width: inherit;
  }

  #header .header-top .search-widget form input[type="text"] {
    min-width: inherit;
    background: var(--header_bk);
    color: var(--header_color);
    border-left: 1px solid var(--background);
  }
}

#footer {
  background-color: var(--footer_bk);
  color: var(--footer_color);
}

#footer a {
  color: var(--footer_link);
}

#footer a:hover {
  color: var(--footer_hover);
}

#footer p,
#footer span,
#footer strong,
#footer i,
#footer .h1,
#footer .h2,
#footer .h3,
#footer .h4,
#footer .h5,
#footer .h6 {
  color: var(--footer_color);
}

#footer .pre-footer {
  background-color: var(--prefooter_bk);
  padding: 2rem 1rem;
}

#footer .pre-footer p,
#footer .pre-footer span,
#footer .pre-footer strong,
#footer .pre-footer i,
#footer .pre-footer .h1,
#footer .pre-footer .h2,
#footer .pre-footer .h3,
#footer .pre-footer .h4,
#footer .pre-footer .h5,
#footer .pre-footer .h6 {
  color: var(--prefooter_color);
}

#footer .pre-footer a {
  color: var(--prefooter_link);
}

#footer .pre-footer a:hover {
  color: var(--prefooter_hover);
}

#footer .block_newsletter .title_newsletter {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--prefooter_color);
  margin-bottom: 1rem;
  line-height: 1.5rem;
}

#footer .footer-container {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  overflow: hidden;
}

#footer .footer-container li {
  margin-bottom: 0.3125rem;
}

#footer .footer-container li a,
#footer .footer-container li .item {
  color: var(--footer_link);
  cursor: pointer;
  font-size: 0.875rem;
}

#footer .footer-container li a:hover,
#footer .footer-container li .item:hover {
  color: var(--footer_hover);
}

#footer .footer-container li a>i,
#footer .footer-container li .item>i {
  font-size: 18px;
  margin-right: 5px;
}

#footer .footer-container .copyright {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}

#footer .footer-container .copyright .text_copyright {
  margin: 0;
}

.block-contact {
  font-size: 0.875rem;
  color: #7a7a7a;
}

.block-contact .block-contact-title {
  color: var(--color_font);
}

.block-contact .navbar-toggler .material-icons {
  color: var(--color_font);
}

@media (max-width: 767px) {
  .block-contact #contact-infos {
    padding: 0.625rem;
    padding-top: 0;
  }
}

.linklist .blockcms-title a {
  color: var(--color_font);
}

.account-list a {
  color: var(--color_link);
}

.account-list a:hover {
  color: var(--color_hover);
}

.blockcms-title,
.myaccount-title,
.myaccount-title a,
.block-contact-title {
  font-size: 1rem;
  font-weight: 700;
}

.block-social {
  float: right;
}

@media (max-width: 991px) {
  .block-social {
    text-align: right;
  }
}

.block-social ul {
  display: flex;
}

@media (max-width: 767px) {
  .block-social ul {
    flex-flow: wrap;
    align-items: center;
    justify-content: center;
  }
}

.block-social ul li {
  height: 1.5rem;
  width: 1.5rem;
  background-repeat: no-repeat;
  display: inline-block;
  margin: 0.125rem;
  cursor: pointer;
  background-size: 100%;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .block-social ul li {
    height: 2rem;
    width: 2rem;
    margin-right: 1.3rem;
    margin-bottom: 1.3rem;
    background-size: contain;
  }
}

.block-social ul li:hover {
  background-color: var(--primary_color);
}

.block-social ul li a {
  display: block;
  height: 100%;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
}

.block-social ul li a:hover {
  color: transparent;
}

.facebook {
  background-image: url(../img/icons/facebook.svg);
}

.twitter {
  background-image: url(../img/icons/twitter.svg);
}

.rss {
  background-image: url(../img/icons/rss.svg);
}

.youtube {
  background-image: url(../img/icons/youtube.svg);
}

.pinterest {
  background-image: url(../img/icons/pinterest.svg);
}

.vimeo {
  background-image: url(../img/icons/vimeo.svg);
}

.instagram {
  background-image: url(../img/icons/instagram.svg);
}

.linkedin {
  background-image: url(../img/icons/linkedin.svg);
}

#block_myaccount_infos .myaccount-title a {
  color: var(--color_font);
}

.links .collapse {
  display: inherit;
}

@media (max-width: 767px) {
  .footer-container {
    margin-top: 0;
    box-shadow: none;
  }

  .footer-container .wrapper {
    /* stylelint-disable */
    padding-right: 0 !important;
    padding-left: 0 !important;
    /* stylelint-enable */
  }

  .footer-container .links .h3 {
    font-size: 1rem;
    line-height: 1.5;
  }

  .footer-container .links ul {
    margin-bottom: 0;
    background-color: var(--background);
  }

  .footer-container .links ul>li {
    padding: 0.625rem;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
  }

  .footer-container .links ul>li a {
    color: var(--color_font);
  }

  .links .collapse {
    display: none;
  }

  .links .collapse.in {
    display: block;
  }

  .links .title {
    padding: 0.625rem;
    cursor: pointer;
    border-bottom: 1px solid var(--background);
  }

  .links .title .collapse-icons .remove {
    display: none;
  }

  .links .title[aria-expanded="true"] .collapse-icons .add {
    display: none;
  }

  .links .title[aria-expanded="true"] .collapse-icons .remove {
    display: block;
  }

  .links .navbar-toggler {
    display: inline-block;
    padding: 0;
  }

  .links #footer_contactinfo {
    padding: 0 0.625rem;
  }

  #footer .footer-container .copyright {
    justify-content: center;
  }

  #footer .footer-container .copyright .imgs_payment {
    margin-top: 10px;
  }
}

@media (max-width: 991px) {
  .block-social {
    text-align: center;
  }

  .block-contact {
    padding-left: 1.5rem;
  }

  .block-social ul {
    align-content: center;
    justify-content: center;
  }
}

.block_newsletter {
  float: inherit;
  width: 100%;
  max-width: 50rem;
  margin: auto;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  background: var(--prefooter_bk);
}

.block_newsletter>form {
  position: relative;
}

.block_newsletter>form input[type="text"] {
  padding: 10px;
  width: 100%;
  min-width: inherit;
  color: var(--seach_color);
  background-color: var(--search_bk);
  border: 0;
}

.block_newsletter>form input[type="text"]:focus {
  outline: 1px solid var(--primary_color);
  color: var(--color_font);
  background-color: var(--search_bk);
}

.block_newsletter>form input[type="text"]:focus+button .search {
  color: var(--primary_color);
}

.block_newsletter>form button[type="submit"] {
  position: absolute;
  background: none;
  border: none;
  bottom: 0.3125rem;
  right: 0.125rem;
  color: var(--seach_color);
}

.block_newsletter>form button[type="submit"] .search:hover {
  color: var(--primary_color);
}

.block_newsletter #block-newsletter-label {
  font-size: 1.3125rem;
  line-height: 1.75rem;
  color: var(--color_font);
}

.block_newsletter form {
  position: relative;
}

.block_newsletter form .input-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.block_newsletter form .row .col-xs-12:last-of-type p {
  font-size: 0.75rem;
  color: #7a7a7a;
}

.block_newsletter form .row .col-xs-12:first-of-type .btn-primary:first-of-type {
  margin-left: 0.5rem;
}

.block_newsletter form input[type="email"] {
  padding: 11px;
  margin-right: .5rem;
  width: 65%;
  max-width: 500px;
  border: 1px solid #ddd;
}

.block_newsletter form input[type="email"]:focus {
  outline: 1px solid var(--primary_color);
  color: var(--color_font);
  background: #fff;
}

.block_newsletter form input {
  height: 42px;
}

.block_newsletter .msg_newsletter {
  text-align: center;
}

.block_newsletter .msg_newsletter p,
.block_newsletter .msg_newsletter ul,
.block_newsletter .msg_newsletter span {
  margin-bottom: 0;
  font-size: .8rem;
}

#footer .block_newsletter p {
  padding-top: 0.625rem;
}

#footer .block_newsletter #block-newsletter-label {
  padding-top: 0;
}

#left-column .block_newsletter {
  padding: 1.563rem 1.25rem;
  margin-bottom: 1.563rem;
}

@media (max-width: 767px) {
  .block_newsletter {
    padding-top: 1rem;
  }
}

@media (max-width: 991px) {
  .block_newsletter form input[type="email"] {
    width: 60%;
  }
}

.search-widget {
  display: inline-block;
}

.search-widget>form {
  position: relative;
}

.search-widget>form input[type="text"] {
  padding: 10px;
  width: 100%;
  min-width: inherit;
  color: var(--seach_color);
  background-color: var(--search_bk);
  border: 0;
}

.search-widget>form input[type="text"]:focus {
  outline: 1px solid var(--primary_color);
  color: var(--color_font);
  background-color: var(--search_bk);
}

.search-widget>form input[type="text"]:focus+button .search {
  color: var(--primary_color);
}

.search-widget>form button[type="submit"] {
  position: absolute;
  background: none;
  border: none;
  bottom: 0.3125rem;
  right: 0.125rem;
  color: var(--seach_color);
}

.search-widget>form button[type="submit"] .search:hover {
  color: var(--primary_color);
}

.header-top .search-widget {
  float: left;
  width: 100%;
}

#checkout #search_widget {
  display: none;
  /* Not ideal solution by allows to reuse same hooks/templates */
}

#pagenotfound .page-content #search_widget {
  width: 100%;
}

.page-not-found .search-widget form {
  display: inline-block;
}

/*** Responsive part ***/
@media (max-width: 767px) {
  .header-top .search-widget {
    float: none;
  }

  .header-top .search-widget form {
    margin: 0 auto;
  }

  .header-top .search-widget form input[type="text"] {
    min-width: inherit;
    background: #fff;
  }
}

@media (min-width: 992px) {
  .search-widget {
    min-width: 15.63rem;
  }
}

#notifications ul {
  margin-bottom: 0;
}

#products #main .page-header,
#pagenotfound #main .page-header {
  margin: 2rem 0 3rem;
}

#products #main .page-content,
#pagenotfound #main .page-content {
  margin-bottom: 10rem;
}

#products .page-not-found,
#pagenotfound .page-not-found {
  max-width: 570px;
  padding: 1rem;
  margin: 0 auto;
  overflow: auto;
  font-size: 0.875rem;
  color: #7a7a7a;
  background: #fff;
}

#products .page-not-found h4,
#pagenotfound .page-not-found h4 {
  margin: 0.5rem 0 1rem;
  font-size: 1rem;
  font-weight: 700;
}

#products .page-not-found .search-widget,
#pagenotfound .page-not-found .search-widget {
  float: none;
}

#products .page-not-found .search-widget input,
#pagenotfound .page-not-found .search-widget input {
  width: 100%;
}

.ps-alert-error {
  margin-bottom: 0;
}

.ps-alert-error .item,
.ps-alert-success .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  background-color: #ff4c4c;
  border: 2px #ff4c4c solid;
}

.ps-alert-error .item i,
.ps-alert-success .item i {
  display: flex;
  border: 15px #ff4c4c solid;
}

.ps-alert-error .item i svg,
.ps-alert-success .item i svg {
  width: 24px;
  height: 24px;
  background-color: #ff4c4c;
}

.ps-alert-error .item p,
.ps-alert-success .item p {
  width: 100%;
  padding: 18px 20px;
  margin: 0;
  background-color: var(--background);
}

.ps-alert-success {
  padding: 0.25rem 0.25rem 2.75rem;
}

.ps-alert-success .item {
  background-color: #4cbb6c;
  border-color: #4cbb6c;
}

.ps-alert-success .item i {
  border-color: #4cbb6c;
}

.ps-alert-success .item i svg {
  background-color: #4cbb6c;
}

.alert {
  padding: 12px 0 12px 46px;
  padding: .75rem 0 .75rem 2.875rem;
  background-color: #fff;
  position: relative;
  color: #363a41;
  border: .125rem solid transparent;
  margin-bottom: 1rem;
}

.alert:before {
  font-family: Material Icons;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  font-size: 1.5rem;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  vertical-align: middle;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 46px;
  width: 2.875rem;
  height: 100%;
  text-align: center;
  font-size: 25.008px;
  font-size: 1.563rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column;
}

.alert p,
.alert ul {
  font-size: 14px;
  font-size: .875rem;
  margin: 0;
  padding: 0 .625rem;
  margin-left: 1.5rem;
}

.alert ul {
  list-style-type: disc;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 2.5rem;
}

.alert-dismissible .close {
  position: relative;
  top: -0.125rem;
  right: -1.25rem;
  color: inherit;
}

.alert-success {
  border-color: #70b580;
  color: var(--color_font);
}

.alert-success:before {
  content: "\E5CA";
  background-color: #d6f0d8;
  color: #70b580;
}

.alert-success hr {
  border-top-color: #c1e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  border-color: #25b9d7;
  color: var(--color_font);
}

.alert-info:before {
  content: "\E88F";
  background-color: #dff5f9;
  color: #25b9d7;
}

.alert-info hr {
  border-top-color: #a6d5ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  border-color: #cd9321;
  color: var(--color_font);
}

.alert-warning:before {
  content: "\E001";
  background-color: #fde7bb;
  color: #cd9321;
}

.alert-warning hr {
  border-top-color: #ff8b39;
}

.alert-warning .alert-link {
  color: #0a0a0a;
}

.alert-danger {
  border-color: #c05c67;
  color: var(--color_font);
}

.alert-danger:before {
  content: "\E001";
  background-color: #fde1e1;
  color: #c05c67;
}

.alert-danger hr {
  border-top-color: #e4b9b9;
}

.alert-danger .alert-link {
  color: #843534;
}

.dropdown {
  color: #7a7a7a;
}

.dropdown:hover .expand-more {
  color: var(--primary_color);
}

.dropdown .expand-more {
  color: var(--color_font);
  cursor: pointer;
  user-select: none;
}

.dropdown .active {
  max-height: 200px;
  overflow-y: hidden;
  visibility: visible;
}

.dropdown select {
  color: var(--color_font);
  background: #fff;
  border: 0 none;
  outline: 0 none;
  -moz-appearance: none;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: var(--primary_color);
  text-decoration: none;
  background: none;
}

.menu {
  margin-bottom: 0;
}

.top-menu[data-depth="1"] {
  margin: 0.625rem;
}

.top-menu[data-depth="0"] {
  margin-bottom: 0;
}

.top-menu a:not([data-depth="0"]) {
  display: block;
  padding: 0.625rem;
  font-weight: 400;
  color: #7a7a7a;
}

.top-menu a.dropdown-submenu {
  font-weight: 600;
  color: var(--color_font);
  text-transform: uppercase;
}

.top-menu a[data-depth="0"] {
  padding: 0.625rem;
  font-size: 1.125rem;
  font-weight: 600;
}

#header .top-menu a[data-depth="0"]:hover {
  color: var(--color_link);
  text-decoration: none;
}

.top-menu a[data-depth="1"],
.top-menu a[data-depth="2"] {
  padding: 0 0.625rem 0.625rem 0;
}

.top-menu .collapse {
  display: inherit;
}

.top-menu .sub-menu {
  z-index: 18;
  width: calc(100% - 30px);
  min-width: calc(100% - 30px);
  margin-left: 0.9375rem;
  visibility: hidden;
  border: none;
  box-shadow: 2px 1px 11px 2px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.top-menu .sub-menu.collapse {
  visibility: hidden;
  opacity: 0;
}

.top-menu .sub-menu.collapse.in {
  visibility: visible;
  opacity: 1;
}

.top-menu .sub-menu ul[data-depth="1"]>li {
  float: left;
  margin: 0 1.25rem;
}

.top-menu .sub-menu a:hover {
  color: var(--color_hover);
}

.top-menu .popover {
  max-width: inherit;
  border-radius: 0;
}

.popover.bs-tether-element-attached-top {
  margin-top: 0;
}

#_desktop_top_menu .top-menu[data-depth="0"] li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}

#mobile_top_menu_wrapper {
  padding: 15px;
  background: #fff;
}

#mobile_top_menu_wrapper #top-menu {
  margin-bottom: 0.625rem;
}

#mobile_top_menu_wrapper .top-menu {
  color: var(--color_font);
}

#mobile_top_menu_wrapper .top-menu .collapse-icons[aria-expanded="true"] .add {
  display: none;
}

#mobile_top_menu_wrapper .top-menu .collapse-icons[aria-expanded="true"] .remove {
  display: block;
}

#mobile_top_menu_wrapper .top-menu .collapse-icons .remove {
  display: none;
}

#mobile_top_menu_wrapper .top-menu .navbar-toggler {
  display: inline-block;
  padding: 0;
}

#mobile_top_menu_wrapper .top-menu a[data-depth="0"] {
  padding: 0.625rem;
  border-bottom: 1px solid var(--background);
}

#mobile_top_menu_wrapper .top-menu .collapse {
  display: none;
}

#mobile_top_menu_wrapper .top-menu .collapse.in {
  display: block;
}

#mobile_top_menu_wrapper .top-menu .sub-menu {
  position: static;
  z-index: inherit;
  display: block;
  width: 100%;
  min-width: 100%;
  margin-left: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
}

#mobile_top_menu_wrapper .top-menu .sub-menu.collapse {
  display: none;
}

#mobile_top_menu_wrapper .top-menu .sub-menu.collapse.in {
  display: block;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="0"]>li {
  border-bottom: 1px solid #7a7a7a;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="1"] {
  margin: 0;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="1"]>li {
  float: none;
  margin: 0;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="1"]>li a {
  text-transform: none;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul {
  padding: 0;
}

#mobile_top_menu_wrapper .top-menu .sub-menu li>a {
  padding: 0.625rem;
  font-weight: 600;
  border-bottom: 1px solid #fff;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="2"] li a {
  padding-left: 1.25rem;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="3"] li a {
  padding-left: 2.5rem;
}

#mobile_top_menu_wrapper .top-menu .sub-menu ul[data-depth="4"] li a {
  padding-left: 3.75rem;
}

#mobile_top_menu_wrapper .js-top-menu-bottom a {
  color: #7a7a7a;
}

#mobile_top_menu_wrapper .js-top-menu-bottom .language-selector-wrapper {
  padding: 0.625rem;
}

#mobile_top_menu_wrapper .js-top-menu-bottom .language-selector-wrapper .language-selector {
  display: inline;
}

#mobile_top_menu_wrapper .js-top-menu-bottom .currency-selector {
  padding: 0.625rem;
}

#mobile_top_menu_wrapper .js-top-menu-bottom #contact-link {
  padding: 0.625rem;
}

#mobile_top_menu_wrapper .js-top-menu-bottom .user-info {
  padding: 0 0.625rem;
}

#mobile_top_menu_wrapper .js-top-menu-bottom .user-info a {
  display: block;
  width: 100%;
  padding: 0.625rem 0;
}

@media (max-width: 767px) {
  .top-menu .sub-menu {
    visibility: visible;
    opacity: 1;
    transition: 0.5s ease-out;
  }
}

#block-reassurance {
  margin-top: 2rem;
  background-color: inherit !important;
}

#block-reassurance img {
  margin-right: 7px;
  height: 35px;
  width: auto;
}

#block-reassurance li {
  margin-bottom: 0.8rem;
}

#block-reassurance li:last-child {
  margin-bottom: 0;
}

#block-reassurance li .block-reassurance-item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#block-reassurance li .block-reassurance-item>span {
  width: calc(100% - 42px);
}

#product #block-reassurance {
  background: #fff;
}

#product #block-reassurance span {
  font-weight: 700;
}

.blockreassurance_product {
  margin-top: 20px !important;
}

.blockreassurance_product .block-title {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.blockreassurance_product .block-title .title {
  font-weight: 600;
}

@media (max-width: 767px) {

  .price_outstanding,
  #product .blockreassurance_product {
    margin-left: 0;
    padding: 0 1rem;
  }
}

#header .open_account {
  cursor: pointer;
}

#userinfo_modal .modal-dialog {
  max-width: 380px;
  width: 100%;
  float: right;
  margin: 0;
  height: 100vh;
}

#userinfo_modal .modal-dialog .modal-content {
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background-color: #fafafa;
  max-width: 320px;
  min-width: 320px;
  float: right;
}

#userinfo_modal .modal-dialog .modal-header {
  border: 0;
}

#userinfo_modal .modal-dialog .modal-header .modal-title {
  font-weight: 600;
  color: var(--color_font);
}

#userinfo_modal .modal-dialog .modal-body {
  padding: 0 0.5rem 0.5rem;
}

#userinfo_modal .modal-dialog .modal_item {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background-color: #fff;
  margin-bottom: 0.5rem;
}

#userinfo_modal .modal-dialog .modal_item>* {
  padding: 0.5rem;
}

#userinfo_modal .modal-dialog .modal_item .title {
  font-weight: 600;
  color: var(--primary_color);
  font-size: 0.9rem;
}

#userinfo_modal .modal-dialog .modal_item .item {
  font-weight: 400;
  color: var(--color_font);
  font-size: 0.9rem;
}

#userinfo_modal .modal-dialog .modal_item .item:hover {
  text-decoration: underline;
}

#userinfo_modal .modal-dialog .close_session {
  padding: 0.5rem 1rem;
  border: 1px solid var(--button_p_bk);
  background-color: var(--button_p_bk);
  color: var(--button_p_color);
  display: table;
  margin: 1rem auto;
  font-weight: 600;
}

#userinfo_modal .modal-dialog .close_session:hover {
  border: 1px solid var(--button_p_bk_hover);
  background-color: var(--button_p_bk_hover);
  color: var(--button_p_bk_hover);
}

#blockcart-modal {
  color: var(--color_font);
  padding-right: 0;
}

#blockcart-modal .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

#blockcart-modal .modal-header {
  background: #fff;
  height: 55px;
}

#blockcart-modal .modal-header .close {
  opacity: 1;
}

#blockcart-modal .modal-header .close .material-icons {
  color: var(--color_font);
}

#blockcart-modal .modal-body {
  background: #fff;
  padding: 15px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: calc(100% - 50px);
  max-height: calc(100vh - 55px);
}

#blockcart-modal .modal-body .divide-right span {
  display: inline-block;
  margin-bottom: 0.3125rem;
}

@media (max-width: 767px) {
  #blockcart-modal .modal-body .divide-right span {
    display: block;
    padding: 0 0.5rem;
  }
}

#blockcart-modal .modal-body .modal_products {
  overflow-y: auto;
}

#blockcart-modal .modal-body .modal_products .modal_product {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
}

#blockcart-modal .modal-body .modal_products .modal_product:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

#blockcart-modal .modal-body .modal_products .modal_product>.row {
  margin: 0;
}

#blockcart-modal .modal-body .modal_products .modal_product .modal_products_image {
  padding-right: 0;
}

#blockcart-modal .modal-body .modal_products .modal_product .modal_products_image .product-image {
  width: 100%;
  max-width: 9.375rem;
  display: block;
  margin: 0 0 0 auto;
}

#blockcart-modal .modal-body .modal_products .modal_product .modal_products_info {
  position: relative;
}

#blockcart-modal .modal-body .modal_products .modal_product .modal_products_info .product-name {
  color: var(--color_font);
  font-size: 1rem;
  max-width: 85%;
  margin-bottom: 5px;
}

#blockcart-modal .modal-body .modal_products .modal_product .modal_products_info .product-name .product-attributes .value {
  font-size: 0.875rem;
}

#blockcart-modal .modal-body .modal_products .modal_product .modal_products_info .delete_product {
  position: absolute;
  right: 10px;
  top: 0;
  cursor: pointer;
}

#blockcart-modal .modal-body .modal_products .modal_product .modal_products_info .product-price {
  color: #363a42;
  display: block;
  float: right;
  font-weight: 600;
  font-size: 0.9rem;
  width: initial;
  padding: initial;
  margin: initial;
  border: 0;
}

#blockcart-modal .modal_totals {
  width: 100%;
  max-height: 275px;
}

#blockcart-modal .modal_totals .cart-content {
  padding: 10px 0 0 0;
  border-top: 2px solid #777;
}

#blockcart-modal .modal_totals .cart-content .page-content.page-cms ul,
#blockcart-modal .modal_totals .cart-content p,
#blockcart-modal .modal_totals .cart-content ul {
  color: var(--color_font);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 0.5rem;
}

#blockcart-modal .modal_totals .cart-content .page-content.page-cms ul .label,
#blockcart-modal .modal_totals .cart-content .page-content.page-cms ul .value,
#blockcart-modal .modal_totals .cart-content p .label,
#blockcart-modal .modal_totals .cart-content p .value,
#blockcart-modal .modal_totals .cart-content ul .label,
#blockcart-modal .modal_totals .cart-content ul .value {
  font-weight: 600;
}

#blockcart-modal .modal_totals .cart-content .page-content.page-cms ul .label .small,
#blockcart-modal .modal_totals .cart-content .page-content.page-cms ul .label small,
#blockcart-modal .modal_totals .cart-content .page-content.page-cms ul .value .small,
#blockcart-modal .modal_totals .cart-content .page-content.page-cms ul .value small,
#blockcart-modal .modal_totals .cart-content p .label .small,
#blockcart-modal .modal_totals .cart-content p .label small,
#blockcart-modal .modal_totals .cart-content p .value .small,
#blockcart-modal .modal_totals .cart-content p .value small,
#blockcart-modal .modal_totals .cart-content ul .label .small,
#blockcart-modal .modal_totals .cart-content ul .label small,
#blockcart-modal .modal_totals .cart-content ul .value .small,
#blockcart-modal .modal_totals .cart-content ul .value small {
  font-size: 80%;
  font-weight: 400;
}

#blockcart-modal .modal-dialog {
  max-width: 380px;
  width: 100%;
  float: right;
  margin: 0;
  height: 100vh;
}

#blockcart-modal .product-image {
  display: block;
  width: 100%;
  max-width: 9.375rem;
  margin: 0 0 0 auto;
}

#blockcart-modal .modal-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color_font);
}

#blockcart-modal .modal-title i.material-icons {
  margin-right: 10px;
  color: var(--color_font);
}

#blockcart-modal .product-name {
  font-size: 1.125rem;
  color: var(--primary_color);
}

@media (max-width: 767px) {
  #blockcart-modal .product-name {
    padding: 0 0.5rem;
  }
}

#blockcart-modal .product-price {
  display: block;
  color: var(--color_font);
}

@media (max-width: 767px) {
  #blockcart-modal .product-price {
    padding: 0 0.5rem;
  }
}

#blockcart-modal .cart-content {
  padding-left: 2.5rem;
}

#blockcart-modal .cart-content .btn {
  margin-bottom: 0.625rem;
}

#blockcart-modal .cart-content p {
  display: flex;
  justify-content: space-between;
  padding: 0 0.5rem;
  color: #363a42;
}

#blockcart-modal .cart-content p.product-total {
  padding: 0.5rem;
}

#blockcart-modal .cart-content p.cart-products-count {
  font-size: 1rem;
  font-weight: 600;
  color: #6c868e;
}

#blockcart-modal .cart-content p.product-tax {
  display: inherit;
  font-size: 0.875rem;
}

#blockcart-modal .cart-content p .label,
#blockcart-modal .cart-content p .value {
  font-weight: 600;
}

#blockcart-modal .cart-content .cart-content-btn {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#blockcart-modal .cart-content .cart-content-btn button {
  margin-right: 0.9rem;
}

#blockcart-modal .cart-content .cart-content-btn .btn {
  white-space: inherit;
  width: 100%;
  margin-bottom: 0;
}

#blockcart-modal .cart-content .cart-content-btn .btn.btn-view-cart {
  color: var(--color_font);
  margin-top: 1rem;
}

#blockcart-modal .cart-content .cart-content-btn .btn.btn-view-cart:hover {
  background-color: var(--background);
}

#blockcart-modal .divide-right {
  border-right: 1px solid #dbdbdb;
}

#blockcart-modal .bootstrap-touchspin .input-group-btn-vertical .touchspin-up:after {
  content: "\e145";
}

#blockcart-modal .bootstrap-touchspin .input-group-btn-vertical .touchspin-down:after {
  content: "\e15b";
}

#blockcart-modal .bootstrap-touchspin #quantity_wanted,
#blockcart-modal .bootstrap-touchspin #quantity_wanted_miniature {
  padding: 0;
  text-align: center;
  line-height: 24px;
  border-left: 0;
  border-top: 0.8px solid var(--primary_color);
  border-bottom: 0.8px solid var(--primary_color);
  border-right: 0;
  left: 20px;
  width: 30px;
  height: 30px !important;
  background-color: inherit;
  font-size: 15px;
}

#blockcart-modal .bootstrap-touchspin .input-group-btn-vertical {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}

#blockcart-modal .bootstrap-touchspin .input-group-btn-vertical .btn {
  height: 30px !important;
  padding: 0 5px !important;
}

#blockcart-modal .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-down {
  left: -49px;
  margin-top: 0;
  border-left: 0.8px solid var(--primary_color);
  border-top: 0.8px solid var(--primary_color);
  border-bottom: 0.8px solid var(--primary_color);
  border-right: 0;
}

#blockcart-modal .bootstrap-touchspin .input-group-btn-vertical .btn.bootstrap-touchspin-up {
  border-left: 0;
  border-top: 0.8px solid var(--primary_color);
  border-bottom: 0.8px solid var(--primary_color);
  border-right: 0.8px solid var(--primary_color);
  left: 21px;
}

#blockcart-modal .bootstrap-touchspin .input-group-btn-vertical .btn i {
  position: relative;
  line-height: 1;
  top: 0;
  left: 0;
  font-size: 0.6rem;
}

@media (max-width: 991px) {
  #blockcart-modal .modal-dialog {
    width: calc(100% - 20px);
  }

  #blockcart-modal .modal-body {
    padding: 1.875rem;
  }
}

@media (max-width: 767px) {
  #blockcart-modal .divide-right {
    border-right: none;
  }

  #blockcart-modal .modal-body {
    padding: 1rem;
  }
}

.dbcontactinfo_sidebar > .title{
  text-transform: uppercase !important;
}


.back-top{
  display: block;
  position: fixed;
  right: 15px;
  bottom: 60px;
  z-index: 99;
}

.back-top a {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-secondary);
  border-radius: 50%;
}

.back-top a:hover {
  background-color: var(--color-primary);
}

.back-top a i {
  color: var(--color-white);
}

.whatsapp {
  display: block;
  position: fixed;
  z-index: 999;
  left: 15px;
  bottom: 60px;
}

#mobile_search.hidden{
  display: none;
}
