.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 5px;
}

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

.mb-15 {
  margin-bottom: 15px;
}

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

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

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

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

/* inter-regular - latin_cyrillic-ext */
* {
  outline: none;
  margin: 0;
  padding: 0;
}

html {
  font-family: sans-serif;
  touch-action: manipulation;
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: 0;
  max-width: 100%;
  vertical-align: bottom;
}

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

input,
button,
textarea,
select {
  font-family: var(--ff);
  resize: none;
  font-size: 16px;
  font-weight: 400;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

img[data-src],
img[data-srcset] {
  min-width: 1px;
  min-height: 1px;
  opacity: 0;
  transition: opacity 0.3s;
}

img[data-loaded=true] {
  opacity: 1;
}

.container {
  max-width: 1340px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.container-slim {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.container-slim--left {
  margin-left: 0;
}

.column {
  padding-left: 10px;
  padding-right: 10px;
}

.columns {
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
  flex-wrap: wrap;
}

.col-1 {
  width: 8.33333333%;
}

.col-2 {
  width: 16.66666666%;
}

.col-3 {
  width: 24.99999999%;
}

.col-4 {
  width: 33.33333332%;
}

.col-5 {
  width: 41.66666665%;
}

.col-6 {
  width: 49.99999998%;
}

.col-7 {
  width: 58.33333331%;
}

.col-8 {
  width: 66.66666664%;
}

.col-9 {
  width: 74.99999997%;
}

.col-10 {
  width: 83.3333333%;
}

.col-11 {
  width: 91.66666663%;
}

.col-12 {
  width: 99.99999996%;
}

.col-2-5 {
  width: 20%;
}

svg:not(:root) {
  overflow: hidden;
}

.flex {
  display: flex;
}

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

.flex-column {
  flex-direction: column;
}

.flex-between {
  justify-content: space-between;
}

.flex-end {
  align-items: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-right {
  justify-content: flex-end;
}

.flex-center {
  justify-content: center;
}

.flex-bottom {
  align-items: flex-end;
}

.nowrap {
  white-space: nowrap;
}

.center {
  text-align: center;
}

.absolute-block {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.tab-pane:not(.active) {
  display: none;
}

.grey-back {
  background-color: var(--color-back);
}

.offset {
  padding-top: 60px;
  padding-bottom: 60px;
}
.offset-top {
  padding-top: 60px;
}
.offset-bottom {
  padding-bottom: 60px;
}

.red {
  color: var(--color-red);
}

.table-overflow {
  overflow: hidden;
  overflow-x: auto;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  cursor: default;
  z-index: 1000;
  display: none;
}
.modal.show-modal {
  display: flex;
  animation: modal normal 0.3s ease;
}
.modal.show-modal .modal-main {
  animation: modal-main normal 0.4s ease;
}
.modal-main {
  width: 100%;
  max-width: 500px;
  position: relative;
  flex-shrink: 0;
  margin: auto;
  padding: 35px 40px;
  border-radius: 5px;
  background-color: #fff;
}
.modal-title {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 25px;
}
.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
  line-height: 20px;
}

@keyframes modal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-main {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.slider {
  display: flex;
  position: relative;
  opacity: 0;
  transition: opacity 1s ease;
}
.slider--opacity .owl-stage-outer {
  overflow: visible;
}
.slider--opacity .owl-item {
  transition: opacity 0.2s;
}
.slider--opacity .owl-item:not(.active) {
  opacity: 0;
  pointer-events: none;
}

.owl-loaded {
  opacity: 1;
  display: block;
}
.owl-stage-outer {
  position: relative;
  overflow: hidden;
}
.owl-stage {
  display: flex;
}
.owl-nav.disabled, .owl-dots.disabled {
  display: none;
}
.owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 20px);
  display: flex;
  background-color: var(--color-link);
  z-index: 5;
}
.owl-nav button.disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-nav svg {
  display: block;
  width: 10px;
  height: 18px;
  margin: auto;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
}
.owl-prev {
  left: -20px;
}
.owl-next {
  right: -20px;
}
.owl-dots {
  width: 100%;
  height: 6px;
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 7px;
  border: none;
  cursor: pointer;
  background-color: var(--color-back-text);
}
.owl-dot.active {
  background-color: var(--color-link);
}

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

h1 {
  font-weight: 500;
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  h1 {
    font-size: 20px;
    line-height: 26px;
  }
}

h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  min-width: 180px;
  justify-content: center;
  align-items: center;
  background: var(--color-link);
  border-radius: 5px;
  height: 44px;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  padding: 0 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s;
}
.btn--full {
  width: 100%;
}
.btn--min {
  min-width: auto;
  font-size: 14px;
  height: 40px;
}
.btn--action {
  min-width: 120px;
  height: 32px;
  border: 1px solid var(--color-text);
  background-color: transparent;
  font-size: 12px;
  color: var(--color-text);
}
.btn--cancel {
  background-color: var(--color-red);
}
.btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 1.5;
  margin-right: 10px;
  fill: none;
}
.btn--active {
  background-color: var(--color-green);
}
.btn:hover {
  background-color: var(--color-link-hover);
  color: #fff;
}

.input {
  display: block;
  width: 100%;
  background: #FFFFFF;
  border-radius: 5px;
  height: 44px;
  border: 2px solid var(--color-back);
  font-size: 16px;
  padding: 0 15px;
  transition: 0.2s;
}
.input:focus {
  border-color: var(--color-link);
}
.input--flat {
  border-color: #fff;
}
.input-block {
  margin-bottom: 20px;
  position: relative;
}
.input.error {
  border-color: var(--color-red);
}
.input-text {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.input.textarea {
  height: 100px;
  padding-top: 10px;
}
.input[disabled] {
  background-color: #F6F6F6;
}

.error {
  color: var(--color-red);
}

.checkbox {
  position: absolute;
  opacity: 0;
}
.checkbox:checked + .checkbox-label:before {
  background-color: var(--color-link);
  border-color: var(--color-link);
}
.checkbox:checked + .checkbox-box {
  border-color: var(--color-link);
  box-shadow: 0 0 0 1px var(--color-link);
  background: #fff url("data:image/svg+xml,%3Csvg width='20' height='15' viewBox='0 0 20 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 2L7 13L2 8' stroke='%232153CE' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") calc(100% - 15px) 15px no-repeat;
}
.checkbox-label {
  /*display: inline-flex;*/
  position: relative;
  cursor: pointer;
  min-height: 24px;
  padding-left: 22px;
}
.checkbox-label:before {
  content: "";
  width: 16px;
  height: 16px;
  left: 0;
  top: 3px;
  font-size: 14px;
  border-radius: 3px;
  text-align: center;
  line-height: 14px;
  font-weight: bold;
  position: absolute;
  border: 1px solid var(--color-back-text);
  background: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4.37383L1.71963 2.65421L3.68224 4.57944L8.28037 0L10 1.71963L3.68224 8L0 4.37383Z' fill='white'/%3E%3C/svg%3E%0A") 50% 50% no-repeat;
  color: #fff;
}
.checkbox-box {
  display: block;
  position: relative;
  border: 2px solid var(--color-back);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  background-color: #fff;
}
.checkbox-box__image {
  height: 90px;
  display: flex;
  border-bottom: 1px solid var(--color-back);
}
.checkbox-box__image img {
  display: block;
  margin: auto;
}
.checkbox-box__text {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-align: center;
  padding: 0 10px;
}
@media (max-width: 500px) {
  .checkbox-box__text {
    font-size: 12px;
    line-height: 14px;
  }
}
.checkbox-box-info {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: -13px;
}
.checkbox-box-info.show-popup .checkbox-box-info-popup {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 10px);
}
.checkbox-box-info.show-popup .checkbox-box-info-button {
  background-color: var(--color-green);
  color: #fff;
}
.checkbox-box-info-button {
  width: 26px;
  height: 26px;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  background-color: var(--color-back);
  transition: 0.2s;
}
.checkbox-box-info-button:hover {
  background-color: var(--color-green);
  color: #fff;
}
.checkbox-box-info-popup {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background-color: var(--color-green);
  color: #fff;
  padding: 15px;
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  left: 0;
  bottom: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.checkbox-box-info-popup:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: var(--color-green) transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -6px;
}
.checkbox-box-info-popup a {
  color: #fff;
  text-decoration: underline;
}

:root {
  --color-link: #0A5CA0;
  --color-link-hover: #3168c6;
  --color-text: #000;
  --color-back: #E9EDEF;
  --color-green: #27AE60;
  --color-back-text: #4b5c65;
  --color-red: #EB5757;
  --ff: "Rubik", Roboto, Arial, sans-serif;
  --color-bg: #f6f6f6;
}

body {
  height: 100vh;
  font-size: 14px;
  line-height: 24px;
  font-family: var(--ff);
  color: var(--color-text);
  font-weight: 400;
  cursor: default;
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.wrapper {
  min-width: 320px;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wrap {
  flex: 1 0 auto;
  position: relative;
}

.content {
  padding: 20px 0 80px;
}

.symbols {
  display: none;
}

.header {
  position: relative;
  background-color: #fff;
  z-index: 10;
}
.header-top {
  position: relative;
  border-bottom: 1px solid #E9EDEF;
}
.header-top-inner {
  display: flex;
  line-height: 20px;
  padding: 5px 0;
  position: relative;
}
.header-city {
  position: relative;
}
.header-city__title {
  font-size: 14px;
  cursor: pointer;
}
.header-cites {
  display: flex;
  margin-left: auto;
}
.header-cites-list {
  display: flex;
}
@media (max-width: 1023px) {
  .header-cites-list {
    position: absolute;
    right: 0;
    top: 90%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 5px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 3;
  }
  .header-cites-list.show-popup {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }
}
.header-cites-list li {
  margin-left: 30px;
  font-size: 14px;
  line-height: 16px;
  text-align: right;
}
@media (max-width: 1023px) {
  .header-cites-list li {
    text-align: left;
    padding: 10px 25px;
    margin-left: 0;
    line-height: 25px;
  }
}
.header-cites-button span {
  cursor: pointer;
  font-weight: 500;
  color: var(--color-link);
  border-bottom: 1px dashed currentColor;
}
.header-middle {
  padding: 20px 0;
  position: relative;
}
.header-middle-inner {
  display: flex;
  align-items: center;
  position: relative;
}
.header-middle-burger {
  border: none;
  padding: 7px;
  background-color: transparent;
  cursor: pointer;
  margin-left: auto;
}
.header-middle-burger svg {
  display: block;
  fill: none;
  stroke: var(--color-text);
  stroke-width: 1.5;
}
@media (min-width: 1024px) {
  .header-middle-menu {
    display: flex;
    margin-left: auto;
  }
}
@media (min-width: 1024px) {
  .header-middle-menu > li {
    margin-left: 30px;
    position: relative;
    z-index: 2;
  }
}
.header-middle-menu > li a {
  font-weight: 500;
  line-height: 20px;
  color: var(--color-text);
  display: block;
  white-space: nowrap;
  transition: 0.2s;
}
@media (max-width: 1023px) {
  .header-middle-menu > li a {
    padding: 5px 20px 5px 30px;
  }
}
@media (min-width: 1024px) {
  .header-middle-menu > li:hover ul {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
  }
}
.header-middle-menu > li > a {
  padding: 8px 0;
  font-size: 16px;
}
@media (max-width: 1023px) {
  .header-middle-menu > li > a {
    padding: 5px 20px;
  }
}
.header-middle-menu > li > a:hover, .header-middle-menu > li > a.active {
  color: var(--color-link);
}
@media (min-width: 1024px) {
  .header-middle-menu > li ul {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #fff;
    border-radius: 5px;
    min-width: 150px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
  }
  .header-middle-menu > li ul a {
    font-size: 14px;
    padding: 8px 20px;
  }
  .header-middle-menu > li ul a:hover {
    background-color: var(--color-back);
  }
  .header-middle-menu > li ul a.active {
    background-color: var(--color-link);
    color: #fff;
  }
}
@media (max-width: 1023px) {
  .header-middle-menu {
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 200px;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
    z-index: 2;
  }
  .header-middle-menu.show-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header-bottom {
  position: relative;
  height: 74px;
}
.header-bottom.sticky .header-bottom-wrap {
  position: fixed;
}
.header-bottom.sticky .logotype-image--bar {
  width: 50px;
  transform: translateX(0);
}
.header-bottom-inner {
  display: flex;
  align-items: center;
  padding: 15px 0;
  position: relative;
}
.header-bottom-wrap {
  background-color: var(--color-back);
  width: 100%;
  top: 0;
  position: relative;
}

.logotype {
  display: block;
  color: var(--color-text);
  width: 230px;
}
@media (max-width: 500px) {
  .logotype {
    width: 200px;
  }
}
.logotype-image {
  flex-shrink: 0;
}
.logotype-image--bar {
  transition: 0.2s;
  width: 0;
  transform: translateX(-100%);
  overflow: hidden;
}
.logotype-image--bar img {
  width: 30px;
}
.logotype-title {
  font-size: 13px;
  line-height: 16px;
  text-transform: uppercase;
  margin-left: 15px;
  white-space: nowrap;
}
.logotype-title--footer {
  color: var(--color-back-text);
}
.logotype-title span {
  display: block;
  font-weight: 500;
  font-size: 26px;
  line-height: 28px;
}
.logotype-text {
  font-size: 12px;
  line-height: 16px;
  width: 100%;
  max-width: 230px;
  margin-left: 20px;
}
.logotype-text--footer {
  max-width: 370px;
  line-height: 20px;
}
.logotype-text--footer br {
  display: none;
}

.catalog-menu-wrap {
  width: 230px;
  margin-right: 20px;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 767px) {
  .catalog-menu-wrap {
    width: auto;
  }
  .catalog-menu-wrap .btn {
    min-width: auto;
  }
}
.catalog-menu-button span {
  margin-left: 5px;
}
.catalog-slider .element {
  margin-bottom: 0;
}

.search-wrap {
  position: relative;
  width: 100%;
  max-width: 608px;
  min-width: 0;
}
@media (max-width: 767px) {
  .search-wrap {
    position: absolute;
    left: 0;
    top: 100%;
    padding: 5px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    display: none;
    z-index: 2;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .search-wrap.show-popup {
    display: block;
  }
}
.search-button {
  width: 30px;
  height: 30px;
  display: flex;
  border: none;
  cursor: pointer;
  right: 7px;
  top: 7px;
  position: absolute;
  background-color: #fff;
}
@media (max-width: 767px) {
  .search-button {
    right: 25px;
    top: 11px;
  }
}
.search-button svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-back-text);
  stroke-width: 1.5;
  fill: none;
  margin: auto;
}

.user-panel {
  display: flex;
  margin-left: auto;
}
.user-panel-column {
  display: flex;
  margin-left: 25px;
  position: relative;
}
@media (max-width: 767px) {
  .user-panel-column {
    margin-left: 0;
  }
}
@media (max-width: 1023px) {
  .user-panel-column {
    position: static;
  }
}
.user-panel-item {
  display: flex;
  align-items: center;
  color: var(--color-text);
  padding: 5px 0;
  cursor: pointer;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .user-panel-item {
    padding: 10px;
  }
}
.user-panel-item:hover {
  color: var(--color-link);
}
.user-panel-item__icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-text);
  stroke-width: 1.5;
  fill: none;
}
.user-panel-item__count {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--color-link);
  color: #fff;
  line-height: 18px;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  flex-shrink: 0;
  margin-left: -5px;
}
.user-panel-item__text {
  font-size: 16px;
  line-height: 20px;
  margin-left: 7px;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .user-panel-item__text {
    display: none;
  }
}
@media (max-width: 1023px) {
  .user-modal {
    width: 100vw !important;
  }
}

.notify {
  position: fixed;
  width: 100%;
  max-width: 300px;
  right: 0;
  top: 20px;
  transition: right 0.3s;
  display: none;
  z-index: 1000;
}
.notify-text {
  position: relative;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: var(--color-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.notify:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
.notify.is-show {
  right: 20px;
}

.subscribe {
  background-color: var(--color-back);
  padding: 25px 0;
}
.subscribe-inner {
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .subscribe-inner {
    flex-direction: column;
  }
}
.subscribe-title {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  max-width: 440px;
  width: 100%;
  margin-right: 30px;
}
.subscribe-title svg {
  width: 44px;
  height: 42px;
  stroke: var(--color-link);
  stroke-width: 3;
  fill: none;
  margin-right: 35px;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .subscribe-title {
    margin: 0 0 20px;
  }
}
@media (max-width: 500px) {
  .subscribe-title {
    font-size: 14px;
    line-height: 20px;
  }
  .subscribe-title svg {
    margin-right: 15px;
  }
}
.subscribe-form {
  width: 100%;
  max-width: 580px;
  margin-left: auto;
  display: flex;
}
@media (max-width: 1023px) {
  .subscribe-form {
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .subscribe-form {
    flex-direction: column;
  }
}
.subscribe-form--button {
  margin-left: 20px;
}
@media (max-width: 500px) {
  .subscribe-form--button {
    margin: 10px 0 0;
  }
}

.footer {
  flex: 0 0 auto;
  position: relative;
  background-color: #1B1D1F;
  color: #7A909B;
}
.footer-inner {
  position: relative;
}
.footer-top {
  padding: 50px 0 20px;
}
.footer-column {
  margin-bottom: 30px;
  flex-grow: 1;
}
.footer-column__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 15px;
  color: #fff;
  white-space: nowrap;
}
.footer-column__list li {
  margin-top: 5px;
  line-height: 24px;
  font-weight: 500;
  white-space: nowrap;
}
.footer-column__list li a {
  color: #7A909B;
  transition: color 0.2s;
}
.footer-column__list li a:hover {
  color: #fff;
}
.footer-column__address {
  line-height: 22px;
  max-width: 260px;
}
.footer-column__address a {
  color: #7A909B;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-column__address a:hover {
  color: #fff;
}
.footer-middle {
  border-top: 1px solid rgba(122, 144, 155, 0.3);
  padding: 25px 0;
  display: flex;
  align-items: center;
}
.footer-middle-right {
  margin-left: auto;
}
@media (max-width: 1023px) {
  .footer-middle-right {
    margin-right: auto;
  }
}
.footer-bottom {
  border-top: 1px solid rgba(122, 144, 155, 0.3);
  padding: 20px 0;
}
.footer-policy {
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}
.footer-policy a {
  text-decoration: underline;
  color: #7A909B;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #fff;
}

.social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.social-title {
  font-size: 14px;
  line-height: 24px;
  color: var(--color-back-text);
  white-space: nowrap;
}
.social-item {
  display: flex;
  margin-left: 10px;
}
.social-item:hover svg {
  fill: #fff;
}
.social-item svg {
  width: 22px;
  height: 22px;
  fill: var(--color-back-text);
  transition: fill 0.2s;
}

.breadcrumbs {
  display: flex;
  overflow: hidden;
  margin-bottom: 15px;
}
.breadcrumbs li {
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
}
.breadcrumbs li a:not(:hover) {
  text-decoration: underline;
  color: var(--color-text);
}
.breadcrumbs li:not(:first-child):before {
  content: "/";
  margin: 0 5px;
}

.menu {
  width: 280px;
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  max-height: calc(100vh - 80px);
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.menu.left-sidebar-menu {
  left: 0;
}
.menu::-webkit-scrollbar {
  width: 10px;
  cursor: pointer;
}
.menu::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: var(--color-back);
}
.menu::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--color-link);
}
.menu > li:not(:first-child) {
  border-top: 1px solid var(--color-back);
}
.menu > li.current {
  background-color: var(--color-back);
}
@media (min-width: 1024px) {
  .menu > li:hover {
    background-color: var(--color-back);
  }
  .menu > li:hover > ul {
    display: flex;
  }
}
.menu > li a {
  display: block;
  line-height: 18px;
  color: var(--color-back-text);
  transition: color 0.2s;
}
.menu > li a:hover {
  color: var(--color-text);
}
.menu > li > a {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text);
  padding: 10px 20px;
  white-space: nowrap;
}
@media (max-width: 500px) {
  .menu > li > a {
    padding: 5px 20px;
  }
}
.menu-column {
  width: 33.33%;
  margin-bottom: 20px;
  padding: 0 10px;
}
.menu-column > li {
  margin-bottom: 20px;
}
.menu-column > li > a {
  font-weight: 500;
  color: var(--color-text);
}
.menu-column > li > a:hover {
  color: var(--color-link);
}
.menu-column > li > ul {
  margin-top: 10px;
}
.menu-column > li > ul li {
  margin-top: 10px;
}
.menu-sub {
  padding-left: 20px;
  position: relative;
}
.menu-sub:before {
  content: "";
  width: 1px;
  left: 5px;
  top: 10px;
  bottom: 5px;
  background-color: var(--color-back);
  position: absolute;
}
.menu-sub > ul {
  display: none;
}
.menu-collapse {
  position: absolute;
  left: 0;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: var(--color-link);
  color: #fff;
  cursor: pointer;
  text-align: center;
  line-height: 12px;
  font-weight: 500;
}
.menu-collapse:before {
  content: "+";
}
.menu-collapse.isCollapse:before {
  content: "-";
}
.menu-modal {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 2;
}
.menu-modal.show-popup {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.menu-modal.show-popup:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
.menu-modal-inner {
  position: relative;
}
.menu-modal-form {
  background-color: #fff;
  padding: 20px 25px;
  position: relative;
  border-radius: 5px;
  width: 290px;
}

.submenu {
  position: absolute;
  left: 280px;
  top: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  border-radius: 0 5px 5px 0;
  flex-wrap: wrap;
  align-content: flex-start;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: none;
}
.submenu.current {
  display: block;
}
@media (max-width: 1023px) {
  .submenu.current {
    display: none;
  }
}
.submenu > ul {
  display: flex;
}
.submenu::-webkit-scrollbar {
  width: 10px;
  cursor: pointer;
}
.submenu::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: var(--color-back);
}
.submenu::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: var(--color-link);
}

.showcase {
  margin-bottom: 50px;
}
.showcase-slider {
  margin-bottom: 20px;
}
.showcase-slider .owl-dots {
  position: absolute;
  left: 50px;
  width: auto;
  bottom: 40px;
}
.showcase-slider .owl-dots .owl-dot:not(.active) {
  background-color: #fff;
}
.showcase-slide {
  position: relative;
  background: 50% 50% no-repeat;
  background-size: cover;
  height: 440px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .showcase-slide {
    height: 320px;
  }
}
.showcase-slide:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.15);
}
.showcase-slide-content {
  position: relative;
  padding: 50px;
  max-width: 590px;
}
.showcase-slide-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
}
@media (max-width: 767px) {
  .showcase-slide-title {
    font-size: 16px;
    line-height: 24px;
  }
}
.showcase-slide-button {
  margin-top: 30px;
}

.action-item {
  position: relative;
  margin-bottom: 20px;
  border-radius: 5px;
  height: 210px;
  display: flex;
  align-items: center;
  padding: 20px 30px 20px 20px;
}
.action-item--green {
  background-color: #51DDD6;
}
.action-item--blue {
  background-color: #AAD2F3;
}
.action-item__content {
  font-size: 14px;
  line-height: 22px;
}
.action-item__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 25px;
  overflow: hidden;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
}

.advantages-item {
  margin-top: 30px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-text);
}
.advantages-item__image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  margin-right: 20px;
}
.advantages-item__text {
  font-size: 16px;
  line-height: 26px;
}

.head {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.head--min {
  margin-bottom: 20px;
}
.head--min .head-title {
  font-size: 22px;
}
.head.center {
  justify-content: center;
}
.head-title {
  font-weight: 500;
  font-size: 26px;
  line-height: 30px;
}
.head-left {
  margin-left: auto;
}
.head-link {
  margin: 4px 0 0 20px;
}
.head-link a:not(:hover) {
  text-decoration: underline;
}

.category-item {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-back);
  border-radius: 5px;
  margin-bottom: 20px;
  min-height: calc(100% - 20px);
  padding: 15px;
  text-align: center;
  background-color: #fff;
  color: var(--color-text);
  transition: 0.2s;
}
.category-item:hover {
  border-color: var(--color-link);
  transform: translateY(-5px);
  color: var(--color-link);
}
.category-item:hover .category-item__text {
  text-decoration: none;
}
.category-item__image {
  margin-bottom: 15px;
  height: 100px;
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
.category-item__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}
.category-item--sub .category-item__image {
  height: 160px;
}
@media (min-width: 768px) {
  .category-header {
    display: flex;
    align-items: self-start;
  }
}
.category-header__image {
  width: 200px;
  flex-shrink: 0;
  margin-right: 30px;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .category-header__image {
    margin: 0 0 20px;
    width: 150px;
  }
}
.category-header__content {
  width: 100%;
}

.element {
  position: relative;
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid var(--color-back);
  border-radius: 5px;
  padding: 10px 19px 5px;
}
@media (min-width: 1024px) {
  .element:hover {
    z-index: 2;
    border-color: var(--color-link);
    border-radius: 5px 5px 0 0;
  }
  .element:hover .element-footer {
    border-color: var(--color-link);
    display: block;
  }
  .element:hover .element-favorite {
    display: block;
  }
}
.element-favorite {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: #fff;
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  display: none;
  z-index: 1;
}
@media (max-width: 1023px) {
  .element-favorite {
    display: block;
  }
}
.element-favorite.active {
  display: block;
}
.element-favorite.active svg {
  fill: var(--color-link);
  stroke: var(--color-link);
}
.element-favorite:hover svg {
  stroke: var(--color-link);
}
.element-favorite svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 1.5;
  stroke: var(--color-back-text);
}
.element-favorite--card {
  display: block;
  right: 25px;
  top: 20px;
  width: 32px;
  height: 32px;
}
.element-favorite--card svg {
  width: 22px;
  height: 22px;
}
.element-image {
  position: relative;
  margin-bottom: 10px;
}
.element-image-link {
  display: flex;
  height: 160px;
}
.element-image-link img {
  display: block;
  margin: auto;
  max-height: 100%;
}
.element-article {
  font-size: 12px;
  line-height: 20px;
  color: var(--color-back-text);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.element-name {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  height: 60px;
}
@media (max-width: 500px) {
  .element-name {
    font-size: 12px;
    line-height: 16px;
    height: 48px;
  }
}
.element-name a {
  display: block;
  height: 60px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}
.element-name a:hover {
  text-decoration: underline;
  padding-bottom: 10px;
  height: auto;
}
.element-price {
  display: flex;
  font-size: 18px;
  line-height: 22px;
  white-space: nowrap;
  margin: 20px 0 15px;
}
.element-price--card {
  font-size: 22px;
  font-weight: 500;
}
.element-info {
  border-top: 1px solid var(--color-back);
  padding-top: 10px;
  margin-bottom: 10px;
}
.element-info--card {
  border-top: none;
  padding-top: 0;
}
.element-info--basket {
  margin-top: 10px;
  max-width: 170px;
}
.element-info li {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-back-text);
  font-weight: 500;
}
.element-footer {
  position: absolute;
  left: -1px;
  right: -1px;
  top: 100%;
  border: 1px solid var(--color-back);
  border-top: none;
  border-radius: 0 0 5px 5px;
  padding: 0 19px 15px;
  margin-top: -1px;
  background-color: #fff;
  display: none;
}
.element-quantity {
  border-top: 1px solid var(--color-back);
  padding-top: 15px;
}
.element-quantity--card {
  border-top: none;
}
@media (min-width: 768px) {
  .element.list {
    display: flex;
    padding: 15px;
    align-items: center;
  }
  .element.list .element-image {
    margin: 0 20px 0 0;
    flex-shrink: 0;
  }
  .element.list .element-price {
    margin-bottom: 0;
  }
  .element.list .element-content {
    width: 100%;
    padding-right: 20px;
  }
  .element.list .element-bottom {
    flex-shrink: 0;
    width: 220px;
  }
  .element.list .element-footer {
    position: static;
    display: block;
    border: none;
    padding: 0;
  }
  .element.list .element-info {
    padding: 20px 0;
    margin: 0;
    border: none;
  }
}

.quantity {
  display: flex;
  max-width: 220px;
}
.quantity-form {
  display: flex;
  width: 100%;
  height: 40px;
  padding-right: 5px;
  margin-right: -5px;
  border-radius: 5px;
  border: 1px solid var(--color-back-text);
}
.quantity-form--single {
  padding-right: 0;
  margin-right: 0;
  max-width: 100px;
}
.quantity-form__input {
  width: 100%;
  border: none;
  background-color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
.quantity-form__button {
  display: flex;
  width: 26px;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  background-color: #fff;
  border-radius: 5px;
  transition: 0.2s;
}
.quantity-form__button:hover {
  background-color: var(--color-back);
}
.quantity-form__button svg {
  display: block;
  margin: auto;
  width: 12px;
  height: 12px;
  stroke: var(--color-back-text);
  stroke-width: 1.5;
}

.news-slider .news-item {
  margin-bottom: 0;
}
.news-item {
  position: relative;
  margin-bottom: 30px;
}
.news-item__image {
  position: relative;
  padding-bottom: 56%;
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 5px;
}
.news-item__image img {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}
.news-item__date {
  color: var(--color-back-text);
  font-size: 14px;
  line-height: 20px;
}
.news-item__title {
  font-weight: 500;
  font-size: 16px;
  margin: 10px 0;
}
.news-item__title a {
  display: block;
}
.news-item__title a:hover {
  text-decoration: underline;
}
.news-item__text {
  line-height: 22px;
}
.news-page {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}
.news-page-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  line-height: 20px;
}
.news-page-return {
  display: flex;
  align-items: center;
}
.news-page-return svg {
  fill: none;
  stroke: var(--color-link);
  margin-right: 5px;
}
.news-page p {
  margin-bottom: 5px;
}
.news-page table {
  border-color: var(--color-back);
  border-style: solid;
  background-color: #fff;
}
.news-page table td {
  padding: 10px;
}
.news-page ul {
  list-style: disc;
  list-style-position: inside;
}
.news-page img[hspace] {
  margin-right: 20px;
}

.hr {
  height: 1px;
  background-color: var(--color-back);
}

.information {
  background-color: var(--color-back);
  padding: 20px 25px;
  margin-bottom: 50px;
  border-radius: 5px;
  min-height: 200px;
}
.information-header {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.information-link {
  display: flex;
  text-decoration: underline;
  margin-right: 30px;
  margin-bottom: 10px;
  line-height: 20px;
}
.information-link svg {
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 5px;
  fill: none;
  stroke: var(--color-link);
  stroke-width: 1.5;
}

.tabs-list {
  display: flex;
  margin-bottom: 15px;
  overflow-x: auto;
  position: relative;
}
.tabs-list:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #C4C4C4;
}
.tabs-list li {
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--color-back-text);
  font-weight: 500;
  cursor: pointer;
  padding-bottom: 7px;
  border-bottom: 1px solid #C4C4C4;
  user-select: none;
  white-space: nowrap;
  position: relative;
}
.tabs-list li:not(:first-child) {
  margin-left: 30px;
}
.tabs-list li.active {
  color: var(--color-text);
  border-bottom-color: var(--color-text);
}

.cut-text {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
  position: relative;
}
.cut-text:not(.is-show) {
  height: 80px;
  overflow: hidden;
}
.cut-text:not(.is-show):after {
  content: "";
  width: 100%;
  height: 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(233, 237, 239, 0) 0%, rgba(233, 237, 239, 0.5) 50%, #E9EDEF 100%);
}
.cut-text p {
  margin-bottom: 5px;
}
.cut-link {
  font-weight: 500;
  font-size: 12px;
  text-decoration: underline;
}

.sort-wrap {
  display: flex;
  border-radius: 5px;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .sort-wrap {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }
}
.sort-wrap .pagination {
  padding-top: 0;
  margin-right: 20px;
}
@media (max-width: 1023px) {
  .sort-wrap .pagination {
    margin: 0 0 20px;
  }
}
.sort-list {
  display: flex;
  margin-right: 20px;
}
@media (max-width: 1023px) {
  .sort-list {
    margin: 0 0 15px;
  }
}
.sort-list > li {
  white-space: nowrap;
  margin-right: 5px;
  line-height: 16px;
  position: relative;
  display: flex;
  align-items: center;
}
.sort-list__title {
  font-weight: 500;
  color: var(--color-link);
  border-bottom: 1px dashed var(--color-link);
  cursor: pointer;
  position: relative;
  margin-right: 5px;
}
.sort-list__title svg {
  width: 9px;
  height: 9px;
  position: absolute;
  right: -13px;
  top: 3px;
  stroke: var(--color-link);
  stroke-width: 1.5;
  fill: none;
}
.sort-list__link {
  font-size: 12px;
  display: block;
  padding: 2px;
  min-width: 20px;
  text-align: center;
  color: var(--color-text);
  font-weight: 500;
}
.sort-list__link.active {
  background-color: var(--color-link);
  color: #fff;
  border-radius: 3px;
}
.sort-list-popup {
  position: absolute;
  left: 0;
  top: 100%;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: 0.2s;
  z-index: 3;
}
@media (max-width: 500px) {
  .sort-list-popup {
    right: 0;
    left: auto;
  }
}
.sort-list-popup.show-popup {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 10px);
}
.sort-list-popup a {
  display: block;
  white-space: nowrap;
  font-size: 14px;
  padding: 8px 20px;
  font-weight: 500;
  line-height: 20px;
  color: var(--color-text);
}
.sort-list-popup a:hover {
  background-color: var(--color-back);
}
.sort-list-popup a.active {
  background-color: var(--color-link);
  color: #fff;
}

.view-list {
  display: flex;
  margin-left: auto;
}
@media (max-width: 767px) {
  .view-list {
    margin-right: auto;
  }
}
.view-list__link {
  display: block;
  padding: 6px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  margin-left: 5px;
  border-radius: 3px;
  fill: var(--color-back-text);
}
.view-list__link.active {
  background-color: var(--color-link);
  fill: #fff;
}
.view-list__link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}
.pagination-item {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--color-text);
  background-color: #fff;
}
.pagination-item--arrow {
  background-color: var(--color-back);
}
.pagination-item:hover {
  background-color: var(--color-back);
}
.pagination-item.current {
  background-color: var(--color-link);
  color: #fff;
}
.pagination-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-text);
  stroke-width: 1.5;
  fill: none;
}

.download-list li {
  display: flex;
  line-height: 18px;
}
.download-list li:not(:last-child) {
  margin-bottom: 10px;
}
.download-list li a {
  text-decoration: underline;
}
.download-list li svg {
  width: 16px;
  height: 16px;
  display: block;
  margin: 0 5px 0 0;
  fill: none;
  stroke: var(--color-link);
  stroke-width: 1.5;
  flex-shrink: 0;
}

.download-pdf {
  display: flex;
  align-items: center;
}
.download-pdf svg {
  margin-right: 10px;
}

.video-list li {
  display: flex;
  line-height: 18px;
}
.video-list li:not(:last-child) {
  margin-bottom: 10px;
}
.video-list li a {
  text-decoration: underline;
}
.video-list li svg {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  flex-shrink: 0;
  fill: #FF0000;
}

.card-wrap {
  padding-top: 20px;
}
@media (min-width: 1024px) {
  .card-wrap {
    display: flex;
    align-items: flex-start;
  }
}
.card-buy {
  border: 2px solid var(--color-back);
  border-radius: 5px;
  padding: 25px 30px;
  position: relative;
  background-color: #fff;
  margin-left: auto;
}
@media (min-width: 501px) {
  .card-buy {
    flex-shrink: 0;
    width: 280px;
  }
}
.card-info {
  font-size: 13px;
  line-height: 16px;
  margin-top: 25px;
  color: var(--color-back-text);
}
.card-info p {
  margin-top: 10px;
}
.card-image {
  position: relative;
  border: 2px solid var(--color-back);
  border-radius: 5px;
  padding: 10px;
  background-color: #fff;
  text-align: center;
}
@media (min-width: 501px) {
  .card-image {
    width: 300px;
    flex-shrink: 0;
  }
}
.card-params {
  width: 100%;
  padding: 0 40px;
}
@media (max-width: 1023px) {
  .card-params {
    padding: 0;
    margin: 30px 0;
  }
}

.params li {
  position: relative;
  margin-bottom: 8px;
}
@media (min-width: 501px) {
  .params li {
    display: flex;
    align-items: flex-start;
  }
}
.params li span {
  display: block;
}
.params li span:first-child {
  color: var(--color-back-text);
}
@media (min-width: 501px) {
  .params li span:first-child {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    white-space: nowrap;
  }
  .params li span:first-child:after {
    content: "";
    width: 100%;
    border-bottom: 1px dotted currentColor;
    display: block;
    position: relative;
    top: -8px;
  }
}
@media (min-width: 501px) {
  .params li span:last-child {
    padding-left: 5px;
  }
}

.order-information {
  margin-top: 60px;
}
.order-information-content {
  font-size: 16px;
}
.order-information-content h1 {
  margin-bottom: 20px;
}
.order-info {
  background-color: var(--color-back);
  padding: 30px;
  border-radius: 5px;
}
.order-info-list {
  margin-bottom: 30px;
}
.order-info-list li {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 10px;
}
.order-info-list li b, .order-info-list li strong {
  font-weight: 500;
}
.order-login {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid var(--color-back);
  margin-bottom: 30px;
  padding: 15px 20px;
}
.order-login-column {
  margin: 5px 10px;
}
.order-item:not(:last-child) {
  padding-bottom: 40px;
}
.order-table {
  width: 100%;
  font-size: 14px;
  line-height: 22px;
}
@media (max-width: 500px) {
  .order-table tbody {
    display: block;
  }
}
.order-table-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-back-text);
}
.order-table th {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: left;
  padding: 0 20px 10px 0;
}
@media (max-width: 500px) {
  .order-table th {
    display: none;
  }
}
.order-table td {
  padding: 15px 20px 15px 0;
  vertical-align: middle;
  padding: 15px 20px 15px 0;
}
.order-table td:nth-child(n+2) {
  width: 12%;
  white-space: nowrap;
}
.order-table td:last-child {
  padding-right: 0;
}
.order-table-total {
  border-top: 1px solid var(--color-text);
  font-weight: 500;
}
.order-table-total td {
  padding-bottom: 0;
}
@media (min-width: 501px) {
  .order-table-item:first-child td {
    border-top: 1px solid var(--color-text);
  }
  .order-table-item td {
    border-top: 1px solid rgba(68, 81, 88, 0.5);
  }
}
@media (max-width: 500px) {
  .order-table-item {
    display: block;
  }
  .order-table-item:not(:first-child) {
    border-top: 1px solid var(--color-back-text);
    padding-top: 10px;
  }
  .order-table-item td {
    display: block;
    padding: 0 0 10px;
  }
}

@media (min-width: 1201px) {
  .layout {
    display: flex;
    margin: 0 -10px;
  }
}
.layout-content {
  width: 100%;
  min-width: 0;
  margin: 0 10px;
}
@media (max-width: 1200px) {
  .layout-content {
    margin: 0;
  }
}
.layout-sidebar {
  width: 300px;
  flex-shrink: 0;
  margin: 0 10px;
}
@media (max-width: 1200px) {
  .layout-sidebar {
    margin: 30px auto 0;
  }
}
@media (max-width: 500px) {
  .layout-sidebar {
    width: 100%;
  }
}

.basket {
  width: 100%;
  border: 2px solid var(--color-back);
  border-radius: 5px;
  margin-bottom: 30px;
}
.basket-availability {
  margin-top: 10px;
}
.basket td {
  padding: 20px 0 20px 20px;
  vertical-align: middle;
}
.basket td:last-child {
  padding-right: 20px;
}
.basket tr {
  background-color: #fff;
}
.basket tr:not(:first-child) {
  border-top: 2px solid var(--color-back);
}
.basket-image {
  width: 100px;
}
.basket-name {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  max-width: 260px;
}
@media (max-width: 500px) {
  .basket-name {
    font-size: 14px;
    line-height: 20px;
  }
}
.basket-article {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
  color: var(--color-back-text);
}
.basket-title {
  font-size: 12px;
  color: var(--color-back-text);
}
.basket-price {
  height: 40px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
}
.basket-del {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 20px;
  height: 20px;
}
.basket-del svg {
  margin: auto;
  fill: none;
  stroke: var(--color-red);
  stroke-width: 2;
}
@media (max-width: 1023px) {
  .basket-del {
    position: absolute;
    right: 10px;
    top: 10px;
  }
}
.basket-selected {
  margin: 0 0 10px 22px;
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  .basket-selected {
    margin-left: 12px;
  }
}
.basket-selected-check {
  width: 25px;
  height: 25px;
}
@media (max-width: 1023px) {
  .basket-selected-check {
    position: absolute;
    left: 10px;
    top: 10px;
  }
}
.basket-selected li {
  margin-right: 20px;
}
@media (max-width: 1023px) {
  .basket tr {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 20px 10px;
    position: relative;
  }
  .basket td {
    padding: 0;
  }
  .basket td:nth-child(3) {
    width: calc(100% - 100px);
    padding-left: 15px;
  }
  .basket td:last-child {
    padding: 0;
  }
  .basket td:nth-child(4), .basket td:nth-child(5), .basket td:nth-child(6) {
    padding: 10px 20px 0 0;
  }
}
.basket-empty {
  text-align: center;
  margin-top: 50px;
}

.map {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--color-back);
  pointer-events: all;
}
@media (max-width: 1023px) {
  .map {
    position: relative;
    height: 400px;
  }
}

.contact {
  padding: 30px 0;
}
@media (min-width: 1024px) {
  .contact {
    padding: 30px 0 100px;
    pointer-events: none;
  }
}
.contact-item {
  padding: 15px 30px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  border: none;
  cursor: pointer;
  pointer-events: all;
  margin: 0 10px 10px;
  font-weight: 500;
}
@media (max-width: 500px) {
  .contact-item {
    width: 100%;
    margin: 5px 0;
  }
}
.contact-item.active {
  background-color: var(--color-link);
  color: #fff;
  box-shadow: none;
}
.contact-item-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 1;
}
.contact-pane {
  margin-top: 60px;
  min-height: 600px;
}
.contact-info {
  border-top: 4px solid var(--color-link);
  max-width: 480px;
  background: #FFFFFF;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  pointer-events: all;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contact-info-row {
  padding: 25px 30px;
  display: flex;
  min-width: 0;
}
@media (max-width: 767px) {
  .contact-info-row {
    flex-direction: column;
  }
}
.contact-info-row:not(:last-child) {
  border-bottom: 1px solid var(--color-back);
}
.contact-info-icon {
  width: 30px;
  margin: 5px 30px 10px 0;
  flex-shrink: 0;
}
.contact-info-icon svg {
  fill: none;
  stroke: var(--color-text);
  stroke-width: 2;
  display: block;
  margin: 0 auto;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-content {
  width: 100%;
  position: relative;
}

.about-head {
  background: url(../img/about-back.jpg) 50% 50% no-repeat;
  background-size: cover;
  position: relative;
  padding: 100px 20px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 50px;
}
.about-head:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.about-head-text {
  position: relative;
  font-weight: 500;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 36px;
}
@media (max-width: 500px) {
  .about-head-text {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (min-width: 768px) {
  .about-text {
    font-size: 18px;
    line-height: 30px;
  }
}
.about-text p {
  margin-bottom: 20px;
}

.certificate-slide {
  display: flex;
  border: 1px solid var(--color-back);
  border-radius: 5px;
  min-height: 100%;
  padding: 15px;
  background-color: #fff;
  transition: 0.2s;
}
.certificate-slide:hover {
  transform: translateY(-5px);
  border-color: var(--color-link);
}
.certificate-slide img {
  display: block;
  margin: auto;
}

.job-item {
  margin-bottom: 50px;
}
.job-item-row {
  margin-bottom: 20px;
}
.job-item-row ul {
  list-style: disc;
  list-style-position: inside;
}

.step {
  margin-bottom: 25px;
  background-color: #d7e5ef;
  padding: 50px;
  border-radius: 5px;
  min-height: calc(100% - 25px);
}
.step-icon {
  margin-bottom: 20px;
  width: 45px;
  height: 45px;
  display: block;
  fill: none;
  stroke: var(--color-text);
  stroke-width: 1;
}
.step-image {
  height: 45px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.step-image img {
  max-height: 45px;
}
.step-text {
  margin-top: 10px;
  font-size: 1.1em;
}
.step-text p:not(:last-child) {
  margin-bottom: 5px;
}
.step-text ul {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 10px;
}
.step-title {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 18px;
}

@media (min-width: 1024px) {
  .partner {
    display: flex;
  }
}
.partner-sidebar {
  width: 230px;
  flex-shrink: 0;
  margin: 0 40px 30px 0;
  display: flex;
  flex-direction: column;
}
.partner-image {
  margin-bottom: 10px;
  border: 1px solid var(--color-back);
  display: flex;
  padding: 10px;
}
.partner-image img {
  display: block;
  margin: auto;
}
.partner-return {
  padding-top: 30px;
  margin-top: auto;
}
.partner-content {
  width: 100%;
  min-width: 0;
}
.partner-content p:not(:last-child) {
  margin-bottom: 5px;
}
.partner-content ul {
  list-style: disc;
  list-style-position: inside;
  margin-bottom: 10px;
}

.faq-item:not(:last-child) {
  margin-bottom: 20px;
}
.faq-title {
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
  background-color: #AAD2F3;
  padding: 20px 60px 20px 30px;
  position: relative;
  cursor: pointer;
}
.faq-title svg {
  position: absolute;
  right: 30px;
  top: 25px;
  fill: none;
  stroke-width: 2;
  stroke: var(--color-back-text);
  transform: rotate(90deg);
}
.faq-content {
  padding: 20px 30px 0;
  display: none;
}

.form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 5px;
}
.form--order {
  max-width: 500px;
}
.form--full {
  max-width: none;
}

.upper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-link);
  display: flex;
  border: none;
  position: fixed;
  left: 30px;
  bottom: 40px;
  cursor: pointer;
  z-index: 100;
  transition: 0.2s;
}
.upper svg {
  margin: auto;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
}
.upper.up {
  transform: rotate(-180deg);
}

.question {
  display: flex;
  align-items: center;
}
.question-text {
  white-space: nowrap;
  font-weight: 500;
  color: var(--color-back-text);
}
.question-button {
  position: relative;
  margin-left: 7px;
}
.question-button:hover .question-popup {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 10px);
}
.question-icon {
  width: 22px;
  height: 22px;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: var(--color-green);
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--color-green);
  transition: 0.2s;
}
.question-popup {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background-color: var(--color-green);
  color: #fff;
  padding: 15px;
  position: absolute;
  width: 260px;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.question-popup:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: var(--color-green) transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  margin-left: -6px;
}
.question-popup.show-popup {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 10px);
}

.timeline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  position: relative;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  background-color: var(--color-back);
  height: 2px;
  width: 100%;
}
.timeline-step {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
  white-space: nowrap;
  background-color: var(--color-bg);
  background-color: var(--color-back);
  padding: 3px 15px;
  border-radius: 3px;
}
.timeline-step.complete {
  background-color: var(--color-green);
  color: #fff;
}
.timeline-step.current {
  background-color: var(--color-link);
  color: #fff;
}

.sidebar-menu {
  border-radius: 5px;
  background-color: #fff;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1), 0 5px 20px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .sidebar-menu {
    max-width: 260px;
  }
}
.sidebar-menu li:not(:first-child) {
  border-top: 1px solid var(--color-back);
}
.sidebar-menu li a {
  display: block;
  padding: 15px 20px;
  color: var(--color-text);
  position: relative;
  border-left: 2px solid transparent;
  font-size: 16px;
  transition: 0.2s;
}
.sidebar-menu li a:hover {
  background-color: #F6F6F6;
}
.sidebar-menu li a.active {
  border-left-color: var(--color-link);
  background-color: #F6F6F6;
}

.history-table {
  width: 100%;
  margin-top: 30px;
}
.history-table th {
  background-color: var(--color-back);
  padding: 10px 20px 10px 0;
  text-align: center;
  font-weight: 500;
}
.history-table td {
  vertical-align: middle;
  background-color: #fff;
  text-align: center;
  padding: 10px 20px 10px 0;
  border-top: 1px solid var(--color-back);
}
.history-table td a {
  text-decoration: underline;
}
.history-table th:first-child,
.history-table td:first-child {
  text-align: left;
  padding-left: 20px;
}
.history-table-sort {
  width: 14px;
  height: 14px;
  background-color: #95989e;
  border-radius: 50%;
  display: inline-flex;
  margin-left: 2px;
}
.history-table-sort.active {
  background-color: var(--color-link);
}
.history-table-sort svg {
  fill: #fff;
  margin: auto;
}

.history-list {
  display: flex;
  border-bottom: 1px solid #C4C4C4;
  margin-bottom: 20px;
}
.history-list li {
  margin: 0 20px 15px 0;
}
.history-list li a {
  display: flex;
  color: var(--color-back-text);
  font-weight: bold;
  opacity: 0.6;
  font-size: 20px;
}
.history-list li a span {
  font-weight: normal;
  font-size: 14px;
  margin: -5px 0 0 5px;
}
.history-list li a.active {
  color: var(--color-text);
  opacity: 1;
}

.profile {
  border-radius: 5px;
  background-color: #fff;
  padding: 20px 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  min-height: calc(100% - 20px);
}
.profile-title {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}
.profile-edit {
  margin-top: auto;
}
.profile.current {
  box-shadow: 0 0 0 2px var(--color-link);
}

@media (max-width: 1340px) {
  .container {
    max-width: 1200px;
  }

  .xl-col-1 {
    width: 8.33333333%;
  }

  .xl-col-2 {
    width: 16.66666666%;
  }

  .xl-col-3 {
    width: 24.99999999%;
  }

  .xl-col-4 {
    width: 33.33333332%;
  }

  .xl-col-5 {
    width: 41.66666665%;
  }

  .xl-col-6 {
    width: 49.99999998%;
  }

  .xl-col-7 {
    width: 58.33333331%;
  }

  .xl-col-8 {
    width: 66.66666664%;
  }

  .xl-col-9 {
    width: 74.99999997%;
  }

  .xl-col-10 {
    width: 83.3333333%;
  }

  .xl-col-11 {
    width: 91.66666663%;
  }

  .xl-col-12 {
    width: 99.99999996%;
  }

  .xl-hidden {
    display: none;
  }

  .xl-flex-column {
    flex-direction: column;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 1024px;
  }

  .lg-col-1 {
    width: 8.33333333%;
  }

  .lg-col-2 {
    width: 16.66666666%;
  }

  .lg-col-3 {
    width: 24.99999999%;
  }

  .lg-col-4 {
    width: 33.33333332%;
  }

  .lg-col-5 {
    width: 41.66666665%;
  }

  .lg-col-6 {
    width: 49.99999998%;
  }

  .lg-col-7 {
    width: 58.33333331%;
  }

  .lg-col-8 {
    width: 66.66666664%;
  }

  .lg-col-9 {
    width: 74.99999997%;
  }

  .lg-col-10 {
    width: 83.3333333%;
  }

  .lg-col-11 {
    width: 91.66666663%;
  }

  .lg-col-12 {
    width: 99.99999996%;
  }

  .lg-hidden {
    display: none;
  }

  .lg-flex-column {
    flex-direction: column;
  }
}
@media (max-width: 1023px) {
  .container {
    max-width: 768px;
  }

  .md-col-1 {
    width: 8.33333333%;
  }

  .md-col-2 {
    width: 16.66666666%;
  }

  .md-col-3 {
    width: 24.99999999%;
  }

  .md-col-4 {
    width: 33.33333332%;
  }

  .md-col-5 {
    width: 41.66666665%;
  }

  .md-col-6 {
    width: 49.99999998%;
  }

  .md-col-7 {
    width: 58.33333331%;
  }

  .md-col-8 {
    width: 66.66666664%;
  }

  .md-col-9 {
    width: 74.99999997%;
  }

  .md-col-10 {
    width: 83.3333333%;
  }

  .md-col-11 {
    width: 91.66666663%;
  }

  .md-col-12 {
    width: 99.99999996%;
  }

  .md-hidden {
    display: none;
  }

  .md-flex-column {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 500px;
  }

  .sm-col-1 {
    width: 8.33333333%;
  }

  .sm-col-2 {
    width: 16.66666666%;
  }

  .sm-col-3 {
    width: 24.99999999%;
  }

  .sm-col-4 {
    width: 33.33333332%;
  }

  .sm-col-5 {
    width: 41.66666665%;
  }

  .sm-col-6 {
    width: 49.99999998%;
  }

  .sm-col-7 {
    width: 58.33333331%;
  }

  .sm-col-8 {
    width: 66.66666664%;
  }

  .sm-col-9 {
    width: 74.99999997%;
  }

  .sm-col-10 {
    width: 83.3333333%;
  }

  .sm-col-11 {
    width: 91.66666663%;
  }

  .sm-col-12 {
    width: 99.99999996%;
  }

  .sm-hidden {
    display: none;
  }

  .sm-flex-column {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .xs-col-1 {
    width: 8.33333333%;
  }

  .xs-col-2 {
    width: 16.66666666%;
  }

  .xs-col-3 {
    width: 24.99999999%;
  }

  .xs-col-4 {
    width: 33.33333332%;
  }

  .xs-col-5 {
    width: 41.66666665%;
  }

  .xs-col-6 {
    width: 49.99999998%;
  }

  .xs-col-7 {
    width: 58.33333331%;
  }

  .xs-col-8 {
    width: 66.66666664%;
  }

  .xs-col-9 {
    width: 74.99999997%;
  }

  .xs-col-10 {
    width: 83.3333333%;
  }

  .xs-col-11 {
    width: 91.66666663%;
  }

  .xs-col-12 {
    width: 99.99999996%;
  }

  .xs-hidden {
    display: none;
  }

  .xs-flex-column {
    flex-direction: column;
  }
}
@media (min-width: 1341px) {
  .xl-visible {
    display: none;
  }

  .xl-flex {
    display: flex;
  }
}
@media (min-width: 1201px) {
  .lg-visible {
    display: none;
  }

  .lg-flex {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .md-visible {
    display: none;
  }

  .md-flex {
    display: flex;
  }
}
@media (min-width: 768px) {
  .sm-visible {
    display: none;
  }

  .sm-flex {
    display: flex;
  }
}
@media (min-width: 501px) {
  .xs-visible {
    display: none;
  }

  .xs-flex {
    display: flex;
  }
}