@charset "UTF-8";
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
/*-----------------------------ШРИФТЫ------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
  color: unset;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

img {
  max-width: 100%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
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;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

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

/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
* {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: calc(100vw - (100vw - 100%));
  overflow-x: hidden;
}
body * {
  font-family: "Roboto Slab", "Bahnschrift", "Consolas", "Open Sans", serif;
  font-style: normal;
}

/*---------------------------ПЕРЕМЕННЫЕ----------------------------*/
/*----------------------------ОБЁРТКИ------------------------------*/
.container {
  margin: auto;
  max-width: 1560px;
  background-color: transparent;
  height: 100%;
}

.section {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media (max-width: 1600px) {
  .container {
    width: calc(100vw - (100vw - 100%) - 60px);
  }
}
@media (max-width: 768px) {
  .container {
    width: calc(100vw - (100vw - 100%) - 40px);
  }
}
/*-----------------------------СКРОЛЛ------------------------------*/
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
  border-radius: 300px;
  background-color: #d7171f;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #75070a;
}

/*------------------------ВЫДЕЛЕНИЕ ТЕКСТА-------------------------*/
::-moz-selection {
  /* Code for Firefox */
  color: #ffffff;
  background: #333333;
}

::selection {
  color: #ffffff;
  background: #333333;
}

/*------------------------СЛУЖЕБНЫЕ КЛАССЫ-------------------------*/
.hidden {
  display: none !important;
}

.red {
  background-color: #d7171f;
}

.underline {
  text-decoration: underline;
}

/*----------------------------ЭЛЕМЕНТЫ-----------------------------*/
a,
button {
  cursor: pointer !important;
}

.heading--large {
  line-height: 1.17;
  font-weight: 400;
  text-wrap: balance;
}
@media only screen and (min-width: 1601px) {
  .heading--large {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1600px) {
  .heading--large {
    font-size: 46px;
  }
}
@media only screen and (max-width: 1400px) {
  .heading--large {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .heading--large {
    font-size: 36px;
  }
}
@media only screen and (max-width: 900px) {
  .heading--large {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .heading--large {
    font-size: 26px;
  }
}
.heading--medium {
  line-height: 1.33;
  font-weight: 400;
}
@media only screen and (min-width: 1601px) {
  .heading--medium {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1600px) {
  .heading--medium {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1400px) {
  .heading--medium {
    font-size: 33px;
  }
}
@media only screen and (max-width: 1200px) {
  .heading--medium {
    font-size: 29px;
  }
}
@media only screen and (max-width: 900px) {
  .heading--medium {
    font-size: 26px;
  }
}
.heading--small {
  line-height: 1.33;
  font-weight: 400;
}
@media only screen and (min-width: 1601px) {
  .heading--small {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1600px) {
  .heading--small {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1400px) {
  .heading--small {
    font-size: 23px;
  }
}
@media only screen and (max-width: 1200px) {
  .heading--small {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) {
  .heading--small {
    font-size: 18px;
  }
}
.heading--small_info {
  font-size: 20px;
  text-align: right;
}
.heading--small_info a {
  color: #d7171f;
}
.heading__container {
  margin-top: 10px;
  margin-bottom: 20px;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 300px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1601px) {
  .button {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1600px) {
  .button {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1600px) {
  .button {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .button {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .button {
    font-size: 16px;
  }
}
.button--outlined {
  padding: 14px 45px;
  color: #333333;
  border: 1px solid #333333;
  background-color: #ffffff;
}
.button--outlined:hover {
  background-color: #ffffff;
  color: #333333;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  border: 1px solid #ffffff;
}
.button--outlined:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button--red {
  padding: 8px 24px;
  color: #ffffff !important;
  background-color: #d7171f;
}
.button--red:hover {
  background-color: #ffffff;
  color: #333333 !important;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.button--red:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button--icon-right {
  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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.button--small {
  padding: 7px 20px;
  text-align: center;
}
.button--small:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  background-color: #ffffff;
}
.button--small:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button--tiny {
  padding: 7px 20px;
  font-weight: 400;
  line-height: 1.17;
  text-align: center;
  cursor: pointer;
}
@media only screen and (min-width: 1601px) {
  .button--tiny {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1600px) {
  .button--tiny {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .button--tiny {
    font-size: 10px;
  }
}
.button--tiny:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  background-color: #ffffff;
}
.button--tiny:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button--cart {
  position: relative;
  padding: 7px 18px;
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #ffffff !important;
  background-color: #d7171f;
}
@media only screen and (min-width: 1601px) {
  .button--cart {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .button--cart {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .button--cart {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .button--cart {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .button--cart {
    font-size: 12px;
  }
}
.button--cart:hover {
  background-color: #ffffff;
  color: #333333 !important;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  background-image: radial-gradient(circle at 27px 19px, #d7171f 0%, #d7171f 10%, transparent 11%, #ffffff 100%);
}
.button--cart:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button--cart img {
  width: 18px;
}
.button--cart-small {
  position: relative;
  padding: 5px 13px;
  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;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  color: #ffffff !important;
  background-color: #d7171f;
}
@media only screen and (min-width: 1601px) {
  .button--cart-small {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1600px) {
  .button--cart-small {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .button--cart-small {
    font-size: 10px;
  }
}
.button--cart-small:hover {
  background-color: #ffffff;
  color: #333333 !important;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  background-image: radial-gradient(circle at 20px 14px, #d7171f 0%, #d7171f 10%, transparent 11%, #ffffff 100%);
}
.button--cart-small:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button--cart-small img {
  width: 13px;
}
.button--compare {
  position: relative;
  padding: 7px 25px;
  color: #333333;
  border: 1px solid #333333;
  background-color: transparent;
}
@media only screen and (min-width: 1601px) {
  .button--compare {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .button--compare {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .button--compare {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .button--compare {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .button--compare {
    font-size: 12px;
  }
}
.button--compare:hover {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  border: 1px solid #ffffff;
}
.button--compare:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button--compare.added {
  background-color: #a5b3c8 !important;
  color: #ffffff !important;
  border: none !important;
}
.button--compare.added:hover {
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button--compare-small {
  position: relative;
  padding: 5px 17px;
  color: #333333;
  border: 1px solid #333333;
  background-color: transparent;
}
@media only screen and (min-width: 1601px) {
  .button--compare-small {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1600px) {
  .button--compare-small {
    font-size: 12px;
  }
}
@media only screen and (max-width: 768px) {
  .button--compare-small {
    font-size: 10px;
  }
}
.button--compare-small:hover {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  border: 1px solid #ffffff;
}
.button--compare-small:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button--compare-small.added {
  background-color: #a5b3c8 !important;
  color: #ffffff !important;
  border: none !important;
  pointer-events: none !important;
}
.button--compare-small.added:hover {
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button--add {
  padding: 5px 33px;
  background-color: #d7171f;
  color: #ffffff;
  font-weight: 500;
}
@media only screen and (min-width: 1601px) {
  .button--add {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .button--add {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .button--add {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .button--add {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .button--add {
    font-size: 11px;
  }
}
.button--add:hover {
  background-color: #ffffff;
  color: #333333;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.button--add:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button__icon {
  height: 19px;
}

.input {
  height: 40px;
  padding: 7px 20px 8px;
  background-color: #ffffff;
  border: 1px solid rgba(51, 51, 51, 0.5019607843);
  border-radius: 300px;
  color: #333333;
}
@media only screen and (min-width: 1601px) {
  .input {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .input {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .input {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .input {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .input {
    font-size: 12px;
  }
}
.input:focus {
  border: 1px solid #333333;
}
.input ::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.input ::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.input :-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.input ::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.input ::placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.input ::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
}

.req {
  position: relative;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}
.req::before {
  content: "*";
  position: absolute;
  display: inline-block;
  left: -9px;
  top: -2px;
  width: 4px;
  height: 4px;
}

.textarea {
  height: 154px;
  padding: 7px 20px 8px;
  background-color: #ffffff;
  border: 1px solid rgba(51, 51, 51, 0.5019607843);
  border-radius: 10px;
  color: #333333;
  resize: vertical;
}
@media only screen and (min-width: 1601px) {
  .textarea {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .textarea {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .textarea {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .textarea {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .textarea {
    font-size: 12px;
  }
}
.textarea:focus {
  border: 1px solid #333333;
}
.textarea ::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.textarea ::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.textarea :-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.textarea ::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.textarea ::placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.textarea ::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
}

.radio__value {
  display: inline-block;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 1.17;
  font-weight: 300;
}
@media only screen and (min-width: 1601px) {
  .radio__value {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .radio__value {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .radio__value {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .radio__value {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .radio__value {
    font-size: 11px;
  }
}
.radio__value:hover .radio__input ~ .radio__checkmark {
  border: 1px solid #333333;
}
.radio__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio__input:checked ~ .radio__checkmark {
  background-color: #d7171f;
  border: 1px solid #333333;
  outline: 4px solid #ffffff;
  outline-offset: -5px;
}
.radio__checkmark {
  position: absolute;
  top: 0;
  left: 1px;
  height: 22px;
  width: 22px;
  background-color: #ffffff;
  border: 1px solid black;
  border-radius: 300px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.breadcrumbs-wrapper {
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.breadcrumbs-wrapper::-webkit-scrollbar {
  display: none;
}

.breadcrumbs {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 300;
}
@media only screen and (min-width: 1601px) {
  .breadcrumbs {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .breadcrumbs {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .breadcrumbs {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .breadcrumbs {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .breadcrumbs {
    font-size: 11px;
  }
}

.breadcrumbs-wrapper {
  padding: 10px 0px;
}

.breadcrumbs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 2px;
}
.breadcrumbs-item span,
.breadcrumbs-item a {
  white-space: nowrap;
}
.breadcrumbs-item + .breadcrumbs-item::before {
  display: inline-block;
  content: "-";
}
.breadcrumbs-item:hover a {
  text-decoration: underline;
}
.breadcrumbs-item::before {
  padding: 0px 5px;
}

@media (max-width: 1600px) {
  .button--outlined {
    padding: 12px 40px;
  }
  .button--cart-small:hover {
    background-image: radial-gradient(circle at 20px 12px, #d7171f 0%, #d7171f 10%, transparent 11%, #ffffff 100%);
  }
  .button--tiny {
    padding: 7px 10px;
  }
  .button__icon {
    height: 17px;
  }
}
@media (max-width: 1400px) {
  .button--outlined {
    padding: 10px 30px;
  }
  .button--red {
    padding: 10px 30px;
  }
  .button--cart:hover {
    background-image: radial-gradient(circle at 27px 17px, #d7171f 0%, #d7171f 10%, transparent 11%, #ffffff 100%);
  }
  .button--tiny {
    padding: 7px 10px;
  }
}
@media (max-width: 1200px) {
  .button--outlined {
    padding: 10px 20px;
  }
  .button--red {
    padding: 10px 20px;
  }
  .button--icon-right {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .button--add {
    padding: 5px 10px;
  }
  .button--cart:hover {
    background-image: radial-gradient(circle at 26px 17px, #d7171f 0%, #d7171f 10%, transparent 11%, #ffffff 100%);
  }
  .button--cart img {
    width: 16px;
  }
  .button__icon {
    height: 15px;
  }
  .heading__container {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .button--cart {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .button--cart {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .button--cart {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .button--cart {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .button--cart {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .button--cart:hover {
    background-image: radial-gradient(circle at 26px 16px, #d7171f 0%, #d7171f 11%, transparent 12%, #ffffff 100%);
  }
  .button--cart img {
    width: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .button--compare {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .button--compare {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .button--compare {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .button--compare {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .button--compare {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .button--compare-small {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .button--compare-small {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .button--compare-small {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .button--compare-small {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .button--compare-small {
    font-size: 12px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .input,
  .textarea {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .input,
  .textarea {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .input,
  .textarea {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .input,
  .textarea {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .input,
  .textarea {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .radio__value {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .radio__value {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .radio__value {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .radio__value {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .radio__value {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .radio__input:checked ~ .radio__checkmark {
    background-color: #d7171f;
    border: 1px solid #333333;
    outline: 4px solid #ffffff;
    outline-offset: -5px;
  }
  .radio__checkmark {
    position: absolute;
    top: 0;
    left: 1px;
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    border: 1px solid black;
    border-radius: 300px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media only screen and (max-width: 768px) and (min-width: 1601px) {
  .breadcrumbs {
    font-size: 21px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1600px) {
  .breadcrumbs {
    font-size: 19px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1400px) {
  .breadcrumbs {
    font-size: 17px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1200px) {
  .breadcrumbs {
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 900px) {
  .breadcrumbs {
    font-size: 13px;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.header-mobile {
  display: none;
}
.header__top {
  padding: 20px 40px 20px 30px;
  display: grid;
  grid-template-columns: 155px auto 193px 270px;
  -webkit-column-gap: 75px;
     -moz-column-gap: 75px;
          column-gap: 75px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  background-color: #d7171f;
}
.header__bottom {
  background-color: #edf0f4;
  position: relative;
}
.header__logo {
  height: 71px;
}
.header__logo--image {
  height: 100%;
}
.header__text {
  justify-self: flex-end;
}
@media only screen and (min-width: 1601px) {
  .header__text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1600px) {
  .header__text {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1600px) {
  .header__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .header__text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .header__text {
    font-size: 16px;
  }
}
.header__contacts--contact {
  white-space: nowrap;
  font-weight: 500;
  text-decoration: underline;
}
@media only screen and (min-width: 1601px) {
  .header__contacts--contact {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1600px) {
  .header__contacts--contact {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1600px) {
  .header__contacts--contact {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .header__contacts--contact {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .header__contacts--contact {
    font-size: 16px;
  }
}
.header__contacts--contact:hover {
  text-decoration: underline;
}
.header__info {
  width: 100%;
  font-weight: 400;
}
@media only screen and (min-width: 1601px) {
  .header__info {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .header__info {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .header__info {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .header__info {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .header__info {
    font-size: 12px;
  }
}
.header__account {
  width: 240px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 13px;
     -moz-column-gap: 13px;
          column-gap: 13px;
}
.header__account--name {
  padding-left: 10px;
}
.header__account--logout {
  text-decoration: underline;
}
.header__account--logout:hover {
  text-decoration: underline;
}
.header__subinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.header__cart {
  width: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__cart--image {
  width: 100%;
}
.header__cart--image-wrapper {
  position: relative;
  width: 24px;
}
.header__cart--image-wrapper::before {
  content: "";
  position: absolute;
  display: none;
  right: -5px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 300px;
  background-color: #40a51d;
}
.header__cart--image-wrapper.active::before {
  display: block;
}
.header__cart-text {
  text-align: left;
}
.header__cart-text span {
  white-space: nowrap;
}
.header__search {
  position: absolute;
  top: 20px;
  right: 40px;
  z-index: 5;
}
.header__search ::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.header__search ::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.header__search :-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.header__search ::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.header__search ::placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.header__search ::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
}
.header__search--input {
  position: relative;
  padding: 4px 35px 4px 15px;
  line-height: 1.68;
  font-weight: 300;
  color: #333333;
  border-radius: 50px;
  overflow: hidden;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1601px) {
  .header__search--input {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .header__search--input {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .header__search--input {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .header__search--input {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .header__search--input {
    font-size: 12px;
  }
}
.header__search--input:focus {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.header__search--button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 35px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__search--button::before {
  content: url("../images/icon-search.svg");
  position: absolute;
  display: inline-block;
  right: 15px;
  top: calc(50% - 9px);
  width: 18px;
  height: 18px;
}

@media (max-width: 1600px) {
  .header__text {
    text-wrap: balance;
  }
  .header__cart--image {
    max-width: 22px;
  }
}
@media (max-width: 1400px) {
  .header__top {
    grid-template-columns: 155px auto 170px 240px;
  }
  .header__account {
    width: 200px;
    -webkit-column-gap: 9px;
       -moz-column-gap: 9px;
            column-gap: 9px;
  }
  .header__cart {
    width: 200px;
  }
}
@media (max-width: 1200px) {
  .header__top {
    grid-template-columns: 155px auto 220px;
    grid-template-rows: repeat(2, 50%);
  }
  .header__logo {
    grid-row: span 2;
    height: 60px;
  }
  .header__text {
    justify-self: center;
    text-align: center;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .header__text {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .header__text {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .header__text {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .header__text {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .header__text {
    font-size: 13px;
  }
}
@media (max-width: 1200px) {
  .header__contacts {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .header__info {
    grid-row: span 2;
  }
  .header__account {
    width: 175px;
  }
  .header__account--image {
    width: 18px;
  }
  .header__cart {
    width: 175px;
  }
  .header__cart--image {
    width: 18px;
  }
  .header__cart--image-wrapper::before {
    right: 0;
    width: 8px;
    height: 8px;
  }
  .header__search {
    top: unset;
    bottom: 15px;
    right: 20px;
  }
  .header__search--input {
    width: 200px;
  }
}
@media (max-width: 900px) {
  .header-mobile {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 55px 80px;
  }
  .header-mobile__top {
    display: grid;
    padding: 13px 15px 12px 65px;
    grid-template-columns: auto 95px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #ffffff;
    background-color: #d7171f;
  }
  .header-mobile__bottom {
    position: relative;
    background-color: rgba(237, 240, 244, 0.5019607843);
  }
  .header-mobile__logo {
    height: 30px;
  }
  .header-mobile .header-mobile__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
  }
  .header-mobile .header-mobile__cart--image-wrapper {
    position: relative;
  }
  .header-mobile .header-mobile__cart--image-wrapper::before {
    content: "";
    position: absolute;
    display: none;
    right: -5px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 300px;
    background-color: #40a51d;
  }
  .header-mobile .header-mobile__cart--image-wrapper.active::before {
    display: block;
  }
  .header-mobile .header-mobile__search {
    position: absolute;
    left: 10px;
    top: 15px;
    width: 264px;
    z-index: 5;
  }
  .header-mobile .header-mobile__search--input {
    width: 264px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .header-mobile .header-mobile__search--input {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .header-mobile .header-mobile__search--input {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .header-mobile .header-mobile__search--input {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .header-mobile .header-mobile__search--input {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .header-mobile .header-mobile__search--input {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .header__top {
    height: 130px;
    padding: 2px 10px;
    grid-template-columns: 80px auto;
    grid-template-rows: 30px 18px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__bottom {
    height: 100%;
  }
  .header__text {
    grid-row: unset;
    grid-column: unset;
    text-align: left;
    line-height: 1.33;
  }
  .header__contacts {
    text-align: left;
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
  .header__info {
    display: none;
  }
  .header__search {
    position: relative;
    top: unset;
    bottom: unset;
    right: unset;
    padding: 0px 0px 0px 15px;
  }
}
@media (max-width: 768px) {
  .header__top {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-column-gap: 18px;
       -moz-column-gap: 18px;
            column-gap: 18px;
    padding: 2px 2px 2px 10px;
  }
  .header__logo {
    max-width: 70px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 1601px) {
  .header__contacts--contact {
    font-size: 21px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1600px) {
  .header__contacts--contact {
    font-size: 19px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1400px) {
  .header__contacts--contact {
    font-size: 17px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1200px) {
  .header__contacts--contact {
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 900px) {
  .header__contacts--contact {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .header__info {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__account {
    margin-top: 10px;
  }
  .header__cart {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header__search {
    width: calc(100% - 30px);
  }
  .header__search--input {
    width: 100%;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.main-menu__body {
  width: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  padding: 21px 0 17px;
}
.main-menu__list {
  max-width: 750px;
  position: relative;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.main-menu__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.main-menu__item_unique {
  position: static !important;
}
.main-menu__link {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1601px) {
  .main-menu__link {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .main-menu__link {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .main-menu__link {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .main-menu__link {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .main-menu__link {
    font-size: 12px;
  }
}
.menu-icon {
  display: none;
}

@media (max-width: 1400px) {
  .main-menu__body {
    padding: 20px 30px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .main-menu__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 1200px) {
  .main-menu__body {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .main-menu__link {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .main-menu__link {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .main-menu__link {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .main-menu__link {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .main-menu__link {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .main-menu {
    position: fixed;
    display: grid;
    grid-template-rows: 55px calc(100% - 55px);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    z-index: 10;
    overflow-y: auto;
    overflow-x: hidden;
    top: 0;
    left: 0;
    height: 100vh;
    border-radius: 0;
    max-width: 400px;
    width: 85%;
    -webkit-transform: translate(-100%, 0);
        -ms-transform: translate(-100%, 0);
            transform: translate(-100%, 0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .main-menu._active {
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-box-shadow: 300px 0px 300px 300px rgba(51, 51, 51, 0.5019607843);
            box-shadow: 300px 0px 300px 300px rgba(51, 51, 51, 0.5019607843);
  }
  .main-menu__body {
    padding: 20px;
  }
  .main-menu__list {
    position: static;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0px;
  }
  .main-menu__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: static;
    margin-bottom: 15px;
  }
  .main-menu__link {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .main-menu__link {
    font-size: 30px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .main-menu__link {
    font-size: 26px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .main-menu__link {
    font-size: 23px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .main-menu__link {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .main-menu__link {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .menu-icon {
    display: block;
    position: absolute;
    top: 13px;
    left: 10px;
    width: 28px;
    height: 24.5px;
    cursor: pointer;
    z-index: 5;
  }
  .menu-icon span {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    top: calc(50% - 1.5px);
    right: 0px;
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 300px;
    background-color: #ffffff;
  }
  .menu-icon span:first-child {
    top: 1px;
  }
  .menu-icon span:nth-child(2) {
    top: 31%;
    left: 0;
    width: 80%;
  }
  .menu-icon span:nth-child(3) {
    top: 60%;
  }
  .menu-icon span:last-child {
    top: auto;
    bottom: 0px;
    left: 0;
    width: 80%;
  }
  .menu-icon._active span {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
  }
  .menu-icon._active span:first-child {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg);
    top: calc(50% - 2px);
  }
  .menu-icon._active span:last-child {
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
    bottom: calc(50% - 1px);
  }
}
.search-result__title {
  font-size: 20px;
  margin: 0px 0px 20px 0px;
}
.search-result__title span {
  font-weight: 700;
}
.search-result__body {
  margin: 0px 0px 50px 0px;
}
.search-result__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
  margin: 0px 0px 20px 0px;
}
.search-result__link {
  display: inline-block;
  color: #d7171f !important;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-weight: 500;
}
@media (any-hover: hover) {
  .search-result__link:hover {
    color: #d7171f;
  }
}
.search-result__sample b {
  font-weight: 700;
}

/**
 * Устанавливает блоку соотношение сторон 16:9
 */
._video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}
._video video,
._video iframe,
._video object,
._video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.form_partner {
  max-width: 800px;
}

[data-config-form-container].loading {
  position: relative;
}
[data-config-form-container].loading:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
}

.photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media (max-width: 767px) {
  .photos {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 250px) {
  .photos {
    grid-template-columns: repeat(1, 1fr);
  }
}
.photos__title {
  padding: 5px 0px 0px 0px;
  color: #d7171f;
}
.main-video {
  position: relative;
  height: 676px;
  margin-bottom: 100px;
}
.main-video__video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1600px) {
  .main-video {
    height: 530px;
  }
}
@media (max-width: 1200px) {
  .main-video {
    height: 400px;
    margin-bottom: 60px;
  }
}
@media (max-width: 900px) {
  .main-video {
    height: 300px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  .main-video {
    height: 180px;
    margin-bottom: 40px;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.main-catalog {
  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;
  padding: 100px 0 80px;
  background-color: rgba(237, 240, 244, 0.5019607843);
}
.main-catalog__heading {
  text-align: center;
  margin-bottom: 60px;
}
.main-catalog__container {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 60px;
}
.main-catalog__cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 30px;
}
.main-catalog__card {
  position: relative;
  min-width: 500px;
  height: 300px;
  padding: 35px 45px 35px 50px;
  display: grid;
  grid-template-columns: 305px auto;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-catalog__card:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.main-catalog__card--name {
  -ms-flex-item-align: center;
      align-self: center;
  max-width: 305px;
  line-height: 1.33;
  color: #333333;
  z-index: 2;
}
@media only screen and (min-width: 1601px) {
  .main-catalog__card--name {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1600px) {
  .main-catalog__card--name {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1400px) {
  .main-catalog__card--name {
    font-size: 23px;
  }
}
@media only screen and (max-width: 1200px) {
  .main-catalog__card--name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) {
  .main-catalog__card--name {
    font-size: 18px;
  }
}
.main-catalog__card--image {
  position: absolute;
  right: -30px;
  top: 0;
  height: 300px;
}
.main-catalog__button {
  margin-bottom: 80px;
}
.main-catalog__button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1600px) {
  .main-catalog__cards-wrapper {
    gap: 20px;
  }
  .main-catalog__card {
    min-width: 380px;
    padding: 35px 35px 25px 40px;
    grid-template-columns: 1fr;
  }
  .main-catalog__card--name {
    -ms-flex-item-align: start;
        align-self: flex-start;
    max-width: 275px;
  }
  .main-catalog__card--image {
    top: unset;
    bottom: 0;
    height: 250px;
  }
  .main-catalog__button {
    margin-bottom: 60px;
  }
}
@media (max-width: 1400px) {
  .main-catalog__card {
    min-width: 365px;
  }
  .main-catalog__card--name {
    max-width: 235px;
  }
}
@media (max-width: 1200px) {
  .main-catalog {
    padding: 60px 0 70px;
  }
  .main-catalog__heading {
    margin-bottom: 40px;
  }
  .main-catalog__cards-wrapper {
    grid-template-columns: repeat(2, auto);
  }
  .main-catalog__card {
    height: 280px;
  }
  .main-catalog__button {
    margin-bottom: 40px;
  }
}
@media (max-width: 900px) {
  .main-catalog {
    padding: 50px 0 60px;
  }
  .main-catalog__heading {
    max-width: calc(100% - 40px);
    margin: 0 auto 40px;
  }
  .main-catalog__card {
    height: 260px;
    min-width: 350px;
    padding: 30px 30px 20px 35px;
  }
  .main-catalog__card--image {
    height: 230px;
  }
}
@media (max-width: 768px) {
  .main-catalog__cards-wrapper {
    grid-template-columns: 1fr;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.about {
  padding: 150px 0 120px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3019607843);
}
.about__heading {
  text-align: center;
  margin-bottom: 60px;
}
.about__container {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 60px;
}
.about__cards-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, auto);
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.about-card {
  max-width: 430px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
  text-align: center;
  line-height: 1.33;
}
@media only screen and (min-width: 1601px) {
  .about-card {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1600px) {
  .about-card {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1400px) {
  .about-card {
    font-size: 23px;
  }
}
@media only screen and (max-width: 1200px) {
  .about-card {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) {
  .about-card {
    font-size: 18px;
  }
}
.about-card__image-wrapper {
  position: relative;
  width: 250px;
  height: 250px;
  margin-bottom: 60px;
  border-radius: 300px;
  overflow: hidden;
}
.about-card__image {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-card__name {
  font-weight: 600;
}
.about-card__text {
  font-weight: 400;
}

@media (max-width: 1600px) {
  .about {
    padding: 110px 0 100px;
  }
  .about-card {
    max-width: 360px;
  }
  .about-card__text {
    text-wrap: balance;
  }
}
@media (max-width: 1200px) {
  .about {
    padding: 70px 0 80px;
  }
  .about-card {
    max-width: 260px;
  }
  .about-card__image-wrapper {
    width: 220px;
    height: 220px;
    margin-bottom: 40px;
  }
}
@media (max-width: 900px) {
  .about {
    padding: 60px 0;
  }
  .about__container {
    row-gap: 30px;
  }
  .about__cards-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .about-card {
    max-width: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: grid;
    grid-template-columns: 160px auto;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    margin-bottom: 40px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .about-card__image-wrapper {
    grid-row: span 2;
    margin: 0;
    width: 160px;
    height: 160px;
  }
  .about-card__name {
    text-align: left;
    -ms-flex-item-align: end;
        align-self: end;
  }
  .about-card__text {
    text-wrap: unset;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .about-card {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.main-news {
  padding: 120px 0 150px;
}
.main-news__heading {
  text-align: center;
  margin-bottom: 60px;
}
.main-news__container {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-news__cards-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}

.main-news-card {
  display: grid;
  width: 367px;
  min-height: 525px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  grid-template-rows: 280px 40px minmax(95px, auto) minmax(110px, auto);
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.main-news-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}
.main-news-card__image {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-news-card__date {
  display: inline-block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 10px;
  font-weight: 300;
}
@media only screen and (min-width: 1601px) {
  .main-news-card__date {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .main-news-card__date {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .main-news-card__date {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .main-news-card__date {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .main-news-card__date {
    font-size: 12px;
  }
}
.main-news-card__name {
  display: inline-block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.33;
}
@media only screen and (min-width: 1601px) {
  .main-news-card__name {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1600px) {
  .main-news-card__name {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1600px) {
  .main-news-card__name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .main-news-card__name {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .main-news-card__name {
    font-size: 16px;
  }
}
.main-news-card__text {
  display: inline-block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-right: 5px;
  font-weight: 300;
  line-height: 1.68;
}
@media only screen and (min-width: 1601px) {
  .main-news-card__text {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .main-news-card__text {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .main-news-card__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .main-news-card__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .main-news-card__text {
    font-size: 12px;
  }
}

@media (max-width: 1600px) {
  .main-news {
    padding: 90px 0 120px;
  }
  .main-news__cards-wrapper {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }
}
@media (max-width: 1400px) {
  .main-news {
    padding: 60px 0 90px;
  }
  .main-news__cards-wrapper {
    margin-bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .main-news {
    padding: 60px 0 80px;
  }
  .main-news__cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-news-card {
    justify-self: center;
    min-height: 455px;
    grid-template-rows: 280px 25px minmax(65px, auto) minmax(85px, 100%);
  }
  .main-news-card__name {
    margin-bottom: 15px;
  }
}
@media (max-width: 900px) {
  .main-news {
    padding: 50px 0 70px;
  }
  .main-news__cards-wrapper {
    grid-template-columns: 1fr;
  }
  .main-news-card {
    width: 100%;
    min-height: 180px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    grid-template-columns: 250px auto;
    grid-template-rows: 30px minmax(65px, auto) minmax(85px, 100%);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .main-news-card__image-wrapper {
    grid-row: span 3;
    height: 180px;
  }
  .main-news-card__date {
    margin-top: 5px;
  }
}
@media (max-width: 768px) {
  .main-news-card {
    grid-template-columns: 150px auto;
    grid-template-rows: 30px minmax(85px, auto) minmax(75px, 100%);
  }
  .main-news-card__image-wrapper {
    grid-row: span 2;
    height: 115px;
    align-self: center;
  }
  .main-news-card__text {
    margin-top: 10px;
    grid-column: span 2;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.categories {
  background-color: rgba(237, 240, 244, 0.5019607843);
  padding: 50px 0;
}
.categories__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.categories__card {
  position: relative;
  min-width: 500px;
  height: 100%;
  padding: 50px 45px 20px 50px;
  background-color: #ffffff;
  border-radius: 10px;
}
.categories__card--name {
  display: inline-block;
  margin-bottom: 20px;
  max-width: 285px;
  color: #333333;
  position: relative;
  z-index: 2;
  border-radius: 5px;
}
@media only screen and (min-width: 1601px) {
  .categories__card--name {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1600px) {
  .categories__card--name {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1400px) {
  .categories__card--name {
    font-size: 23px;
  }
}
@media only screen and (max-width: 1200px) {
  .categories__card--name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) {
  .categories__card--name {
    font-size: 18px;
  }
}
.categories__card--wrapper {
  position: relative;
}
.categories__card--links {
  max-width: 400px;
  padding: 0px 0px 20px 0px;
  padding: 10px 20px;
  border-radius: 10px;
  margin: -10px -20px;
  background: rgba(255, 255, 255, 0.7);
}
.categories__card--links_extra {
  width: 100%;
  position: absolute;
  top: 10px;
  left: 0;
  padding: 10px 20px;
  border-radius: 10px;
  margin: -10px -20px;
  opacity: 0;
}
@media (any-hover: hover) {
  .categories__card--links_extra {
    background: #fff;
  }
  .categories__card--links_extra:hover {
    opacity: 1;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    z-index: 10;
  }
}
@media (max-width: 767px) {
  .categories__card--links {
    max-width: 285px;
  }
}
.categories__card--link {
  position: relative;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.33;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
}
@media only screen and (min-width: 1601px) {
  .categories__card--link {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .categories__card--link {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .categories__card--link {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .categories__card--link {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .categories__card--link {
    font-size: 12px;
  }
}
.categories__card--link:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  text-decoration: underline;
}
.categories__card--link_extra {
  display: none;
}
@media (any-hover: hover) {
  .categories__card--links:hover .categories__card--link_extra {
    display: block;
  }
}
.categories__card--link a {
  border-radius: 5px;
}
.categories__card--image {
  position: absolute;
  right: 0px;
  top: 10px;
  max-height: 200px;
}
@media (max-width: 500px) {
  .categories__card--image {
    position: relative;
    min-height: 200px;
  }
}
.nochildren .categories__card--image {
  max-height: 80px;
}
@media (max-width: 500px) {
  .categories__image-link {
    display: block;
  }
}

@media (max-width: 1600px) {
  .categories__container {
    gap: 20px;
  }
  .categories__card {
    min-width: 380px;
    grid-template-columns: 245px;
    padding: 35px 35px 20px 40px;
  }
  .categories__card--image {
    height: 250px;
    bottom: 0;
  }
}
@media (max-width: 1400px) {
  .categories__card {
    min-width: 365px;
    grid-template-columns: 200px;
  }
  .categories__card--image {
    height: 210px;
  }
}
@media (max-width: 1200px) {
  .categories {
    padding: 60px 0 70px;
  }
  .categories__container {
    grid-template-columns: repeat(2, auto);
  }
  .categories__card {
    grid-template-rows: 80px auto;
    grid-template-columns: 220px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .categories__card--link {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .categories__card--link {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .categories__card--link {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .categories__card--link {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .categories__card--link {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .categories__container {
    grid-template-columns: 1fr;
  }
  .categories__card {
    min-height: 100px;
    grid-template-rows: 50px auto;
    grid-template-columns: 420px;
  }
  .categories__card--image {
    right: 10px;
  }
}
@media (max-width: 768px) {
  .categories {
    padding: 30px 0 30px;
  }
  .categories__card {
    min-width: calc(100% - 40px);
    min-height: 100px;
    padding: 30px 25px 20px 30px;
    grid-template-columns: calc(100% - 110px);
    grid-template-rows: 60px auto;
  }
  .categories__card--image {
    right: 10px;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.filters {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 21px;
  padding: 30px;
  border-radius: 10px;
  background-color: #ffffff;
}
.filters__row {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
}
.filters__row.disabled {
  display: none;
}
.filters__select-wraper {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.filters__label {
  font-weight: 300;
  color: #333333;
  line-height: 1.17;
}
@media only screen and (min-width: 1601px) {
  .filters__label {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .filters__label {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .filters__label {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .filters__label {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .filters__label {
    font-size: 12px;
  }
}
.filters__select {
  width: 100%;
  padding: 5px 15px;
  font-weight: 300;
  color: #333333;
  border: 1px solid #000000;
  border-radius: 300px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/arrow-down.svg);
  background-color: #ffffff;
  background-position: calc(100% - 17px) 50%;
  background-size: 13px 7px;
  background-repeat: no-repeat;
  cursor: pointer;
}
@media only screen and (min-width: 1601px) {
  .filters__select {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .filters__select {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .filters__select {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .filters__select {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .filters__select {
    font-size: 12px;
  }
}
.filters__option {
  font: -moz-pull-down-menu;
  cursor: pointer;
}
.filters__button-row {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1200px) {
  .filters {
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .filters__label {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .filters__label {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .filters__label {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .filters__label {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .filters__label {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .filters__select {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .filters__select {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .filters__select {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .filters__select {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .filters__select {
    font-size: 13px;
  }
}
@media (max-width: 1200px) {
  .filters__button-row {
    margin-top: 20px;
  }
}
@media (max-width: 900px) {
  .filters {
    display: none;
    opacity: 0;
    height: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .filters.active {
    margin-top: -40px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 1;
    height: auto;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .filters__label {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .filters__label {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .filters__label {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .filters__label {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .filters__label {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .filters__select {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .filters__select {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .filters__select {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .filters__select {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .filters__select {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .filters__button-row {
    margin: 0;
    -ms-flex-item-align: end;
        align-self: end;
  }
}
@media (max-width: 600px) {
  .filters.active {
    display: grid;
    grid-template-columns: 1fr;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.card {
  position: relative;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  height: 100%;
  padding: 20px 30px 40px;
  background-color: #ffffff;
  border-radius: 10px;
}
.card:hover {
  border-radius: 10px 0 0 10px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.card:nth-of-type(3n):hover {
  border-radius: 0 10px 10px 0;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.card__main {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 280px minmax(33px, auto) 80px 95px;
  background-color: #ffffff;
}
.card__image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.card__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.card__name {
  padding-bottom: 10px;
  font-weight: 400;
  color: #000000;
}
@media only screen and (min-width: 1601px) {
  .card__name {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .card__name {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .card__name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .card__name {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .card__name {
    font-size: 12px;
  }
}
.card__parameters {
  font-weight: 300;
  color: #333333;
  line-height: 1.33;
}
@media only screen and (min-width: 1601px) {
  .card__parameters {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .card__parameters {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .card__parameters {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .card__parameters {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .card__parameters {
    font-size: 11px;
  }
}
.card__bottom {
  display: grid;
  grid-template-columns: auto 165px;
}
.card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}
.card__buttons {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.card__price {
  font-weight: 400;
  color: #333333;
}
@media only screen and (min-width: 1601px) {
  .card__price {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1600px) {
  .card__price {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1400px) {
  .card__price {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1200px) {
  .card__price {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) {
  .card__price {
    font-size: 20px;
  }
}
.card__base-price {
  text-decoration: line-through;
  color: rgb(116, 116, 116);
}
@media only screen and (min-width: 1601px) {
  .card__base-price {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .card__base-price {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .card__base-price {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .card__base-price {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .card__base-price {
    font-size: 12px;
  }
}
.card__instock {
  font-weight: 400;
  color: #40a51d;
}
@media only screen and (min-width: 1601px) {
  .card__instock {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .card__instock {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .card__instock {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .card__instock {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .card__instock {
    font-size: 11px;
  }
}
.card__instock--no {
  color: #d7171f;
}
.card__related {
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
  opacity: 0;
  z-index: 2;
  visibility: hidden;
}
.card:hover .card__related {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(calc(100% - 40px));
      -ms-transform: translateX(calc(100% - 40px));
          transform: translateX(calc(100% - 40px));
  -webkit-box-shadow: 5px 0px 10px -1px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 5px 0px 10px -1px rgba(0, 0, 0, 0.1019607843);
  border-radius: 0 10px 10px 0;
}
.card:nth-child(3n):hover .card__related {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(calc(-100% + 10px));
      -ms-transform: translateX(calc(-100% + 10px));
          transform: translateX(calc(-100% + 10px));
  -webkit-box-shadow: -5px 0px 10px -1px rgba(0, 0, 0, 0.1019607843);
          box-shadow: -5px 0px 10px -1px rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px 0 0 10px;
}
.card__compare-info {
  display: none;
  opacity: 0;
  position: absolute;
  width: 275px;
  padding: 10px 20px;
  font-weight: 300;
  color: #000000 !important;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  z-index: 3;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1601px) {
  .card__compare-info {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .card__compare-info {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .card__compare-info {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .card__compare-info {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .card__compare-info {
    font-size: 11px;
  }
}
.added .card__compare-info {
  display: block;
  opacity: 1;
}
.card__compare-info--link {
  font-weight: 400;
}

.related {
  padding: 27px 10px 40px 18px;
}
.related__heading {
  font-weight: 400;
  color: #000000;
}
@media only screen and (min-width: 1601px) {
  .related__heading {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1600px) {
  .related__heading {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1600px) {
  .related__heading {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .related__heading {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .related__heading {
    font-size: 16px;
  }
}
.related__items {
  padding-right: 20px;
  max-height: 90%;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  overflow-y: scroll;
}
.related__item {
  width: 100%;
  min-height: 70px;
  display: grid;
  gap: 10px;
  grid-template-columns: 77px 173px 75px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.related__image-wrapper {
  position: relative;
  width: 77px;
  height: 70px;
  overflow: hidden;
}
.related__image--image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.related__info {
  position: relative;
  margin-top: 9px;
  display: grid;
  grid-template-columns: 77px auto;
  row-gap: 10px;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.related__name {
  font-weight: 400;
  color: #000000;
  grid-column: span 2;
}
@media only screen and (min-width: 1601px) {
  .related__name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .related__name {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .related__name {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .related__name {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .related__name {
    font-size: 11px;
  }
}
.related__instock {
  font-weight: 400;
  color: #40a51d;
  -ms-flex-item-align: end;
      align-self: end;
  text-wrap: balance;
}
@media only screen and (min-width: 1601px) {
  .related__instock {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1600px) {
  .related__instock {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1200px) {
  .related__instock {
    font-size: 12px;
  }
}
@media only screen and (max-width: 900px) {
  .related__instock {
    font-size: 10px;
  }
}
.related__instock--no {
  color: #d7171f;
}
.related__price {
  font-weight: 500;
  color: #333333;
  -ms-flex-item-align: end;
      align-self: end;
  justify-self: end;
  text-wrap: nowrap;
}
@media only screen and (min-width: 1601px) {
  .related__price {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1600px) {
  .related__price {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1400px) {
  .related__price {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) {
  .related__price {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) {
  .related__price {
    font-size: 13px;
  }
}
.related__base-price {
  position: absolute;
  top: 100%;
  right: 0;
  text-decoration: line-through;
  color: rgb(116, 116, 116);
}
@media only screen and (min-width: 1601px) {
  .related__base-price {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .related__base-price {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .related__base-price {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .related__base-price {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .related__base-price {
    font-size: 11px;
  }
}

@media (max-width: 1600px) {
  .card__main {
    grid-template-rows: 280px minmax(33px, auto) 80px minmax(95px, auto);
  }
  .card__bottom {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 10px;
  }
  .card__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .card:hover .card__related {
    -webkit-transform: translateX(calc(100% - 120px));
        -ms-transform: translateX(calc(100% - 120px));
            transform: translateX(calc(100% - 120px));
  }
}
@media (max-width: 1400px) {
  .card:nth-of-type(3n):hover {
    border-radius: 10px 0 0 10px;
  }
  .card:nth-of-type(2n):hover {
    border-radius: 0 10px 10px 0;
  }
  .card:hover .card__related {
    -webkit-transform: translateX(calc(100% - 40px));
        -ms-transform: translateX(calc(100% - 40px));
            transform: translateX(calc(100% - 40px));
    -webkit-box-shadow: 5px 0px 10px -1px rgba(0, 0, 0, 0.1019607843);
            box-shadow: 5px 0px 10px -1px rgba(0, 0, 0, 0.1019607843);
    border-radius: 0 10px 10px 0;
  }
  .card:nth-child(3n):hover .card__related {
    -webkit-transform: translateX(calc(100% - 40px));
        -ms-transform: translateX(calc(100% - 40px));
            transform: translateX(calc(100% - 40px));
    -webkit-box-shadow: 5px 0px 10px -1px rgba(0, 0, 0, 0.1019607843);
            box-shadow: 5px 0px 10px -1px rgba(0, 0, 0, 0.1019607843);
    border-radius: 0 10px 10px 0;
  }
  .card:nth-child(2n):hover .card__related {
    -webkit-transform: translateX(calc(-100% + 10px));
        -ms-transform: translateX(calc(-100% + 10px));
            transform: translateX(calc(-100% + 10px));
    -webkit-box-shadow: -5px 0px 10px -1px rgba(0, 0, 0, 0.1019607843);
            box-shadow: -5px 0px 10px -1px rgba(0, 0, 0, 0.1019607843);
    border-radius: 10px 0 0 10px;
  }
}
@media (max-width: 1200px) {
  .card:hover .card__related {
    -webkit-transform: translateX(calc(100% - 110px));
        -ms-transform: translateX(calc(100% - 110px));
            transform: translateX(calc(100% - 110px));
  }
  .added .card__compare-info {
    width: 250px;
  }
  .related__items {
    padding-right: 15px;
  }
  .related__item {
    grid-template-columns: 77px 173px 30px;
  }
}
@media (max-width: 900px) {
  .card {
    padding: 20px 30px 30px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .card:hover, .card:nth-of-type(3n):hover, .card:nth-of-type(2n):hover {
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .card__name {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .card__name {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .card__name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .card__name {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .card__name {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .card__bottom {
    row-gap: 15px;
  }
  .card__buttons {
    gap: 10px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .card__instock {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .card__instock {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .card__instock {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .card__instock {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .card__instock {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  .card__related {
    display: none;
  }
  .card:hover .card__related {
    opacity: 1;
    visibility: hidden;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 10px;
  }
  .card:nth-child(3n):hover .card__related {
    opacity: 1;
    visibility: hidden;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 10px;
  }
  .card:nth-child(2n):hover .card__related {
    opacity: 1;
    visibility: hidden;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .added .card__compare-info {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .added .card__compare-info {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .added .card__compare-info {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .added .card__compare-info {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .added .card__compare-info {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .card__main {
    grid-template-rows: 280px minmax(33px, auto) 80px minmax(60px, auto);
  }
  .card__bottom {
    width: 100%;
    justify-self: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .card__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .card__compare-info {
    left: -50%;
    bottom: -280%;
  }
  .added .card__compare-info {
    width: 190px;
    text-wrap: balance;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  font-weight: 400;
  color: #333333;
}
@media only screen and (min-width: 1601px) {
  .pagination {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .pagination {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .pagination {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .pagination {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .pagination {
    font-size: 12px;
  }
}
.pagination__name {
  margin-right: 10px;
}
.pagination__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 300px;
  background-color: #e2e7ee;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination__link:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.pagination__link--active {
  background-color: #ffffff;
}

@media (max-width: 1400px) {
  .pagination__link {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .pagination {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .pagination {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .pagination {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .pagination {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .pagination {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .pagination {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.catalog {
  padding: 30px 0;
  background-color: rgba(237, 240, 244, 0.5019607843);
}
.catalog__accordion-button {
  display: none;
}
.catalog__container {
  display: grid;
  grid-template-columns: 350px auto;
  gap: 20px 45px;
  background-color: transparent;
}
.catalog__container_analogs {
  display: block;
}
.catalog__heading-wrapper {
  grid-column: span 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.catalog__view-toggle {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  font-weight: 300;
  color: #333333;
}
@media only screen and (min-width: 1601px) {
  .catalog__view-toggle {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .catalog__view-toggle {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .catalog__view-toggle {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .catalog__view-toggle {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .catalog__view-toggle {
    font-size: 12px;
  }
}
.catalog__view-button {
  width: 21px;
  height: 21px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.catalog__view-button:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.catalog__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  min-width: 0;
}
.catalog__pagination {
  grid-column: span 2;
  justify-self: end;
}

@media (max-width: 1400px) {
  .catalog__view-toggle {
    display: none;
  }
  .catalog__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1200px) {
  .catalog__container {
    grid-template-columns: 250px auto;
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
  }
}
@media (max-width: 900px) {
  .catalog__accordion-button {
    position: relative;
    display: block;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .catalog__accordion-button {
    font-size: 30px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .catalog__accordion-button {
    font-size: 26px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .catalog__accordion-button {
    font-size: 23px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .catalog__accordion-button {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .catalog__accordion-button {
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .catalog__accordion-button::after {
    content: "+";
    position: absolute;
    display: inline-block;
    right: 20px;
    top: calc(50% - 14px);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    line-height: 1;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .catalog__accordion-button::after {
    font-size: 40px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .catalog__accordion-button::after {
    font-size: 36px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .catalog__accordion-button::after {
    font-size: 33px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .catalog__accordion-button::after {
    font-size: 29px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .catalog__accordion-button::after {
    font-size: 26px;
  }
}
@media (max-width: 900px) {
  .catalog__accordion-button:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  }
  .catalog__accordion-button.active::after {
    content: "–";
    top: calc(50% - 14px);
  }
  .catalog__accordion-button.active:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .catalog__container {
    grid-template-columns: 1fr;
    grid-template-rows: 65px auto auto auto;
  }
  .catalog__heading-wrapper {
    grid-column: unset;
  }
  .catalog__pagination {
    grid-column: unset;
  }
}
@media (max-width: 600px) {
  .catalog__container {
    grid-template-rows: 35px auto auto;
  }
  .catalog__items {
    grid-template-columns: 1fr;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.catalog-table {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(40px, auto);
  border-radius: 10px;
  background-color: #ffffff;
}

.table-row {
  position: relative;
  display: grid;
  grid-template-columns: 44px 125px 243px 133px 134px 126px 101px 242px;
  font-weight: 300;
  color: #333333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1601px) {
  .table-row {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .table-row {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .table-row {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .table-row {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .table-row {
    font-size: 11px;
  }
}
.table-row:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.table-row:not(:last-child) {
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: -1px;
}
.table-row--bold {
  font-weight: 500;
}
.table-row--bold:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.table-cell {
  padding: 10px 19px 9px 20px;
  border-right: 1px solid #e4e4e4;
  margin-right: -1px;
  line-height: 1.17;
  text-wrap: wrap;
}
.table-cell--first {
  padding: 9px 10px 10px 15px;
  text-align: center;
}
.table-cell--last {
  padding: 5px;
  border-right: none;
  margin-right: 0;
}
.table-cell__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-wrap: nowrap;
}
.table-cell__buttons .card__compare-info {
  bottom: -240%;
}

.table-more {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  grid-column: span 7;
  width: 100%;
  position: relative;
  height: 0;
  bottom: 0;
  background-color: #ffffff;
  opacity: 0;
  z-index: 2;
  visibility: hidden;
}
.table-more--cat {
  grid-column: span 8;
}
@media (max-width: 1400px) {
  .table-more {
    height: auto;
  }
}
.table-row:hover .table-more {
  opacity: 1;
  visibility: visible;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  height: auto;
  padding: 20px 25px;
}
.table-more__image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 100px;
}
.table-more__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.table-more__name {
  display: none;
}
.table-more__parameters {
  -ms-flex-item-align: center;
      align-self: center;
  line-height: 1.33;
}
.table-more__bottom {
  display: none;
}
.table-more__related-heading {
  font-weight: 400;
  line-height: 1.17;
  color: #000000;
  margin: 0px 0px 15px 0px;
}
@media only screen and (min-width: 1601px) {
  .table-more__related-heading {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1600px) {
  .table-more__related-heading {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1600px) {
  .table-more__related-heading {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .table-more__related-heading {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .table-more__related-heading {
    font-size: 16px;
  }
}
.table-more__related-items {
  position: relative;
  width: 560px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 10px;
}
.table-more__related-item {
  max-width: 270px;
  min-height: 108px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: 93px 180px;
  grid-template-rows: minmax(70px, 100%) 45px;
}
.table-more__related-image-wrapper {
  width: 94px;
  height: 70px;
  position: relative;
}
.table-more__related-image--image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.table-more__related-info {
  height: 80%;
  display: grid;
  grid-template-columns: 77px minmax(72px, 100%);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.table-more__related-name {
  padding-top: 10px;
  grid-column: span 2;
  font-weight: 400;
  color: #000000;
}
@media only screen and (min-width: 1601px) {
  .table-more__related-name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .table-more__related-name {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .table-more__related-name {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .table-more__related-name {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .table-more__related-name {
    font-size: 11px;
  }
}
.table-more__related-instock {
  -ms-flex-item-align: end;
      align-self: end;
  font-weight: 400;
  color: #40a51d;
}
@media only screen and (min-width: 1601px) {
  .table-more__related-instock {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1600px) {
  .table-more__related-instock {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1200px) {
  .table-more__related-instock {
    font-size: 12px;
  }
}
@media only screen and (max-width: 900px) {
  .table-more__related-instock {
    font-size: 10px;
  }
}
.table-more__related-price {
  justify-self: end;
  -ms-flex-item-align: end;
      align-self: end;
  font-weight: 500;
  color: #333333;
}
@media only screen and (min-width: 1601px) {
  .table-more__related-price {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1600px) {
  .table-more__related-price {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1400px) {
  .table-more__related-price {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) {
  .table-more__related-price {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) {
  .table-more__related-price {
    font-size: 13px;
  }
}
.table-more__related-button {
  margin-top: 15px;
  grid-column: span 3;
  justify-self: center;
}
.table-more__related-arrow {
  position: absolute;
  width: 36px;
  height: 100%;
  top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 50px;
  background-color: #ffffff;
  z-index: 3;
}
.table-more__related-arrow--left {
  left: 0;
}
.table-more__related-arrow--right {
  right: 0;
}

@media (max-width: 1600px) {
  .table-row {
    grid-template-columns: 44px 125px 190px 123px 123px 116px 91px auto;
  }
  .table-cell {
    padding: 10px 15px 9px 15px;
  }
  .table-cell--first {
    padding: 9px 8px 8px 10px !important;
  }
  .table-cell--last {
    padding: 5px !important;
  }
  .table-cell__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .table-more__related-items {
    width: 270px;
  }
}
@media (max-width: 1400px) {
  .catalog-table {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
    gap: 30px;
    background-color: transparent;
  }
  .table-row {
    grid-template-columns: 1fr;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    height: 100%;
    padding: 20px 30px 40px;
    background-color: #ffffff;
    border-radius: 10px;
  }
  .table-row:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  }
  .table-row:not(:last-child) {
    border-bottom: none;
    margin-bottom: 0;
  }
  .table-row--bold {
    display: none;
  }
  .table-cell {
    display: none;
  }
  .table-more {
    position: relative;
    width: 100%;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 280px minmax(33px, auto) 80px minmax(95px, auto);
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    border-radius: 10px;
  }
  .table-row:hover .table-more {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .table-more__image-wrapper {
    position: relative;
    width: unset;
    height: 250px;
    overflow: hidden;
  }
  .table-more__name {
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 400;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 1601px) {
  .table-more__name {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1600px) {
  .table-more__name {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1400px) {
  .table-more__name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1200px) {
  .table-more__name {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 900px) {
  .table-more__name {
    font-size: 12px;
  }
}
@media (max-width: 1400px) {
  .table-more__parameters {
    font-weight: 300;
    color: #333333;
    line-height: 1.17;
    -ms-flex-item-align: unset;
        align-self: unset;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 1601px) {
  .table-more__parameters {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1600px) {
  .table-more__parameters {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1600px) {
  .table-more__parameters {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1200px) {
  .table-more__parameters {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 900px) {
  .table-more__parameters {
    font-size: 11px;
  }
}
@media (max-width: 1400px) {
  .table-more__bottom {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 10px;
  }
  .table-more__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 17px;
  }
  .table-more__price {
    font-weight: 400;
    color: #333333;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 1601px) {
  .table-more__price {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1600px) {
  .table-more__price {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1400px) {
  .table-more__price {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1200px) {
  .table-more__price {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 900px) {
  .table-more__price {
    font-size: 20px;
  }
}
@media (max-width: 1400px) {
  .table-more__instock {
    color: #40a51d;
    font-weight: 400;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 1601px) {
  .table-more__instock {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1600px) {
  .table-more__instock {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1600px) {
  .table-more__instock {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1200px) {
  .table-more__instock {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 900px) {
  .table-more__instock {
    font-size: 11px;
  }
}
@media (max-width: 1400px) {
  .table-more__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .table-more__buttons .button--cart-small {
    padding: 7px 18px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 1601px) {
  .table-more__buttons .button--cart-small {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1600px) {
  .table-more__buttons .button--cart-small {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1400px) {
  .table-more__buttons .button--cart-small {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1200px) {
  .table-more__buttons .button--cart-small {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 900px) {
  .table-more__buttons .button--cart-small {
    font-size: 12px;
  }
}
@media (max-width: 1400px) {
  .table-more__buttons .button--cart-small:hover {
    background-image: radial-gradient(circle at 27px 17px, #d7171f 0%, #d7171f 10%, transparent 11%, #ffffff 100%);
  }
  .table-more__buttons .button--cart-small img {
    width: 18px;
  }
  .table-more__buttons .button--compare-small {
    position: relative;
    padding: 7px 25px;
    color: #333333;
    border: 1px solid #333333;
    background-color: #ffffff;
  }
}
@media only screen and (max-width: 1400px) and (min-width: 1601px) {
  .table-more__buttons .button--compare-small {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1600px) {
  .table-more__buttons .button--compare-small {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1400px) {
  .table-more__buttons .button--compare-small {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 1200px) {
  .table-more__buttons .button--compare-small {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1400px) and (max-width: 900px) {
  .table-more__buttons .button--compare-small {
    font-size: 12px;
  }
}
@media (max-width: 1400px) {
  .table-more__related {
    display: none;
  }
}
@media (max-width: 1200px) {
  .table-more__buttons .button--cart-small:hover {
    background-image: radial-gradient(circle at 26px 17px, #d7171f 0%, #d7171f 10%, transparent 11%, #ffffff 100%);
  }
  .table-more__buttons .button--cart-small img {
    width: 16px;
  }
}
@media (max-width: 900px) {
  .table-row {
    padding: 20px 30px 30px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .table-more__name {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .table-more__name {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .table-more__name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .table-more__name {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .table-more__name {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .table-more__bottom {
    row-gap: 15px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .table-more__instock {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .table-more__instock {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .table-more__instock {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .table-more__instock {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .table-more__instock {
    font-size: 12px;
  }
}
@media (max-width: 900px) {
  .table-more__buttons {
    gap: 10px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .table-more__buttons .button--cart-small {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .table-more__buttons .button--cart-small {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .table-more__buttons .button--cart-small {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .table-more__buttons .button--cart-small {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .table-more__buttons .button--cart-small {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .table-more__buttons .button--cart-small:hover {
    background-image: radial-gradient(circle at 26px 16px, #d7171f 0%, #d7171f 11%, transparent 12%, #ffffff 100%);
  }
  .table-more__buttons .button--cart-small img {
    width: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .table-more__buttons .button--compare-small {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .table-more__buttons .button--compare-small {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .table-more__buttons .button--compare-small {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .table-more__buttons .button--compare-small {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .table-more__buttons .button--compare-small {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .catalog-table {
    grid-template-columns: 1fr;
  }
  .table-more {
    grid-template-rows: 280px minmax(33px, auto) 80px minmax(60px, auto);
  }
  .table-more__bottom {
    width: 100%;
    justify-self: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .table-more__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .table-more__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.related-products {
  position: relative;
  width: 1692px;
  margin-bottom: 125px;
  padding: 0 75px 0 110px;
}
.related-products__arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 350px;
  background-color: #ffffff;
  z-index: 2;
}
.related-products__arrow--left {
  left: -5px;
}
.related-products__arrow--right {
  right: -25px;
}
.related-products-heading {
  margin-bottom: 60px;
}
.related-products-items {
  padding-bottom: 15px;
}
.related-products-item .added .card__compare-info {
  left: -70px;
  bottom: 130%;
}

.product-detail__container {
  padding-top: 30px;
  padding-bottom: 75px;
  display: grid;
  grid-template-columns: 635px auto;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
.product-detail__main-image-wrapper {
  width: 100%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.product-detail__main-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}
.product-detail__extra-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.product-detail__code {
  font-weight: 300;
  line-height: 1.17;
  color: #333333;
}
@media only screen and (min-width: 1601px) {
  .product-detail__code {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .product-detail__code {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .product-detail__code {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .product-detail__code {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .product-detail__code {
    font-size: 11px;
  }
}
.product-detail__code--bold {
  margin: 0 15px 0 3px;
  font-weight: 700;
  line-height: 1.17;
}
.product-detail__instock {
  font-weight: 400;
  line-height: 1.17;
  color: #40a51d;
}
@media only screen and (min-width: 1601px) {
  .product-detail__instock {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .product-detail__instock {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .product-detail__instock {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .product-detail__instock {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .product-detail__instock {
    font-size: 11px;
  }
}
.product-detail__instock--no {
  font-weight: 400;
  line-height: 1.17;
  color: #d7171f;
}
@media only screen and (min-width: 1601px) {
  .product-detail__instock--no {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .product-detail__instock--no {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .product-detail__instock--no {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .product-detail__instock--no {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .product-detail__instock--no {
    font-size: 11px;
  }
}
.product-detail__parameters {
  margin-top: 27px;
}
.product-detail__parameters-table-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 659px;
}
.product-detail__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.product-detail__price-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 25px;
}
.product-detail__price-tag {
  font-weight: 400;
  color: #000000;
}
@media only screen and (min-width: 1601px) {
  .product-detail__price-tag {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1600px) {
  .product-detail__price-tag {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1600px) {
  .product-detail__price-tag {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .product-detail__price-tag {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .product-detail__price-tag {
    font-size: 16px;
  }
}
.product-detail__price {
  font-weight: 400;
  color: #333333;
}
@media only screen and (min-width: 1601px) {
  .product-detail__price {
    font-size: 35px;
  }
}
@media only screen and (max-width: 1600px) {
  .product-detail__price {
    font-size: 34px;
  }
}
@media only screen and (max-width: 1400px) {
  .product-detail__price {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1200px) {
  .product-detail__price {
    font-size: 26px;
  }
}
@media only screen and (max-width: 900px) {
  .product-detail__price {
    font-size: 24px;
  }
}
.product-detail__base-price {
  position: absolute;
  top: 100%;
  left: 0;
  text-decoration: line-through;
  color: rgb(116, 116, 116);
}
@media only screen and (min-width: 1601px) {
  .product-detail__base-price {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .product-detail__base-price {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .product-detail__base-price {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .product-detail__base-price {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .product-detail__base-price {
    font-size: 12px;
  }
}
.product-detail__counter {
  -ms-flex-item-align: end;
      align-self: end;
}
.product-detail__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.product-detail__tab-container {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.product-detail__tab {
  font-weight: 400;
  padding: 8px 30px;
  background-color: rgba(255, 255, 255, 0.5019607843);
  border-radius: 300px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1601px) {
  .product-detail__tab {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .product-detail__tab {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .product-detail__tab {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .product-detail__tab {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .product-detail__tab {
    font-size: 12px;
  }
}
.product-detail__tab:hover {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.product-detail__tab--active {
  font-weight: 500;
  background-color: #ffffff;
}
.product-detail__tab--active:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.product-detail__content {
  display: none;
}
.product-detail__content--active {
  display: block;
  font-weight: 300;
  line-height: 1.68;
}
@media only screen and (min-width: 1601px) {
  .product-detail__content--active {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .product-detail__content--active {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .product-detail__content--active {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .product-detail__content--active {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .product-detail__content--active {
    font-size: 12px;
  }
}
.product-detail__table {
  margin-top: 30px;
  width: 1350px;
  overflow: auto;
}
.product-detail__table table {
  width: 100%;
  height: 100%;
  font-weight: 300;
  border-radius: 10px;
  overflow: hidden;
  table-layout: auto;
  border-collapse: collapse;
  border-spacing: 1px;
  outline: 0.5px solid #e4e4e4;
}
@media only screen and (min-width: 1601px) {
  .product-detail__table table {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .product-detail__table table {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .product-detail__table table {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .product-detail__table table {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .product-detail__table table {
    font-size: 11px;
  }
}
.product-detail__table th {
  padding: 9px 20px;
  font-weight: 400;
  color: #333333;
  background-color: #ffffff;
  border: 0.5px solid #e4e4e4;
  text-align: left;
}
.product-detail__table th:nth-child(1) {
  width: 8%;
  white-space: nowrap;
}
.product-detail__table th:nth-child(3) {
  width: 4%;
  white-space: nowrap;
}
.product-detail__table td {
  padding: 9px 20px;
  color: #333333;
  vertical-align: middle;
  line-height: 1.33;
  background-color: #ffffff;
  border: 0.5px solid #e4e4e4;
}
.product-detail__table td.price-for-one, .product-detail__table td.price-for-all {
  white-space: nowrap;
}
.product-detail__table td[rowspan="2"] {
  padding: 30px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-wrap: balance;
  border-top: 2px solid #e4e4e4;
}
.product-detail__wrapper {
  margin-bottom: 53px;
  background-color: rgba(237, 240, 244, 0.5019607843);
}
.product-detail__full-section {
  margin-bottom: 100px;
}
.product-detail__section {
  padding-bottom: 90px;
}
.product-detail__extra-image-wrapper {
  margin-top: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1350px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  outline: 3px solid #ffffff;
}
.parameters-table {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(50px, auto);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.parameters-table__row {
  grid-template-columns: 228px 430px;
  -webkit-column-gap: 1px;
     -moz-column-gap: 1px;
          column-gap: 1px;
  font-weight: 400;
  line-height: 1.17;
  color: #333333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1601px) {
  .parameters-table__row {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .parameters-table__row {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .parameters-table__row {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .parameters-table__row {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .parameters-table__row {
    font-size: 11px;
  }
}
.parameters-table__row + .parameters-table__row {
  border-top: 1px solid rgba(237, 240, 244, 0.5019607843);
}
.parameters-table__row:nth-child(-n+10) {
  display: grid;
  height: auto;
}
.parameters-table__row:nth-child(n+11) {
  display: none;
  height: 0;
}
.active .parameters-table__row:nth-child(n+11) {
  display: grid;
  height: auto;
}
.parameters-table__name {
  padding: 14px 27px 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid rgba(237, 240, 244, 0.5019607843);
  background-color: #e2e7ee;
}
.parameters-table__values {
  padding: 14px 27px 15px 30px;
  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;
  gap: 10px;
  background-color: #e2e7ee;
}
.parameters-table__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  border-radius: 300px;
}
.parameters-table__value:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.parameters-table__value.disable {
  display: none;
  pointer-events: none;
}
.parameters-table__input {
  position: absolute;
  left: -9999px;
}
.parameters-table__checkmark {
  max-height: 23px;
  padding: 2px 8px;
  background-color: rgba(255, 255, 255, 0.5019607843);
  border-radius: 300px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.parameters-table__value._active .parameters-table__checkmark {
  background-color: #ffffff;
}
.parameters-table__checkmark.active {
  color: #fff;
  background-color: #d7171f;
}
.parameters-table__checkmark.disable {
  background-color: #a5b3c8;
}
.parameters-table__accordion-button {
  content: "Развернуть";
  position: relative;
  width: 100%;
  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;
  padding: 10px 0;
  color: #333333;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (min-width: 1601px) {
  .parameters-table__accordion-button {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .parameters-table__accordion-button {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .parameters-table__accordion-button {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .parameters-table__accordion-button {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .parameters-table__accordion-button {
    font-size: 11px;
  }
}
.parameters-table__accordion-button::after {
  content: url(../images/arrow-down-red.svg);
  position: absolute;
  display: inline-block;
  left: calc(50% + 56px);
  top: calc(50% - 12px);
  width: 10px;
  height: 6px;
}
.parameters-table__accordion-button.active::after {
  -webkit-transform: scale(-1, -1);
      -ms-transform: scale(-1, -1);
          transform: scale(-1, -1);
  top: calc(50% + 5px);
}

@media (max-width: 1600px) {
  .related-products {
    width: 1340px;
    padding: 0 75px 0 85px;
  }
  .product-detail__container {
    grid-template-columns: 400px auto;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .product-detail__main-image-wrapper {
    min-height: 400px;
  }
  .product-detail__table {
    width: 1250px;
    overflow: scroll;
  }
  .product-detail__table table {
    display: block;
    width: 1280px;
    overflow-x: auto;
  }
  .product-detail__extra-image-wrapper {
    max-width: 1250px;
  }
}
@media (max-width: 1400px) {
  .related-products {
    width: 1160px;
    margin-bottom: 75px;
  }
  .related-products__arrow--right {
    right: -15px;
  }
  .product-detail__table {
    width: 1100px;
  }
  .product-detail__full-section {
    margin-bottom: 100px;
  }
  .product-detail__extra-image-wrapper {
    max-width: 1100px;
  }
}
@media (max-width: 1200px) {
  .related-products {
    width: 840px;
  }
  .product-detail__container {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .product-detail__main-image {
    height: 100%;
  }
  .product-detail__table {
    width: 840px;
  }
  .product-detail__full-section {
    margin-bottom: 100px;
  }
  .product-detail__extra-image-wrapper {
    max-width: 840px;
  }
}
@media (max-width: 900px) {
  .related-products {
    padding: 0 45px;
    width: 90%;
  }
  .related-products__arrow {
    width: 50px;
  }
  .related-products__arrow img {
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }
  .related-products__arrow--right {
    right: -5px;
  }
  .product-detail__tab-container {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .product-detail__tab {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .product-detail__tab {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .product-detail__tab {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .product-detail__tab {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .product-detail__tab {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .product-detail__content {
    width: 90%;
  }
  .product-detail__table {
    width: 90%;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .product-detail__table table {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .product-detail__table table {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .product-detail__table table {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .product-detail__table table {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .product-detail__table table {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .product-detail__full-section {
    margin-bottom: 100px;
  }
  .product-detail__extra-image-wrapper {
    max-width: 90%;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .parameters-table__row {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .parameters-table__row {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .parameters-table__row {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .parameters-table__row {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .parameters-table__row {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .parameters-table__accordion-button {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .parameters-table__accordion-button {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .parameters-table__accordion-button {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .parameters-table__accordion-button {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .parameters-table__accordion-button {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .related-products__arrow {
    width: 45px;
  }
  .product-detail__parameters-table-wrapper {
    width: 100%;
  }
  .product-detail__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-detail__price-wrapper {
    margin-bottom: 15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .product-detail__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 768px) and (min-width: 1601px) {
  .product-detail__content {
    font-size: 21px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1600px) {
  .product-detail__content {
    font-size: 19px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1400px) {
  .product-detail__content {
    font-size: 17px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1200px) {
  .product-detail__content {
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 900px) {
  .product-detail__content {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .product-detail__table table {
    width: 750px;
  }
  .product-detail__full-section {
    margin-bottom: 100px;
  }
  .parameters-table__row {
    grid-template-columns: 1fr;
  }
  .parameters-table__name {
    padding: 14px 27px 5px 30px;
  }
  .parameters-table__accordion-button::after {
    left: calc(50% + 46px);
    top: calc(50% - 10px);
  }
  .parameters-table__accordion-button.active::after {
    top: calc(50% + 4px);
  }
}
._special-styles h1,
._special-styles h2,
._special-styles h3,
._special-styles h4,
._special-styles h5 {
  margin: 0px 0px 5px 0px;
}
._special-styles h1 {
  line-height: 1.17;
  font-weight: 400;
  text-wrap: balance;
}
@media only screen and (min-width: 1601px) {
  ._special-styles h1 {
    font-size: 64px;
  }
}
@media only screen and (max-width: 1600px) {
  ._special-styles h1 {
    font-size: 56px;
  }
}
@media only screen and (max-width: 1400px) {
  ._special-styles h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  ._special-styles h1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 900px) {
  ._special-styles h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 768px) {
  ._special-styles h1 {
    font-size: 30px;
  }
}
._special-styles h2 {
  line-height: 1.33;
  font-weight: 400;
}
@media only screen and (min-width: 1601px) {
  ._special-styles h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1600px) {
  ._special-styles h2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1400px) {
  ._special-styles h2 {
    font-size: 33px;
  }
}
@media only screen and (max-width: 1200px) {
  ._special-styles h2 {
    font-size: 29px;
  }
}
@media only screen and (max-width: 900px) {
  ._special-styles h2 {
    font-size: 26px;
  }
}
._special-styles h3 {
  line-height: 1.33;
  font-weight: 400;
}
@media only screen and (min-width: 1601px) {
  ._special-styles h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1600px) {
  ._special-styles h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1400px) {
  ._special-styles h3 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 1200px) {
  ._special-styles h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) {
  ._special-styles h3 {
    font-size: 18px;
  }
}
._special-styles h4 {
  line-height: 1.33;
  font-weight: 400;
}
@media only screen and (min-width: 1601px) {
  ._special-styles h4 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1600px) {
  ._special-styles h4 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1600px) {
  ._special-styles h4 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  ._special-styles h4 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  ._special-styles h4 {
    font-size: 16px;
  }
}
._special-styles h5 {
  line-height: 1.33;
  font-weight: 400;
}
@media only screen and (min-width: 1601px) {
  ._special-styles h5 {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  ._special-styles h5 {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  ._special-styles h5 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  ._special-styles h5 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  ._special-styles h5 {
    font-size: 12px;
  }
}
._special-styles a {
  color: #d7171f;
}
._special-styles strong,
._special-styles b {
  font-weight: 500;
}
._special-styles em,
._special-styles i {
  font-style: italic;
}
._special-styles ol {
  padding: 0px 0px 0px 18px;
  list-style-type: decimal;
  margin: 0px 0px 10px 0px;
}
._special-styles ul {
  margin: 0px 0px 10px 0px;
  padding: 0px 0px 0px 18px;
}
._special-styles ul li {
  list-style-type: disc;
}
._special-styles ul li::marker {
  color: #d7171f;
}
._special-styles p {
  margin: 0px 0px 10px 0px;
}
._special-styles h3 {
  line-height: 1.33;
  font-weight: 400;
  display: inline-block;
}
@media only screen and (min-width: 1601px) {
  ._special-styles h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1600px) {
  ._special-styles h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1400px) {
  ._special-styles h3 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 1200px) {
  ._special-styles h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) {
  ._special-styles h3 {
    font-size: 18px;
  }
}
._special-styles table {
  width: 100%;
  height: 100%;
  font-weight: 300;
  border-radius: 10px;
  overflow: hidden;
  table-layout: auto;
  border-collapse: collapse;
  border-spacing: 1px;
  outline: 0.5px solid #e4e4e4;
}
@media only screen and (min-width: 1601px) {
  ._special-styles table {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  ._special-styles table {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  ._special-styles table {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  ._special-styles table {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  ._special-styles table {
    font-size: 11px;
  }
}
._special-styles table th {
  padding: 9px 20px;
  font-weight: 400;
  color: #333333;
  background-color: #ffffff;
  border: 0.5px solid #e4e4e4;
  text-align: left;
}
._special-styles table th:nth-child(1) {
  width: 8%;
  white-space: nowrap;
}
._special-styles table th:nth-child(3) {
  width: 4%;
  white-space: nowrap;
}
._special-styles table td {
  padding: 9px 20px;
  color: #333333;
  vertical-align: middle;
  line-height: 1.33;
  background-color: #ffffff;
  border: 0.5px solid #e4e4e4;
}
._special-styles table td[rowspan="2"] {
  padding: 30px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-wrap: balance;
  border-top: 2px solid #e4e4e4;
}

.product-detail-gallery__img {
  display: block;
  width: 100%;
  min-height: 654px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 767px) {
  .product-detail-gallery__img {
    min-height: 200px;
  }
}

/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.compare {
  padding: 30px 0 90px;
  background-color: rgba(237, 240, 244, 0.5019607843);
}
.compare__heading {
  grid-column: span 2;
}
.compare__text {
  font-weight: 300;
  line-height: 1.33;
  grid-column: span 2;
}
@media only screen and (min-width: 1601px) {
  .compare__text {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .compare__text {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .compare__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .compare__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .compare__text {
    font-size: 12px;
  }
}
.compare-card {
  padding: 50px 65px 50px 0;
  display: grid;
  grid-template-columns: 365px auto;
  gap: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.compare-card:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.compare-card__image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.compare-card__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (min-width: 1601px) {
  .compare-card__info {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .compare-card__info {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .compare-card__info {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .compare-card__info {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .compare-card__info {
    font-size: 12px;
  }
}
.compare-card__name {
  margin: 10px 0 13px;
  font-weight: 400;
}
.compare-card__text {
  font-weight: 300;
}
.compare-card__number {
  font-weight: 400;
}
.compare-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 1600px) {
  .compare-card {
    grid-template-columns: 280px auto;
  }
}
@media (max-width: 1400px) {
  .compare-card {
    padding: 30px 35px 30px 30px;
    grid-template-columns: 210px auto;
  }
  .compare-card__info {
    padding-top: 10px;
  }
}
@media (max-width: 1200px) {
  .compare-card {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .compare__text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .compare__text {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .compare__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .compare__text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .compare__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .compare-card__info {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .compare-card__info {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .compare-card__info {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .compare-card__info {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .compare-card__info {
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  .compare__heading {
    grid-column: unset;
  }
  .compare__text {
    grid-column: unset;
  }
  .compare-card {
    grid-template-columns: 1fr 1.3fr;
  }
  .compare-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 550px) {
  .compare-card {
    grid-template-columns: 1fr;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.compare-items {
  padding: 30px 0 90px;
  background-color: rgba(237, 240, 244, 0.5019607843);
}
.compare-items__heading {
  margin-bottom: 30px;
}
.compare-items__text {
  margin-bottom: 32px;
  font-weight: 300;
  color: #333333;
}
@media only screen and (min-width: 1601px) {
  .compare-items__text {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .compare-items__text {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .compare-items__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .compare-items__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .compare-items__text {
    font-size: 12px;
  }
}
.compare-items__category {
  font-weight: 700;
}
.compare-items__price {
  font-weight: 700;
}
.compare-items__button-close {
  position: absolute;
  top: calc(50% - 16px);
  right: 4px;
  padding: 3px 5px;
  color: #333333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1601px) {
  .compare-items__button-close {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .compare-items__button-close {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .compare-items__button-close {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .compare-items__button-close {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .compare-items__button-close {
    font-size: 11px;
  }
}
.compare-items__button-close:hover {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
}
.compare-items__table {
  width: 100%;
  overflow: auto;
}
.compare-items__table-image-wrapper {
  margin: auto;
  display: inline-block;
  width: 160px;
  height: 140px;
  position: relative;
  overflow: hidden;
}
.compare-items__table-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-collapse: separate;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.compare-items__table table {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  font-weight: 300;
  border-radius: 10px;
  overflow: hidden;
  table-layout: auto;
  border-collapse: collapse;
  border-spacing: 1px;
  outline: 0.5px solid #e4e4e4;
}
@media only screen and (min-width: 1601px) {
  .compare-items__table table {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .compare-items__table table {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .compare-items__table table {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .compare-items__table table {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .compare-items__table table {
    font-size: 11px;
  }
}
.compare-items__table th {
  position: relative;
  width: 250px;
  padding: 12px 20px;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  color: #333333;
  background-color: #ffffff;
  border: 0.5px solid #e4e4e4;
}
.compare-items__table th:first-child {
  width: 400px;
  white-space: nowrap;
}
.compare-items__table td {
  padding: 9px 16px;
  color: #333333;
  text-align: center;
  vertical-align: middle;
  line-height: 1.33;
  background-color: #ffffff;
  border: 0.5px solid #e4e4e4;
}
.compare-items__table td:first-child {
  text-align: left;
}

@media (max-width: 900px) {
  .compare-items {
    padding: 30px 0 80px;
  }
  .compare-items__heading {
    margin-bottom: 20px;
  }
  .compare-items__text {
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .compare-items__text {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .compare-items__text {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .compare-items__text {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .compare-items__text {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .compare-items__text {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .compare-items__button-close {
    top: calc(50% - 14px);
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .compare-items__button-close {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .compare-items__button-close {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .compare-items__button-close {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .compare-items__button-close {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .compare-items__button-close {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .compare-items__table table {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .compare-items__table table {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .compare-items__table table {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .compare-items__table table {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .compare-items__table table {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .compare-items__table th {
    width: 150px;
  }
  .compare-items__table th:first-child {
    width: 250px;
  }
}
@media (max-width: 768px) {
  .compare-items__table th:first-child {
    width: 200px;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.where__section {
  padding: 30px 0 80px;
  background-color: rgba(237, 240, 244, 0.5019607843);
}
.where__tab-container {
  margin-bottom: 30px;
  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;
  gap: 5px;
}
@media only screen and (min-width: 1601px) {
  .where__tab-container {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .where__tab-container {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .where__tab-container {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .where__tab-container {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .where__tab-container {
    font-size: 12px;
  }
}
.where__tab {
  font-weight: 300;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 300px;
}
@media only screen and (min-width: 1601px) {
  .where__tab {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .where__tab {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .where__tab {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .where__tab {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .where__tab {
    font-size: 12px;
  }
}
.where__tab:hover {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.where__tab--active {
  font-weight: 700;
}
.where__tab--active:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.where__content {
  display: none;
}
.where__content--active {
  display: grid;
}
.where__content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
  font-weight: 300;
  line-height: 1.68;
}
@media only screen and (min-width: 1601px) {
  .where__content-wrapper {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .where__content-wrapper {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .where__content-wrapper {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .where__content-wrapper {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .where__content-wrapper {
    font-size: 12px;
  }
}
.where-card {
  position: relative;
  padding: 35px 65px 60px 40px;
  grid-template-columns: 217px auto;
  gap: 130px;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.where-card:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.where-card:hover .where-card__extra-info-wrapper {
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 1;
  top: calc(100% - 50px);
  -webkit-transform: unset;
      -ms-transform: unset;
          transform: unset;
  -webkit-box-shadow: 0px 5px 10px -1px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 5px 10px -1px rgba(0, 0, 0, 0.1019607843);
  z-index: 2;
}
.where-card__image-wrapper {
  position: relative;
  height: 150px;
  overflow: hidden;
}
.where-card__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (min-width: 1601px) {
  .where-card__info {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .where-card__info {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .where-card__info {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .where-card__info {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .where-card__info {
    font-size: 12px;
  }
}
.where-card__name {
  margin: 10px 0 3px;
  font-weight: 500;
}
.where-card b {
  font-weight: 500;
}
.where-card__text {
  font-weight: 300;
  line-height: 1.33;
}
.where-card__button {
  margin-top: 30px;
}
.where-card__extra-info-wrapper {
  display: none;
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 0;
  opacity: 0;
  width: 100%;
  padding: 35px 65px 80px 40px;
  background-color: #ffffff;
  border-radius: 10px;
}

@media (max-width: 1600px) {
  .where-card {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media (max-width: 1400px) {
  .where-card {
    padding: 30px 35px 30px 30px;
    grid-template-columns: 160px auto;
  }
  .where-card:hover .where-card__extra-info-wrapper {
    top: calc(100% - 15px);
    padding: 35px 35px 35px 30px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .where__tab-container {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .where__tab-container {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .where__tab-container {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .where__tab-container {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .where__tab-container {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .where__tab {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .where__tab {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .where__tab {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .where__tab {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .where__tab {
    font-size: 13px;
  }
}
@media (max-width: 1200px) {
  .where-card {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .where-card__info {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .where-card__info {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .where-card__info {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .where-card__info {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .where-card__info {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .where__tab-container {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .where__tab-container {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .where__tab-container {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .where__tab-container {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .where__tab-container {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .where__tab {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .where__tab {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .where__tab {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .where__tab {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .where__tab {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .where-card:hover .where-card__extra-info-wrapper {
    padding: 15px 35px 35px 30px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .where-card__info {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .where-card__info {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .where-card__info {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .where-card__info {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .where-card__info {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .where-card__extra-info-wrapper {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .where-card__extra-info-wrapper {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .where-card__extra-info-wrapper {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .where-card__extra-info-wrapper {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .where-card__extra-info-wrapper {
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  .where__content-wrapper {
    grid-template-columns: 1fr;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.configurator__section {
  background-color: rgba(237, 240, 244, 0.5019607843);
  padding: 30px 0 60px;
}
.configurator__accordion-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 10px 15px;
  background-color: #ffffff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1601px) {
  .configurator__accordion-button {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1600px) {
  .configurator__accordion-button {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1400px) {
  .configurator__accordion-button {
    font-size: 23px;
  }
}
@media only screen and (max-width: 1200px) {
  .configurator__accordion-button {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) {
  .configurator__accordion-button {
    font-size: 18px;
  }
}
.configurator__accordion-button.disabled {
  display: none;
}
.configurator__accordion-button::after {
  content: "+";
  position: absolute;
  display: inline-block;
  right: 20px;
  top: calc(50% - 22px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 1;
}
@media only screen and (min-width: 1601px) {
  .configurator__accordion-button::after {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1600px) {
  .configurator__accordion-button::after {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1400px) {
  .configurator__accordion-button::after {
    font-size: 33px;
  }
}
@media only screen and (max-width: 1200px) {
  .configurator__accordion-button::after {
    font-size: 29px;
  }
}
@media only screen and (max-width: 900px) {
  .configurator__accordion-button::after {
    font-size: 26px;
  }
}
.configurator__accordion-button:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.configurator__accordion-button.active::after {
  content: "–";
  top: calc(50% - 21px);
}
.configurator__accordion-button.active:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.configurator__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.configurator__block {
  display: none;
  opacity: 0;
  height: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.configurator__block.active {
  height: auto;
  margin-top: -30px;
  padding-top: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  background-color: #ffffff;
  border-radius: 10px;
}
.configurator__block.active.disabled {
  display: none;
}
.configurator__values {
  width: 100%;
  padding: 10px 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.configurator__value {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  border-radius: 300px;
}
.configurator__value.hide {
  display: none;
}
.configurator__value.disabled {
  pointer-events: none;
  display: none;
}
.configurator__value:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.configurator__value:hover .configurator__checkmark {
  border: 1px solid #ffffff;
}
.configurator__value:hover .configurator__value-description {
  display: block;
  opacity: 1;
}
.configurator__input {
  position: absolute;
  left: -9999px;
}
.configurator__input:checked + .configurator__checkmark {
  color: #ffffff;
  background-color: #d7171f;
  border: 1px solid #d7171f;
}
.configurator__input:disabled + .configurator__checkmark {
  color: rgba(51, 51, 51, 0.5019607843);
  background-color: #e4e4e4;
  border: 1px solid #e4e4e4;
  cursor: not-allowed;
}
.configurator__checkmark {
  max-height: 43px;
  padding: 5px 12px;
  font-weight: 400;
  background-color: transparent;
  color: #333333;
  border: 1px solid #333333;
  border-radius: 300px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1601px) {
  .configurator__checkmark {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .configurator__checkmark {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .configurator__checkmark {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .configurator__checkmark {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .configurator__checkmark {
    font-size: 12px;
  }
}
.configurator__value-description {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  min-width: 250px;
  max-width: 320px;
  padding: 30px 30px 40px 30px;
  font-weight: 300;
  background-color: #ffffff;
  border-radius: 10px;
  z-index: 2;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  opacity: 0;
}
@media only screen and (min-width: 1601px) {
  .configurator__value-description {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .configurator__value-description {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .configurator__value-description {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .configurator__value-description {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .configurator__value-description {
    font-size: 12px;
  }
}
.configurator__value-description--name {
  margin-bottom: 30px;
  font-weight: 400;
}
.configurator__value-description--text {
  line-height: 1.33;
}
.configurator-table {
  margin: 42px 0 60px;
}
.configurator-table .table-row {
  grid-template-columns: 125px 1fr 133px 134px 126px 101px 437px;
}
.configurator-table .table-cell__buttons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.configurator-table .table-row--bold .table-cell {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

.specification__wrapper {
  display: grid;
  grid-template-columns: 986px 293px;
  gap: 40px;
  margin: 40px 0 30px 0;
}
.specification__wrapper .product-detail__table {
  width: 100%;
  margin: 0;
}
.specification__wrapper .product-detail__table table {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.specification__wrapper th:nth-child(1) {
  width: 144px;
}
.specification__wrapper th:nth-child(2) {
  width: 125px;
}
.specification__wrapper th:nth-child(3) {
  width: 243px;
}
.specification__wrapper th:nth-child(4) {
  width: 102px;
}
.specification__wrapper th:nth-child(5) {
  width: 200px;
}
.specification__wrapper th:nth-child(6) {
  width: 168px;
}
.specification__image-wrapper {
  position: relative;
  overflow: hidden;
  height: 85px;
  max-width: 100%;
}
.specification__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.specification__amount {
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.specification__amount-button {
  padding: 5px 10px;
}
@media only screen and (min-width: 1601px) {
  .specification__amount-button {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1600px) {
  .specification__amount-button {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1600px) {
  .specification__amount-button {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .specification__amount-button {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .specification__amount-button {
    font-size: 16px;
  }
}
.specification__amount-input {
  font-weight: 400;
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #333333;
  border-radius: 300px;
}
@media only screen and (min-width: 1601px) {
  .specification__amount-input {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .specification__amount-input {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .specification__amount-input {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .specification__amount-input {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .specification__amount-input {
    font-size: 12px;
  }
}
.specification__amount-input::-webkit-inner-spin-button, .specification__amount-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.specification__button-wrapper {
  width: 100%;
  height: 100%;
  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;
}
.specification-form {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px 30px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  background-color: #ffffff;
  border-radius: 10px;
}
.specification-form__name {
  font-weight: 400;
}
.specification-form__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}
.specification-form__buttons .button--tiny {
  width: 100%;
}
.specification-form__textarea-wrapper {
  display: grid;
  row-gap: 10px;
  grid-template-columns: 1fr;
  grid-template-rows: 42px 126px;
  font-weight: 300;
  line-height: 1.33;
}
@media only screen and (min-width: 1601px) {
  .specification-form__textarea-wrapper {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .specification-form__textarea-wrapper {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .specification-form__textarea-wrapper {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .specification-form__textarea-wrapper {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .specification-form__textarea-wrapper {
    font-size: 11px;
  }
}
.specification-form__textarea {
  width: 100%;
  height: 100%;
  padding: 10px 15px;
  color: #333333;
  border: 1px solid #000000;
  border-radius: 10px;
  resize: none;
}
@media only screen and (min-width: 1601px) {
  .specification-form__textarea {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1600px) {
  .specification-form__textarea {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1200px) {
  .specification-form__textarea {
    font-size: 12px;
  }
}
@media only screen and (max-width: 900px) {
  .specification-form__textarea {
    font-size: 10px;
  }
}

@media (max-width: 1600px) {
  .configurator-table .table-row {
    grid-template-columns: 125px 277px 133px 134px 126px 101px 397px;
  }
  .configurator-table .table-more__related {
    width: 627px;
  }
  .specification__wrapper .product-detail__table {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    overflow: unset;
  }
  .specification__wrapper .product-detail__table table {
    width: 100%;
  }
}
@media (max-width: 1400px) {
  .configurator-table {
    grid-template-columns: repeat(5, 1fr);
  }
  .configurator-table .table-row {
    grid-template-columns: 1fr;
  }
  .specification__wrapper {
    grid-template-columns: 830px minmax(280px, 300px);
    gap: 20px;
  }
  .specification__wrapper th:nth-child(3) {
    width: 210px;
  }
  .specification__wrapper th:nth-child(5) {
    width: 100px;
  }
  .specification__wrapper th:nth-child(6) {
    width: 70px;
  }
  .specification__amount-input {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1200px) {
  .configurator__section {
    padding: 30px 0 40px;
  }
  .configurator__accordion-button {
    padding: 10px 15px;
  }
  .configurator__accordion-button::after {
    top: calc(50% - 15px);
  }
  .configurator__accordion-button.active::after {
    top: calc(50% - 16px);
  }
  .configurator__values {
    padding: 15px 20px 15px 20px;
  }
  .configurator__value:hover .configurator__value-description {
    left: -40px;
    min-width: 150px;
    max-width: 240px;
  }
  .configurator__checkmark {
    padding: 5px 12px;
  }
  .configurator-table {
    margin: 42px 0 40px;
  }
  .specification__wrapper {
    grid-template-columns: 1fr;
    margin: 20px 0 30px 0;
  }
  .specification__wrapper th:nth-child(1) {
    width: 105px;
  }
  .specification__wrapper th:nth-child(3) {
    width: 260px;
  }
  .specification__image-wrapper {
    height: 65px;
  }
  .specification-form {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 0.4fr 2fr 0.5fr;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .specification-form__name {
    grid-column: span 2;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .specification-form__buttons:first-of-type {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .specification-form__buttons:last-of-type {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .specification-form__textarea-wrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 900px) {
  .configurator-table {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .specification-form__name {
    font-size: 30px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .specification-form__name {
    font-size: 26px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .specification-form__name {
    font-size: 23px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .specification-form__name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .specification-form__name {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .specification-form__buttons .button--tiny {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .specification-form__buttons .button--tiny {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .specification-form__buttons .button--tiny {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .specification-form__buttons .button--tiny {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .specification-form__buttons .button--tiny {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .specification-form__textarea-wrapper {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .specification-form__textarea-wrapper {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .specification-form__textarea-wrapper {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .specification-form__textarea-wrapper {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .specification-form__textarea-wrapper {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .configurator-table {
    grid-template-columns: repeat(3, 1fr);
  }
  .specification__wrapper .product-detail__table {
    overflow: scroll;
    width: 100%;
  }
  .specification__wrapper .product-detail__table table {
    width: 820px;
  }
  .specification-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.more-info {
  display: grid;
  gap: 15px;
  -ms-flex-line-pack: start;
      align-content: start;
}
.more-info__img {
  max-width: 200px;
}
.more-info__img img {
  width: 100%;
}
@media (max-width: 1400px) {
  .more-info__img {
    position: relative;
    display: block;
    height: 200px;
  }
  .more-info__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.more-info__title {
  font-weight: 500;
  font-size: 22px;
}
@media (max-width: 600px) {
  .more-info__title {
    font-size: 16px;
  }
}
.more-info__desc {
  font-size: 18px;
}
.more-info__in-stock {
  font-weight: 500;
  color: green;
}
.more-info__in-stock--no {
  color: red;
}

.more-slider {
  position: relative;
  min-width: 0;
  padding: 0 50px;
}
@media (max-width: 1400px) {
  .more-slider {
    display: none;
  }
}
.more-slider__header {
  font-weight: 500;
  margin: 0px 0px 15px 0px;
  font-size: 20px;
}
.more-slider__slide {
  height: auto;
  max-width: 250px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
}
.more-slider__img {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.more-slider__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.more-slider__info {
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  gap: 10px;
}
.more-slider__name {
  font-weight: 500;
}
.more-slider__instock {
  font-weight: 500;
  color: green;
}
.more-slider__instock--no {
  color: red;
}
.more-slider__price {
  font-weight: 500;
}
.more-slider__actions {
  display: grid;
  gap: 5px;
}
.more-slider__arrows {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 50%;
  left: 0;
  width: 100%;
  justify-content: space-between;
  pointer-events: none;
  translate: 0 -50%;
}
.more-slider__arrows_details {
  padding: 10px;
}
.more-slider__arrow {
  pointer-events: all;
  cursor: pointer;
}
.table-more-buttons {
  display: none;
}
@media (max-width: 1400px) {
  .table-more-buttons {
    display: grid;
    justify-items: start;
    gap: 10px;
  }
}

@media (max-width: 1400px) {
  .table-more_configurator {
    grid-template-rows: unset;
    gap: 15px;
    padding: 0 !important;
  }
}

@media (max-width: 1400px) {
  .configurator-table {
    gap: 5px;
  }
  .configurator-table .table-row {
    padding: 10px;
  }
}
@media (max-width: 600px) {
  .configurator-table {
    grid-template-columns: repeat(2, 1fr);
    margin: 10px -15px;
  }
}

/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.cart__wrapper {
  grid-template-columns: 1118px 293px;
  gap: 30px;
}
.cart__wrapper th:nth-child(1) {
  width: 144px;
}
.cart__wrapper th:nth-child(2) {
  width: 125px;
}
.cart__wrapper th:nth-child(3) {
  width: 243px;
}
.cart__wrapper th:nth-child(4) {
  width: 102px;
}
.cart__wrapper th:nth-child(5) {
  width: 200px;
}
.cart__wrapper th:nth-child(6) {
  width: 157px;
  padding: 9px 10px;
}
.cart__wrapper th:nth-child(7) {
  width: 138px;
}
.cart__wrapper .specification-form {
  grid-row: span 2;
  padding: 20px 38px 30px 30px;
}
.cart__wrapper .specification-form__name {
  font-weight: 400;
}
.cart__wrapper .specification-form__buttons {
  row-gap: 30px;
  font-weight: 300;
  line-height: 1.33;
}
.cart__sum {
  text-align: right;
}
.cart__buttons {
  grid-column: span 2;
  width: 100%;
  margin-top: 30px;
  margin-left: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cart th {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

.specification__file-label {
  position: relative;
}
.specification-file__names {
  position: absolute;
  display: block;
  bottom: calc(-100% + 7px);
  right: 0;
  width: 100%;
  color: #d7171f;
}
.specification__file-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

@media (max-width: 1600px) {
  .cart__wrapper {
    grid-template-columns: 1040px 260px;
  }
}
@media (max-width: 1400px) {
  .cart__wrapper {
    grid-template-columns: 280px 800px;
    grid-template-rows: auto 40px 230px;
  }
  .cart__wrapper .product-detail__table {
    grid-column: span 2;
  }
  .cart__buttons {
    grid-column: unset;
    align-self: start;
    margin: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 1200px) {
  .cart__wrapper {
    grid-template-columns: 280px minmax(500px, auto);
  }
  .cart__wrapper .specification-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cart__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (max-width: 900px) {
  .cart__wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .cart__wrapper thead {
    display: none;
  }
  .cart__wrapper table {
    outline: none;
  }
  .cart__wrapper tbody {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .cart__wrapper tr {
    display: grid;
    grid-template-columns: 1fr 1fr 0.5fr 1fr 1fr;
    border-radius: 10px;
    overflow: hidden;
  }
  .cart__wrapper td {
    border: none;
  }
  .cart__wrapper td:nth-child(1) {
    grid-row: span 2;
    grid-column: span 2;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .cart__wrapper td:nth-child(2) {
    grid-column: span 3;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .cart__wrapper td:nth-child(3) {
    grid-column: span 3;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 12px 20px 9px 20px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .cart__wrapper td:nth-child(3) {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .cart__wrapper td:nth-child(3) {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .cart__wrapper td:nth-child(3) {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .cart__wrapper td:nth-child(3) {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .cart__wrapper td:nth-child(3) {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .cart__wrapper td:nth-child(4) {
    grid-column: span 3;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .cart__wrapper td:nth-child(5) {
    grid-column: span 2;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .cart__wrapper td:nth-child(6) {
    grid-column: span 3;
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .cart__wrapper td:nth-child(7) {
    grid-column: span 2;
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .cart__wrapper .price-for-one,
  .cart__wrapper .price-for-all {
    position: relative;
    padding: 9px 10px 9px 20px;
    text-align: right;
    white-space: nowrap;
    font-weight: 400;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .cart__wrapper .price-for-one,
  .cart__wrapper .price-for-all {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .cart__wrapper .price-for-one,
  .cart__wrapper .price-for-all {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .cart__wrapper .price-for-one,
  .cart__wrapper .price-for-all {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .cart__wrapper .price-for-one,
  .cart__wrapper .price-for-all {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .cart__wrapper .price-for-one,
  .cart__wrapper .price-for-all {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .cart__wrapper .price-for-one::before,
  .cart__wrapper .price-for-all::before {
    position: absolute;
    display: block;
    top: 9px;
    left: 20px;
    font-weight: 300;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .cart__wrapper .price-for-one::before,
  .cart__wrapper .price-for-all::before {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .cart__wrapper .price-for-one::before,
  .cart__wrapper .price-for-all::before {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .cart__wrapper .price-for-one::before,
  .cart__wrapper .price-for-all::before {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .cart__wrapper .price-for-one::before,
  .cart__wrapper .price-for-all::before {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .cart__wrapper .price-for-one::before,
  .cart__wrapper .price-for-all::before {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .cart__wrapper .price-for-one::before {
    content: "Цена:";
  }
  .cart__wrapper .price-for-all::before {
    content: "Общая цена:";
  }
  .specification-file__names {
    bottom: calc(-100% + 13px);
  }
}
@media (max-width: 768px) {
  .cart__wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }
  .cart__wrapper table {
    width: 100% !important;
  }
  .cart__wrapper tbody {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cart__wrapper tr {
    grid-template-columns: 0.5fr 0.5fr 0.5fr 0.7fr 0.6fr;
  }
  .cart .product-detail__table {
    grid-column: unset;
    overflow: hidden;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.order {
  padding: 30px 0 90px;
  background-color: rgba(237, 240, 244, 0.5019607843);
}
.order__container {
  display: grid;
  grid-template-columns: 835px 293px;
  row-gap: 40px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.order__heading {
  grid-column: span 2;
}

.order-form {
  padding: 35px 50px 67px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 11px;
  background-color: #ffffff;
  border-radius: 10px;
}
.order-form__row {
  display: grid;
  grid-template-columns: 590px 136px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.order-form__row:first-of-type {
  padding-bottom: 20px;
}
.order-form__row:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 30px;
  padding: 30px 0 0 100px;
}
.order-form__row--auth {
  width: 580px;
  margin: 10px 0;
  padding: 10px 20px 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
  font-weight: 300;
  background-color: rgba(237, 240, 244, 0.5019607843);
  border-radius: 300px;
}
.order-form__row--auth a {
  font-weight: 400;
  text-decoration: underline;
}
.order-form__row-button {
  -ms-flex-item-align: center;
      align-self: center;
}
.order-form__label {
  display: grid;
  grid-template-columns: 230px 345px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  font-weight: 400;
}
@media only screen and (min-width: 1601px) {
  .order-form__label {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .order-form__label {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .order-form__label {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .order-form__label {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .order-form__label {
    font-size: 12px;
  }
}
.order-form__label-name {
  justify-self: end;
  -ms-flex-item-align: center;
      align-self: center;
}
.order-form__label-value {
  justify-self: start;
  padding-top: 10px;
  -ms-flex-item-align: center;
      align-self: center;
}
.order-form__label--textarea .order-form__label-name {
  padding-top: 10px;
  -ms-flex-item-align: start;
      align-self: start;
}
.order-list {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px 30px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  font-weight: 300;
}
@media only screen and (min-width: 1601px) {
  .order-list {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .order-list {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .order-list {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .order-list {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .order-list {
    font-size: 11px;
  }
}
.order-list__heading {
  font-weight: 400;
}
@media only screen and (min-width: 1601px) {
  .order-list__heading {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .order-list__heading {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .order-list__heading {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .order-list__heading {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .order-list__heading {
    font-size: 11px;
  }
}
.order-list__items {
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  list-style: decimal;
}
.order-list__sum {
  font-weight: 600;
}
.order-list__button {
  width: 100%;
  text-align: center;
}

@media (max-width: 1400px) {
  .order__container {
    grid-template-columns: 825px 290px;
  }
}
@media (max-width: 1200px) {
  .order__container {
    display: grid;
    grid-template-columns: 1fr;
  }
  .order__heading {
    grid-column: unset;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-form {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-list {
    max-width: 500px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .order-list {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .order-list {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .order-list {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .order-list {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .order-list {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .order-list__heading {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .order-list__heading {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .order-list__heading {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .order-list__heading {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .order-list__heading {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .order-list__button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .order-list__button {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .order-list__button {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .order-list__button {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .order-list__button {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .order-list__button {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .order-form {
    padding: 35px 30px 60px 30px;
  }
  .order-form__row {
    grid-template-columns: 520px 120px;
  }
  .order-form__row:last-of-type {
    padding: 30px 0 0 0;
  }
  .order-form__label {
    grid-template-columns: 160px 345px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .order-form__label {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .order-form__label {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .order-form__label {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .order-form__label {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .order-form__label {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .order-form__label-name {
    text-align: right;
  }
}
@media (max-width: 768px) {
  .order-form {
    row-gap: 18px;
  }
  .order-form__row {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
  .order-form__row--auth {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .order-form__label {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 1601px) {
  .order-form__label {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1600px) {
  .order-form__label {
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1600px) {
  .order-form__label {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1200px) {
  .order-form__label {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 900px) {
  .order-form__label {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .order-form__label-name {
    justify-self: start;
    text-align: left;
  }
  .order-list {
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) and (min-width: 1601px) {
  .order-list {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1600px) {
  .order-list {
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1600px) {
  .order-list {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1200px) {
  .order-list {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 900px) {
  .order-list {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 1601px) {
  .order-list__heading {
    font-size: 30px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1600px) {
  .order-list__heading {
    font-size: 26px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1400px) {
  .order-list__heading {
    font-size: 23px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1200px) {
  .order-list__heading {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 900px) {
  .order-list__heading {
    font-size: 18px;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.order-info {
  padding: 30px 0 90px;
  background-color: rgba(237, 240, 244, 0.5019607843);
}
.order-info .product-detail__table {
  width: 100%;
}
.order-info .product-detail__table table {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (min-width: 1601px) {
  .order-info .product-detail__table table {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1600px) {
  .order-info .product-detail__table table {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1600px) {
  .order-info .product-detail__table table {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .order-info .product-detail__table table {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .order-info .product-detail__table table {
    font-size: 16px;
  }
}
.order-info tbody {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 10px;
}
.order-info tr {
  height: 101px;
}
.order-info thead,
.order-info th {
  display: none;
}
.order-info td {
  height: 101px;
  padding: 8px 20px;
  color: #333333;
  text-align: center;
}
@media only screen and (min-width: 1601px) {
  .order-info td {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .order-info td {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .order-info td {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .order-info td {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .order-info td {
    font-size: 12px;
  }
}
.order-info td:nth-of-type(1) {
  width: 144px;
}
.order-info td:nth-of-type(2) {
  width: 472px;
  font-weight: 300;
  text-align: left;
}
@media only screen and (min-width: 1601px) {
  .order-info td:nth-of-type(2) {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .order-info td:nth-of-type(2) {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .order-info td:nth-of-type(2) {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .order-info td:nth-of-type(2) {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .order-info td:nth-of-type(2) {
    font-size: 11px;
  }
}
.order-info td:nth-of-type(3) {
  width: 200px;
  font-weight: 400;
}
.order-info td:nth-of-type(4) {
  width: 296px;
  font-weight: 500;
}
.order-info__wrapper {
  margin: 20px 0 30px;
  grid-template-columns: 1118px 293px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 32px;
}
.order-info__details {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 23px 30px 10px 30px;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}
.order-info__name {
  display: inline-block;
  font-weight: 400;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1601px) {
  .order-info__name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .order-info__name {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .order-info__name {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .order-info__name {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .order-info__name {
    font-size: 11px;
  }
}
.order-info__text {
  font-weight: 300;
  line-height: 1.33;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1601px) {
  .order-info__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .order-info__text {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .order-info__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .order-info__text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .order-info__text {
    font-size: 11px;
  }
}

@media (max-width: 1600px) {
  .order-info tbody {
    width: 100%;
  }
  .order-info tr {
    width: 100%;
  }
  .order-info__wrapper {
    grid-template-columns: minmax(auto, 1100px) 290px;
  }
}
@media (max-width: 1400px) {
  .order-info__wrapper {
    grid-template-columns: minmax(auto, 1100px) 250px;
  }
}
@media (max-width: 1200px) {
  .order-info .product-detail__table {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-info__wrapper {
    grid-template-columns: 1fr;
  }
  .order-info__details {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .order-info td {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .order-info td {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .order-info td {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .order-info td {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .order-info td {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .order-info td:nth-of-type(2) {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .order-info td:nth-of-type(2) {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .order-info td:nth-of-type(2) {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .order-info td:nth-of-type(2) {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .order-info td:nth-of-type(2) {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .order-info__name {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .order-info__name {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .order-info__name {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .order-info__name {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .order-info__name {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .order-info__text {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .order-info__text {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .order-info__text {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .order-info__text {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .order-info__text {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .order-info .product-detail__table {
    overflow: hidden;
  }
  .order-info .product-detail__table table {
    width: 100%;
    overflow: hidden;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    outline: none;
  }
  .order-info .specification__image-wrapper {
    width: 100%;
  }
  .order-info tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
  .order-info tr {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    grid-template-rows: auto 1fr 1fr;
    border-radius: 10px;
    background-color: #ffffff;
    overflow: hidden;
  }
  .order-info td {
    height: auto;
    border: none;
    position: relative;
  }
  .order-info td::before {
    position: absolute;
    display: block;
    top: 9px;
    left: 20px;
    font-weight: 300;
  }
}
@media only screen and (max-width: 768px) and (min-width: 1601px) {
  .order-info td::before {
    font-size: 19px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1600px) {
  .order-info td::before {
    font-size: 17px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1400px) {
  .order-info td::before {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1200px) {
  .order-info td::before {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 900px) {
  .order-info td::before {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .order-info td:nth-of-type(1) {
    width: 100%;
    grid-row: span 3;
    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;
  }
  .order-info td:nth-of-type(2) {
    width: 100%;
    padding: 12px 20px 9px 20px;
    grid-row: span 2;
  }
}
@media only screen and (max-width: 768px) and (min-width: 1601px) {
  .order-info td:nth-of-type(2) {
    font-size: 24px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1600px) {
  .order-info td:nth-of-type(2) {
    font-size: 22px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1600px) {
  .order-info td:nth-of-type(2) {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1200px) {
  .order-info td:nth-of-type(2) {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 900px) {
  .order-info td:nth-of-type(2) {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .order-info td:nth-of-type(3) {
    width: 100%;
    grid-column: span 2;
    align-self: end;
    padding-bottom: 20px;
    text-align: right;
  }
  .order-info td:nth-of-type(3)::before {
    content: "Количество: ";
  }
  .order-info td:nth-of-type(4) {
    width: 100%;
    grid-column: span 2;
    align-self: end;
    padding-bottom: 20px;
    font-weight: 400;
    text-align: right;
  }
  .order-info td:nth-of-type(4)::before {
    content: "Сумма:";
  }
}
@media (max-width: 550px) {
  .order-info .product-detail__table {
    overflow: hidden;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.orders {
  padding: 30px 0 90px;
  background-color: rgba(237, 240, 244, 0.5019607843);
}
.orders__container .product-detail__table {
  width: 626px;
  margin: 0;
  overflow: hidden;
}
.orders__container .product-detail__table table {
  width: 626px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
.orders__container .product-detail__table .price-for-one,
.orders__container .product-detail__table .price-for-all {
  white-space: nowrap;
}
.orders__container th {
  padding: 10px 10px 14px 12px;
}
.orders__container th:nth-child(1) {
  width: 44px;
  text-align: center;
}
.orders__container th:nth-child(2) {
  width: 125px;
}
.orders__container th:nth-child(3) {
  width: 100px;
}
.orders__container th:nth-child(4) {
  width: 178px;
}
.orders__container th:nth-child(5) {
  width: 178px;
}
.orders__container td {
  padding: 6px 10px 5px 12px;
}
.orders__container td:nth-child(1) {
  text-align: center;
}
.orders__container td:nth-child(5) {
  padding: 6px 10px 5px 10px;
  text-align: center;
}

@media (max-width: 1600px) {
  .orders__container th {
    padding: 10px 10px 14px 10px;
  }
  .orders__container td {
    padding: 6px 10px 5px 10px;
  }
  .orders__container td:nth-child(5) {
    padding: 6px 10px 5px 10px;
  }
}
@media (max-width: 768px) {
  .orders__container {
    width: calc(100vw - (100vw - 100%) - 40px);
    overflow-x: scroll;
  }
}
@media (max-width: 580px) {
  .orders__container .product-detail__table {
    width: 100%;
  }
  .orders__container .product-detail__table table {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media only screen and (max-width: 580px) and (min-width: 1601px) {
  .orders__container .product-detail__table table {
    font-size: 24px;
  }
}
@media only screen and (max-width: 580px) and (max-width: 1600px) {
  .orders__container .product-detail__table table {
    font-size: 22px;
  }
}
@media only screen and (max-width: 580px) and (max-width: 1600px) {
  .orders__container .product-detail__table table {
    font-size: 20px;
  }
}
@media only screen and (max-width: 580px) and (max-width: 1200px) {
  .orders__container .product-detail__table table {
    font-size: 18px;
  }
}
@media only screen and (max-width: 580px) and (max-width: 900px) {
  .orders__container .product-detail__table table {
    font-size: 16px;
  }
}
@media (max-width: 580px) {
  .orders__container tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .orders__container tr {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
  }
  .orders__container th {
    display: none;
  }
  .orders__container td {
    position: relative;
    padding: 15px 10px 5px 130px;
    border: none;
  }
  .orders__container td::before {
    position: absolute;
    display: inline-block;
    left: 30px;
    top: calc(50% - 7px);
    font-weight: 400;
  }
  .orders__container td:nth-child(1) {
    text-align: left;
  }
  .orders__container td:nth-child(1)::before {
    content: "№";
  }
  .orders__container td:nth-child(2)::before {
    content: "Дата:";
  }
  .orders__container td:nth-child(3)::before {
    content: "Сумма:";
  }
  .orders__container td:nth-child(4)::before {
    content: "Состояние:";
  }
  .orders__container td:nth-child(5) {
    padding: 10px 10px 15px 10px;
  }
  .orders__container td:nth-child(5)::before {
    display: none;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.series {
  padding: 40px 0;
  background-color: rgba(237, 240, 244, 0.5019607843);
}
.series__container {
  display: grid;
  grid-template-columns: 350px auto;
  grid-template-rows: 65px auto;
  -webkit-column-gap: 55px;
     -moz-column-gap: 55px;
          column-gap: 55px;
  row-gap: 30px;
}
.series__heading {
  grid-column: span 2;
}
.series__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.series__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 290px minmax(33px, auto) minmax(75px, 100%);
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}
.series__item:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.series__item--image-wrapper {
  position: relative;
  height: 290px;
  overflow: hidden;
}
.series__item--image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.series__item--name {
  padding-bottom: 10px;
  font-weight: 400;
  color: #000000;
}
@media only screen and (min-width: 1601px) {
  .series__item--name {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .series__item--name {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .series__item--name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .series__item--name {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .series__item--name {
    font-size: 12px;
  }
}
.series__item--text {
  font-weight: 300;
  color: #333333;
  line-height: 1.33;
}
@media only screen and (min-width: 1601px) {
  .series__item--text {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .series__item--text {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .series__item--text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .series__item--text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .series__item--text {
    font-size: 12px;
  }
}

@media (max-width: 1600px) {
  .series__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1200px) {
  .series__container {
    grid-template-columns: 250px auto;
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
  }
  .series__item {
    grid-template-rows: 220px minmax(30px, auto) minmax(70px, 100%);
  }
  .series__item--image-wrapper {
    height: 220px;
  }
}
@media (max-width: 900px) {
  .series__container {
    grid-template-columns: 1fr;
    grid-template-rows: 65px auto auto;
  }
  .series__heading {
    grid-column: unset;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .series__item--name {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .series__item--name {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .series__item--name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .series__item--name {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .series__item--name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .series__item--text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .series__item--text {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .series__item--text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .series__item--text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .series__item--text {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .series__container {
    grid-template-rows: 35px auto auto;
  }
  .series__items {
    grid-template-columns: 1fr;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.similar {
  padding: 53px 0 150px;
}
.similar__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.similar__text {
  max-width: 542px;
}
.similar__text--description {
  margin-top: 10px;
  line-height: 1.68;
  font-weight: 300;
}
@media only screen and (min-width: 1601px) {
  .similar__text--description {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .similar__text--description {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .similar__text--description {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .similar__text--description {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .similar__text--description {
    font-size: 12px;
  }
}
.similar__search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.similar__search--input {
  width: 605px;
  height: 60px;
  padding: 14px 30px;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 300px;
  color: #333333;
}
@media only screen and (min-width: 1601px) {
  .similar__search--input {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .similar__search--input {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .similar__search--input {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .similar__search--input {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .similar__search--input {
    font-size: 12px;
  }
}
.similar__search--input ::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.similar__search--input ::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.similar__search--input :-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.similar__search--input ::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.similar__search--input ::placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
  opacity: 1;
}
.similar__search--input ::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5019607843);
}

@media (max-width: 1600px) {
  .similar__search-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .similar__search--input {
    width: 450px;
    height: 46px;
  }
}
@media (max-width: 1200px) {
  .similar__container {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .similar__search--input {
    width: 400px;
  }
}
@media (max-width: 900px) {
  .similar {
    padding: 30px 0 70px;
  }
  .similar__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
}
@media (max-width: 768px) {
  .similar__search--input {
    width: 100%;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.universal {
  padding: 30px 0 90px;
  background-color: rgba(237, 240, 244, 0.5019607843);
}
.universal__container {
  display: grid;
  grid-template-columns: 354px auto;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 40px;
}
.universal__heading {
  grid-column: span 2;
}
.universal__sidebar {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
}
.universal__aside-button {
  display: none;
}
.universal__sidebar-item {
  width: 100%;
}
.universal__sidebar-link {
  width: 100%;
  min-height: 40px;
  padding: 8px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333333;
  background-color: #ffffff;
  border-radius: 300px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1601px) {
  .universal__sidebar-link {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .universal__sidebar-link {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .universal__sidebar-link {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .universal__sidebar-link {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .universal__sidebar-link {
    font-size: 12px;
  }
}
.universal__sidebar-link:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.universal__sidebar-link--active {
  color: #ffffff !important;
  background-color: #d7171f;
  pointer-events: none;
}
.universal__sidebar-link--active:hover {
  color: #333333;
  background-color: #ffffff;
}
.universal__main {
  font-weight: 300;
  line-height: 1.68;
}
@media only screen and (min-width: 1601px) {
  .universal__main {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .universal__main {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .universal__main {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .universal__main {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .universal__main {
    font-size: 12px;
  }
}
.universal__main-cards {
  padding: 60px 0 90px;
}
.universal__main-cards-wrapper {
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.main-card {
  min-height: 422px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
}
.main-card__image-wrapper {
  width: 100%;
  height: 272px;
  position: relative;
  overflow: hidden;
}
.main-card__image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-card__name {
  padding: 15px 30px 0 30px;
  font-weight: 400;
  color: #000000;
  line-height: 1.17;
}
@media only screen and (min-width: 1601px) {
  .main-card__name {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .main-card__name {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .main-card__name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .main-card__name {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .main-card__name {
    font-size: 12px;
  }
}
.main-card__text {
  padding: 0 30px 30px 30px;
  font-weight: 300;
  color: #333333;
  line-height: 1.33;
}
@media only screen and (min-width: 1601px) {
  .main-card__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .main-card__text {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .main-card__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .main-card__text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .main-card__text {
    font-size: 11px;
  }
}

@media (max-width: 1600px) {
  .universal__container {
    grid-template-columns: 320px auto;
  }
  .main-card {
    min-height: 390px;
  }
  .main-card__image-wrapper {
    height: 230px;
  }
}
@media (max-width: 1400px) {
  .universal {
    padding: 30px 0 70px;
  }
  .universal__main-cards {
    padding: 40px 0 60px;
  }
  .main-card {
    min-height: 320px;
  }
  .main-card__image-wrapper {
    height: 160px;
  }
}
@media (max-width: 1200px) {
  .universal__container {
    grid-template-columns: 1fr;
  }
  .universal__heading {
    grid-column: unset;
  }
  .universal__aside-button {
    position: relative;
    display: block;
    width: 100%;
    padding: 22px 20px 25px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .universal__aside-button {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .universal__aside-button {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .universal__aside-button {
    font-size: 23px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .universal__aside-button {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .universal__aside-button {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .universal__aside-button::after {
    content: "+";
    position: absolute;
    display: inline-block;
    right: 20px;
    top: calc(50% - 16px);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    line-height: 1;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .universal__aside-button::after {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .universal__aside-button::after {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .universal__aside-button::after {
    font-size: 33px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .universal__aside-button::after {
    font-size: 29px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .universal__aside-button::after {
    font-size: 26px;
  }
}
@media (max-width: 1200px) {
  .universal__aside-button:hover {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
            box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
  }
  .universal__aside-button.active::after {
    content: "–";
    top: calc(50% - 16px);
  }
  .universal__aside-button.active:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .universal__sidebar {
    display: none;
    width: 100%;
    margin-top: -20px;
    padding: 22px 20px 22px 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    background-color: #ffffff;
    border-radius: 10px;
  }
  .universal__sidebar.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .universal__sidebar-item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .universal__sidebar-link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid #333333;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .universal__sidebar-link:hover {
    border: 1px solid #ffffff;
  }
  .universal__sidebar-link--active {
    border: 1px solid #d7171f;
  }
  .universal__sidebar-link--active:hover {
    color: #333333 !important;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .universal__main {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .universal__main {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .universal__main {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .universal__main {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .universal__main {
    font-size: 13px;
  }
}
@media (max-width: 1200px) {
  .universal__main-cards-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .main-card {
    min-height: 380px;
  }
  .main-card__image-wrapper {
    height: 200px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .main-card__name {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .main-card__name {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .main-card__name {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .main-card__name {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .main-card__name {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .main-card__text {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .main-card__text {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .main-card__text {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .main-card__text {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .main-card__text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .universal__sidebar-link {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .universal__sidebar-link {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .universal__sidebar-link {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .universal__sidebar-link {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .universal__sidebar-link {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .universal__main {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .universal__main {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .universal__main {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .universal__main {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .universal__main {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .universal__main-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .main-card__name {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .main-card__name {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .main-card__name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .main-card__name {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .main-card__name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .main-card__text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .main-card__text {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .main-card__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .main-card__text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .main-card__text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .universal__main-cards-wrapper {
    grid-template-columns: 1fr;
  }
  .main-card {
    min-height: 330px;
  }
  .main-card__name {
    padding: 10px 20px 0 20px;
  }
  .main-card__text {
    padding: 0 20px 20px 20px;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.news-list {
  padding: 30px 0 90px;
  background-color: rgba(237, 240, 244, 0.5019607843);
}
.news-list__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 60px;
}
.news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 35px;
}
.news-list__content {
  display: grid;
  grid-template-columns: auto 250px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 15px;
}
.news-list__date {
  font-weight: 400;
}
@media only screen and (min-width: 1601px) {
  .news-list__date {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .news-list__date {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .news-list__date {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .news-list__date {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .news-list__date {
    font-size: 12px;
  }
}
.news-list__text {
  font-weight: 300;
  line-height: 1.68;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1601px) {
  .news-list__text {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .news-list__text {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .news-list__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .news-list__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .news-list__text {
    font-size: 12px;
  }
}
.news-list__button {
  width: 255px;
  text-align: center;
}
.news-list__image-wrapper {
  position: relative;
  width: 100%;
  max-height: 186px;
  grid-row: span 4;
  border-radius: 10px;
  overflow: hidden;
}
.news-list__image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1400px) {
  .news-list__button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 1200px) {
  .news-list__item {
    row-gap: 20px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .news-list__name {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .news-list__name {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .news-list__name {
    font-size: 23px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .news-list__name {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .news-list__name {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .news-list__content {
    row-gap: 5px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .news-list__date {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .news-list__date {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .news-list__date {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .news-list__date {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .news-list__date {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .news-list__text {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .news-list__text {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .news-list__text {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .news-list__text {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .news-list__text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .news-list__name {
    font-size: 32px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .news-list__name {
    font-size: 30px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .news-list__name {
    font-size: 26px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .news-list__name {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .news-list__name {
    font-size: 20px;
  }
}
@media (max-width: 900px) {
  .news-list__content {
    grid-template-columns: auto 180px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .news-list__date {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .news-list__date {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .news-list__date {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .news-list__date {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .news-list__date {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .news-list__text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .news-list__text {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .news-list__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .news-list__text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .news-list__text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .news-list__content {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .news-list__text {
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
  }
  .news-list__image-wrapper {
    width: 250px;
    height: 186px;
    grid-row: unset;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.news {
  padding: 30px 0 90px;
  background-color: rgba(237, 240, 244, 0.5019607843);
}
.news__heading {
  margin-bottom: 40px;
}
@media only screen and (min-width: 1601px) {
  .news__content {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .news__content {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .news__content {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .news__content {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .news__content {
    font-size: 12px;
  }
}
.news__image-wrapper {
  position: relative;
  width: 400px;
  height: 298px;
  margin-bottom: 35px;
  border-radius: 10px;
  overflow: hidden;
}
.news__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news__date {
  margin-bottom: 20px;
  font-weight: 400;
}
.news__text {
  font-weight: 300;
  line-height: 1.68;
}

@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .news__date {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .news__date {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .news__date {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .news__date {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .news__date {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .news__text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .news__text {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .news__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .news__text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .news__text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .news__image-wrapper {
    max-width: 100%;
  }
  .news__text {
    text-align: justify;
    text-justify: inter-word;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.contacts__container {
  display: grid;
  row-gap: 40px;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
.contacts__heading {
  grid-column: span 2;
}
.contacts__tab-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.contacts__tab {
  font-weight: 400;
  padding: 8px 15px;
  color: #333333;
  background-color: #ffffff;
  text-align: left;
  border-radius: 300px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1601px) {
  .contacts__tab {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .contacts__tab {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .contacts__tab {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .contacts__tab {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .contacts__tab {
    font-size: 12px;
  }
}
.contacts__tab:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.contacts__tab--active {
  color: #ffffff;
  background-color: #d7171f;
}
.contacts__tab--active:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contacts__content {
  display: none;
}
.contacts__content--active {
  padding-top: 7px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(3, auto);
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  row-gap: 50px;
  grid-auto-flow: dense;
}
.contacts__contacts {
  width: 462px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}
.contacts__contact {
  display: grid;
  grid-template-columns: 202px 245px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  line-height: 1.17;
  text-align: left;
}
@media only screen and (min-width: 1601px) {
  .contacts__contact {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .contacts__contact {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .contacts__contact {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .contacts__contact {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .contacts__contact {
    font-size: 12px;
  }
}
.contacts__contact-name {
  font-weight: 400;
}
.contacts__contact-value {
  font-weight: 300;
}
.contacts__requisites {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
}
.contacts__requisites .contacts__contact-name {
  text-align: right;
}
.contacts__tech-support {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
}
.contacts-form {
  grid-row: span 2;
  width: 598px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 30px 30px 60px 30px;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}
.contacts-form__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 10px;
}
.contacts-form__text {
  margin: 30px 0;
  font-weight: 300;
  line-height: 1.17;
}
@media only screen and (min-width: 1601px) {
  .contacts-form__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .contacts-form__text {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .contacts-form__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .contacts-form__text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .contacts-form__text {
    font-size: 11px;
  }
}
.contacts-form__row {
  padding-left: 133px;
}
.contacts-form__label {
  display: grid;
  grid-template-columns: 118px 404px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  font-weight: 400;
}
@media only screen and (min-width: 1601px) {
  .contacts-form__label {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .contacts-form__label {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .contacts-form__label {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .contacts-form__label {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .contacts-form__label {
    font-size: 12px;
  }
}
.contacts-form__label-name {
  -ms-flex-line-pack: center;
      align-content: center;
}
.contacts-form__label--textarea .contacts-form__label-name {
  -ms-flex-line-pack: baseline;
      align-content: baseline;
  padding-top: 15px;
}
.contacts-form__radio {
  margin-top: 25px;
  margin-bottom: 15px;
}
.contacts-form__captcha {
  width: 440px;
  margin-bottom: 24px;
}
.contacts-map {
  position: relative;
  width: 100%;
  height: 542px;
  grid-column: span 2;
  margin-top: 40px;
  background-color: #a5b3c8;
  border-radius: 10px;
  overflow: hidden;
}
.contacts-map iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 1600px) {
  .contacts__container {
    grid-template-columns: 1fr;
  }
  .contacts__heading {
    grid-column: unset;
  }
  .contacts__tab-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contacts .contacts-form {
    margin: 0;
  }
}
@media only screen and (max-width: 1600px) and (min-width: 1601px) {
  .contacts-form__text {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) and (max-width: 1600px) {
  .contacts-form__text {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1600px) and (max-width: 1400px) {
  .contacts-form__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) and (max-width: 1200px) {
  .contacts-form__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1600px) and (max-width: 900px) {
  .contacts-form__text {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .contacts__content--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .contacts__contacts {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .contacts__contact {
    grid-template-columns: 160px 200px;
  }
  .contacts__requisites {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .contacts__requisites .contacts__contact-name {
    text-align: left;
  }
  .contacts-form {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .contacts-map {
    grid-column: unset;
    margin: 0;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .contacts__tab {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .contacts__tab {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .contacts__tab {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .contacts__tab {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .contacts__tab {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .contacts__contact {
    grid-template-columns: 200px auto;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .contacts__contact {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .contacts__contact {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .contacts__contact {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .contacts__contact {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .contacts__contact {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .contacts-form__text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .contacts-form__text {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .contacts-form__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .contacts-form__text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .contacts-form__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .contacts-form__label {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .contacts-form__label {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .contacts-form__label {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .contacts-form__label {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .contacts-form__label {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  .contacts-map {
    height: 340px;
  }
}
@media (max-width: 768px) {
  .contacts__contact {
    grid-template-columns: 140px auto;
  }
  .contacts__contact-value {
    padding-right: 10px;
  }
  .contacts-form {
    width: 100%;
    padding: 30px 30px 40px 30px;
  }
  .contacts-form__row {
    padding: 0;
  }
  .contacts-form__label {
    grid-template-columns: 1fr;
    row-gap: 5px;
  }
  .contacts-form__captcha {
    width: 260px;
  }
  .contacts-form__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.account {
  padding: 30px 0 90px;
  background-color: rgba(237, 240, 244, 0.5019607843);
}
.account__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 20px;
}

.account-form {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 30px 30px 60px 30px;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}
.account-form__heading {
  margin-bottom: 30px;
}
.account-form__label {
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 230px auto;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  font-weight: 400;
}
@media only screen and (min-width: 1601px) {
  .account-form__label {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .account-form__label {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .account-form__label {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .account-form__label {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .account-form__label {
    font-size: 12px;
  }
}
.account-form__label-name {
  -ms-flex-line-pack: center;
      align-content: center;
}
.login-form__buttons {
  margin: 30px 0 0 -80px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.login-form__buttons .button {
  grid-row: span 2;
}
.login-form__reset-password {
  padding-left: 32px;
  font-weight: 300;
}
@media only screen and (min-width: 1601px) {
  .login-form__reset-password {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .login-form__reset-password {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .login-form__reset-password {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .login-form__reset-password {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .login-form__reset-password {
    font-size: 11px;
  }
}
.login-form .account-form__label-name {
  text-align: right;
}

.register-form__text {
  width: 540px;
  margin-top: 17px;
  font-weight: 300;
  line-height: 1.17;
}
@media only screen and (min-width: 1601px) {
  .register-form__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .register-form__text {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .register-form__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .register-form__text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .register-form__text {
    font-size: 11px;
  }
}
.register-form__buttons {
  margin: 30px 0 0 120px;
}

.account-edit-form .account-form__label-name {
  justify-self: end;
  text-align: right;
  text-wrap: nowrap;
}
.account-edit-form .account-form__label-name.req::before {
  top: 5px;
  right: calc(100% + 6px);
  left: unset;
}

.account-edit__buttons {
  margin-top: 30px;
  grid-column: span 2;
  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;
  gap: 10px;
}

.account-info__text-wrapper {
  margin: 10px 0 35px;
}
.account-info__contact {
  font-weight: 400;
  line-height: 1.33;
}
@media only screen and (min-width: 1601px) {
  .account-info__contact {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .account-info__contact {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .account-info__contact {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .account-info__contact {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .account-info__contact {
    font-size: 12px;
  }
}
.account-info__text {
  font-weight: 300;
  line-height: 1.33;
}
@media only screen and (min-width: 1601px) {
  .account-info__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .account-info__text {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .account-info__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .account-info__text {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .account-info__text {
    font-size: 11px;
  }
}
.account-info__text--bold {
  font-weight: 700;
}
.account-info__buttons {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.account-info__button {
  display: inline-block;
}

@media (max-width: 1600px) {
  .login-form__buttons {
    margin: 30px 0 0 0;
  }
  .register-form__buttons {
    margin: 30px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 1400px) {
  .account-form__label {
    margin-top: 20px;
    grid-template-columns: 1fr;
    row-gap: 5px;
  }
  .login-form .account-form__label-name {
    text-align: left;
  }
  .register-form__text {
    width: 100%;
  }
  .account-edit-form .account-form__label-name {
    justify-self: start;
    text-align: left;
  }
  .account-edit-form .account-form__label-name.req::before {
    top: -2px;
    right: unset;
    left: -9px;
  }
}
@media (max-width: 900px) {
  .account__container {
    grid-template-columns: 1fr;
  }
  .account-form {
    padding: 20px 20px 40px 20px;
  }
  .login-form__buttons {
    grid-template-columns: 1fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    row-gap: 15px;
  }
  .login-form__buttons .button {
    grid-row: unset;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .login-form__reset-password {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 30px;
    padding: 0;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .login-form__reset-password {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .login-form__reset-password {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .login-form__reset-password {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .login-form__reset-password {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .login-form__reset-password {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .account-edit__buttons {
    grid-column: unset;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .account-info__contact {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .account-info__contact {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .account-info__contact {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .account-info__contact {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .account-info__contact {
    font-size: 16px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .account-info__text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .account-info__text {
    font-size: 22px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .account-info__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .account-info__text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .account-info__text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .account .contacts__contact {
    grid-template-columns: 1fr;
    row-gap: 5px;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.project-main-form .account-form__label {
  grid-template-columns: 190px auto;
}
.project-main-form .account-form__label-name {
  justify-self: end;
  text-align: right;
  text-wrap: nowrap;
}
.project-main-form .account-form__label-name.req::before {
  top: 5px;
  right: calc(100% + 6px);
  left: unset;
}

.project-graph-form {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
}
.project-graph-form__row {
  display: grid;
  grid-template-columns: 120px auto;
  grid-template-rows: 40px auto;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  row-gap: 10px;
}
.project-graph-form__row--big {
  grid-template-columns: 120px 232px 150px;
  grid-template-rows: 210px;
}
.project-graph-form__row--big .specification-file__names {
  max-width: 150px !important;
  left: calc(100% + 10px) !important;
  text-align: left;
}
.project-graph-form__row-name {
  grid-row: span 2;
  padding-top: 7px;
  font-weight: 400;
  text-align: right;
}
@media only screen and (min-width: 1601px) {
  .project-graph-form__row-name {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .project-graph-form__row-name {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .project-graph-form__row-name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .project-graph-form__row-name {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .project-graph-form__row-name {
    font-size: 12px;
  }
}
.project-graph-form__row-name--link {
  text-wrap: wrap;
  overflow-wrap: break-word;
}
.project-graph-form__row-name--link:hover {
  text-decoration: underline;
}
.project-graph-form__row-description {
  font-weight: 300;
  line-height: 1.33;
}
@media only screen and (min-width: 1601px) {
  .project-graph-form__row-description {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .project-graph-form__row-description {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .project-graph-form__row-description {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .project-graph-form__row-description {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .project-graph-form__row-description {
    font-size: 12px;
  }
}
.project-graph-form__label {
  display: inline-block;
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 1601px) {
  .project-graph-form__label {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .project-graph-form__label {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .project-graph-form__label {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .project-graph-form__label {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .project-graph-form__label {
    font-size: 12px;
  }
}
.project-graph-form__label .specification-file__names {
  right: unset;
  left: calc(100% + 20px);
  bottom: 5px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 300px;
}
@media only screen and (min-width: 1601px) {
  .project-graph-form__label .specification-file__names {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1600px) {
  .project-graph-form__label .specification-file__names {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1600px) {
  .project-graph-form__label .specification-file__names {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1200px) {
  .project-graph-form__label .specification-file__names {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) {
  .project-graph-form__label .specification-file__names {
    font-size: 11px;
  }
}
.project-graph-form__label .specification-file__names--bottom {
  top: calc(100% + 5px);
  bottom: unset;
  left: 10px;
  text-align: left;
}
.project-graph-form__image-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.project-graph-form__image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.project-graph-form__buttons-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: baseline;
      align-content: baseline;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 15px;
}
.project-graph-form__delete-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 7px 20px;
  line-height: 1;
}
@media only screen and (min-width: 1601px) {
  .project-graph-form__delete-button {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .project-graph-form__delete-button {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .project-graph-form__delete-button {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .project-graph-form__delete-button {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .project-graph-form__delete-button {
    font-size: 12px;
  }
}

@media (max-width: 1400px) {
  .project-main-form .account-form__label {
    grid-template-columns: 170px auto;
  }
  .project-graph-form__row {
    grid-template-columns: 110px auto;
  }
  .project-graph-form__row--big {
    grid-template-columns: 110px 290px;
  }
  .project-graph-form__row--big .specification-file__names {
    max-width: 350px !important;
    left: 10px !important;
    top: calc(100% + 3px);
    text-align: left;
  }
  .project-graph-form__label .specification-file__names {
    max-width: 200px;
  }
  .project-graph-form__delete-button {
    padding: 10px 30px;
  }
}
@media (max-width: 1200px) {
  .project-main-form .account-form__label {
    grid-template-columns: 1fr;
  }
  .project-main-form .account-form__label-name {
    justify-self: start;
    text-align: left;
  }
  .project-main-form .account-form__label-name.req::before {
    top: -5px;
    right: unset;
    left: -6px;
  }
  .project-graph-form__row {
    grid-template-columns: 1fr 3fr;
    grid-template-rows: auto 50px auto;
  }
  .project-graph-form__row--big {
    grid-template-columns: 290px;
    grid-template-rows: auto 130px auto;
  }
  .project-graph-form__row--big .project-graph-form__image-wrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .project-graph-form__row--big .project-graph-form__buttons-wrapper {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .project-graph-form__row--big .project-graph-form__label {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .project-graph-form__row--big .project-graph-form__delete-button {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .project-graph-form__row--big .specification-file__names {
    max-width: 350px;
    top: calc(100% + 5px);
    bottom: unset;
    left: 10px;
    text-align: left;
  }
  .project-graph-form__row--edit .project-graph-form__buttons-wrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .project-graph-form__row--edit .project-graph-form__label {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .project-graph-form__row--edit .project-graph-form__delete-button {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .project-graph-form__row-name {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    grid-row: unset;
    padding: 0;
    text-align: left;
  }
  .project-graph-form__row-description {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .project-graph-form__label {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .project-graph-form__delete-button {
    padding: 10px 20px;
  }
}
@media (max-width: 900px) {
  .project-graph-form__row {
    grid-template-columns: 110px auto;
  }
  .project-graph-form__row--big {
    grid-template-columns: 300px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .project-graph-form__row-name {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .project-graph-form__row-name {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .project-graph-form__row-name {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .project-graph-form__row-name {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .project-graph-form__row-name {
    font-size: 13px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .project-graph-form__row-description {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .project-graph-form__row-description {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .project-graph-form__row-description {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .project-graph-form__row-description {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .project-graph-form__row-description {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .project-graph-form__label .specification-file__names {
    max-width: 400px;
  }
}
@media only screen and (max-width: 900px) and (min-width: 1601px) {
  .project-graph-form__label .specification-file__names {
    font-size: 21px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1600px) {
  .project-graph-form__label .specification-file__names {
    font-size: 19px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1400px) {
  .project-graph-form__label .specification-file__names {
    font-size: 17px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 1200px) {
  .project-graph-form__label .specification-file__names {
    font-size: 15px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 900px) {
  .project-graph-form__label .specification-file__names {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .project-graph-form__row--big {
    grid-template-columns: 300px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 1601px) {
  .project-graph-form__row-name {
    font-size: 21px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1600px) {
  .project-graph-form__row-name {
    font-size: 19px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1400px) {
  .project-graph-form__row-name {
    font-size: 17px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1200px) {
  .project-graph-form__row-name {
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 900px) {
  .project-graph-form__row-name {
    font-size: 13px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 1601px) {
  .project-graph-form__row-description {
    font-size: 21px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1600px) {
  .project-graph-form__row-description {
    font-size: 19px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1400px) {
  .project-graph-form__row-description {
    font-size: 17px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1200px) {
  .project-graph-form__row-description {
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 900px) {
  .project-graph-form__row-description {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .project-graph-form__label .specification-file__names {
    max-width: 200px;
  }
}
@media only screen and (max-width: 768px) and (min-width: 1601px) {
  .project-graph-form__label .specification-file__names {
    font-size: 21px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1600px) {
  .project-graph-form__label .specification-file__names {
    font-size: 19px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1400px) {
  .project-graph-form__label .specification-file__names {
    font-size: 17px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 1200px) {
  .project-graph-form__label .specification-file__names {
    font-size: 15px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 900px) {
  .project-graph-form__label .specification-file__names {
    font-size: 13px;
  }
}
@media (max-width: 450px) {
  .project-graph-form__row {
    grid-template-columns: 1fr;
  }
  .project-graph-form__row--big {
    grid-template-columns: 1fr;
  }
  .project-graph-form__row--big .specification-file__names {
    max-width: 180% !important;
  }
  .project-graph-form__label .specification-file__names {
    max-width: 200%;
    left: 0;
    bottom: unset;
    top: 100%;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.project-list {
  padding: 30px 0 90px;
  background-color: rgba(237, 240, 244, 0.5019607843);
}
.project-list__container .product-detail__table {
  width: 100%;
}
.project-list__container th {
  padding: 12px 12px 12px 18px;
}
.project-list__container th:nth-of-type(1) {
  width: 51px;
  padding: 12px 12px 12px 20px;
}
.project-list__container th:nth-of-type(2) {
  width: 376px;
}
.project-list__container th:nth-of-type(3) {
  width: 138px;
}
.project-list__container th:nth-of-type(4) {
  width: 238px;
}
.project-list__container th:nth-of-type(5) {
  width: 590px;
}
.project-list__container th:nth-of-type(6) {
  width: 138px;
}
.project-list__container td:nth-of-type(1) {
  text-align: center;
}
.project-list__button {
  display: inline-block;
}

@media (max-width: 1600px) {
  .project-list__container .product-detail__table {
    overflow: hidden;
  }
}
@media (max-width: 1400px) {
  .project-list__container .product-detail__table table {
    width: 1130px;
  }
  .project-list__container th:nth-of-type(2) {
    width: 300px;
  }
  .project-list__container th:nth-of-type(3) {
    width: 120px;
  }
  .project-list__container th:nth-of-type(4) {
    width: 180px;
  }
  .project-list__container th:nth-of-type(5) {
    width: 340px;
  }
}
@media (max-width: 1200px) {
  .project-list__container .product-detail__table table {
    width: 100%;
    outline: none;
  }
  .project-list__container .specification__image-wrapper {
    height: 100%;
  }
  .project-list__container .specification__button-wrapper {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .project-list__container tbody {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .project-list__container tr {
    display: grid;
    grid-template-columns: 1fr 5fr;
    border-radius: 10px;
    background-color: #ffffff;
    overflow: hidden;
  }
  .project-list__container thead,
  .project-list__container th {
    display: none;
  }
  .project-list__container td {
    padding: 12px 20px 12px;
    border: none;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .project-list__container td {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .project-list__container td {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1400px) {
  .project-list__container td {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .project-list__container td {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .project-list__container td {
    font-size: 13px;
  }
}
@media (max-width: 1200px) {
  .project-list__container td:nth-of-type(1) {
    display: none;
  }
  .project-list__container td:nth-of-type(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 15px 20px 12px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1601px) {
  .project-list__container td:nth-of-type(2) {
    font-size: 24px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .project-list__container td:nth-of-type(2) {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1600px) {
  .project-list__container td:nth-of-type(2) {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1200px) {
  .project-list__container td:nth-of-type(2) {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 900px) {
  .project-list__container td:nth-of-type(2) {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .project-list__container td:nth-of-type(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    grid-row: span 3;
    height: 120px;
  }
  .project-list__container td:nth-of-type(4) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .project-list__container td:nth-of-type(4)::before {
    content: "Местоположение: ";
    padding-right: 5px;
    font-weight: 400;
  }
  .project-list__container td:nth-of-type(5) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    grid-column: span 2;
  }
  .project-list__container td:nth-of-type(5)::before {
    content: "Краткое описание: ";
    padding-right: 5px;
    display: block;
    font-weight: 400;
  }
  .project-list__container td:nth-of-type(6) {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    grid-column: span 2;
    padding: 12px 20px 18px;
  }
}
@media (max-width: 900px) {
  .project-list__container tr {
    grid-template-columns: 2fr 5fr;
  }
}
@media (max-width: 768px) {
  .project-list__container tr {
    grid-template-columns: 110px auto;
  }
  .project-list__container td:nth-of-type(4) {
    grid-column: span 2;
  }
}
/* ================= ЦВЕТА ================= */
/* ================= ПЕРЕХОДЫ ================= */
/* ================= ГРАНИЦЫ ================= */
/* ================= ВЫСОТА СТРОКИ ================= */
/* ================= ТЕНИ ================= */
/* ================= РАЗМЕРЫ ШРИФТА ================= */
/* Вместо переменных используются миксины для того, чтобы значения можно было менять в зависимости от размера экрана */
.footer__top {
  background-color: #edf0f4;
}
.footer__top-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 60px 0;
}
.footer__bottom-container {
  padding: 60px 0 90px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__right {
  max-width: 540px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 60px;
  color: #333333;
}
.footer__links {
  height: 100%;
  display: grid;
  grid-template-columns: auto auto;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -webkit-column-gap: 90px;
     -moz-column-gap: 90px;
          column-gap: 90px;
  row-gap: 30px;
}
.footer__links--link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 2px 0 0;
  font-weight: 500;
  color: #333333;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 1601px) {
  .footer__links--link {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .footer__links--link {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .footer__links--link {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .footer__links--link {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .footer__links--link {
    font-size: 12px;
  }
}
.footer__links--link:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0px 3px 0px 0px rgba(51, 51, 51, 0.5019607843);
          box-shadow: 0px 3px 0px 0px rgba(51, 51, 51, 0.5019607843);
}
.footer__contact {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 25px auto;
  -webkit-column-gap: 11px;
     -moz-column-gap: 11px;
          column-gap: 11px;
}
@media only screen and (min-width: 1601px) {
  .footer__contact {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .footer__contact {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .footer__contact {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .footer__contact {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .footer__contact {
    font-size: 12px;
  }
}
.footer__video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__video:hover .footer__video--image {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.footer__video--text {
  font-weight: 500;
}
@media only screen and (min-width: 1601px) {
  .footer__video--text {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .footer__video--text {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .footer__video--text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .footer__video--text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .footer__video--text {
    font-size: 12px;
  }
}
.footer__video--image {
  position: relative;
  width: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer__copyright {
  text-align: center;
  font-weight: 300;
  color: #333333;
  line-height: 1.68;
}
@media only screen and (min-width: 1601px) {
  .footer__copyright {
    font-size: 19px;
  }
}
@media only screen and (max-width: 1600px) {
  .footer__copyright {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .footer__copyright {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .footer__copyright {
    font-size: 14px;
  }
}
@media only screen and (max-width: 900px) {
  .footer__copyright {
    font-size: 12px;
  }
}

@media (max-width: 1600px) {
  .footer__links {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }
}
@media (max-width: 1400px) {
  .footer__bottom-container {
    padding: 40px 30px 60px;
  }
}
@media (max-width: 1200px) {
  .footer__right {
    max-width: 230px;
  }
  .footer__links {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    row-gap: 20px;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer__top-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
  .footer__bottom-container {
    padding: 30px 0;
  }
  .footer__right {
    row-gap: 20px;
    max-width: 100%;
  }
  .footer__links {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__links--link {
    max-width: 140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1.33;
  }
}
@font-face {
  font-family: "lg";
  src: url("../fonts/lg-fonts/lg.woff2?io9a6k") format("woff2"), url("../fonts/lg-fonts/lg.ttf?io9a6k") format("truetype"), url("../fonts/lg-fonts/lg.woff?io9a6k") format("woff"), url("../fonts/lg-fonts/lg.svg?io9a6k#lg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.lg-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "lg" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lg-container {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.lg-next,
.lg-prev {
  background-color: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #999;
  cursor: pointer;
  display: block;
  font-size: 22px;
  margin-top: -10px;
  padding: 8px 10px 9px;
  position: absolute;
  top: 50%;
  z-index: 1084;
  outline: none;
  border: none;
}

.lg-next.disabled,
.lg-prev.disabled {
  opacity: 0 !important;
  cursor: default;
}

.lg-next:hover:not(.disabled),
.lg-prev:hover:not(.disabled) {
  color: #fff;
}

.lg-single-item .lg-next, .lg-single-item .lg-prev {
  display: none;
}

.lg-next {
  right: 20px;
}

.lg-next:before {
  content: "\e095";
}

.lg-prev {
  left: 20px;
}

.lg-prev:after {
  content: "\e094";
}

@-webkit-keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-right-end {
  0% {
    left: 0;
  }
  50% {
    left: -30px;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
@keyframes lg-left-end {
  0% {
    left: 0;
  }
  50% {
    left: 30px;
  }
  100% {
    left: 0;
  }
}
.lg-outer.lg-right-end .lg-object {
  -webkit-animation: lg-right-end 0.3s;
  animation: lg-right-end 0.3s;
  position: relative;
}

.lg-outer.lg-left-end .lg-object {
  -webkit-animation: lg-left-end 0.3s;
  animation: lg-left-end 0.3s;
  position: relative;
}

.lg-toolbar {
  z-index: 1082;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.lg-media-overlap .lg-toolbar {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.lg-toolbar .lg-icon {
  color: #999;
  cursor: pointer;
  float: right;
  font-size: 24px;
  height: 47px;
  line-height: 27px;
  padding: 10px 0;
  text-align: center;
  width: 50px;
  text-decoration: none !important;
  outline: medium none;
  will-change: color;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.lg-toolbar .lg-icon.lg-icon-18 {
  font-size: 18px;
}

.lg-toolbar .lg-icon:hover {
  color: #fff;
}

.lg-toolbar .lg-close:after {
  content: "\e070";
}

.lg-toolbar .lg-maximize {
  font-size: 22px;
}

.lg-toolbar .lg-maximize:after {
  content: "\e90a";
}

.lg-toolbar .lg-download:after {
  content: "\e0f2";
}

.lg-sub-html {
  color: #eee;
  font-size: 16px;
  padding: 10px 40px;
  text-align: center;
  z-index: 1080;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out 0s;
  transition: opacity 0.2s ease-out 0s;
}

.lg-sub-html h4 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.lg-sub-html p {
  font-size: 12px;
  margin: 5px 0 0;
}

.lg-sub-html a {
  color: inherit;
}

.lg-sub-html a:hover {
  text-decoration: underline;
}

.lg-media-overlap .lg-sub-html {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.lg-item .lg-sub-html {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}

.lg-error-msg {
  font-size: 14px;
  color: #999;
}

.lg-counter {
  color: #999;
  display: inline-block;
  font-size: 16px;
  padding-left: 20px;
  padding-top: 12px;
  height: 47px;
  vertical-align: middle;
}

.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  -webkit-transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
  transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear, -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont {
  opacity: 0;
  -ms-transform: scale3d(0.5, 0.5, 0.5);
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  -webkit-transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1), -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s !important;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont {
  opacity: 1;
  -ms-transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.lg-icon:focus-visible {
  color: #fff;
  border-radius: 3px;
  outline: 1px dashed rgba(255, 255, 255, 0.6);
}

.lg-toolbar .lg-icon:focus-visible {
  border-radius: 8px;
  outline-offset: -5px;
}

.lg-outer .lg-thumb-outer {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  max-height: 350px;
  overflow: hidden;
  float: left;
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  cursor: -webkit-pointer;
  cursor: -moz-pointer;
  cursor: -o-pointer;
  cursor: -ms-pointer;
  cursor: pointer;
}

.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-outer .lg-thumb-outer.lg-rebuilding-thumbnails .lg-thumb {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-outer .lg-thumb-outer.lg-thumb-align-middle {
  text-align: center;
}

.lg-outer .lg-thumb-outer.lg-thumb-align-left {
  text-align: left;
}

.lg-outer .lg-thumb-outer.lg-thumb-align-right {
  text-align: right;
}

.lg-outer.lg-single-item .lg-thumb-outer {
  display: none;
}

.lg-outer .lg-thumb {
  padding: 5px 0;
  height: 100%;
  margin-bottom: -5px;
  display: inline-block;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .lg-outer .lg-thumb {
    padding: 10px 0;
  }
}
.lg-outer .lg-thumb-item {
  cursor: pointer;
  float: left;
  overflow: hidden;
  height: 100%;
  border-radius: 2px;
  margin-bottom: 5px;
  will-change: border-color;
}

@media (min-width: 768px) {
  .lg-outer .lg-thumb-item {
    border-radius: 4px;
    border: 2px solid #fff;
    -webkit-transition: border-color 0.25s ease;
    transition: border-color 0.25s ease;
  }
}
.lg-outer .lg-thumb-item:hover {
  border-color: var(--color-main);
}

.lg-outer .lg-thumb-item.active {
  border-color: var(--color-main-dark);
}

.lg-outer .lg-thumb-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.lg-outer.lg-can-toggle .lg-item {
  padding-bottom: 0;
}

.lg-outer .lg-toggle-thumb:after {
  content: "\e1ff";
}

.lg-outer.lg-animate-thumb .lg-thumb {
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.lg-outer .lg-video-cont {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.lg-outer .lg-video-cont .lg-object {
  width: 100% !important;
  height: 100% !important;
}

.lg-outer .lg-has-iframe .lg-video-cont {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
}

.lg-outer .lg-video-object {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 3;
}

.lg-outer .lg-video-poster {
  z-index: 1;
}

.lg-outer .lg-has-video .lg-video-object {
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

.lg-outer .lg-has-video.lg-video-loaded .lg-video-poster,
.lg-outer .lg-has-video.lg-video-loaded .lg-video-play-button {
  opacity: 0 !important;
}

.lg-outer .lg-has-video.lg-video-loaded .lg-video-object {
  opacity: 1;
}

@-webkit-keyframes lg-play-stroke {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes lg-play-stroke {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@-webkit-keyframes lg-play-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lg-play-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.lg-video-play-button {
  width: 18%;
  max-width: 140px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  will-change: opacity, transform;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
  -webkit-transition: opacity 0.1s, -webkit-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28);
  transition: opacity 0.1s, -webkit-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28);
  transition: transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s;
  transition: transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28), opacity 0.1s, -webkit-transform 0.25s cubic-bezier(0.17, 0.88, 0.32, 1.28);
}

.lg-video-play-button:hover .lg-video-play-icon-bg,
.lg-video-play-button:hover .lg-video-play-icon {
  opacity: 1;
}

.lg-video-play-icon-bg {
  fill: none;
  stroke-width: 3%;
  stroke: #fcfcfc;
  opacity: 0.6;
  will-change: opacity;
  -webkit-transition: opacity 0.12s ease-in;
  transition: opacity 0.12s ease-in;
}

.lg-video-play-icon-circle {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  fill: none;
  stroke-width: 3%;
  stroke: rgba(30, 30, 30, 0.9);
  stroke-opacity: 1;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

.lg-video-play-icon {
  position: absolute;
  width: 25%;
  max-width: 120px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  opacity: 0.6;
  will-change: opacity;
  -webkit-transition: opacity 0.12s ease-in;
  transition: opacity 0.12s ease-in;
}

.lg-video-play-icon .lg-video-play-icon-inner {
  fill: #fcfcfc;
}

.lg-video-loading .lg-video-play-icon-circle {
  -webkit-animation: lg-play-rotate 2s linear 0.25s infinite, lg-play-stroke 1.5s ease-in-out 0.25s infinite;
          animation: lg-play-rotate 2s linear 0.25s infinite, lg-play-stroke 1.5s ease-in-out 0.25s infinite;
}

.lg-video-loaded .lg-video-play-button {
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(0.7);
      -ms-transform: translate(-50%, -50%) scale(0.7);
          transform: translate(-50%, -50%) scale(0.7);
}

.lg-progress-bar {
  background-color: #333;
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1083;
  opacity: 0;
  will-change: opacity;
  -webkit-transition: opacity 0.08s ease 0s;
  transition: opacity 0.08s ease 0s;
}

.lg-progress-bar .lg-progress {
  background-color: var(--color-main);
  height: 5px;
  width: 0;
}

.lg-progress-bar.lg-start .lg-progress {
  width: 100%;
}

.lg-show-autoplay .lg-progress-bar {
  opacity: 1;
}

.lg-autoplay-button:after {
  content: "\e01d";
}

.lg-show-autoplay .lg-autoplay-button:after {
  content: "\e01a";
}

.lg-single-item .lg-autoplay-button {
  opacity: 0.75;
  pointer-events: none;
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap,
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  -webkit-transition-duration: 0ms !important;
  transition-duration: 0ms !important;
}

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  will-change: transform;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
  transition: -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s;
}

.lg-outer.lg-use-transition-for-zoom.lg-zoom-drag-transition .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  will-change: transform;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.8s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
  -webkit-transition: opacity 0.15s, -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s !important;
  transition: opacity 0.15s, -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s !important;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s !important;
  transition: transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s, opacity 0.15s, -webkit-transform 0.5s cubic-bezier(0.12, 0.415, 0.01, 1.19) 0s !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.no-transition,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition {
  -webkit-transform: scale3d(1, 1, 1) translate3d(-50%, -50%, 0px) !important;
          transform: scale3d(1, 1, 1) translate3d(-50%, -50%, 0px) !important;
  max-width: none !important;
  max-height: none !important;
  top: 50% !important;
  left: 50% !important;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-x,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-x {
  -webkit-transform: scale3d(1, 1, 1) translate3d(-50%, 0, 0px) !important;
          transform: scale3d(1, 1, 1) translate3d(-50%, 0, 0px) !important;
  top: 0 !important;
  left: 50% !important;
  max-width: none !important;
  max-height: none !important;
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-y,
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-y {
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, -50%, 0px) !important;
          transform: scale3d(1, 1, 1) translate3d(0, -50%, 0px) !important;
  top: 50% !important;
  left: 0% !important;
  max-width: none !important;
  max-height: none !important;
}

.lg-icon.lg-zoom-in:after {
  content: "\e311";
}

.lg-actual-size .lg-icon.lg-zoom-in {
  opacity: 0.5;
  pointer-events: none;
}

.lg-icon.lg-actual-size {
  font-size: 20px;
}

.lg-icon.lg-actual-size:after {
  content: "\e033";
}

.lg-icon.lg-zoom-out {
  opacity: 0.5;
  pointer-events: none;
}

.lg-icon.lg-zoom-out:after {
  content: "\e312";
}

.lg-zoomed .lg-icon.lg-zoom-out {
  opacity: 1;
  pointer-events: auto;
}

.lg-outer[data-lg-slide-type=video] .lg-zoom-in,
.lg-outer[data-lg-slide-type=video] .lg-actual-size,
.lg-outer[data-lg-slide-type=video] .lg-zoom-out, .lg-outer[data-lg-slide-type=iframe] .lg-zoom-in,
.lg-outer[data-lg-slide-type=iframe] .lg-actual-size,
.lg-outer[data-lg-slide-type=iframe] .lg-zoom-out, .lg-outer.lg-first-slide-loading .lg-zoom-in,
.lg-outer.lg-first-slide-loading .lg-actual-size,
.lg-outer.lg-first-slide-loading .lg-zoom-out {
  opacity: 0.75;
  pointer-events: none;
}

.lg-outer .lg-pager-outer {
  text-align: center;
  z-index: 1080;
  height: 10px;
  margin-bottom: 10px;
}

.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  overflow: visible;
}

.lg-outer.lg-single-item .lg-pager-outer {
  display: none;
}

.lg-outer .lg-pager-cont {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  margin: 0 5px;
}

.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  -webkit-box-shadow: 0 0 0 2px white inset;
          box-shadow: 0 0 0 2px white inset;
}

.lg-outer .lg-pager-thumb-cont {
  background-color: #fff;
  color: #fff;
  bottom: 100%;
  height: 83px;
  left: 0;
  margin-bottom: 20px;
  margin-left: -60px;
  opacity: 0;
  padding: 5px;
  position: absolute;
  width: 120px;
  border-radius: 3px;
  will-change: transform, opacity;
  -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  transition: opacity 0.15s ease 0s, transform 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
}

.lg-outer .lg-pager-thumb-cont img {
  width: 100%;
  height: 100%;
}

.lg-outer .lg-pager {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
          box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  display: block;
  height: 12px;
  -webkit-transition: box-shadow 0.3s ease 0s;
  -webkit-transition: -webkit-box-shadow 0.3s ease 0s;
  transition: -webkit-box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s;
  transition: box-shadow 0.3s ease 0s, -webkit-box-shadow 0.3s ease 0s;
  width: 12px;
}

.lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  -webkit-box-shadow: 0 0 0 8px white inset;
          box-shadow: 0 0 0 8px white inset;
}

.lg-outer .lg-caret {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px dashed;
  bottom: -10px;
  display: inline-block;
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  vertical-align: middle;
  width: 0;
}

.lg-fullscreen:after {
  content: "\e20c";
}

.lg-fullscreen-on .lg-fullscreen:after {
  content: "\e20d";
}

.lg-outer .lg-dropdown-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  will-change: visibility, opacity;
  -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}

.lg-outer.lg-dropdown-active .lg-dropdown,
.lg-outer.lg-dropdown-active .lg-dropdown-overlay {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -ms-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible;
}

.lg-outer.lg-dropdown-active .lg-share {
  color: #fff;
}

.lg-outer .lg-dropdown {
  background-color: #fff;
  border-radius: 2px;
  font-size: 14px;
  list-style-type: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50px;
  opacity: 0;
  visibility: hidden;
  -ms-transform: translate3d(0, 5px, 0);
  -webkit-transform: translate3d(0, 5px, 0);
  transform: translate3d(0, 5px, 0);
  will-change: visibility, opacity, transform;
  -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  -webkit-transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
  transition: visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s, -webkit-transform 0.18s linear 0s;
}

.lg-outer .lg-dropdown:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  border: 8px solid transparent;
  border-bottom-color: #fff;
  right: 16px;
  top: -16px;
}

.lg-outer .lg-dropdown > li:last-child {
  margin-bottom: 0px;
}

.lg-outer .lg-dropdown > li:hover a {
  color: #333;
}

.lg-outer .lg-dropdown a {
  color: #333;
  display: block;
  white-space: pre;
  padding: 4px 12px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.lg-outer .lg-dropdown a:hover {
  background-color: rgba(0, 0, 0, 0.07);
}

.lg-outer .lg-dropdown .lg-dropdown-text {
  display: inline-block;
  line-height: 1;
  margin-top: -3px;
  vertical-align: middle;
}

.lg-outer .lg-dropdown .lg-icon {
  color: #333;
  display: inline-block;
  float: none;
  font-size: 20px;
  height: auto;
  line-height: 1;
  margin-right: 8px;
  padding: 0;
  vertical-align: middle;
  width: auto;
}

.lg-outer .lg-share {
  position: relative;
}

.lg-outer .lg-share:after {
  content: "\e80d";
}

.lg-outer .lg-share-facebook .lg-icon {
  color: #3b5998;
}

.lg-outer .lg-share-facebook .lg-icon:after {
  content: "\e904";
}

.lg-outer .lg-share-twitter .lg-icon {
  color: #00aced;
}

.lg-outer .lg-share-twitter .lg-icon:after {
  content: "\e907";
}

.lg-outer .lg-share-pinterest .lg-icon {
  color: #cb2027;
}

.lg-outer .lg-share-pinterest .lg-icon:after {
  content: "\e906";
}

.lg-comment-box {
  width: 420px;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  background-color: #fff;
  will-change: transform;
  -ms-transform: translate3d(100%, 0, 0);
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-comment-box .lg-comment-title {
  margin: 0;
  color: #fff;
  font-size: 18px;
}

.lg-comment-box .lg-comment-header {
  background-color: #000;
  padding: 12px 20px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}

.lg-comment-box .lg-comment-body {
  height: 100% !important;
  padding-top: 43px !important;
  width: 100% !important;
}

.lg-comment-box .fb-comments {
  height: 100%;
  width: 100%;
  background: url("../img/loading.gif") no-repeat scroll center center #fff;
  overflow-y: auto;
  display: inline-block;
}

.lg-comment-box .fb-comments[fb-xfbml-state=rendered] {
  background-image: none;
}

.lg-comment-box .fb-comments > span {
  max-width: 100%;
}

.lg-comment-box .lg-comment-close {
  position: absolute;
  right: 5px;
  top: 12px;
  cursor: pointer;
  font-size: 20px;
  color: #999;
  will-change: color;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.lg-comment-box .lg-comment-close:hover {
  color: #fff;
}

.lg-comment-box .lg-comment-close:after {
  content: "\e070";
}

.lg-comment-box iframe {
  max-width: 100% !important;
  width: 100% !important;
}

.lg-comment-box #disqus_thread {
  padding: 0 20px;
}

.lg-outer .lg-comment-overlay {
  background-color: rgba(0, 0, 0, 0.25);
  bottom: 0;
  cursor: default;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  will-change: visibility, opacity;
  -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
}

.lg-outer .lg-comment-toggle:after {
  content: "\e908";
}

.lg-outer.lg-comment-active .lg-comment-overlay {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -ms-transform: translate3d(0, 0px, 0);
  -webkit-transform: translate3d(0, 0px, 0);
  transform: translate3d(0, 0px, 0);
  opacity: 1;
  visibility: visible;
}

.lg-outer.lg-comment-active .lg-comment-toggle {
  color: #fff;
}

.lg-outer.lg-comment-active .lg-comment-box {
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.lg-outer .lg-img-rotate {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-outer[data-lg-slide-type=video] .lg-rotate-left,
.lg-outer[data-lg-slide-type=video] .lg-rotate-right,
.lg-outer[data-lg-slide-type=video] .lg-flip-ver,
.lg-outer[data-lg-slide-type=video] .lg-flip-hor, .lg-outer[data-lg-slide-type=iframe] .lg-rotate-left,
.lg-outer[data-lg-slide-type=iframe] .lg-rotate-right,
.lg-outer[data-lg-slide-type=iframe] .lg-flip-ver,
.lg-outer[data-lg-slide-type=iframe] .lg-flip-hor {
  opacity: 0.75;
  pointer-events: none;
}

.lg-outer .lg-img-rotate:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.lg-rotate-left:after {
  content: "\e900";
}

.lg-rotate-right:after {
  content: "\e901";
}

.lg-icon.lg-flip-hor, .lg-icon.lg-flip-ver {
  font-size: 26px;
}

.lg-flip-ver:after {
  content: "\e903";
}

.lg-flip-hor:after {
  content: "\e902";
}

.lg-medium-zoom-item {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.lg-medium-zoom .lg-outer {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.lg-medium-zoom .lg-outer.lg-grab img.lg-object {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.lg-medium-zoom .lg-outer.lg-grabbing img.lg-object {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.lg-relative-caption .lg-outer .lg-sub-html {
  white-space: normal;
  bottom: auto;
  padding: 0;
  background-image: none;
}

.lg-relative-caption .lg-outer .lg-relative-caption-item {
  opacity: 0;
  padding: 16px 0;
  -webkit-transition: 0.5s opacity ease;
  transition: 0.5s opacity ease;
}

.lg-relative-caption .lg-outer .lg-show-caption .lg-relative-caption-item {
  opacity: 1;
}

.lg-group:after {
  content: "";
  display: table;
  clear: both;
}

.lg-container {
  display: none;
  outline: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-on {
  scroll-behavior: unset;
}

.lg-overlay-open {
  overflow: hidden;
}

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
  opacity: 1;
}

.lg-show-in.lg-hide-sub-html .lg-sub-html {
  opacity: 1;
}

.lg-show-in .lg-hide-items .lg-prev {
  opacity: 0;
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-next {
  opacity: 0;
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-toolbar {
  opacity: 0;
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
  opacity: 0;
  -webkit-transform: translate3d(0, 20px, 0);
  transform: translate3d(0, 20px, 0);
}

.lg-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  text-align: left;
  opacity: 0.001;
  outline: none;
  will-change: auto;
  overflow: hidden;
  -webkit-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}

.lg-outer * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.lg-outer.lg-zoom-from-image {
  opacity: 1;
}

.lg-outer.lg-visible {
  opacity: 1;
}

.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-outer.lg-grab img.lg-object {
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lg-outer.lg-grabbing img.lg-object {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

.lg-outer .lg-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.lg-outer .lg-inner {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: opacity 0s;
  transition: opacity 0s;
  white-space: nowrap;
}

.lg-outer .lg-item {
  display: none !important;
}

.lg-outer .lg-item:not(.lg-start-end-progress) {
  background: url("../img/loading.gif") no-repeat scroll center center transparent;
}

.lg-outer.lg-css3 .lg-prev-slide,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide {
  display: inline-block !important;
}

.lg-outer.lg-css .lg-current {
  display: inline-block !important;
}

.lg-outer .lg-item,
.lg-outer .lg-img-wrap {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.lg-outer .lg-item:before,
.lg-outer .lg-img-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.lg-outer .lg-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  white-space: nowrap;
  font-size: 0;
}

.lg-outer .lg-item.lg-complete {
  background-image: none;
}

.lg-outer .lg-item.lg-current {
  z-index: 1060;
}

.lg-outer .lg-object {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
}

.lg-outer .lg-empty-html.lg-sub-html,
.lg-outer .lg-empty-html .lg-sub-html {
  display: none;
}

.lg-outer.lg-hide-download .lg-download {
  opacity: 0.75;
  pointer-events: none;
}

.lg-outer .lg-first-slide .lg-dummy-img {
  position: absolute;
  top: 50%;
  left: 50%;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
  -webkit-transform: translate3d(0, 0%, 0);
  transform: translate3d(0, 0%, 0);
  opacity: 1;
}

.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-out 0.15s;
  transition: opacity 0.2s ease-out 0.15s;
}

.lg-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  will-change: auto;
  -webkit-transition: opacity 333ms ease-in 0s;
  transition: opacity 333ms ease-in 0s;
}

.lg-backdrop.in {
  opacity: 1;
}

.lg-medium-zoom .lg-backdrop {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
  -webkit-transition: none 0s ease 0s !important;
  transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
  opacity: 0;
}

.lg-css3.lg-fade .lg-item.lg-current {
  opacity: 1;
}

.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  -webkit-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
  opacity: 0;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  -webkit-transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s, -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-container {
  display: none;
}

.lg-container.lg-show {
  display: block;
}

.lg-container.lg-dragging-vertical .lg-backdrop {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  opacity: 1;
}

.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
  position: absolute;
}

.lg-inline .lg-backdrop {
  z-index: 1;
}

.lg-inline .lg-outer {
  z-index: 2;
}

.lg-inline .lg-maximize:after {
  content: "\e909";
}

.lg-components {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.35s ease-out 0s;
  transition: -webkit-transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s;
  transition: transform 0.35s ease-out 0s, -webkit-transform 0.35s ease-out 0s;
  z-index: 1080;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}