: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: #8bc34a;
  --color-primary-hover: #7baf42;
  --color-secondary: var(--color-black);
  --color-body: var(--color-black);
  --font-family: Arial, Helvetica, Verdana, 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-size: 14px;
  color: var(--color-body);
  line-height: 1.5;
  background-color: #fafafa;
}

@media (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* General */
.container {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.container .container {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  .row-15 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media (min-width: 768px) {
  .row-15 > * {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

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

.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%;
}

@media (max-width: 767.98px) {
  .row-m-column > * {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    text-align: center;
  }
}

.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;
}

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

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

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

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

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

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

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

.pt-40 {
  padding-top: 20px;
}

@media (min-width: 768px) {
  .pt-40 {
    padding-top: 40px;
  }
}

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

blockquote {
  border-color: var(--color-gray-dark);
}

/* Panels */
.panel-default {
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.panel-group .panel + .panel {
  margin-top: 20px;
}

.panel-default > .panel-heading {
  background-color: #fff;
  border-color: transparent;
  padding: 0;
}

.panel-default > .panel-heading a {
  display: block;
  padding: 17px 15px 15px;
  font-weight: bold;
  color: var(--color-primary);
  text-align: left;
  font-size: 14px;
  line-height: 1.3;
}

.panel-default > .panel-heading a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-top: -3px;
  margin-left: 2px;
  margin-right: 15px;
  vertical-align: middle;
  border-left: 5px dashed;
  border-left: 5px solid\11;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  vertical-align: middle;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.panel-default > .panel-heading a.collapsed {
  color: var(--color-black);
}

.panel-default > .panel-heading a.collapsed::before {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top: none;
  padding: 5px 15px 17px;
}

@media (min-width: 768px) {
  .panel-group .panel + .panel {
    margin-top: 30px;
  }

  .panel-default > .panel-heading a {
    padding: 22px 28px 20px;
    font-size: 16px;
  }

  .panel-default > .panel-heading + .panel-collapse > .panel-body {
    padding: 15px 28px 22px;
  }
}

/* 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: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  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-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;
}

/* Forms */
.form-control {
  height: 44px;
  font-size: 16px;
  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;
}

/* Btn */
.btn {
  border-width: 3px;
  border-radius: 60px;
  padding: 15px 35px;
  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 {
  vertical-align: middle;
  margin-right: 3px;
  margin-top: -2px;
}

.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-default {
  color: var(--color-black);
  background-color: #fff;
  border-color: var(--color-black);
}

.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-black);
  border-color: var(--color-black);
}

.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);
}

/* Header */
.s-header {
  background-color: #fff;
  padding-top: 5px;
  padding-bottom: 10px;
  min-height: 109px;
}

@media (min-width: 768px) {
  .s-header {
    min-height: 126px;
  }
}

.s-header__info {
  line-height: 1.2;
}

.s-header__info + .s-header__info {
  margin-top: 5px;
}

.s-header__info i {
  display: inline-block;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 3px;
  font-size: 14px;
}

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

.s-header__infoLink:hover {
  text-decoration: none;
}

.h-cartBtn {
  width: auto;
  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;
  margin-left: auto;
  padding: 10px 20px;
  background-color: var(--color-text);
  border-color: var(--color-text);
}

.h-cartBtn__icon {
  margin-top: -3px;
  margin-right: 10px;
  font-size: 30px;
}

.h-cartBtn__total {
  display: block;
  line-height: 1;
  text-align: left;
}

.h-cartBtn__qty {
  display: block;
  font-size: 13px;
}

.s-header__inst {
  margin: 0 auto;
}

.s-header__nav {
  margin-left: 15px;
  margin-right: 10px;
}

.s-header__navAction {
  display: inline-block;
  cursor: pointer;
}

.s-header__navAction:hover {
  opacity: 0.5;
}

.s-lang {
  text-align: right;
  margin-top: 10px;
}

.s-lang__select {
  padding: 5px 20px;
}

.s-lang__select:hover,
.s-lang__select.active {
  opacity: 0.7;
  text-decoration: none;
}

.s-header .s-lang__text {
  display: none;
}

.s-mobMenu {
  margin-left: auto;
  display: none;
}

.s-mobMenu__btn {
  padding: 5px 12px;
  font-size: 20px;
  height: 44px;
}

@media (max-width: 767.98px) {
  .s-mobMenu {
    display: block;
  }

  .s-header__mSpace {
    padding-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
  }

  .s-header__services {
    position: absolute;
    top: 10px;
    right: 0;
  }

  .s-header__servicesIn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .s-header__nav {
    display: none;
  }

  .s-lang {
    margin-top: 0;
    margin-left: 20px;
  }

  .s-lang__select {
    padding-left: 12px;
    padding-right: 12px;
  }

  .s-header__cart {
    margin-left: auto;
    margin-right: 5px;
  }
  .h-cartBtn {
    padding: 5px 8px;
    height: 44px;
  }
  .h-cartBtn__icon {
    font-size: 25px;
    margin-right: 5px;
  }
  .h-cartBtn__qty {
    font-size: 12px;
  }
  .h-cartBtn__price {
    font-size: 13px;
  }
}

/* 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;
}

/* Manu */
.s-mMenu__link {
  display: block;
  padding: 10px 0;
  color: var(--color-text);
  line-height: 1.2;
}

.s-mMenu__link:hover {
  text-decoration: none;
  color: var(--color-gray-dark);
}

.s-navbar {
  display: none;
  margin-bottom: 5px;
}

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

.navbar-nav {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  float: none;
}
.navbar-nav > li > a {
  border: none;
  border-bottom: 3px solid transparent;
  margin: 0 5px;
  padding: 13px 5px 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-black);
  line-height: 20px;
  text-transform: uppercase;
  -webkit-transition: border 0.3s;
  -o-transition: border 0.3s;
  transition: border 0.3s;
  white-space: nowrap;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a.active {
  background-color: transparent;
  border-color: var(--color-black);
}

@media (min-width: 992px) {
  .navbar-nav > li > a {
    padding: 13px 15px 10px;
    font-size: 16px;
  }
}

/* Footer */
.s-footer {
  background-color: #f6f6f6;
}

.s-footer ul {
  margin-bottom: 0;
}

.s-footer__container {
  padding-top: 30px;
  padding-bottom: 20px;
}

.f-col-logo__img {
  margin-bottom: 20px;
}

.f-col-logo__text {
  max-width: 340px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1;
}

.f-col-categories,
.f-col-info,
.f-col-contact {
  width: 100%;
}

.s-footer__link {
  display: block;
  padding: 5px 0;
  font-size: 15px;
  color: var(--color-black);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .f-col-categories {
    width: 33.3333%;
  }

  .f-col-info {
    width: 33.3333%;
  }

  .f-col-contact {
    width: 33.3333%;
  }

  .f-col-logo__text {
    font-size: 20px;
  }

  .s-footer__container {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .s-footer__link {
    padding: 5px 0;
  }
}

@media (min-width: 992px) {
  .f-col-categories {
    width: 18%;
  }

  .f-col-info {
    width: 22%;
  }

  .f-col-contact {
    width: 26.6666%;
  }

  .s-footer__link {
    padding: 7px 0;
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  .f-col-categories {
    margin-left: 3%;
  }

  .f-col-contact {
    width: 22.6666%;
  }
}

.s-footer .s-lang {
  text-align: left;
  margin-left: 0;
}

.s-footer .s-lang__select {
  padding: 5px 0;
  margin-right: 20px;
}

.s-lang__text {
  display: inline-block;
  margin-bottom: -1px;
  margin-left: 3px;
  vertical-align: middle;
  color: var(--color-black);
}

.s-powered {
  background-color: #fff;
  border-top: 1px solid var(--color-text);
  padding: 10px 0;
}

@media (max-width: 767.98px) {
  .s-powered {
    padding-top: 25px;
  }
  .s-powered,
  .s-powered .text-right {
    text-align: center;
  }
}

/* Card */
.s-card {
  -webkit-box-shadow: 0 3px 6px -5px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px -5px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.s-card:hover {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
}

.s-card__special {
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 50%;
  padding: 0 2px;
  position: absolute;
  right: -10px;
  top: -17px;
  z-index: 9;
  background-color: #ff0042;
  font-family: ui-monospace;
  font-weight: 900;
  font-size: 30px;
  color: #fff;
  text-align: center;
  pointer-events: none;
}

.s-card__img {
  position: relative;
  overflow: hidden;
}

.s-card__image {
  display: block;
}

.s-card__imgItem {
  -webkit-transition: opacity 0.6s, -webkit-filter 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-filter 0.6s, -webkit-transform 0.6s;
  -o-transition: filter 0.6s, opacity 0.6s, transform 0.6s;
  transition: filter 0.6s, opacity 0.6s, transform 0.6s;
  transition: filter 0.6s, opacity 0.6s, transform 0.6s, -webkit-filter 0.6s,
    -webkit-transform 0.6s;
  transition: filter 0.6s, opacity 0.6s, transform 0.6s, -webkit-filter 0.6s,
    -webkit-transform 0.6s;
}

.s-card:hover .s-card__imgItem {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.s-card__fView {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border: none;
  background-color: rgba(0, 0, 0, 0.7);
  padding-top: 3px;
  padding-bottom: 3px;
  color: #fff;
  opacity: 0;
  -webkit-transition: background 0.3s, opacity 0.3s linear;
  -o-transition: background 0.3s, opacity 0.3s linear;
  transition: background 0.3s, opacity 0.3s linear;
}

.s-card__fView:hover {
  background-color: #000;
}

.s-card__img:hover .s-card__fView {
  opacity: 1;
}

.s-card__body {
  padding: 20px;
  text-align: center;
}

.s-card .btn {
  font-size: 16px;
}

.s-card__category {
  padding: 8px 0 5px;
  font-size: 14px;
  opacity: 0.6;
}

.s-card__titleLink {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: var(--color-heading);
  line-height: 21px;
}

.s-card__rating {
  font-size: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-text);
}

.s-card__price {
  padding: 8px 0 10px;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
}

.s-card__priceOld {
  color: var(--color-gray-dark);
  text-decoration: line-through;
  padding-right: 5px;
}

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

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

.fo-info__itemBody {
  font-weight: bold;
}

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

.fo-info__price {
  font-weight: bold;
}

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

.fo-info__success .far {
  font-size: 100px;
  margin-bottom: 20px;
  display: block;
  color: #17a717;
}

.fv-info {
  margin: -20px;
  position: relative;
}

.fv-info__imgCol {
  text-align: center;
}

.fv-info__contentCol {
  padding: 30px 15px;
  position: static;
}

@media (min-width: 768px) {
  .fv-info__contentCol {
    padding: 40px 20px 30px;
  }
}

.fv-info__close {
  position: absolute;
  top: 5px;
  right: 5px;
}
.fv-info__close .close {
  width: 30px;
  height: 30px;
  background-color: #fff;
}

@media (max-width: 767.98px) {
  .fv-info__close .close {
    opacity: 1;
    z-index: 99;
    line-height: 32px;
  }
}

/* Home page */
.s-page {
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .s-page {
    margin-bottom: 40px;
  }
}

.s-page__title {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .s-page__title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.s-page__heading {
  text-align: center;
  padding-bottom: 10px;
}

.s-page__heading .s-page__title {
  margin-bottom: 0;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .s-page__heading {
    padding-bottom: 20px;
  }

  .s-page__heading .s-page__title:not(.s-page__title-sm) {
    font-size: 38px;
  }
}

.s-page__white {
  background-color: #fff;
  margin-bottom: -25px;
  padding-top: 10px;
  padding-bottom: 25px;
}

@media (min-width: 768px) {
  .s-page__white {
    margin-bottom: -40px;
    padding-top: 20px;
    padding-bottom: 40px;
  }
}

.bg-flower {
/*  background-image: url(/image/baner1-1.jpg);*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;

  position: relative;
  padding-bottom: 30px;
}

@media (min-width: 992px) {
  .bg-flower {
    padding-top: 30px;
  }
}

.bg-flower:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #f8f8f8;
  opacity: 0.6;
}

.s-hp-banner {
  background-image: -o-radial-gradient(
    at center right,
    #d7d7d7 0%,
    #fafafa 56%
  );
  background-image: -o-radial-gradient(
    at center right,
    #d7d7d7 0%,
    #fafafa 56%
  );
  background-image: radial-gradient(at center right, #d7d7d7 0%, #fafafa 56%);
  padding: 40px 0 0;
}

.s-hp-banner__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.s-hp-banner__left,
.s-hp-banner__right {
  text-align: center;
  margin-bottom: 20px;
}

.s-hp-banner__right {
  display: none;
}

.s-hp-banner__right {
  min-height: 110px;
}

.s-hp-banner__title {
  margin-bottom: 20px;
  font-family: "Georgia", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}

.s-hp-banner__desc {
  padding-bottom: 15px;
  font-family: "Georgia", Sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0.3);
}

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

.s-hp-banner__btn {
  margin: 5px 1%;
  min-width: 230px;
}

.s-hp-banner__img {
  width: 50%;
}

@media (min-width: 768px) {
  .s-hp-banner {
    padding: 60px 0 30px;
  }

  .s-hp-banner__left,
  .s-hp-banner__right {
    margin-bottom: 30px;
  }

  .s-hp-banner__title {
    font-size: 25px;
    margin-bottom: 30px;
  }

  .s-hp-banner__desc {
    font-size: 24px;
    padding-bottom: 30px;
  }

  .s-hp-banner__btns {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .s-hp-banner__btn {
    width: 30%;
  }

  .s-hp-banner__img {
    width: 300px;
  }
}

@media (min-width: 992px) {
  .s-hp-banner {
    padding: 80px 0 40px;
  }

  .s-hp-banner__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .s-hp-banner__left {
    width: 60%;
    margin-bottom: 0;
  }

  .s-hp-banner__right {
    width: 40%;
  }

  .s-hp-banner__title {
    font-size: 30px;
  }

  .s-hp-banner__desc {
    font-size: 28px;
  }

  .s-hp-banner__img {
    width: auto;
  }
}

@media (min-width: 1200px) {
  .s-hp-banner__title {
    font-size: 37px;
  }
}

.s-hp-categories {
  padding-top: 40px;
}

.s-hp-categories__link {
  display: block;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}

.s-hp-categories__item {
  display: block;
  overflow: hidden;
}

.s-hp-categories__img {
  -webkit-transition: transform 1.4s;
  -o-transition: transform 1.4s;
  -webkit-transition: -webkit-transform 1.4s;
  transition: -webkit-transform 1.4s;
  transition: transform 1.4s;
  transition: transform 1.4s, -webkit-transform 1.4s;
  margin: 0 auto;
}

.s-hp-categories__link:hover .s-hp-categories__img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.s-hp-categories__title {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  min-width: 240px;
  width: 100%;
  padding: 15px 0;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  font-weight: 400;
  font-size: 21px;
  color: var(--color-black);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .s-hp-categories__title {
    left: -10px;
    width: auto;
  }
}

.s-hp-categories__titleAlt {
  top: auto;
  left: 15px;
  right: 15px;
  bottom: 35px;
  width: auto;
}

@media (max-width: 767.98px) {
  .s-hp-categories__titleAlt {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .s-carousel__well {
    padding-right: 20px;
  }
}

.s-carousel__line {
  display: block;
  content: "";
  width: 100%;
  max-width: 170px;
  height: 1px;
  background-color: var(--color-gray-dark);
  margin: 0 auto 20px;
}

.s-carousel__title {
  margin-bottom: 20px;
  padding: 0 30px;
  font-size: 30px;
  text-align: right;
}

/* Advantages */
.s-advantages {
  margin-bottom: 40px;
  padding-top: 40px;
}
.s-advantages__card {
  border: 4px dashed var(--color-gray-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 5px 0;
  padding: 10px 15px;
}

.s-advantages__icon {
  font-size: 30px;
  color: var(--color-primary);
}

.s-advantages__text {
  padding-left: 15px;
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
}

@media (min-width: 768px) {
  .s-advantages__card {
    padding: 15px;
  }

  .s-advantages__icon {
    font-size: 35px;
  }
  .s-advantages__text {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .s-advantages__icon {
    font-size: 40px;
  }
  .s-advantages__text {
    font-size: 24px;
  }
}

@media (min-width: 768px) {
  .s-page__content p,
  .s-page__content ul,
  .s-page__content ol {
    margin-bottom: 1.6em;
    line-height: 1.6;
  }
}

.s-hp-text {
  max-width: 1200px;
  text-align: justify;
}

.s-hp-text__title {
  margin-top: 0;
  font-size: 34px;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 27px;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
  }
  h6 {
    font-size: 17px;
  }

  .s-hp-text__title {
    font-size: 28px;
    line-height: 1.1;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 17px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 15px;
  }

  .s-hp-text__title {
    font-size: 22px;
  }

  ol,
  ul {
    padding-left: 20px;
  }
}

.s-hp-text h1,
.s-hp-text h2,
.s-hp-text h3,
.s-hp-text h4,
.s-hp-text h5,
.s-hp-text h6 {
  margin-bottom: 20px;
}

/* Reviews */
.s-hp-reviews {
  padding-top: 20px;
  padding-bottom: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .s-hp-reviews {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}

.s-hp-reviews__title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

.s-hp-reviews__page {
  padding-top: 20px;
}

.s-hp-reviews__wrapper {
  padding: 15px;
}

.s-hp-reviews__author {
  font-weight: bold;
}

.s-hp-reviews__comment {
  background-color: #e6e9ec;
  position: relative;
  margin-bottom: 20px;
  padding: 20px;
  font-size: 18px;
  line-height: 1.2;
  font-style: italic;
}

@media (min-width: 768px) {
  .s-hp-reviews__comment {
    font-size: 21px;
    line-height: 1.4;
  }
}

.s-hp-reviews__comment::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: #e6e9ec;
  position: absolute;
  -webkit-transform: scaleX(0.75) rotate(45deg);
  -ms-transform: scaleX(0.75) rotate(45deg);
  transform: scaleX(0.75) rotate(45deg);
  top: 100%;
  left: 50%;
  margin-top: -7px;
  margin-left: -7px;
}

/* Pages */
.breadcrumb {
  background-color: transparent;
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
  font-size: 13px;
  color: var(--color-gray-dark);
}

.breadcrumb > li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media (min-width: 768px) {
  .breadcrumb {
    font-size: 15px;
  }
}

.breadcrumb a {
  color: var(--color-gray-dark);
}

.breadcrumb a:hover {
  color: var(--color-text);
}

.s-dropdown-menu {
  font-size: 14px;
}

.s-dropdown-menu .btn {
  display: block;
  background-color: transparent;
  border-radius: 0;
  width: 100%;
  padding: 5px 20px;
  font-weight: 400;
  text-align: left;
}

.s-dropdown-menu .btn.active,
.s-dropdown-menu .btn:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: var(--color-gray-light);
}

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

/* Pagination */
.s-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
}

.s-pagination li {
  margin: 0 5px 5px 0;
  border: 1px solid var(--color-text);
  padding: 0;
}

.s-pagination li a,
.s-pagination li span {
  display: block;
  min-width: 36px;
  height: 36px;
  padding: 11px 5px;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  color: var(--color-black);
}

.s-pagination li.active span {
  background-color: var(--color-black);
  color: #fff;
}

.modal-dialog #column-left {
  width: 100%;
  display: block !important;
}

/* Product page */
.s-product__images {
  position: relative;
}

@media (min-width: 768px) {
  .s-product__images {
    margin-right: 4%;
  }
}
.s-product__popup {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: #fff;
  border-radius: 50%;
  color: var(--color-black);
  z-index: 999;
}

.s-product__title {
  margin-bottom: 20px;
  display: block;
}

.s-product__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 9px;
  margin-bottom: 15px;
}
.s-product__reviews {
  margin-left: 10px;
  font-size: 16px;
}

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

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

.s-product__price {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 24px;
}

.s-product__priceOld {
  margin-right: 15px;
  font-weight: 400;
  color: var(--color-gray-dark);
  text-decoration: line-through;
}

.s-product__excerpt {
  margin-bottom: 30px;
}

.s-product__order {
  margin-bottom: -10px;
}

.p-quantity__input {
  border-color: var(--color-gray);
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 7px;
  max-width: 50px;
  height: 40px;
  font-size: 16px;
  text-align: center;
}

.p-quantity__btn {
  background-color: #fff;
  border: 1px solid var(--color-gray);
  width: 40px;
  height: 40px;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.p-quantity__btn.btn-minus {
  margin-right: -1px;
}
.p-quantity__btn.btn-plus {
  margin-left: -1px;
}

.s-product__text {
  font-size: 14px;
}

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

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

.s-product__brand {
  margin-top: 25px;
}

.s-product__content {
  margin: 25px 0 35px;
}

.nav-tabs {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: none;
}

.nav-tabs > li {
  margin-top: -1px;
}

.nav-tabs > li > a {
  border-top: 3px solid transparent;
  font-weight: 700;
  color: var(--color-gray-dark);
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  border: none;
  border-top: 3px solid var(--color-black);
  border-radius: 0;
  background-color: transparent;
}

.nav-tabs > li > a:hover {
  border-color: transparent;
}

.tab-content {
  padding: 20px 0;
}

/* Product review */
.p-p-review__heading {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 1.2;
}

.p-p-review__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 25px;
}

.p-p-review__avatar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60px;
  flex: 0 0 60px;
  width: 60px;
}

.p-p-review__avatar img {
  border-radius: 50%;
}

.p-p-review__content {
  padding-left: 20px;
}

.p-p-review__name,
.p-p-review__date {
  color: var(--color-gray-dark);
}

.p-p-review__rating {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 7px;
}

.p-p-review__text {
  font-style: italic;
}

.p-p-review__item + .p-p-review__item {
  padding-top: 25px;
  border-top: 1px solid var(--color-gray-light);
}

.p-p-review__answers {
  padding-left: 50px;
  margin-top: 30px;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}

.p-p-review__answers .p-p-review__item:last-child {
  padding-bottom: 0;
}

.s-product__review {
  -webkit-box-shadow: 0 3px 6px -5px rgba(0, 0, 0, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 6px -5px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 15px;
}

@media (min-width: 768px) {
  .s-product__review {
    margin-left: 20px;
  }
}

.s-product__reviewTitle {
  margin-bottom: 10px;
  font-size: 24px;
}

.s-product__review label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 15px;
}

.s-product__review .help-block {
  font-size: 13px;
  color: var(--color-gray-dark);
  line-height: 1.3;
}

.s-product__review .text-danger {
  font-size: 14px;
}

/* Page contact */
.s-contact__box {
  background-color: #fff;
  margin: 0 auto;
  padding: 30px 10px 20px;
  max-width: 500px;
}

@media (min-width: 768px) {
  .s-contact__box {
    -webkit-box-shadow: 0 5px 50px 0 rgba(33, 33, 33, 0.15);
    box-shadow: 0 5px 50px 0 rgba(33, 33, 33, 0.15);
    margin: 60px 0 60px -100px;
    padding: 40px;
  }
}

.s-contact__title {
  padding-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .s-contact__title {
    text-align: left;
  }
}

.s-contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 7px;
}

.s-contact__icon {
  width: 1.25em;
  text-align: center;
  padding-top: 4px;
  margin-right: 10px;
}

.s-contact__icon.fa-envelope {
  padding-top: 6px;
}

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

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

.s-contact__gmap {
  margin-top: 15px;
  font-weight: bold;
  text-transform: uppercase;
}

.s-page__map iframe {
  display: block;
  width: 100%;
  height: 350px;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .s-page__map iframe {
    padding-bottom: 30px;
  }
}

/* Page articles */
.s-articles__item {
  background-color: #fff;
}
.s-articles__item + .s-articles__item {
  margin-top: 30px;
}

.s-articles__image img {
  margin: 0 auto;
}

.s-articles__content {
  padding: 10px 15px 15px;
}

.s-articles__heading {
  margin-bottom: 7px;
  font-size: 24px;
  line-height: 1;
}

@media (min-width: 768px) {
  .s-articles__content {
    padding: 15px 25px 20px;
  }
}

@media (min-width: 992px) {
  .s-articles__content {
    padding: 30px;
  }

  .s-articles__heading {
    font-size: 30px;
    margin-bottom: 12px;
  }
}

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

.s-articles__info {
  margin-bottom: 10px;
  color: var(--color-gray-dark);
  line-height: 1.3;
}

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

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

.s-articles__description {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .s-articles__description {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991.98px) {
  .s-articles__viewLink {
    padding: 10px 20px;
    font-size: 15px;
  }
}

.s-articles__reviews {
  font-size: 7px;
  margin-right: 7px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #000;
}

@media (min-width: 992px) {
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.to-top-button {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 36px;
  height: 36px;
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  color: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: color 0.15s ease-in-out,
    background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
    opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, opacity 0.15s ease-in-out,
    visibility 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, opacity 0.15s ease-in-out,
    visibility 0.15s ease-in-out;
}

.to-top-button:hover {
  background-color: var(--color-gray-dark);
  border: 1px solid var(--color-gray-dark);
}

.to-top-button.show {
  visibility: visible;
  opacity: 1;
}

.s-messengers {
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.s-messengers__item {
  display: block;
  margin-bottom: 5px;
  width: 35px;
  height: 35px;
  line-height: 36px;
  background-color: var(--color-black);
  border-radius: 50%;
  font-size: 25px;
  color: #fff;
  text-align: center;
}

.s-messengers__telephone {
  background-color: #2f4cd3;
}

.s-messengers__viber {
  background-color: #7d04a4;
}

.s-messengers__whatsapp {
  background-color: #23a455;
}

.s-messengers__telegram {
  background-color: #0854d2;
}

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

html :where(img[class*="wp-image-"]) {
  height: auto;
  max-width: 100%;
}
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.s-sectionProducts {
  padding-top: 40px;
  padding-bottom: 20px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .s-sectionProducts .product-layout:last-child {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .s-products .s-card {
    height: 100%;
  }
  .s-products .s-card__titleLink {
    min-height: 42px;
  }
  .s-products .s-card .btn {
    font-size: 14px;
    padding: 10px 25px;
  }
}

@media (max-width: 767.98px) {
  /*.s-sectionProducts .product-layout:nth-child(3) {*/
  /*  display: none;*/
  /*}*/

  .s-sectionProducts {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  .s-products.row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .s-products.row > * {
    padding-left: 3px;
    padding-right: 3px;
  }
  .s-products .s-card__body {
    padding: 10px 5px;
  }
  .s-products .s-card .btn {
    font-size: 13px;
    padding: 8px;
  }
  .s-products .btn-default {
    padding-left: 20px;
    padding-right: 20px;
  }
}