* {
  margin: 0;
  padding: 0;
  outline: none;
}

html {
  height: 100%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
body.pageCard {
  height: 100vh;
}
body.pageCard main {
  height: 100%;
}

header {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

:root {
  --font-family: "Inter";
  --text-default: #000000;
  --text-white: #ffffff;
  --text-title: #c41718;
  --main-forest: #c41718;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_18pt-Light.woff") format("woff");
  src: url("../fonts/Inter_18pt-Light.woff2") format("woff2");
  font-display: swap;
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_18pt-Italic.woff") format("woff");
  src: url("../fonts/Inter_18pt-Italic.woff2") format("woff2");
  font-display: swap;
  font-weight: normal;
  font-style: italic;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_18pt-Regular.woff") format("woff");
  src: url("../fonts/Inter_18pt-Regular.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_18pt-Medium.woff") format("woff");
  src: url("../fonts/Inter_18pt-Medium.woff2") format("woff2");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_18pt-SemiBold.woff") format("woff");
  src: url("../fonts/Inter_18pt-SemiBold.woff2") format("woff2");
  font-display: swap;
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_18pt-Bold.woff") format("woff");
  src: url("../fonts/Inter_18pt-Bold.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter_18pt-ExtraBold.woff") format("woff");
  src: url("../fonts/Inter_18pt-ExtraBold.woff2") format("woff2");
  font-display: swap;
  font-weight: 800;
  font-style: normal;
}
img:not([src]):not([srcset]) {
  visibility: hidden;
}

.width-1024, .boxCard, .boxSearch, .notFound, .homeBottom, .boxAdvantages, .sidebar, .header__item {
  max-width: 1024px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
}

img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

a img {
  border: none;
}

use,
use:hover,
a,
a:hover {
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

html,
body,
span,
applet,
object,
iframe,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
button {
  border-radius: 0;
  -webkit-box-sizing: border-box;
  -webkit-appearance: button;
  box-sizing: border-box;
  outline: none;
  border: none;
  font-family: inherit;
  font-size: initial;
}

textarea {
  font-family: inherit;
}

button,
input[type=submit],
input[type=button] {
  cursor: pointer;
}

body {
  font-family: var(--font-family);
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  color: var(--text-default, #ffffff);
  background-color: #fff;
  font-size: 16px;
  position: relative;
}

::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

::-webkit-input-placeholder {
  color: #cbcbcb;
}

::-moz-placeholder {
  color: #cbcbcb;
}

:-moz-placeholder {
  color: #cbcbcb;
}

:-ms-input-placeholder {
  color: #cbcbcb;
}

strong,
b {
  font-weight: bold;
}

i,
cite,
em,
var,
address,
dfn {
  font-style: italic;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.table-responsive {
  overflow-x: auto;
  margin-bottom: 13px;
}
.table-responsive table {
  padding-bottom: 10px;
  margin: 0 !important;
}

input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select:focus,
textarea {
  font-size: 16px;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  select:focus,
  textarea:focus,
  input:focus {
    font-size: 16px;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}
input[type=text]::-ms-clear {
  display: none;
}

input[type=password]::-ms-reveal {
  display: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.f_wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.f_none {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.a-i_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.a-i_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.a-i_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.j-c_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.j-c_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.j-c_around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.j-c_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.j-c_between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.f-d_column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.table-responsive {
  overflow-x: auto;
  margin-bottom: 13px;
}

.table-responsive table {
  padding-bottom: 10px;
  margin: 0 !important;
}

.img-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
.img-center img,
.img-center svg {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
  max-height: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-align-self: center;
  margin: 0 auto;
}

.img-position {
  display: block;
  position: relative;
  font-size: 0;
}
.img-position img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

picture {
  display: block;
  font-size: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.28;
}

h1 {
  font-size: 36px;
  line-height: 1.22;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5,
h6 {
  font-size: 16px;
}

p {
  font-size: 16px;
  line-height: 1.5;
}

sup,
sub {
  font-size: 50%;
  line-height: 1;
}

sup {
  vertical-align: top;
}

.header {
  padding-top: 30px;
}
.header__item {
  height: 92px;
  padding: 0 47px;
}
.boxLogo {
  display: inline-block;
  max-width: 234px;
  font-size: 0;
  text-decoration: none;
}

.boxTime {
  padding-right: 42px;
}
.boxTime__times {
  font-size: 36px;
}
.boxTime__calendar {
  font-size: 16px;
}
.boxTime__week {
  font-size: 20px;
  margin-top: 6px;
}
.boxTime__right {
  padding-left: 51px;
  position: relative;
}
.boxTime__right:before {
  display: block;
  content: "";
  position: absolute;
  left: 22px;
  top: -1px;
  bottom: -1px;
  width: 3px;
  background-color: var(--main-forest, #c41718);
}

.sidebar {
  padding: 26px 92px 9px 105px;
}
.sidebar__left {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 9px 10px 0 0;
}
.sidebar__icons {
  width: 97px;
  height: 81px;
  margin-bottom: 38px;
}
.sidebar__title {
  font-weight: 700;
  font-size: 64px;
  line-height: 1.246;
  text-transform: uppercase;
  color: var(--text-default, #000000);
  position: relative;
  padding-bottom: 4px;
  margin-bottom: 14px;
}
.sidebar__title span {
  display: block;
  color: var(--text-title, #c41718);
  font-size: 75px;
  font-weight: 800;
}
.sidebar__title:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 113px;
  height: 2px;
  background-color: #c41718;
}
.sidebar__ul li {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.21126;
  color: var(--text-default, #000000);
  padding-left: 30px;
  position: relative;
}
.sidebar__ul li:before {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-default, #000000);
  position: absolute;
  top: 10px;
  left: 12px;
}
.sidebar__thumb {
  width: 408px;
  height: 408px;
}

.boxAdvantages {
  background-color: var(--main-forest, #c41718);
  padding: 6px 0;
}

.listAdvantages__li {
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 56px;
  position: relative;
}
.listAdvantages__li:nth-child(even):after {
  display: none;
}
.listAdvantages__li:after {
  display: block;
  content: "";
  width: 2px;
  height: 38px;
  background-color: #ffef5b;
  position: absolute;
  top: 50%;
  right: -1px;
  margin-top: -19px;
}
.listAdvantages__thumb {
  width: 38px;
  height: 38px;
}
.listAdvantages__title {
  width: calc(100% - 38px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 20px;
  font-weight: 600;
  font-size: 20px;
  color: var(--text-white, #ffffff);
}
.listAdvantages__title span {
  font-weight: 800;
  color: #ffef5b;
}

.homeBottom {
  padding-top: 36px;
}
.homeBottom__link {
  margin: 0 auto;
}

.button-1 {
  width: 330px;
  height: 52px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid #f4c766;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--text-default, #000000);
}
.button-1 svg {
  margin-right: 11px;
}
.button-1 use {
  fill: var(--text-default, #000000);
}
.button-1:hover {
  background-color: #f4c766;
}
.button-1:active {
  background-color: transparent;
}

.button-2 {
  width: calc(50% - 25px);
  height: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid #f4c766;
  background-color: #f4c766;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--text-default, #000000);
}
.button-2 svg {
  margin-right: 11px;
}
.button-2 use {
  fill: var(--text-default, #000000);
}
.button-2:hover {
  background-color: transparent;
}
.button-2:active {
  background-color: #f4c766;
}

.button-3 {
  width: calc(50% - 25px);
  height: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid #c41718;
  background-color: #c41718;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--text-white, #ffffff);
}
.button-3 svg {
  margin-right: 13px;
}
.button-3 use {
  fill: var(--text-white, #ffffff);
}
.button-3:hover {
  background-color: transparent;
  color: var(--text-default, #000000);
}
.button-3:hover use {
  fill: var(--text-default, #000000);
}
.button-3:active {
  background-color: #c41718;
  color: var(--text-white, #ffffff);
}

.button-4 {
  width: 330px;
  height: 71px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 3px solid #e1e2e4;
  background-color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: #7a7a7a;
}
.button-4 svg {
  margin-right: 23px;
}
.button-4 use {
  fill: #7a7a7a;
}
.button-4:hover {
  background-color: #e1e2e4;
}
.button-4:active {
  background-color: transparent;
}

.notFound__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 96px 0 116px 110px;
}
.notFound__left {
  width: 329px;
}
.notFound__right {
  width: calc(100% - 329px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 17px 0 0 106px;
}
.notFound__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2098;
  text-transform: uppercase;
  color: var(--text-title, #c41718);
  margin-bottom: 29px;
}
.notFound__text {
  max-width: 340px;
  margin-bottom: 29px;
}
.notFound__text p {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2098;
  color: #282923;
}
.notFound__subTitle {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2098;
  text-transform: uppercase;
  color: #282923;
  margin-bottom: 17px;
}
.notFound__ul li {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2098;
  color: #282923;
  padding-left: 20px;
  position: relative;
}
.notFound__ul li:before {
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--text-default, #000000);
  position: absolute;
  top: 7px;
  left: 7px;
}
.notFound__bottom {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 90px;
}

.boxSearch {
  padding-top: 25px;
}
.boxSearch__title {
  font-weight: 600;
  font-size: 32px;
  color: var(--text-default, #000000);
  text-align: center;
  margin-bottom: 5px;
}
.boxSearch__text {
  text-align: center;
}
.boxSearch__text p {
  font-size: 20px;
  color: #7a7a7a;
}
.boxSearch__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 23px 81px 0 81px;
}
.boxSearch__left {
  width: 345px;
  padding-top: 9px;
}
.boxSearch__right {
  width: 416px;
  padding-top: 25px;
}
.boxSearch__subTitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #191c1e;
  margin-bottom: 12px;
}
.boxSearch__bottom {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 81px 0 81px;
}
.boxSearch__link-2.button-2 {
  width: 416px;
  height: 71px;
}
.boxSearch__box-1 {
  margin-bottom: 24px;
}
.boxSearch__subTitle-2 {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.28571;
  letter-spacing: 0.05em;
  color: #5e3f3b;
  margin-bottom: 15px;
}
.boxSearch__subTitle-2 i {
  font-style: normal;
}
.boxSearch__input {
  display: block;
  width: 100%;
  height: 64px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fefeff;
  border: 2px solid #f4c766;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  font-size: 20px !important;
  letter-spacing: 0.14em;
  color: #191c1e;
}

.boxCalculator {
  margin: 0 -9px;
}
.boxCalculator__item {
  width: 33.33%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 9px 12px 9px;
}
.boxCalculator__number {
  display: block;
  width: 100%;
  height: 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #cbcbcb;
  border-radius: 8px;
  background-color: #fff;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  color: #191c1e;
}
.boxCalculator__number:hover {
  background-color: #f4c766;
  border-color: #f4c766;
}
.boxCalculator__number:active {
  background-color: #fff;
  border-color: #cbcbcb;
}
.boxCalculator__remove {
  display: block;
  width: 100%;
  height: 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #c41718;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: var(--text-white, #ffffff);
  border-radius: 8px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
.boxCalculator__remove:hover {
  -webkit-box-shadow: -2px -2px 3px 1px rgba(0, 0, 0, 0.5) inset;
  box-shadow: -2px -2px 3px 1px rgba(0, 0, 0, 0.5) inset;
}
.boxCalculator__remove:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.boxCalculator__back {
  display: block;
  width: 100%;
  height: 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px;
  font-size: 0;
  background-color: #e1e2e4;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
.boxCalculator__back use {
  fill: #BA1A1A;
}
.boxCalculator__back:hover {
  background-color: #BA1A1A;
}
.boxCalculator__back:hover use {
  fill: var(--text-white, #ffffff);
}
.boxCalculator__back:active {
  background-color: #e1e2e4;
}
.boxCalculator__back:active use {
  fill: #BA1A1A;
}

.button-article,
.button-barcode {
  width: 100%;
  height: 65px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #cbcbcb;
  background-color: #f8f9fb;
  border-radius: 8px;
  padding-left: 24px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #7a7a7a;
  text-align: left;
}
.button-article i,
.button-barcode i {
  font-style: normal;
}
.button-article.active,
.button-barcode.active {
  background-color: #fec300;
  border-color: #fec300;
  color: #282923;
}

.button-barcode {
  margin-bottom: 12px;
}
.button-barcode span {
  position: relative;
  top: 1px;
}
.button-barcode svg {
  margin-right: 12px;
}
.button-barcode use {
  fill: #7a7a7a;
}
.button-barcode.active use {
  fill: #282923;
}

.button-article svg {
  margin-right: 12px;
  margin-left: 1px;
}
.button-article use {
  stroke: #7a7a7a;
  stroke-width: 2.6666px;
}
.button-article.active {
  background-color: #fec300;
  border-color: #fec300;
  color: #282923;
}
.button-article.active use {
  stroke: #282923;
}

.boxCard {
  height: 100%;
}
.boxCard.smallPadding .boxCard__item {
  padding-top: 30px;
}
.boxCard.smallPadding .boxCard__right {
  padding-top: 3px;
}
.boxCard__bottom {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 90px 30px 90px;
}
.boxCard__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 56px 55px 28px 55px;
}
.boxCard__left {
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 25px;
}
.boxCard__right {
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 22px 35px 0 25px;
}
.boxCard .button-4 {
  width: 190px;
  height: 42px;
  font-size: 14px;
  color: var(--text-default, #000000);
}
.boxCard .button-4 svg {
  width: 16px;
  height: auto;
  margin-right: 15px;
}
.boxCard .button-4 use {
  fill: var(--text-default, #000000);
}
.boxCard__thumb {
  width: 350px;
  height: 350px;
  margin: 7px 0 0 auto;
}
.boxCard__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2098;
  text-transform: uppercase;
  color: var(--text-default, #000000);
  margin-bottom: 14px;
}
.boxCard__status {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2098;
  margin-bottom: 5px;
}
.boxCard__status.green {
  color: #00b52d;
}
.boxCard__oldPrice {
  font-weight: 600;
  font-size: 20px;
  color: #282923;
  margin: 0 0 17px 17px;
}
.boxCard__smallText {
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2098;
  color: #7a7a7a;
  margin: 0 0 9px 17px;
}
.boxCard__description {
  border-top: 1px solid rgba(122, 122, 122, 0.38);
  margin-top: 12px;
  padding-top: 12px;
}
.boxCard__subTitlte {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2098;
  text-transform: uppercase;
  color: #7a7a7a;
  margin-bottom: 10px;
}

.listCharacteristic {
  margin-bottom: 15px;
}
.listCharacteristic__li {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2098;
  margin-bottom: 4px;
}
.listCharacteristic__title {
  color: #7a7a7a;
  width: 142px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 10px;
}
.listCharacteristic__text {
  color: #282923;
}

.specialOffer {
  max-width: 327px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #c41718;
  border-radius: 10px;
  padding: 10px 18px;
  margin-bottom: 11px;
}
.specialOffer__text {
  font-size: 11px;
  color: #c41718;
}
.specialOffer__price {
  font-weight: 600;
  font-size: 20px;
  color: #c41718;
  margin-top: 4px;
}

.description {
  font-weight: 500;
  font-size: 11px;
  line-height: 1.28;
  color: #282923;
}
.description p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.28;
  color: #282923;
}
.description h1,
.description h2,
.description h3,
.description h4,
.description h5,
.description h6 {
  font-family: var(--font-family);
  color: #282923;
  font-weight: 700;
  line-height: 1.2098;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.description h1 {
  font-size: 24px;
}
.description h2 {
  font-size: 20px;
}
.description h3 {
  font-size: 18px;
}
.description h4 {
  font-size: 16px;
}
.description h5,
.description h6 {
  font-size: 14px;
}
.description a {
  color: #f4c766;
  text-decoration: none;
}
.description a:hover {
  text-decoration: underline;
}
.description blockquote {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-left: 3px solid #f4c766;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2098;
  color: #282923;
  margin: 10px 0;
  padding: 10px 15px;
  text-align: left;
}
.description blockquote p {
  position: relative;
  text-align: left;
  padding: 0;
  margin-bottom: 0 !important;
}
.description ol {
  counter-reset: item;
  margin: 10px 0;
}
.description ol li {
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2098;
  color: #282923;
  list-style: inside decimal;
  position: relative;
  padding-left: 15px;
}
.description ol li::marker {
  opacity: 0;
  display: none;
  visibility: hidden;
  font-size: 0;
}
.description ol li:before {
  display: block;
  content: counter(item) ".";
  counter-increment: item;
  font-size: 11px;
  color: #282923;
  position: absolute;
  left: 0;
  top: 0;
}
.description ol li ol {
  margin-left: 15px;
}
.description ul {
  margin: 10px 0;
  position: relative;
}
.description ul li {
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2098;
  color: #282923;
  position: relative;
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 7px;
}
.description ul li:before {
  display: block;
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: var(--text-default, #ffffff);
  font-size: 16px;
  position: absolute;
  top: 5px;
  left: 0;
}
.description > *:first-child {
  margin-top: 0 !important;
}
.description > *:last-child {
  margin-bottom: 0 !important;
}