:root {
  --color-black: #000000;
  --color-text: #050505;
  --color-heading: #333333;
  --color-gray-lighten: #f9f9f9;
  --color-gray-light: #efefef;
  --color-gray: #d3d3d3;
  --color-gray-dark: #777777;
  --color-primary: #9d0840;
  --color-primary-hover: #b7225a;
  --color-secondary: var(--color-black);
  --color-body: var(--color-black);
  --font-family: "Montserrat", sans-serif;
}

html {
  height: 100%;
}

@media (min-width: 992px) {
  body {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .s-footer {
    margin-top: auto;
  }
}

body {
  min-width: 320px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-body);
  line-height: 1.5;
  background-color: #fff;
}

/* General */
.container .container {
  padding: 0;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.row > * {
  padding-left: 10px;
  padding-right: 10px;
  float: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 100%;
}

@media (min-width: 1200px) {
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }
}

.col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-content-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-content-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.align-items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.row-mb-10 > * {
  margin-bottom: 10px !important;
}

.row-mb-20 > * {
  margin-bottom: 20px !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-auto {
  height: auto !important;
}

.swiper-slide.h-auto {
  padding: 5px;
}
@media (min-width: 768px) {
  .swiper-slide.h-auto {
    padding: 10px;
  }
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

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

.h1,
h1 {
  font-size: 26px;
}

.h2,
h2 {
  font-size: 22px;
}

.h3,
h3 {
  font-size: 20px;
}

.h4,
h4 {
  font-size: 18px;
}

.h5,
h5 {
  font-size: 17px;
}

.h6,
h6 {
  font-size: 16px;
}

/* Links */
a {
  color: var(--color-primary);
}
a:focus,
a:hover {
  color: var(--color-gray-dark);
  text-decoration: none;
}

/* Error */
.s-info {
  margin-top: 40px;
  margin-bottom: 60px;
  text-align: center;
}

.s-info__img {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.s-info__text {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 15px;
}

.well {
  border-radius: 0;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(165, 165, 165, 0.24);
  box-shadow: 0px 0px 10px 0px rgba(165, 165, 165, 0.24);
  background-color: #fff;
}

.well__title {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 1.1;
}

.well__description {
  line-height: 1.3;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .well__title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.3;
  }

  .well__description {
    line-height: 1.6;
  }
}

/* Modal */
.modal-content {
  border-radius: 0;
  width: 100%;
  padding: 20px;
}

.modal-content .alert {
  font-size: 13px;
}

.modal-top-space {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 60px);
}

.modal-full-height {
  position: absolute;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 400px;
  height: auto;
  min-height: 100%;
  margin: 0;
}

.modal-full-height.modal-left {
  left: 0;
}

.modal-full-height.modal-right {
  right: 0;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.fade .modal-dialog.modal-left {
  -webkit-transform: translate(-25%, 0);
  -ms-transform: translate(-25%, 0);
  transform: translate(-25%, 0);
}

.fade .modal-dialog.modal-right {
  -webkit-transform: translate(25%, 0);
  -ms-transform: translate(25%, 0);
  transform: translate(25%, 0);
}

.in .modal-dialog.modal-left,
.in .modal-dialog.modal-right {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.modal-full-height .modal-content {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;

  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: none;
  outline: 0;
}

.modal-full-height.modal-right .modal-content {
  border: 0;
  border-left: 1px solid #dee2e6;
}

.modal-body {
  padding: 0;
}

.modal-full-height .modal-body {
  -ms-flex: 1 1 auto;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
}

.modal-full-height .modal-header .close {
  width: 30px;
  height: 30px;
  top: 0;
  right: 0;
  font-size: 24px;
  text-shadow: none;
  padding-right: 1px;
}

.modal-full-height .modal-header {
  padding: 0 30px 15px 0;
  text-align: left;
}

.modal-full-height .modal-footer {
  border-top: 1px solid var(--color-gray-light);
  padding-top: 15px;
  padding-bottom: 0;
}

.modal-full-height .modal-footer .btn + .btn {
  margin-left: 0;
  margin-top: 5px;
}

.modal-full-height .modal-title {
  font-size: 18px;
  min-height: 30px;
}

.modal-header {
  text-align: center;
  border-bottom: none;
  position: relative;
}

.modal-header .close {
  position: absolute;
  top: -2px;
  right: -5px;
  background: #fff;
  color: var(--color-gray);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  padding-left: 1px;
  filter: alpha(opacity=80);
  opacity: 0.8;
}

.modal-header .close:focus,
.modal-header .close:hover {
  color: #4c4c4c;
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.modal-title {
  font-size: 22px;
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .modal-title {
    font-size: 17px;
  }
}

.modal-footer {
  text-align: center;
  border-top: none;
  padding-top: 0;
}

@media (min-width: 768px) {
  .modal-sm {
    width: 450px;
  }
}

.modal-full-height .modal-footer__fixed {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
  max-width: 400px;
  background: #fff;
  z-index: 11;
  margin: 0 -20px -20px;
  padding-bottom: 15px;
}

/* Btn */
.btn {
  border-width: 1px;
  border-radius: 3px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;

  -webkit-transition: color 0.3s, background 0.3s, border-color 0.3s;
  -o-transition: color 0.3s, background 0.3s, border-color 0.3s;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}

.btn .caret {
  margin-top: -2px;
}

.btn-sm {
  padding: 10px 25px;
  font-size: 14px;
}

.btn-icon {
  display: inline-block;
  margin-top: -4px;
  margin-right: 5px;
  margin-bottom: -2px;
  font-size: 20px;
  line-height: 15px;
  vertical-align: middle;
}

.btn:focus,
.btn:active:focus {
  outline: none;
}

.btn-primary {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus:hover,
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover {
  color: #fff;
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.btn-primary.disabled,
.btn-primary.disabled.active,
.btn-primary.disabled.focus,
.btn-primary.disabled:active,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled],
.btn-primary[disabled].active,
.btn-primary[disabled].focus,
.btn-primary[disabled]:active,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary,
fieldset[disabled] .btn-primary.active,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:active,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-default,
.btn-default[disabled],
.btn-default[disabled]:active,
.btn-default[disabled]:hover {
  color: var(--color-primary);
  background-color: #fff;
  border-color: var(--color-primary);
}

.btn-default:hover,
.btn-default:active,
.btn-default:focus,
.btn-default:focus:hover,
.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open > .dropdown-toggle.btn-default.focus,
.open > .dropdown-toggle.btn-default:focus,
.open > .dropdown-toggle.btn-default:hover {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-dark {
  color: #fff;
  background-color: var(--color-black);
  border-color: var(--color-black);
}

.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus,
.btn-dark:focus:hover,
.btn-dark.active.focus,
.btn-dark.active:focus,
.btn-dark.active:hover,
.btn-dark:active.focus,
.btn-dark:active:focus,
.btn-dark:active:hover,
.open > .dropdown-toggle.btn-dark.focus,
.open > .dropdown-toggle.btn-dark:focus,
.open > .dropdown-toggle.btn-dark:hover {
  color: var(--color-black);
  background-color: #fff;
  border-color: var(--color-black);
}

.btn-link {
  color: var(--color-primary);
}

.btn-link:focus,
.btn-link:hover {
  color: var(--color-primary-hover);
  text-decoration: none;
}

.dropdown-menu {
  width: 100%;
  margin-top: 0;
  background-color: var(--color-gray-lighten);
  border-radius: 0;
  border: none;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.btn-lg {
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Forms */
.form-control {
  height: 40px;
  font-size: 13px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 0;
  border-color: var(--color-gray);
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: background-color ease 0.25s;
  -o-transition: background-color ease 0.25s;
  transition: background-color ease 0.25s;
}

.form-control:hover,
.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

.input-group .btn {
  height: 42px;
}

.control-label,
.form-group label {
  font-size: 14px;
}

.required .control-label::after,
.form-group.required > label::after {
  content: "*";
  color: #e64040;
  margin-left: 5px;
}

.s-input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .s-input-group__right .s-dropdown-menu {
    left: auto;
    right: 0;
  }
}

.s-input-group__label,
.s-input-group__btn {
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 18px;
}

.s-input-group__label {
  margin-right: 10px;
  font-weight: 400;
  font-size: 13px;
  text-transform: initial;
  cursor: pointer;
}

.s-input-group__btn {
  display: block;
  font-weight: bold;
  padding: 0;
  font-size: 13px;
  text-transform: lowercase;
}

.s-input-group__btn:hover,
.s-input-group__btn:focus {
  opacity: 0.7;
}

.s-input-group__btn:active,
.s-input-group__btn.active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.s-sort__active .s-input-group__label,
.s-sort__active .s-input-group__btn {
  color: var(--color-primary);
}

.s-dropdown-menu {
  min-width: 70px;
  width: auto;
  background-color: #fff;
}

.s-dropdown-menu .btn {
  display: block;
  width: 100%;
  border-radius: 0;
  text-transform: lowercase;
  font-size: 13px;
  background-color: #fff;
}
.s-dropdown-menu li + li {
  margin-top: 1px;
}
.s-dropdown-menu .btn:hover {
  background-color: var(--color-gray-lighten);
}
.s-dropdown-menu .btn.active {
  background-color: var(--color-primary);
  color: #fff;
  pointer-events: none;
}

.checkbox-customize input,
.radio-customize input {
  display: none;
}

.checkbox-customize label,
.radio-customize label {
  border: 1px solid var(--color-primary);
  min-width: 42px;
  padding: 10px;
  margin-right: 10px;
  font-weight: 600;
  font-size: 13px;
  color: var(--color-black);
  text-align: center;
  line-height: 1;
  cursor: pointer;
}

.checkbox-customize input:checked ~ label,
.radio-customize input:checked ~ label {
  background-color: var(--color-primary);
  color: #fff;
}

.customize-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* List group */
.list-group-item:first-child,
.list-group-item:last-child {
  border-radius: 0;
}

.list-group-item {
  padding: 0;
}

.list-group-img {
  margin-left: -5px;
  width: 31px;
  height: 31px;
  margin-right: 15px;
}

.list-group-img.imgLg {
  margin: -2px 13px -2px -5px;
  width: 34px;
  height: 34px;
}

.list-group-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-black);
}

.list-group-link:hover {
  background-color: var(--color-gray-lighten);
  color: var(--color-primary);
}

.list-group-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--color-primary);
  padding: 15px 10px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  line-height: 15px;
}

.list-group-title .icon {
  font-size: 22px;
  margin-right: 10px;
}

@media (min-width: 992px) {
  #common-home #content {
    max-width: calc(100% - 270px);
  }

  #common-home #content .swiper-slide img {
    width: 100%;
  }
}

.list-group-item .s-children__dropdownMenu {
  top: 0;
}

.list-group-item .s-children__dropdownMenu ul {
  margin-bottom: 0;
}

.list-group-item .s-children__dropdownMenu a {
  padding: 10px;
}

.s-categoriesList .list-group-item > .list-group-link {
  padding-right: 30px;
  position: relative;
}
.s-categoriesList .list-group-item > .list-group-link .icon {
  position: absolute;
  right: 10px;
  top: 21px;
  font-size: 14px;
}

/* Fast order */
.fo-info__title {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.2;
}

.fo-info__priceOld {
  margin-right: 5px;
  font-weight: 500;
  color: var(--color-black);
  text-decoration: line-through;
}

.fo-info__price {
  margin-left: 10px;
  font-weight: bold;
  font-size: 17px;
  color: var(--color-primary);
}

.fo-info__success {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.fo-info__success .icon {
  font-size: 100px;
  margin-bottom: 20px;
  display: block;
  color: #008000;
}

/* Heading */
.s-page__title {
  padding-bottom: 20px;
  text-align: center;
}

.s-page__slogan {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-primary);
  text-transform: uppercase;
  line-height: 22px;
}

.s-page__h1 {
  font-weight: 900;
  font-size: 20px;
  color: var(--color-black);
  text-transform: uppercase;
  line-height: 1;
}

@media (min-width: 768px) {
  .s-page__slogan {
    font-size: 17px;
  }
  .s-page__h1 {
    font-size: 27px;
  }
}

.s-heading {
  padding: 12px 10px 10px;
  background-color: var(--color-gray-lighten);
}

.column-left ~ #content .s-heading {
  background-color: var(--color-gray-lighten);
  margin-left: -10px;
  margin-right: -10px;
}

.s-heading .s-headingTitle {
  margin-top: 0;
  margin-bottom: 15px;
}

.s-headingTitle {
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--color-black);
  line-height: 18px;
}

@media (min-width: 992px) {
  .s-headingTitle {
    padding-bottom: 0;
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .column-left ~ #content .s-heading {
    margin: 0;
    margin-left: -10px;
    padding-left: 10px;
  }
}

.s-description {
  line-height: 1.7;
  text-align: justify;
}

/* Breadcrubs */
.s-breadcrumb {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
}

.s-breadcrumb__item .icon {
  vertical-align: middle;
  margin-top: -3px;
  display: inline-block;
  font-size: 12px;
  color: var(--color-primary);
  padding-right: 7px;
}

.s-breadcrumb__item + .s-breadcrumb__item {
  margin-left: 9px;
}

.s-breadcrumb__link {
  font-weight: 500;
  color: var(--color-black);
}

/* Card */
.s-card,
.s-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.s-card {
  height: 100%;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(165, 165, 165, 0.24);
  box-shadow: 0px 0px 10px 0px rgba(165, 165, 165, 0.24);
  -webkit-transition: -webkit-box-shadow 0.15s;
  transition: -webkit-box-shadow 0.15s;
  -o-transition: box-shadow 0.15s;
  transition: box-shadow 0.15s;
  transition: box-shadow 0.15s, -webkit-box-shadow 0.15s;
}

.s-card:hover {
  -webkit-box-shadow: 0px 0px 7px 0px rgba(200, 200, 200, 0.24);
  box-shadow: 0px 0px 7px 0px rgba(200, 200, 200, 0.24);
}

.s-card__body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 10px;
}

.s-card__image {
  text-align: center;
}
.s-card__image > a {
  position: relative;
  display: block;
}

.s-card .img-responsive {
  margin-left: auto;
  margin-right: auto;
}

.s-card__title {
  margin-bottom: 5px;
  line-height: 15px;
  text-align: center;
  min-height: 30px;
}

.s-card__titleLink {
  font-weight: 600;
  font-size: 13px;
  color: var(--color-black);
}

.s-card__sizes {
  margin-bottom: 10px;
  font-weight: 800;
  font-size: 14px;
  color: var(--color-primary);
  text-align: center;
}

.s-card__price {
  margin-top: auto;
  margin-bottom: 5px;
  font-weight: 800;
  font-size: 15px;
  color: var(--color-black);
  line-height: 1;
  position: relative;
  text-align: center;
}

.s-card__priceOld {
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 12px;
  color: var(--color-black);
  text-decoration: line-through;
}

@media (min-width: 768px) {
  .s-card__titleLink {
    font-size: 14px;
  }
  .s-card__price {
    font-size: 17px;
  }
  .s-card__priceOld {
    font-size: 14px;
  }
}

.s-card__out .s-card__image {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  -o-transition: filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.s-card__out:hover .s-card__image {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.s-card__outText {
  position: absolute;
  z-index: 99;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(255, 255, 255, 1);
  font-size: 15px;
  font-weight: bold;
  color: var(--color-black);
  text-align: center;
}

.s-card__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  overflow: hidden;
}

.s-card__btn {
  padding: 5px;
  font-size: 16px;
  margin: 0 7px 10px;

  width: 34px;
  height: 34px;
  background-color: var(--color-black);
  border-color: var(--color-black);
  color: #fff;
  border-radius: 50%;
}
.btn-link.s-card__btn {
  background-color: var(--color-black);
}
.btn-link.s-card__btn:hover {
  color: #fff;
}

.s-card__btn:disabled {
  background-color: var(--color-gray) !important;
  border-color: var(--color-gray) !important;
}

.s-card__btn:hover {
  background-color: var(--color-gray-dark);
  border-color: var(--color-gray-dark);
  color: #fff;
}

.s-card__btnPrimary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.s-card__btnPrimary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.s-card__btn-light {
  background-color: #fff;
  border-color: #fff;
  color: var(--color-text);
  width: 100%;
  background: #fff;
  margin: 0px 16px 6px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
  color: #000;
  text-transform: uppercase;
  font-size: 13px;
  padding: 11px 10px 10px;
  display: none;
}
.s-card__btn-light.s-card__btn-mobile {
  display: block;
  position: absolute;
  bottom: 4px;
  right: 12px;
  left: 12px;
  margin: 0;
  width: auto;
  font-size: 12px;
  padding: 7px 10px 6px;
}

.s-card__btn-light:hover,
.s-card__btn-light:focus {
  background-color: var(--color-gray-light);
  border-color: var(--color-gray-light);
  color: var(--color-text);
}

.s-card__floatBtns {
  padding-bottom: 40px;
  position: relative;
}

@media (min-width: 768px) {
  .s-card__btn-light.s-card__btn-mobile {
    bottom: 6px;
    right: 14px;
    left: 14px;
    font-size: 13px;
    padding: 11px 10px 10px;
  }
  .s-card__btn {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 992px) {
  .s-card__btn-light {
    display: block;
  }
  .s-card__btn-light.s-card__btn-mobile {
    display: none;
  }
  .s-card__floatBtns {
    padding-bottom: 0;
  }

  .s-card__image {
    position: relative;
  }

  .s-card__btns {
    bottom: 0;
  }

  .s-card__btn {
    margin: 0 10px 10px;
    font-size: 20px;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }

  .s-card:hover .s-card__btn {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }

  .s-card__btn:nth-child(4n + 1) {
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    -o-transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  }

  .s-card__btn:nth-child(4n + 2) {
    -webkit-transition: opacity 0.3s 0.05s, -webkit-transform 0.3s 0.05s;
    transition: opacity 0.3s 0.05s, -webkit-transform 0.3s 0.05s;
    -o-transition: transform 0.3s 0.05s, opacity 0.3s 0.05s;
    transition: transform 0.3s 0.05s, opacity 0.3s 0.05s;
    transition: transform 0.3s 0.05s, opacity 0.3s 0.05s,
      -webkit-transform 0.3s 0.05s;
  }

  .s-card__btn:nth-child(4n + 3) {
    -webkit-transition: opacity 0.3s 0.1s, -webkit-transform 0.3s 0.1s;
    transition: opacity 0.3s 0.1s, -webkit-transform 0.3s 0.1s;
    -o-transition: transform 0.3s 0.1s, opacity 0.3s 0.1s;
    transition: transform 0.3s 0.1s, opacity 0.3s 0.1s;
    transition: transform 0.3s 0.1s, opacity 0.3s 0.1s,
      -webkit-transform 0.3s 0.1s;
  }

  .s-card__btn:nth-child(4n + 4) {
    -webkit-transition: opacity 0.3s 0.15s, -webkit-transform 0.3s 0.15s;
    transition: opacity 0.3s 0.15s, -webkit-transform 0.3s 0.15s;
    -o-transition: transform 0.3s 0.15s, opacity 0.3s 0.15s;
    transition: transform 0.3s 0.15s, opacity 0.3s 0.15s;
    transition: transform 0.3s 0.15s, opacity 0.3s 0.15s,
      -webkit-transform 0.3s 0.15s;
  }
}

/* Header */
.s-top {
  background-color: var(--color-primary);
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  color: #fff;
  line-height: 1;

  display: none;
}

.s-header__info {
  text-align: right;
}

.s-header__info a {
  display: block;
  color: var(--color-black);
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
}

.s-header__info a.s-header__telephone {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 3px;
}

.s-header__info .s-top__link + .s-top__link {
  margin-left: 0;
}

@media (min-width: 768px) {
  .s-top {
    display: block;
  }

  .s-header__info {
    display: none;
  }
}

.s-top__link {
  color: #fff;
}

.s-top__link:hover,
.s-top__link:focus {
  text-decoration: none;
  color: #fff;
  opacity: 0.7;
}

.s-top__link + .s-top__link {
  margin-left: 30px;
}

.s-header {
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Heading cart */
.table-cart-products {
  height: 1px;
}

.table-cart-products.table > tbody > tr:first-child > td {
  border-top: none;
}

.h-cart__image {
  width: 90px;
}

.h-cart__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 4px;
  height: 100%;
}

.h-cart__productName {
  font-size: 14px;
  color: var(--color-text);
}

.h-cart__wrapper .d-flex {
  margin-top: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.h-cart__price {
  font-size: 14px;
  color: var(--color-gray-dark);
}

.h-cart__remove {
  margin-left: auto;
  padding: 3px;
  background-color: transparent;
  border: none;
  font-size: 20px;
  color: var(--color-gray);
}

.h-cart__total {
  font-size: 18px;
  text-align: center;
}

.h-cart__totalStrong {
  font-size: 22px;
}

.h-cart__cart {
  padding: 10px 20px;
  margin-top: 10px;
}

.h-cart__order {
  padding: 10px 20px;
}

/* Search */
.s-headSearch {
  position: relative;
  z-index: 20;
}

.s-headSearch__close {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 40px;
  padding: 8px 10px;
  line-height: 1;
  color: var(--color-black);
  z-index: 20;
}

.s-nav__search {
  position: fixed;
  top: -120%;
  left: 0;
  right: 0;
  padding: 10px;
  background: #fff;
  z-index: 970;
  opacity: 0;
  -webkit-box-shadow: 0 0 15px 0 var(--color-gray-dark);
  box-shadow: 0 0 15px 0 var(--color-gray-dark);
  -webkit-transition: top 0.3s, opacity 0.3s;
  -o-transition: top 0.3s, opacity 0.3s;
  transition: top 0.3s, opacity 0.3s;
}

.showSerach .s-nav__search {
  top: 0;
  opacity: 1;
}

.s-nav__icons {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 400px;
  flex: 0 0 400px;
  max-width: 100%;
}

.s-n-icons {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.s-headSearch .dropdown-menu {
  left: 0 !important;
  max-height: 95vh;
  max-height: calc(100vh - 56px);
  overflow: auto;
  top: 100% !important;
  margin-top: 0 !important;
}

.s-headSearch .btn {
  height: 44px;
  background-color: transparent;
  border-color: transparent;
  border-radius: 5px;
  padding: 3px 12px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: var(--color-black);
}

.s-headSearch .btn:hover {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-primary);
}

.s-headSearch .s-headSearch__search {
  right: 50px;
}

.s-headSearch .s-headSearch__close {
  font-size: 40px;
  line-height: 16px;
}

/* Search autocomplete */
.s-h-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.s-h-product__content {
  display: block;
  padding-left: 10px;
  line-height: 1;
  white-space: normal;
}

.s-h-product__name {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 13px;
}

.s-h-product__model {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  color: var(--color-gray-dark);
}

.s-h-product__price {
  font-size: 13px;
  font-weight: bold;
  color: var(--color-primary);
}

.s-h-product__priceOld {
  margin-left: 15px;
  font-weight: 500;
  font-size: 12px;
  color: var(--color-gray);
  text-decoration: line-through;
}

.s-headSearch .dropdown-menu {
  width: 100%;
  margin-top: 3px;
  border-radius: 5px;
}

.s-headSearch .dropdown-menu > li > a {
  padding: 3px 15px;
}

.s-headSearch .dropdown-menu > li > a:hover {
  background-color: var(--color-gray-light);
}

/* Nav */
.s-nav {
  display: none;
}

@media (min-width: 992px) {
  .s-nav {
    display: block;
  }

  .btnMenuMobile {
    display: none;
  }
}

.s-nav__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.s-nav__nav > li > a:focus,
.s-nav__nav > li > a:hover {
  background-color: #fff;
}

.nav > li > a {
  padding: 10px 7px;
}

.s-nav__link {
  font-weight: 600;
  font-size: 13px;
  color: var(--color-black);
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .nav > li > a {
    padding: 10px 12px;
  }
  .s-nav__link {
    font-size: 14px;
  }
}

.s-nav__link .icon {
  font-size: 11px;
}

.s-nav__dropdown,
.s-children__dropdown {
  position: relative;
}

@media (min-width: 768px) {
  .s-nav__dropdownMenu,
  .s-children__dropdownMenu {
    position: absolute;
    min-width: 220px;
    background-color: #fff;
    padding: 3px 0;
    border: 1px solid #fff;
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.4s, visibility 0.4s, -webkit-transform 0.4s;
    transition: opacity 0.4s, visibility 0.4s, -webkit-transform 0.4s;
    -o-transition: transform 0.4s, opacity 0.4s, visibility 0.4s;
    transition: transform 0.4s, opacity 0.4s, visibility 0.4s;
    transition: transform 0.4s, opacity 0.4s, visibility 0.4s,
      -webkit-transform 0.4s;
    z-index: 99;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  }

  .s-nav__dropdownMenu {
    top: 100%;
    left: 0;
  }

  .s-children__dropdownMenu {
    top: -4px;
    left: 100%;
  }

  .s-nav__dropdown:hover > .s-nav__dropdownMenu,
  .s-children__dropdown:hover > .s-children__dropdownMenu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    pointer-events: auto;
  }
}

.s-children__dropdownMenuIn .s-children {
  border-top: 1px solid #ddd;
  padding-top: 7px;
}

.s-children__dropdownMenuIn .active {
  color: var(--color-primary);
}

.s-children a {
  display: block;
  padding: 5px 30px 5px 10px;
  font-weight: 600;
  font-size: 12px;
  color: var(--color-black);
  position: relative;
}

.s-children a:hover {
  background-color: var(--color-gray-lighten);
}

.s-children a .icon {
  position: absolute;
  right: 10px;
  top: 9px;
  font-size: 11px;
}

.s-categoriesList_in .withChildren:not(.collapsed) {
  background-color: var(--color-gray-lighten);
  color: var(--color-primary);
}

.s-categoriesList_in .withChildren .icon {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.s-categoriesList_in .withChildren:not(.collapsed) .icon {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.s-mMenu__link {
  display: block;
  padding: 5px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-black);
  text-transform: uppercase;
}

.s-mMenu__list {
  margin-left: 15px;
  margin-bottom: 5px;
}

.s-mMenu__child {
  display: block;
  padding: 3px;
  color: var(--color-black);
}

.s-n-icons {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 100%;
}

.s-n-icons__link {
  display: block;
  height: 100%;
  padding: 8px 10px 4px;
  font-size: 25px;
  color: var(--color-primary);
  position: relative;
  line-height: 36px;
  background-color: transparent;
  border: none;
}

.s-n-icons__link:hover,
.s-n-icons__link:focus {
  background-color: #fff;
  color: var(--color-gray-dark);
}

.s-n-icons__active {
  background-color: var(--color-gray-lighten);
}

.s-n-icons__counter {
  position: absolute;
  top: 1px;
  right: 3px;
  background: var(--color-gray-dark);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-weight: 500;
  font-size: 11px;
  color: #fff;
  line-height: 16px;
  text-align: center;
  display: none;
}

.s-n-icons__active .s-n-icons__counter {
  display: block;
}

@media (min-width: 1200px) {
  .s-header__icons {
    width: 25%;
  }
}

@media (max-width: 767.98px) {
  .s-header__icons {
    max-width: none;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: -5px;
    margin-right: -5px;
    background-color: var(--color-primary);
    min-width: 100%;
  }

  .s-n-icons__link {
    color: #fff;
    padding: 11px 17px 7px;
  }

  .s-n-icons__active {
    color: var(--color-black);
  }
}

@media (max-width: 480.98px) {
  .s-n-icons {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

/* Footer */
.s-footer {
  padding: 35px 0;
  background-color: var(--color-gray-lighten);
}

.s-footer__slogan {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
}

.s-footer__powered {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
}

.s-footer__title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-black);
  line-height: 1;
}

.s-footer__title a {
  color: var(--color-black);
}

.s-footer__list {
  margin-left: 15px;
  margin-bottom: 10px;
}

.s-footer__list a {
  font-weight: 600;
  font-size: 12px;
  color: var(--color-black);
}

.s-footer a:hover {
  color: var(--color-gray-dark);
}

.s-footer .icon,
.icon-contrast {
  display: inline-block;
  width: 1.25em;
  color: var(--color-primary);
}

.s-footer__tel,
.s-footer__email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.s-footer__tel {
  font-weight: 700;
  font-size: 24px;
}

.s-footer__tel .icon {
  font-size: 21px;
  margin-right: 5px;
}

.s-footer__email {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
}

.s-footer__email .icon {
  font-size: 16px;
  margin-right: 5px;
}

.s-footer__link {
  color: var(--color-black);
}

.s-footer__poweredMobile {
  display: none;
}

@media (max-width: 1199.98px) {
  .s-footer__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .s-footer__slogan {
    text-align: center;
  }

  .s-footer__powered {
    display: none;
  }

  .s-footer__powered.s-footer__poweredMobile {
    display: block;
    text-align: center;
    margin-top: 15px;
  }
}

@media (max-width: 767.98px) {
  .s-footer__tel,
  .s-footer__email {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .s-footer__imgCard {
    margin-left: auto;
    margin-right: auto;
  }

  .s-footer__list {
    margin-left: 0;
  }
}

/*Social networks */
.s-top__sn {
  display: none;
  vertical-align: middle;
  line-height: 13px;
  margin-top: -4px;
  margin-bottom: -2px;
}
.s-top__snLink {
  font-size: 17px;
  color: #fff;
  margin-left: 15px;
}
.s-top__snLink:hover {
  text-decoration: none;
  color: #fff;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .s-top__sn {
    display: inline-block;
  }
}
.s-sn {
  text-align: center;
}

.s-footer .s-sn {
  margin-bottom: 15px;
}

.s-sn__link {
  font-size: 16px;
  line-height: 1;
  display: block;
}
.s-sn__link .icon {
  font-size: 30px;
  vertical-align: middle;
}
.s-sn__link:hover,
.s-sn__link:hover .icon {
  color: var(--color-gray-dark);
}

/* Column left */
.column-left {
  width: 270px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 270px;
  flex: 0 0 270px;
}

.column-left ~ #content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
  width: 100%;
}

#common-home .column-left {
  padding-right: 0;
}

@media (max-width: 991.98px) {
  #common-home .column-left {
    display: none;
  }
}

/* Modules */
.s-section {
  padding-bottom: 30px;
}

/* Banners */
.s-banners__item {
  background-size: cover;
  background-position: top 30% center;
  display: block;
}

.s-banners__overlay {
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 10px;
  -webkit-transition: background 0.2s;
  -o-transition: background 0.2s;
  transition: background 0.2s;
}

.s-banners__item:hover .s-banners__overlay {
  background-color: rgba(255, 255, 255, 0.4);
}

.s-banners__slogan {
  display: block;
  /*font-weight: 900;
  font-size: 17px;*/
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
  line-height: 22px;
  background: #fff;
  padding: 8px;
}

.s-banners__title {
  display: block;
  font-weight: 900;
  font-size: 22px;
  color: var(--color-black);
  line-height: 1;
  background: #fff;
  padding: 5px;
}

@media (min-width: 768px) {
  .s-banners__item {
    background-position: center;
  }

  .s-banners__overlay {
    height: 400px;
  }

/*  .s-banners__slogan {
    font-size: 21px;
  }*/

  .s-banners__title {
    font-size: 27px;
  }
}

/* Pagination */
.s-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style-type: none;
  margin: 0 0 10px;
  padding: 0;
}

.s-pagination li a,
.s-pagination li span {
  display: block;
  padding: 9px;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary);
  line-height: 10px;
}

.s-pagination li a:hover {
  color: var(--color-gray-dark);
}

.s-pagination li.active span {
  font-weight: 800;
  text-decoration: underline;
}

.s-pagination li .icon {
  font-size: 13px;
  line-height: 15px;
}

.row-pagination__bottom .s-pagination {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .s-pagination li a,
  .s-pagination li span {
    font-size: 16px;
    line-height: 18px;
    padding: 10px;
  }

  .s-pagination li .icon {
    font-size: 13px;
  }
}

/* Pages */
.s-page__heading {
  background-color: var(--color-gray-lighten);
}

.btn-load-more {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 30px;
}
.btn-load-more .icon {
  position: relative;
  display: block;
  margin-left: 10px;
  font-size: 17px;
  width: 20px;
  height: 21px;
  line-height: 22px;
  text-align: center;
}
.btn-load-more.animated .icon {
  -webkit-animation: 0.5s linear rotate infinite;
  animation: 0.5s linear rotate infinite;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Page product */
.s-product__image img {
  margin-left: auto;
  margin-right: auto;
}

.p-info__item {
  margin-bottom: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-info__item .text-danger {
  width: 100%;
}

.p-info .p-info__item {
  margin-bottom: 15px;
  line-height: 1.2;
}

.p-info__itemTitle {
  margin-right: 5px;
}

.p-info__itemBody {
  font-weight: 600;
  margin-left: 15px;
}

.p-info__options .p-info__itemTitle,
.fo-info__options .p-info__itemTitle {
  margin-bottom: 5px;
}

.p-info__priceWrapper {
  padding-top: 10px;
}

.p-info__priceOld {
  margin-right: 25px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: line-through;
}

.p-info__price {
  font-weight: 800;
  font-size: 24px;
  color: var(--color-primary);
}

.s-product__btnGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 15px;
  padding-bottom: 10px;
}

.s-product__btnGroup .btn {
  margin-bottom: 10px;
  margin-right: 10px;
}

.s-product__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-bottom: 15px;
}

.s-product__tags .icon {
  -ms-flex-item-align: center;
  align-self: center;
  margin-right: 7px;
  font-size: 20px;
  color: var(--color-primary);
}

.s-product__tag {
  display: block;
  margin-left: 5px;
  font-size: 13px;
  color: var(--color-black);
}

/* Page search */
.s-search__btns {
  margin-top: 10px;
}

/* Page contact */
.s-page__contactTitle {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 20px;
}

.s-page__contactInfo {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
}

/* Account */
.p-account__well {
  margin-bottom: 0;
  height: 100%;
  background-color: var(--color-gray-lighten);
  border-radius: 0;
}

.p-account__title {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .p-account__title {
    font-size: 20px;
  }
}

.p-account__text {
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Login */
.s-account__deliver {
  margin-top: 20px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
}

.s-account__deliver::before,
.s-account__deliver::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: var(--color-gray-dark);
  margin: 0 10px;
}

.required .text-danger,
.s-link-forgotten {
  display: block;
  margin-top: 3px;
  font-size: 13px;
}

.s-accountLinks .btn {
  display: block;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14px;
  text-align: left;
}

.banner-float-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background-color: #fff;
  padding: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}
.banner-float-title svg {
  margin-left: auto;
  font-size: 28px;
}
.banner-float-title:hover svg {
  color: var(--color-primary);
}