@charset "UTF-8";
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Inter-ExtraBold.woff2") format("woff2"), url("../fonts/Inter-ExtraBold.woff") format("woff");
}
.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

.c-gray {
  color: #84858A;
}

.c-dark-gray {
  color: #3C3E47;
}

.c-red {
  color: #E8292C;
}

.c-green {
  color: #09B963;
}

.fz-14 {
  font-size: 14px;
}

.margin-4 {
  margin: 4px;
}
.margin-4-bottom {
  margin-bottom: 4px;
}
.margin-4-top {
  margin-top: 4px;
}
.margin-4-left {
  margin-left: 4px;
}
.margin-4-right {
  margin-right: 4px;
}

.mw-24 {
  min-width: 24px;
}

.mw-20 {
  min-width: 20px;
}

.lh-150 {
  line-height: 1.5;
}

.ws-nowrap {
  white-space: nowrap;
}

.radio input[type=radio] {
  display: none;
}
.radio label {
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
  padding-left: 32px;
  cursor: pointer;
}
.radio label .radio-attr {
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  left: 4px;
  top: calc(50% - 8px);
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #84858A;
}
.radio label .radio-attr::after {
  content: "";
  position: absolute;
  left: 3px;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  background: #E8292C;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}
.radio label:hover .radio-attr {
  border-color: #C61C1C;
}
.radio input:checked ~ label {
  cursor: default;
}
.radio input:checked ~ label .radio-attr {
  border-color: #E8292C;
}
.radio input:checked ~ label .radio-attr::after {
  opacity: 1;
}

.checkbox input[type=checkbox] {
  display: none;
}
.checkbox label {
  position: relative;
  transition: all 0.3s ease;
  display: block;
  padding-left: 32px;
  cursor: pointer;
  color: #84858A;
}
.checkbox label .checkbox-attr {
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  left: 4px;
  top: 0;
  box-sizing: border-box;
  min-width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #84858A;
}
.checkbox label .checkbox-attr::after {
  content: "";
  position: absolute;
  left: 1px;
  top: calc(50% - 5px);
  width: 10px;
  height: 4px;
  background: transparent;
  transform: rotate(-45deg);
  border-left: 2px solid #1B1B1F;
  border-bottom: 2px solid #1B1B1F;
  opacity: 0;
  transition: all 0.3s ease;
}
.checkbox label:hover .checkbox-attr {
  border-color: #1B1B1F;
}
.checkbox input:checked ~ label {
  color: #1B1B1F;
  cursor: default;
}
.checkbox input:checked ~ label .checkbox-attr {
  background: #D7D9E0;
  border-color: #D7D9E0;
}
.checkbox input:checked ~ label .checkbox-attr::after {
  opacity: 1;
}
.checkbox input:disabled ~ label {
  color: #84858A;
}

.breadcrumbs-wrapper {
  margin-top: 40px;
  padding-bottom: 16px;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .breadcrumbs-wrapper {
    margin-left: -24px;
    margin-right: -24px;
    margin-top: 24px;
  }
}
@media screen and (max-width: 639px) {
  .breadcrumbs-wrapper {
    margin-left: -16px;
    margin-right: -16px;
  }
}

.head__top {
  padding: 8px 0;
  border-bottom: 1px solid #D7D9E0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.head__top a {
  display: flex;
  align-items: center;
  color: #1B1B1F;
}
.head__top a:hover {
  text-decoration: none;
  color: #E8292C;
}
.head__city svg, .offcanvas__city svg {
  color: #E8292C;
}
.head__city > span, .offcanvas__city > span {
  border-bottom: 1px dashed #E8292C;
}
.head__dropdown {
  padding: 24px 16px;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
}
.head__dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.head__dropdown li:not(:last-child) {
  margin-bottom: 8px;
}
.head__main {
  padding: 16px 0;
}
@media screen and (max-width: 959px) {
  .head__main {
    padding: 8px 0;
    box-shadow: 0px 4px 12px rgba(93, 93, 93, 0.16);
  }
}
.head__logo-link {
  display: flex;
  align-items: center;
}
.head__logo-link:hover {
  text-decoration: none;
}
@media screen and (max-width: 1199px) {
  .head__logo {
    min-width: 48px;
    max-width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 959px) {
  .head__logo {
    min-width: 40px;
    max-width: 40px;
    height: 40px;
  }
}
.head__logo-desc {
  font-size: 14px;
  color: #3C3E47;
  max-width: 97px;
}
@media screen and (max-width: 959px) {
  .head__logo-desc {
    max-width: unset;
  }
}
@media screen and (max-width: 639px) {
  .head__logo-desc {
    font-size: 10px;
  }
}
.head__logo-contact {
  margin: 0 24px 0 16px;
}
@media screen and (min-width: 959px) and (max-width: 1199px) {
  .head__logo-contact {
    display: none;
  }
}
@media screen and (max-width: 639px) {
  .head__logo-contact {
    margin: 0 0 0 8px;
  }
}
.head__logo-phone {
  display: none;
  margin-top: 4px;
  font-weight: 700;
}
@media screen and (max-width: 959px) {
  .head__logo-phone {
    display: block;
  }
}
@media screen and (max-width: 639px) {
  .head__logo-phone {
    font-size: 14px;
  }
}
@media screen and (max-width: 335px) {
  .head__logo-phone {
    font-size: 12px;
  }
}
.head__catalog-btn {
  display: flex;
  align-items: center;
  padding: 0 16px;
  line-height: 48px;
  border-radius: 4px;
  background: #E8292C;
  color: #ffffff;
  transition: all 0.3s ease;
}
.head__catalog-btn.uk-open {
  background: #E8292C;
  color: #ffffff;
}
.head__catalog-btn.uk-open:hover {
  background: #E8292C;
  color: #ffffff;
}
.head__catalog-btn:hover {
  color: #ffffff;
  background: #FF5959;
  text-decoration: none;
}
.head__btn-links {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
  font-weight: 600;
}
.head__btn-links > li:not(:last-child) > a {
  border-right: none;
}
.head__btn-links > li:first-child > a {
  border-radius: 4px 0 0 4px;
}
.head__btn-links > li:last-child > a {
  border-radius: 0 4px 4px 0;
}
.head__btn-links > li > a {
  display: block;
  padding: 0 16px;
  border: 1px solid #D7D9E0;
  line-height: 45px;
  border-bottom: 2px solid #E8292C;
  color: #1B1B1F;
  transition: all 0.3s ease;
}
.head__btn-links > li > a:hover {
  text-decoration: none;
  color: #E8292C;
  background: #FFEEEE;
}
.head__btn-links .head__dropdown a {
  color: #1B1B1F;
  font-weight: 400;
}
.head__btn-links .head__dropdown a:hover {
  color: #E8292C;
  text-decoration: none;
}
.head__icons {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.head__icons > li:not(:first-child) {
  margin-left: 24px;
}
@media screen and (max-width: 1199px) {
  .head__icons > li:not(:first-child) {
    margin-left: 16px;
  }
}
@media screen and (max-width: 959px) {
  .head__icons > li:nth-child(-n+2) {
    margin: 0;
  }
}
.head__icons > li > a {
  display: block;
  min-width: 32px;
  height: 32px;
  max-width: 32px;
  color: #E8292C;
  transition: all 0.3s ease;
}
.head__icons > li > a:hover {
  color: #3D44FF;
}
@media screen and (max-width: 959px) {
  .head__icons > li > a {
    min-width: 24px;
    height: 24px;
    max-width: 24px;
  }
}
.head__icons .head__dropdown a {
  color: #1B1B1F;
}
.head__icons .head__dropdown a:hover {
  color: #3D44FF;
}
.head__search {
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid #D7D9E0;
  padding-right: 12px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.head__search:hover {
  border-color: red;
}
.head__search input {
  width: 100%;
  border: none;
  padding: 0 16px;
  margin: 0;
  background: transparent;
  margin-right: 8px;
  outline: none;
  font: inherit;
  height: 46px;
}
@media screen and (max-width: 639px) {
  .head__search input {
    height: 32px;
  }
}
.head__search input::-moz-placeholder {
  color: #84858A;
}
.head__search input:-ms-input-placeholder {
  color: #84858A;
}
.head__search input::placeholder {
  color: #84858A;
}
.head__search button {
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  outline: none;
  min-width: 24px;
  height: 24px;
}
@media screen and (max-width: 639px) {
  .head__search button {
    height: 20px;
    min-width: 20px;
  }
}

.head-catalog {
  padding: 32px 0;
  box-sizing: content-box;
  font-size: 14px;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  z-index: 1022;
}
.head-catalog ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.head-catalog a {
  display: block;
  box-sizing: border-box;
  padding: 12px 24px;
  color: #1B1B1F;
}
.head-catalog a:hover {
  text-decoration: none;
  color: #3D44FF;
}
.head-catalog a.uk-open {
  color: #1B1B1F;
  background: #F8F8F8;
}
.head-catalog__dirs {
  width: 256px;
}
.head-catalog .has-subdirs > a {
  padding: 12px 40px 12px 24px;
  position: relative;
}
.head-catalog .has-subdirs > a::after {
  content: url("../img/icons/arrow-r-black.svg");
  position: absolute;
  right: 8px;
  top: calc(50% - 12px);
  height: 24px;
}
.head-catalog__subdirs {
  box-sizing: border-box;
  min-width: 292px;
  max-width: 292px;
  padding: 0;
  background: transparent;
}
.head-catalog__subdirs li:first-child a {
  color: #E8292C;
}
.head-catalog__subdirs li:first-child a:hover {
  color: #3D44FF;
}

.footer {
  background: #f5f5f5;
}
.footer__bottom {
  padding: 16px 0 24px;
  border-top: 1px solid #D7D9E0;
  font-size: 12px;
  color: #3C3E47;
}
@media screen and (max-width: 959px) {
  .footer__bottom {
    padding: 20px 0 16px;
  }
}
.footer__logo {
  display: block;
  margin-right: 16px;
  max-width: 48px;
  min-width: 48px;
}
.footer__copyright {
  max-width: 282px;
}
.footer__main {
  padding: 56px 0 64px;
}
@media screen and (max-width: 959px) {
  .footer__main {
    padding: 24px 0 32px;
  }
}
.footer__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__menu li:not(:last-child) {
  margin-bottom: 8px;
}
.footer__menu a {
  color: #1B1B1F;
}
.footer__menu a:hover {
  color: #E8292C;
}
.footer__payment img {
  height: 16px;
}
.footer__phone {
  display: block;
  font-size: 20px;
  color: #E8292C;
  margin-bottom: 4px;
}
.footer__phone:hover {
  text-decoration: none;
}
.footer__address-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__address-list li:not(:last-child) {
  margin-bottom: 16px;
}
.footer__title {
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 700;
}
.footer__address {
  font-size: 14px;
  color: #3C3E47;
  margin-top: 4px;
}

.invert-page {
  background: #1B1B1F;
  color: #ffffff;
}
.invert-page h1, .invert-page .uk-h1, .invert-page h2, .invert-page .uk-h2, .invert-page h3, .invert-page .uk-h3, .invert-page h4, .invert-page .uk-h4, .invert-page h5, .invert-page .uk-h5, .invert-page h6, .invert-page .uk-h6 {
  color: #ffffff;
}
.invert-page .head-catalog {
  background: #1B1B1F;
}
.invert-page .head-catalog a {
  color: #ffffff;
}
.invert-page .head-catalog a:hover {
  color: #3D44FF;
}
.invert-page .head-catalog a.uk-open {
  color: #ffffff;
  background: #3C3E47;
}
.invert-page .head-catalog .has-subdirs > a::after {
  content: url("../img/icons/arrow-r-white.svg");
}
.invert-page .head__top {
  border-color: #3C3E47;
}
.invert-page .head__top a {
  color: #ffffff;
}
.invert-page .head__top a:hover {
  color: #E8292C;
}
.invert-page .head__top a svg {
  color: #84858A;
}
.invert-page .head__dropdown {
  color: #ffffff;
  background: #1B1B1F;
}
.invert-page .head__main {
  border-bottom: none;
}
.invert-page .head__search {
  background: #3C3E47;
  border-color: #3C3E47;
}
.invert-page .head__search input {
  color: #ffffff;
}
.invert-page .head__search button {
  color: #ffffff;
}
.invert-page .head__logo-desc {
  color: #ffffff;
}
.invert-page .head__catalog-btn {
  background: #3C3E47;
  color: #ffffff;
  transition: all 0.3s ease;
}
.invert-page .head__catalog-btn:hover {
  color: #E8292C;
  background: #FFEEEE;
}
.invert-page .head__catalog-btn.uk-open:hover {
  background: #3C3E47;
  color: #ffffff;
}
.invert-page .head__btn-links > li:not(:last-child) > a {
  border-left: none;
}
.invert-page .head__btn-links > li > a {
  font-weight: 400;
  color: #ffffff;
  background: #3C3E47;
  border-top: none;
  border-right: none;
  line-height: 46px;
}
.invert-page .head__btn-links > li > a:hover {
  background: transparent;
  color: #E8292C;
}
.invert-page .head__btn-links .head__dropdown a {
  color: #ffffff;
}
.invert-page .head__btn-links .head__dropdown a:hover {
  color: #E8292C;
  text-decoration: none;
}
.invert-page .head__icons a {
  color: #ffffff;
  transition: all 0.3s ease;
}
.invert-page .head__icons a:hover {
  color: #3D44FF;
}
.invert-page .footer {
  color: #ffffff;
  background: #1B1B1F;
}
.invert-page .footer__menu a {
  color: #ffffff;
}
.invert-page .footer__address {
  color: #84858A;
}
.invert-page .footer__bottom {
  color: #D7D9E0;
  border-top-color: #3C3E47;
}
.invert-page .uk-breadcrumb > li:last-child > span {
  color: #84858A;
}
.invert-page .menuMenu-close {
  color: #1B1B1F;
}
.invert-page .hamburger {
  color: #ffffff;
}

.contacts__switcher {
  overflow: hidden;
  margin: 32px 0 28px;
}
@media screen and (max-width: 639px) {
  .contacts__switcher {
    margin: 24px -16px;
  }
}
.contacts__switcher ul {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  padding-bottom: 100px;
  margin-bottom: -100px;
  overflow: auto;
  overflow-scrolling: touch;
}
@media screen and (max-width: 639px) {
  .contacts__switcher ul {
    padding-left: 16px;
  }
  .contacts__switcher ul > li:last-child {
    padding-right: 16px;
  }
}
.contacts__switcher li:not(:last-child) {
  margin-right: 32px;
}
@media screen and (max-width: 639px) {
  .contacts__switcher li:not(:last-child) {
    margin-right: 24px;
  }
}
.contacts__switcher a {
  display: block;
  font-weight: 500;
  color: #1B1B1F;
  padding-bottom: 8px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.contacts__switcher a:hover {
  color: #E8292C;
  text-decoration: none;
}
.contacts__switcher li.uk-active > a {
  color: #E8292C;
  border-color: #E8292C;
}
.contacts__info ul:not(:first-child) {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contacts__info a {
  color: #1B1B1F;
  transition: all 0.3s ease;
}
.contacts__info a:hover {
  text-decoration: none;
  color: #E8292C;
}
.contacts__map {
  overflow: hidden;
  height: 400px;
  margin-top: 40px;
}
@media screen and (max-width: 639px) {
  .contacts__map {
    height: 320px;
    margin-top: 24px;
  }
}

.lk-nav {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #D7D9E0;
}
.lk-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.lk-nav li:not(:last-child) {
  margin-bottom: 16px;
}
.lk-nav a {
  color: #1B1B1F;
}
.lk-nav a:hover {
  color: #3D44FF;
  text-decoration: none;
}
.lk-nav a.act {
  font-weight: 500;
  pointer-events: none;
  color: #E8292C;
}
.lk-nav a.act:hover {
  color: #1B1B1F;
}
@media screen and (max-width: 1199px) {
  .lk-nav {
    font-size: 14px;
    padding: 16px;
  }
  .lk-nav li:not(:last-child) {
    margin-bottom: 8px;
  }
}

.lk-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.lk-tab {
  overflow: hidden;
}
.lk-tab ul {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
  padding-bottom: 100px;
  margin-bottom: -100px;
  list-style: none;
}
.lk-tab li:not(:last-child) {
  margin-right: 24px;
}
.lk-tab a {
  white-space: nowrap;
  display: block;
  padding: 0 0 16px;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  color: #1B1B1F;
  transition: all 0.3s ease;
}
.lk-tab a:hover {
  text-decoration: none;
  color: #E8292C;
}
.lk-tab .uk-active a {
  font-weight: 500;
  border-bottom-color: #E8292C;
  color: #E8292C;
}
.lk-tab .uk-active a:hover {
  text-decoration: none;
}
@media screen and (max-width: 639px) {
  .lk-tab {
    margin-right: -16px;
    margin-left: -16px;
  }
  .lk-tab ul {
    padding-left: 16px;
  }
  .lk-tab li:last-child {
    padding-right: 16px;
  }
}

.supports-chat {
  margin-bottom: 32px;
}
.supports-chat-answer textarea {
  border: 1px solid #D7D9E0;
  outline: none;
  width: 100%;
  padding: 12px 16px;
  box-sizing: border-box;
  border-radius: 2px;
  min-height: 80px;
  font-size: 12px;
  margin: 0;
  font-family: "Inter", sans-serif;
  box-shadow: unset;
  -webkit-appearance: none;
}
.supports-chat .write-item {
  position: relative;
  border-radius: 16px;
  padding: 16px;
  width: 100%;
}
.supports-chat .write-item-wrapper:not(:last-child) {
  margin-bottom: 16px;
}
.supports-chat .write-item.write-client {
  background-color: #FFEEEE;
  margin-right: 30px;
}
.supports-chat .write-item.write-adm {
  background-color: #F8F8F8;
  margin-left: 30px;
}
.supports-chat .write-item .chat-attr {
  position: absolute;
  bottom: 0;
}
.supports-chat .write-item .chat-attr-client {
  right: -14px;
}
.supports-chat .write-item .chat-attr-adm {
  left: -14px;
}
.supports-chat .write-item p {
  margin: 0;
  font-size: 16px;
  margin-top: 4px;
}
.supports-chat .write-item span {
  color: #84858A;
  font-size: 14px;
}
@media screen and (max-width: 639px) {
  .supports-chat .write-item.write-client {
    margin-right: 18px;
  }
  .supports-chat .write-item.write-adm {
    margin-left: 18px;
  }
  .supports-chat .write-item .chat-attr-client {
    right: -18px;
  }
  .supports-chat .write-item .chat-attr-adm {
    left: -18px;
  }
}

.lk-offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 16px;
  background: #F8F8F8;
  font-size: 14px;
  color: #84858A;
}
.lk-offcanvas-header a {
  display: block;
  min-width: 24px;
  height: 24px;
  color: #1B1B1F;
}
.lk-offcanvas-header a:hover {
  color: #E8292C;
}
.lk-offcanvas-main {
  padding: 0 16px;
}
.lk-offcanvas-main ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.lk-offcanvas-main a {
  display: block;
  padding: 16px 0;
  color: #1B1B1F;
}
.lk-offcanvas-main a:hover {
  color: #E8292C;
  text-decoration: none;
}
.lk-offcanvas-main a.act {
  color: #E8292C;
}
.lk-offcanvas-main li {
  border-bottom: 1px solid #D7D9E0;
}

.lk-support-item {
  padding-bottom: 16px;
  border-bottom: 1px solid #D7D9E0;
}
.lk-support-item__del {
  color: #A0A0A0;
  transition: all 0.3s ease;
}
.lk-support-item__del:hover {
  text-decoration: none;
  color: #E8292C;
}
.lk-support-item__title {
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 8px;
  color: #1B1B1F;
}
.lk-support-item__title:hover {
  text-decoration: none;
}
.lk-support-item:not(:last-child) {
  margin-bottom: 16px;
}

.lk-support-ask textarea {
  font-family: "Inter", sans-serif;
  min-height: 80px;
  box-shadow: unset;
  -webkit-appearance: none;
}
.lk-support-ask textarea::-moz-placeholder {
  color: #84858A;
}
.lk-support-ask textarea:-ms-input-placeholder {
  color: #84858A;
}
.lk-support-ask textarea::placeholder {
  color: #84858A;
}
.lk-support-ask .select-btn {
  color: #3C3E47;
}

.select-btn span {
  overflow: hidden;
  width: 100%;
  text-align: left;
  white-space: nowrap;
}
.select-btn svg {
  min-width: 24px;
}

.lk-order-item {
  border-radius: 4px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #D7D9E0;
  overflow: hidden;
}
.lk-order-item__top {
  background: #F8F8F8;
  padding: 24px;
}
.lk-order-item__bottom {
  background: #ffffff;
  padding: 24px;
}
.lk-order-item__title {
  transition: all 0.3s ease;
  color: #1B1B1F;
  font-weight: 500;
}
.lk-order-item__title:hover {
  color: #E8292C;
  text-decoration: none;
}
.lk-order-item__price {
  font-size: 20px;
  font-weight: 800;
}
.lk-order-item__status {
  display: flex;
  align-items: center;
  background: #ffffff;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  line-height: 40px;
  white-space: nowrap;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 500;
  color: #E8292C;
  margin-top: 16px;
}
.lk-order-item:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 639px) {
  .lk-order-item__top {
    padding: 16px;
  }
  .lk-order-item__bottom {
    padding: 16px;
  }
  .lk-order-item:not(:last-child) {
    margin-bottom: 16px;
  }
}

.lk-return-item {
  padding: 24px;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  border: 1px solid #D7D9E0;
}
.lk-return-item__status {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  color: #E8292C;
}
.lk-return-item__status svg {
  min-width: 8px;
}
.lk-return-item__print {
  color: #E8292C;
  transition: all 0.3s ease;
  font-size: 12px;
  font-weight: 500;
}
.lk-return-item__print:hover {
  text-decoration: none;
  color: #3D44FF;
}
.lk-return-item__title {
  white-space: nowrap;
  margin-right: 16px;
  color: #1B1B1F;
}
.lk-return-item__title:hover {
  text-decoration: none;
  color: #3D44FF;
}
@media screen and (max-width: 639px) {
  .lk-return-item {
    padding: 16px;
  }
}

.lk-return-products {
  padding: 24px;
  border: 1px solid #D7D9E0;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  margin-bottom: 48px;
  font-size: 14px;
}
.lk-return-products .checkbox {
  height: 16px;
  width: 16px;
}
.lk-return-products .checkbox label .checkbox-attr {
  left: 0;
  top: 0;
}
@media screen and (max-width: 639px) {
  .lk-return-products {
    padding: 16px;
  }
}

.lk-return-product-img {
  max-width: 40px;
  min-width: 40px;
  margin-right: 8px;
  text-align: center;
}
.lk-return-product:not(:last-child) {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #D7D9E0;
}

.lk-order-view__items {
  padding: 24px;
  border: 1px solid #D7D9E0;
  border-radius: 4px;
}
@media screen and (max-width: 639px) {
  .lk-order-view__items {
    padding: 24px 16px;
    margin: 0 -16px;
    border-radius: 0;
  }
}
.lk-order-view__item {
  margin-bottom: 24px;
}
.lk-order-view__item-img {
  min-width: 40px;
  max-width: 40px;
  text-align: center;
}
@media screen and (min-width: 639px) {
  .lk-order-view__btns .uk-button {
    padding: 0 24px;
    font-weight: 400;
    line-height: 40px;
  }
  .lk-order-view__btns .uk-button-default {
    line-height: 38px;
  }
}
.lk-order-view__total {
  padding-top: 16px;
  border-top: 1px solid #D7D9E0;
}

.to-list-btn {
  display: flex;
  align-items: center;
  color: #E8292C;
}

.info-nav {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #D7D9E0;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .info-nav {
    padding: 16px;
  }
}
@media screen and (max-width: 959px) {
  .info-nav {
    margin: 0 -24px;
    padding: 0;
    border: 0;
    border-radius: 0;
  }
}
@media screen and (max-width: 639px) {
  .info-nav {
    margin: 0 -16px;
    padding: 0;
    border: 0;
  }
}
.info-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 959px) {
  .info-nav ul {
    overflow-scrolling: touch;
    overflow: auto;
    display: flex;
    padding-left: 24px;
    padding-bottom: 100px;
    margin-bottom: -100px;
  }
  .info-nav ul li:last-child {
    padding-right: 24px;
  }
}
@media screen and (max-width: 639px) {
  .info-nav ul {
    padding-left: 16px;
  }
  .info-nav ul li:last-child {
    padding-right: 16px;
  }
}
.info-nav li:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (max-width: 1199px) {
  .info-nav li:not(:last-child) {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 959px) {
  .info-nav li:not(:last-child) {
    margin-bottom: 0;
    margin-right: 24px;
  }
}
.info-nav a {
  display: block;
  color: #1B1B1F;
}
@media screen and (max-width: 959px) {
  .info-nav a {
    padding-bottom: 16px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
  }
}
.info-nav a:hover {
  color: #3D44FF;
  text-decoration: none;
}
.info-nav a.act {
  font-weight: 500;
  pointer-events: none;
  color: #E8292C;
}
@media screen and (max-width: 959px) {
  .info-nav a.act {
    border-color: #E8292C;
  }
}
.info-nav a.act:hover {
  color: #1B1B1F;
}

article > :last-child {
  margin-bottom: 0;
}
article iframe {
  max-width: 100%;
}

.article-video {
  height: 400px;
  margin-bottom: 32px;
}
@media screen and (max-width: 959px) {
  .article-video {
    height: 300px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 639px) {
  .article-video {
    height: 165px;
    margin-bottom: 16px;
  }
}

.faq-accordion > :nth-child(n+2) {
  margin: 0;
}
.faq-accordion > li {
  border-bottom: 1px solid #D7D9E0;
}
.faq-accordion .uk-accordion-title {
  padding: 24px 32px 24px 0;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}
.faq-accordion .uk-accordion-title::after {
  content: url("../img/icons/arrow-b.svg");
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  top: calc(50% - 12px);
}
.faq-accordion .uk-accordion-title:hover {
  color: #3D44FF;
}
@media screen and (max-width: 959px) {
  .faq-accordion .uk-accordion-title {
    padding: 16px 32px 16px 0;
    font-size: 16px;
  }
}
.faq-accordion .uk-accordion-content {
  margin: 0;
  padding-bottom: 24px;
}
@media screen and (max-width: 959px) {
  .faq-accordion .uk-accordion-content {
    padding-bottom: 16px;
  }
}
.faq-accordion .uk-open .uk-accordion-title {
  color: #E8292C;
}
.faq-accordion .uk-open .uk-accordion-title::after {
  content: url("../img/icons/arrow-b-red.svg");
}

.review-item {
  display: block;
}
.review-item:hover {
  text-decoration: none;
}
.review-item:hover h3 {
  color: #E8292C;
}
.review-item:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}
.review-item__img {
  position: relative;
  overflow: hidden;
}
.review-item__img img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.review-item h3 {
  transition: all 0.3s ease;
  margin: 8px 0;
}

.pagination-wrapper {
  overflow: hidden;
  margin-top: 32px;
}
@media screen and (max-width: 639px) {
  .pagination-wrapper {
    margin-left: -16px;
    margin-right: -16px;
  }
}

.news-item {
  display: block;
  color: #1B1B1F;
}
.news-item:hover {
  text-decoration: none;
  color: #1B1B1F;
}
.news-item:hover h3 {
  color: #E8292C;
}
.news-item:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}
.news-item__img {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.news-item__img img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.news-item h3 {
  margin: 8px 0 0;
}
.news-item p {
  margin: 8px 0 0;
}
.news-item p br {
  display: none;
}

.cart__aside {
  padding: 24px;
  border: 1px solid #D7D9E0;
  border-radius: 4px;
}
@media screen and (max-width: 639px) {
  .cart__aside {
    padding: 0;
    border: none;
  }
}
.cart__aside .uk-button {
  width: 100%;
  padding: 0 16px;
}
.cart__aside .uk-button:disabled {
  background: #F8F8F8;
  color: #84858A;
}
.cart__aside .uk-button-default {
  margin-top: 12px;
  color: #E8292C;
  border-color: #E8292C;
}
.cart__aside .uk-button-default:active {
  color: #ffffff;
}
.cart__aside-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart__aside-own-cart {
  margin-top: 16px;
  border-top: 1px solid #D7D9E0;
  padding-top: 16px;
}

.cart-item {
  position: relative;
}
.cart-item:not(:last-child) {
  margin-bottom: 24px;
}
.cart-item__img {
  text-align: center;
  max-width: 72px;
  min-width: 72px;
  height: 72px;
}
.cart-item__title {
  color: #1B1B1F;
}
.cart-item__price {
  font-weight: 800;
  font-size: 20px;
}
@media screen and (max-width: 1199.98px) {
  .cart-item__price {
    text-align: left;
  }
}
.cart-item__old-sum {
  font-size: 14px;
  text-decoration: line-through;
  color: #84858A;
  margin-top: 4px;
}
@media screen and (max-width: 959px) {
  .cart-item__remove {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.cart-item__remove a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  max-width: 32px;
  border-radius: 50%;
  height: 32px;
  color: #E8292C;
  border: 1px solid #E8292C;
}
.cart-item__remove a:hover {
  color: #3D44FF;
  border-color: #3D44FF;
}

.cart-item__tools {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-top: 8px;
}
.cart-item__tools a {
  display: block;
}
.cart-item__tools a:first-child {
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid #D7D9E0;
}

.cart-item__fav.rs-in-favorite {
  color: #3D44FF;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  padding: 2px;
  background: #F8F8F8;
}
.cart-count input[type=number] {
  -moz-appearance: textfield;
}
.cart-count input::-webkit-outer-spin-button,
.cart-count input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.cart-count input {
  outline: none;
  width: 42px;
  border: none;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 24px;
  text-align: center;
  -webkit-appearance: none;
  box-shadow: unset;
  -moz-appearance: textfield;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
}
.cart-count input:disabled {
  background: transparent;
}
.cart-count button {
  position: relative;
  min-width: 32px;
  height: 32px;
  padding: 0;
  background-color: #ffffff;
  color: #1B1B1F;
  border-radius: 4px;
  border: 1px solid #D7D9E0;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cart-count button svg {
  min-width: 16px;
  height: 16px;
}
.cart-count button:hover {
  color: #E8292C;
  border-color: #E8292C;
}
.cart-count button:active {
  background: #FFEEEE;
}

.item-card {
  position: relative;
  padding: 16px;
  border: 1px solid #EBEBEC;
  margin-right: -1px;
  margin-top: -1px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 639px) {
  .item-card {
    padding: 8px;
  }
}
@media screen and (min-width: 960px) {
  .item-card .item-card__stat {
    visibility: hidden;
  }
  .item-card:hover .item-card__stat {
    visibility: visible;
  }
}
.item-card:hover {
  box-shadow: 0px 4px 16px rgba(42, 42, 42, 0.16);
  z-index: 3;
}
.item-card__img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 8px;
}
@media screen and (max-width: 639px) {
  .item-card__img-wrap {
    padding: 0;
  }
}
.item-card__img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.item-card__stat {
  display: flex;
  align-items: center;
  margin: 8px 0;
}
.item-card__stat span {
  font-size: 12px;
  line-height: 12px;
  color: #3C3E47;
}
.item-card__stat .stat {
  position: relative;
  margin-right: 8px;
  display: block;
  height: 16px;
  width: 86px;
  background: url("../img/icons/star.svg") repeat-x;
  background-size: contain;
}
.item-card__stat .stat-active {
  position: absolute;
  height: 16px;
  left: 0;
  top: 0;
  width: 60%;
  background: url("../img/icons/star-active.svg") repeat-x;
  background-size: contain;
}
.item-card__category {
  color: #84858A;
  font-size: 12px;
  line-height: 1.5;
}
.item-card__category:hover {
  color: #E8292C;
  text-decoration: none;
}
.item-card__title {
  display: block;
  color: #1B1B1F;
  font-size: 16px;
  font-weight: 500;
  overflow: hidden;
}
@media screen and (max-width: 639px) {
  .item-card__title {
    font-size: 14px;
  }
}
.item-card__title:hover {
  color: #E8292C;
  text-decoration: none;
}
.item-card__price {
  margin-top: 12px;
}
@media screen and (max-width: 639px) {
  .item-card__price {
    margin-top: 8px;
  }
}
.item-card__dropdown.uk-dropdown {
  left: -4px !important;
  top: -4px !important;
  margin: 0;
  padding: 32px 12px 12px;
  border-radius: 4px;
  box-shadow: 0px 4px 12px rgba(56, 56, 56, 0.16);
  font-size: 12px;
  font-weight: 400;
}
@media screen and (max-width: 639px) {
  .item-card__dropdown.uk-dropdown {
    left: -8px !important;
    top: -6px !important;
    min-width: 171px;
    box-sizing: border-box;
    padding: 32px 8px 8px;
  }
}
@media screen and (max-width: 350px) {
  .item-card__dropdown.uk-dropdown {
    min-width: unset;
  }
}
.item-card__dropdown.uk-dropdown ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.item-card__dropdown.uk-dropdown li {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.item-card__dropdown.uk-dropdown li:not(:last-child) {
  margin-bottom: 8px;
}
.item-card__dropdown.uk-dropdown a {
  display: block;
  flex: 1 1 0;
  color: #1B1B1F;
}
.item-card__dropdown.uk-dropdown a:hover {
  color: #E8292C;
  text-decoration: none;
}
.item-card__dropdown.uk-dropdown .uk-leader-fill::after {
  color: #D7D9E0;
}
.item-card__label-credit {
  position: relative;
  background: #ffffff;
  padding: 5px 8px;
  border-radius: 4px;
}
.item-card__label-credit a {
  position: relative;
  color: #1B1B1F;
  border-bottom: 1px dashed #1B1B1F;
}
.item-card__label-credit a:hover {
  color: #E8292C;
  text-decoration: none;
  border-color: #E8292C;
}
.item-card__credit {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 8px;
  color: #3C3E47;
  border: 1px solid #D7D9E0;
  text-transform: uppercase;
}
.item-card__price {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 800;
}
@media screen and (max-width: 639px) {
  .item-card__price {
    flex-direction: column;
    align-items: flex-start;
    font-size: 16px;
  }
}
.item-card__old-price {
  font-size: 14px;
  font-weight: 500;
  color: #84858A;
  margin-left: 8px;
  text-decoration: line-through;
}
@media screen and (max-width: 639px) {
  .item-card__old-price {
    margin-left: 0;
    margin-top: 4px;
  }
}
.item-card__availability {
  display: flex;
  position: relative;
  align-items: center;
  background: #ffffff;
  padding: 5px 8px;
  border-radius: 4px;
  color: #09B963;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 639px) {
  .item-card__availability {
    padding: 4px 2px;
  }
}
.item-card__availability.uk-open {
  z-index: 1021;
}
.item-card__availability.uk-open img {
  transform: rotate(180deg);
}
.item-card__availability:hover {
  color: #09B963;
  text-decoration: none;
}
.item-card__labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  left: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #1B1B1F;
}
@media screen and (max-width: 639px) {
  .item-card__labels {
    font-size: 12px;
  }
}
.item-card .uk-button-default {
  padding: 0 8px;
  line-height: 38px;
}
.item-card .uk-button-default:hover {
  color: #1B1B1F;
}
.item-card .uk-button-default:active {
  background: #ffffff;
  color: #E8292C;
}
.item-card .uk-button-default.rs-favorite {
  transition: all 0.3s ease;
  min-width: 24px;
  max-width: 24px;
  box-sizing: content-box;
}
.item-card .uk-button-default.rs-favorite svg {
  fill: #ffffff;
  stroke: #84858A;
}
.item-card .uk-button-default.rs-favorite:hover {
  text-decoration: none;
}
.item-card .uk-button-default.rs-favorite:hover svg {
  fill: #ffffff;
  stroke: #E8292C;
}
.item-card .uk-button-default.rs-favorite.rs-in-favorite {
  border-color: #E8292C;
}
.item-card .uk-button-default.rs-favorite.rs-in-favorite svg {
  fill: #E8292C;
  stroke: #E8292C;
}
.item-card .uk-button-default.rs-to-cart {
  color: #E8292C;
  border-color: #E8292C;
}

.product__favorite {
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}
.product__favorite svg {
  stroke: #84858A;
  fill: #ffffff;
}
.product__favorite:hover svg {
  stroke: #E8292C;
}
.product__favorite.rs-in-favorite {
  border-color: #E8292C;
}
.product__favorite.rs-in-favorite svg {
  fill: #E8292C;
  stroke: #E8292C;
}
.product__concomitant {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #D7D9E0;
}
.product__concomitant .checkbox label {
  color: #1B1B1F;
}
.product__one-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__aside {
  padding: 24px;
  border: 1px solid #D7D9E0;
  border-radius: 4px;
}
@media screen and (max-width: 959px) {
  .product__aside {
    padding: 24px 16px;
  }
}
@media screen and (max-width: 639px) {
  .product__aside {
    padding: 0;
    border: none;
  }
}
.product__aside .item-card__credit {
  width: 100%;
  margin-top: 16px;
  box-sizing: border-box;
  text-align: center;
  padding: 10px 16px;
  text-transform: unset;
  background: #F8F8F8;
}
.product__aside .uk-button {
  width: 100%;
}
.product__aside .uk-button-primary {
  margin-bottom: 12px;
}
.product__aside .uk-button-default {
  font-weight: 400;
}
.product__price {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
}
@media screen and (max-width: 959px) {
  .product__price {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
  }
}
.product__cities {
  padding: 20px;
  background: #F8F8F8;
  border-radius: 4px;
  margin-top: 24px;
}
@media screen and (max-width: 959px) {
  .product__cities {
    margin-top: 16px;
  }
}
.product__cities ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.product__cities li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__cities li:not(:last-child) {
  margin-bottom: 4px;
}
.product__cities a {
  color: #1B1B1F;
}
.product__cities a:hover {
  color: #3D44FF;
  text-decoration: none;
}
.product__switcher {
  overflow: hidden;
  margin: 0 0 40px;
}
@media screen and (max-width: 959px) {
  .product__switcher {
    margin: 0 -24px 32px;
  }
}
@media screen and (max-width: 639px) {
  .product__switcher {
    margin: 0 -16px 32px;
  }
}
.product__switcher ul {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  padding-bottom: 100px;
  margin-bottom: -100px;
  overflow: auto;
  overflow-scrolling: touch;
}
@media screen and (max-width: 959px) {
  .product__switcher ul {
    padding-left: 24px;
  }
  .product__switcher ul > li:last-child {
    padding-right: 24px;
  }
}
@media screen and (max-width: 639px) {
  .product__switcher ul {
    padding-left: 16px;
  }
  .product__switcher ul > li:last-child {
    padding-right: 16px;
  }
}
.product__switcher li:not(:last-child) {
  margin-right: 32px;
}
@media screen and (max-width: 639px) {
  .product__switcher li:not(:last-child) {
    margin-right: 24px;
  }
}
.product__switcher a {
  white-space: nowrap;
  display: block;
  font-weight: 500;
  color: #1B1B1F;
  padding-bottom: 8px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.product__switcher a:hover {
  color: #E8292C;
  text-decoration: none;
}
.product__switcher li.uk-active > a {
  color: #E8292C;
  border-color: #E8292C;
}

.product-add {
  background: linear-gradient(90deg, #494949 0.01%, #181B21 100%);
  border-radius: 4px;
  padding: 24px;
  color: #ffffff;
}
.product-add__price {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}
.product-add h2 {
  color: #ffffff;
}
.product-add p {
  font-size: 18px;
  margin: 16px 0 8px;
}
.product-add .uk-button {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  line-height: 40px;
  padding: 0 16px;
}

.product__images-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 24px;
  overflow: hidden;
}

.product_image {
  display: none;
  position: relative;
  width: calc(100% - 82px);
}
@media screen and (max-width: 639px) {
  .product_image {
    width: 100%;
  }
}
.product_image.slick-initialized {
  display: block;
}
.product_image a {
  display: block;
  position: relative;
}
.product_image img {
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.product_image .slick-slide {
  outline: none;
  padding: 0;
}

.product_images {
  display: none;
  max-height: 272px !important;
  overflow: hidden;
  max-width: 82px;
}
.product_images.slick-initialized {
  display: block;
}
.product_images img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 64px;
}
.product_images .slick-slide.slick-current {
  border: 1px solid #E8292C;
  border-radius: 4px;
}
.product_images .slick-slide {
  cursor: pointer;
  border: 1px solid transparent;
  padding: 4px 8px;
  outline: none;
}

.checkout {
  padding: 32px 0 64px;
  background: #F8F8F8;
}
@media screen and (max-width: 959px) {
  .checkout {
    padding: 24px 0;
  }
}
.checkout__back {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 16px;
  color: #E8292C;
}
@media screen and (max-width: 959px) {
  .checkout__back {
    margin-bottom: 8px;
  }
}
.checkout__block {
  padding: 24px;
  border: 1px solid #D7D9E0;
  border-radius: 4px;
  background: #ffffff;
}
@media screen and (max-width: 639px) {
  .checkout__block {
    border-radius: 0;
    padding: 24px 16px;
    margin: 0 -16px;
  }
}
.checkout__block.inloading {
  position: relative;
}
.checkout__block.inloading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 3;
}
.checkout__tab-wrap {
  overflow: hidden;
  margin-bottom: 24px;
}
@media screen and (max-width: 959px) {
  .checkout__tab-wrap {
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media screen and (max-width: 639px) {
  .checkout__tab-wrap {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.checkout__tab {
  display: flex;
  list-style: none;
  overflow: auto;
  padding: 0;
  margin: 0;
  padding-bottom: 100px;
  margin-bottom: -100px;
  flex-wrap: nowrap;
}
@media screen and (max-width: 959px) {
  .checkout__tab {
    padding-left: 16px;
  }
  .checkout__tab li:last-child {
    padding-right: 16px;
  }
}
@media screen and (max-width: 639px) {
  .checkout__tab {
    padding-left: 16px;
  }
  .checkout__tab li:last-child {
    padding-right: 16px;
  }
}
.checkout__tab label {
  display: block;
  padding: 10px 16px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  border: 1px solid #D7D9E0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1199px) and (min-width: 959px) {
  .checkout__tab label {
    font-size: 14px;
    padding: 10px 7px;
  }
}
.checkout__tab label:hover {
  background: #FFEEEE;
}
.checkout__tab input[type=radio] {
  display: none;
}
.checkout__tab input[type=radio]:checked ~ label {
  background: #E8292C;
  color: #ffffff;
}
.checkout__tab li:first-child label {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.checkout__tab li:last-child label {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.checkout__tab li:not(:first-child) label {
  border-left: none;
}
.checkout__tab li:not(:last-child) label {
  border-right: none;
}
.checkout__sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 24px;
}
.checkout__help {
  border-color: #E8292C;
}
@media screen and (max-width: 639px) {
  .checkout__help {
    border-color: #D7D9E0;
  }
}
.checkout__help-phone {
  font-size: 20px;
  white-space: nowrap;
  margin-bottom: 32px;
}
@media screen and (max-width: 959px) {
  .checkout__help-phone {
    margin-bottom: 24px;
  }
}
.checkout__help-phone a {
  color: #E8292C;
}
.checkout__download {
  display: flex;
  align-items: center;
  color: #E8292C;
}
.checkout__download:hover {
  text-decoration: none;
}
.checkout__items {
  margin-bottom: 24px;
}
@media screen and (max-width: 959px) {
  .checkout__items {
    margin-bottom: 0;
  }
}
.checkout__total {
  padding-top: 16px;
  border-top: 1px solid #D7D9E0;
}
.checkout__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.checkout__email {
  word-break: break-all;
}
.checkout h1 {
  margin: 0 0 24px;
}
@media screen and (max-width: 959px) {
  .checkout h1 {
    margin-bottom: 12px;
  }
}
.checkout .uk-textarea {
  padding: 16px;
  box-sizing: border-box;
  height: 161px;
}

.checkout-item {
  margin-bottom: 24px;
  display: block;
  color: #1B1B1F;
}
@media (min-width: 959px) and (max-width: 1199px) {
  .checkout-item {
    font-size: 14px;
  }
}
.checkout-item:hover {
  text-decoration: none;
}
.checkout-item__img {
  max-width: 64px;
  min-width: 64px;
}

.payment-card {
  width: 100%;
}
.payment-card__title {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  margin-bottom: 16px;
}
.payment-card__desc {
  font-size: 14px;
  line-height: 18px;
  color: #84858A;
}
.payment-card input[type=radio] {
  display: none;
}
.payment-card label {
  padding: 24px;
  border: 1px solid #D7D9E0;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
}
@media screen and (max-width: 639px) {
  .payment-card label {
    padding: 16px;
  }
}
.payment-card label .radio-attr {
  margin-left: 16px;
  position: relative;
  content: "";
  transition: all 0.3s ease;
  box-sizing: border-box;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #84858A;
}
.payment-card label .radio-attr::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background: #E8292C;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}
.payment-card label:hover {
  border-color: #E8292C;
}
.payment-card label:hover .radio-attr {
  border-color: #C61C1C;
}
.payment-card input:checked ~ label {
  cursor: default;
  border-color: #E8292C;
}
.payment-card input:checked ~ label .radio-attr {
  border-color: #E8292C;
}
.payment-card input:checked ~ label .radio-attr::after {
  opacity: 1;
}

.delivery-card__title {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  margin-bottom: 32px;
}
@media screen and (max-width: 959px) {
  .delivery-card__title {
    margin-bottom: 24px;
  }
}
.delivery-card__price {
  font-size: 20px;
  font-weight: 500;
}
.delivery-card input[type=radio] {
  display: none;
}
.delivery-card label {
  padding: 24px;
  border: 1px solid #D7D9E0;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 639px) {
  .delivery-card label {
    padding: 16px;
  }
}
.delivery-card label .radio-attr {
  margin-left: 16px;
  position: relative;
  content: "";
  transition: all 0.3s ease;
  box-sizing: border-box;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #84858A;
}
.delivery-card label .radio-attr::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background: #E8292C;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}
.delivery-card label:hover {
  border-color: #E8292C;
}
.delivery-card label:hover .radio-attr {
  border-color: #C61C1C;
}
.delivery-card input:checked ~ label {
  cursor: default;
  border-color: #E8292C;
}
.delivery-card input:checked ~ label .radio-attr {
  border-color: #E8292C;
}
.delivery-card input:checked ~ label .radio-attr::after {
  opacity: 1;
}

.guitar-services {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 639px) {
  .guitar-services {
    margin: 0 -16px;
  }
}
.guitar-services__price {
  font-weight: 500;
  margin-left: 16px;
}
@media screen and (max-width: 639px) {
  .guitar-services__price {
    margin-left: 0;
    margin-top: 16px;
  }
}
.guitar-services li {
  background: #F3F5F9;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 639px) {
  .guitar-services li {
    flex-direction: column;
    align-items: flex-start;
  }
}
.guitar-services li:nth-child(2n) {
  background: #ffffff;
}

.guitar-banner {
  background: url("../img/guitar-banner.jpg") no-repeat 20% 50%/cover #F8F8F8;
}
@media screen and (max-width: 959px) {
  .guitar-banner {
    background: #F8F8F8;
  }
}
.guitar-banner__content {
  padding: 48px 0;
  box-sizing: border-box;
  min-height: 540px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .guitar-banner__content {
    min-height: unset;
  }
}
.guitar-banner__title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}
@media screen and (max-width: 959px) {
  .guitar-banner__title {
    font-size: 32px;
  }
}

.service-form {
  padding: 64px 0;
  background: #F8F8F8;
}
@media screen and (max-width: 959px) {
  .service-form {
    padding: 32px 0;
  }
}
.service-form .uk-h1 {
  color: #1B1B1F;
}
.service-form .uk-input {
  background: #ffffff;
  color: #1B1B1F;
}
.service-form .uk-input:hover {
  border-color: #E8292C;
}
.service-form .uk-input:focus {
  border-bottom-color: #E8292C;
}
.service-form .checkbox input[type=checkbox]:checked ~ label {
  color: #1B1B1F;
}
.service-form .checkbox label {
  color: #1B1B1F;
}
.service-form .checkbox a {
  color: #E8292C;
}
.service-form .checkbox .checkbox-attr {
  border-color: #1B1B1F;
}
.invert-page .service-form {
  color: #ffffff;
  background: #222228;
}
.invert-page .service-form .uk-h1 {
  color: #ffffff;
  margin-bottom: 24px;
}
.invert-page .service-form .uk-input {
  background: #3C3E47;
  color: #ffffff;
  border-color: transparent;
}
.invert-page .service-form .uk-input:hover {
  border-color: #E8292C;
}
.invert-page .service-form .uk-input:focus {
  border-bottom-color: #E8292C;
}
.invert-page .service-form .checkbox input[type=checkbox]:checked ~ label {
  color: #ffffff;
}
.invert-page .service-form .checkbox label {
  color: #ffffff;
}
.invert-page .service-form .checkbox a {
  color: #E8292C;
}
.invert-page .service-form .checkbox .checkbox-attr {
  border-color: #ffffff;
}

.work-usage {
  padding: 32px;
  margin-top: 32px;
  font-weight: 500;
  background: #222228;
  border-radius: 8px;
}
@media screen and (max-width: 639px) {
  .work-usage {
    padding: 24px 16px;
  }
}
.work-usage h2 {
  margin-bottom: 24px;
}

.installation-banner {
  min-height: 400px;
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 48px;
}
@media screen and (max-width: 959px) {
  .installation-banner {
    min-height: unset;
  }
}
.installation-banner__wrap {
  background: url("../img/rest/rest-banner.jpg") no-repeat 50% 50%/cover;
  padding-top: 129px;
}
@media screen and (max-width: 1199px) {
  .installation-banner__wrap {
    padding-top: 121px;
  }
}
@media screen and (max-width: 959px) {
  .installation-banner__wrap {
    padding-top: 90px;
  }
}
.installation-banner h1 {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 24px;
}
@media screen and (max-width: 959px) {
  .installation-banner h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }
}

.restaurants-banner {
  min-height: 380px;
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 48px;
}
@media screen and (max-width: 959px) {
  .restaurants-banner {
    min-height: unset;
  }
}
.restaurants-banner__wrap {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  padding-top: 129px;
}
@media screen and (max-width: 1199px) {
  .restaurants-banner__wrap {
    padding-top: 121px;
  }
}
@media screen and (max-width: 959px) {
  .restaurants-banner__wrap {
    padding-top: 56px;
  }
}
.restaurants-banner h1 {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 24px;
}
@media screen and (max-width: 959px) {
  .restaurants-banner h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }
}

.structure-service_margin {
  margin-top: 40px;
}
@media screen and (max-width: 959px) {
  .structure-service_margin {
    margin-top: 16px;
  }
}
.structure-service__title {
  font-size: 64px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .structure-service__title {
    font-size: 48px;
  }
}
@media screen and (max-width: 959px) {
  .structure-service__title {
    font-size: 32px;
  }
}
.structure-service__title-decor {
  position: absolute;
  top: -90px;
  left: calc(50% - 208px);
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .structure-service__title-decor {
    width: 286px;
    height: 286px;
    left: calc(50% - 143px);
  }
}
.structure-service__list {
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 20px;
}

.menuMenu {
  display: flex;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  transform: translateX(-100%);
  transition: all 0.5s ease;
  width: 100%;
  background: #ffffff;
}
.menuMenu ul {
  list-style: none;
  position: relative;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 639px) {
  .menuMenu {
    width: 340px;
  }
}
.menuMenu li {
  overflow: hidden;
}
.menuMenu li:not(:first-child) {
  padding: 0 16px;
}
.menuMenu li:not(:first-child) {
  margin-bottom: 12px;
}
.menuMenu a {
  color: #1B1B1F;
  padding: 12px 14px;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  background-color: #ffffff;
  border: 1px solid #D7D9E0;
  display: block;
  border-radius: 4px;
}
.menuMenu .has-subnav > a {
  padding-right: 40px;
}
.menuMenu .menu-header {
  padding: 24px 16px 16px;
  box-sizing: border-box;
  background: #F8F8F8;
  margin-bottom: 24px;
}
.menuMenu .menu-header .menuMenu-close {
  margin-left: 16px;
  width: 24px;
}
.menuMenu .menu-header h3 {
  color: #1B1B1F;
  margin: 0;
}
.menuMenu .full-section {
  justify-content: center;
  text-align: center;
  border-color: #E8292C;
  color: #E8292C;
}
.menuMenu li.menu-items {
  background: #F8F8F8;
  margin-bottom: 0;
  padding-bottom: 12px;
}
.menuMenu li.menu-items:last-child {
  padding-bottom: 24px;
}
.menuMenu li:not(.menu-items) + .menu-items {
  padding-top: 24px;
  margin-top: 24px;
}

.menuMenu-body {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.menuMenu .uk-button {
  text-align: center;
  padding: 0 16px;
  font-weight: 400;
  justify-content: center;
  line-height: 38px;
}

.menuMenu .main-nav .menu-title {
  display: flex;
  justify-content: space-between;
  padding: 16px;
}
.menuMenu .main-nav .menu-title a {
  background-color: transparent;
  outline: none;
  padding: 0;
  border: none;
  min-height: unset;
  font-weight: 500;
  font-size: 20px;
}
.menuMenu .main-nav .menu-title svg {
  min-width: 24px;
}

.menuMenu .main-nav li > a {
  position: relative;
  display: flex;
  align-items: center;
}

.menuMenu .main-nav li.has-subnav > a:before {
  position: absolute;
  display: block;
  content: url("../img/icons/arrow-r-black.svg");
  height: 24px;
  right: 8px;
  top: calc(50% - 12px);
}

.menuMenu .main-nav li a:hover {
  text-decoration: none;
}

.menuMenu .main-nav a.back-track {
  border: none;
  color: #E8292C;
  border-radius: unset;
  margin-right: 12px;
  min-width: 24px;
  height: 24px;
  display: block;
}
.menuMenu .main-nav a.back-track img {
  display: block;
  min-width: 24px;
  height: 24px;
}

.menuMenu .head__city {
  padding: 0;
  border: none;
  background: transparent;
}
.menuMenu .head__city svg {
  margin-left: 0;
}

.menuMenu .menuMenu__lk-btn {
  border-color: #E8292C;
  color: #E8292C;
}
.menuMenu .menuMenu__lk-btn:active {
  color: #ffffff;
}

.menuMenu .subnav {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: #ffffff;
  z-index: 40;
  transform: translate3d(101%, 0, 0);
  transition: transform 0.5s;
}

.menuMenu .subnav.active {
  transform: translate3d(0, 0, 0);
  width: 100%;
}

.menuMenu .main-nav_level-1 {
  overflow-x: hidden;
  width: 100%;
  background-color: #ffffff;
}

.menuMenu .main-nav_level-2 {
  z-index: 80;
  width: 100%;
  background-color: #ffffff;
}

.menuMenu-active {
  transform: translateX(0);
  overflow: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.menuMenu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  z-index: -1;
}
.menuMenu-overlay.menuMenu-overlay_act {
  z-index: 999;
  opacity: 1;
}

.columns-2 {
  line-height: 1.5;
  -moz-column-gap: 24px;
       column-gap: 24px;
  -moz-column-count: 2;
       column-count: 2;
}
.columns-2 > * {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
}
@media screen and (max-width: 959px) {
  .columns-2 {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.installation-accordion ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 639px) {
  .installation-accordion ul {
    display: none;
  }
  .installation-accordion ul.open {
    display: block;
  }
}
.installation-accordion li {
  color: #84858A;
}
.installation-accordion li:not(:last-child) {
  margin-bottom: 12px;
}
.installation-accordion h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.installation-accordion h3 a {
  color: #ffffff;
  transition: all 0.3s ease;
}
.installation-accordion h3 a:hover {
  text-decoration: none;
  color: #E8292C;
}
.installation-accordion h3 .accordion-arrow {
  display: none;
}
@media screen and (max-width: 639px) {
  .installation-accordion h3 .accordion-arrow {
    display: block;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    margin-left: 16px;
  }
}
.installation-accordion h3 .accordion-arrow.open {
  transform: rotate(180deg);
}

.modal-template {
  max-width: calc(100% - 0.01px) !important;
  box-sizing: border-box;
  width: 384px;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}
@media screen and (max-width: 639px) {
  .modal-template {
    padding: 24px 16px;
  }
}
.modal-template-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.modal-template-header h3 {
  color: #1B1B1F;
  margin: 0;
}
.modal-template-header a {
  color: #1B1B1F;
  transition: all 0.3s ease;
}
.modal-template-header a:hover {
  color: #E8292C;
  text-decoration: none;
}
.modal-template-header .mfp-close {
  padding: 0;
  position: relative;
  top: unset;
  bottom: unset;
  right: unset;
  left: unset;
  max-height: 24px;
  max-width: 24px;
  display: block;
  color: #1B1B1F;
  z-index: 1;
}
.modal-template-header .mfp-close svg {
  display: block;
  position: relative;
  z-index: -1;
}
.modal-template-header .mfp-close:hover {
  color: #E8292C;
}
.modal-template .mfp-close.uk-button-primary {
  position: relative;
  top: unset;
  bottom: unset;
  right: unset;
  left: unset;
  opacity: 1;
  color: #ffffff;
  height: 48px;
}

.modal-delivery-city ul {
  margin-top: 0;
  padding: 0;
  list-style: none;
}
.modal-delivery-city a {
  color: #E8292C;
  transition: all 0.3s ease;
}
.modal-delivery-city a:hover {
  color: #3D44FF;
  text-decoration: none;
}

.brand-item {
  display: block;
  position: relative;
  overflow: hidden;
}
.brand-item:hover img {
  transform: scale(1.1);
}
.brand-item img {
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.index-slider {
  margin-top: 48px;
  position: relative;
}
@media screen and (max-width: 959px) {
  .index-slider {
    margin-top: 32px;
  }
}
@media screen and (max-width: 639px) {
  .index-slider {
    margin-top: 16px;
  }
}
.index-slider__item {
  position: relative;
  min-height: 240px;
  max-height: 240px;
  display: block;
}
.index-slider__item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 639px) {
  .index-slider__item {
    min-height: unset;
    max-height: unset;
  }
  .index-slider__item img {
    -o-object-fit: unset;
       object-fit: unset;
    position: unset;
  }
}
.index-slider__control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  transition: all 0.3s ease;
  color: #E8292C;
}
.index-slider__control:hover {
  background: #FFEEEE;
  color: #E8292C;
}
.index-slider__control:active {
  background: #FF5959;
  color: #ffffff;
}
.index-slider .uk-dotnav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-slider {
  position: relative;
  overflow: unset;
}
.nav-slider > ul > li:nth-child(3n+1) .nav-slider-item {
  background: linear-gradient(90.63deg, #1ABF5C 0.27%, #2EDF9F 100.42%);
}
.nav-slider > ul > li:nth-child(3n+1) .nav-slider-item__btn {
  color: #09B963;
}
.nav-slider > ul > li:nth-child(3n+2) .nav-slider-item {
  background: linear-gradient(90deg, #FF6E40 0.01%, #FF4949 100%);
}
.nav-slider > ul > li:nth-child(3n+2) .nav-slider-item__btn {
  color: #FF6A49;
}
.nav-slider > ul > li:nth-child(3n+3) .nav-slider-item {
  background: linear-gradient(90deg, #494949 0.01%, #181B21 100%);
}
.nav-slider > ul > li:nth-child(3n+3) .nav-slider-item__btn {
  color: #444545;
}
.nav-slider .index-slider__control {
  position: absolute;
  top: calc(50% - 20px);
  border: 1px solid #D7D9E0;
}
.nav-slider .index-slider__control.control-prev {
  left: -20px;
}
.nav-slider .index-slider__control.control-next {
  right: -20px;
}

.nav-slider-item {
  display: block;
  border-radius: 4px;
  padding: 32px;
  color: #ffffff;
}
@media screen and (max-width: 959px) {
  .nav-slider-item {
    padding: 20px;
  }
}
.nav-slider-item:hover {
  color: #ffffff;
  text-decoration: none;
}
.nav-slider-item__title {
  font-size: 36px;
  font-weight: 800;
}
@media screen and (max-width: 959px) {
  .nav-slider-item__title {
    font-size: 24px;
  }
}
.nav-slider-item__desc {
  font-weight: 500;
  margin-top: 8px;
}
@media screen and (max-width: 959px) {
  .nav-slider-item__desc {
    font-size: 14px;
  }
}
.nav-slider-item__txt {
  max-width: 420px;
}
.nav-slider-item__btn {
  background: #ffffff;
  padding: 14px 32px;
  font-weight: 600;
  display: inline-block;
  border-radius: 2px;
  margin-top: 24px;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 639px) {
  .nav-slider-item__btn {
    width: 100%;
  }
}

.review-banner {
  background: #E8292C;
  color: #ffffff;
}
.review-banner__info {
  padding: 40px 0 32px 32px;
}
@media screen and (max-width: 959px) {
  .review-banner__info {
    padding: 16px 16px 24px;
  }
}
.review-banner__label {
  display: inline-block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  background: #FF5959;
  margin-bottom: 16px;
}
.review-banner__title {
  display: block;
  font-size: 48px;
  color: #ffffff;
  transition: all 0.3s ease;
  font-weight: 800;
  margin-bottom: 16px;
}
.review-banner__title:hover {
  color: #ffffff;
  opacity: 0.8;
  text-decoration: none;
}
@media screen and (max-width: 1199px) {
  .review-banner__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 959px) {
  .review-banner__title {
    font-size: 24px;
  }
}
.review-banner__price {
  display: inline-block;
  margin-top: 32px;
  background: #ffffff;
  color: #E8292C;
  border-radius: 2px;
  padding: 10px 16px;
  font-size: 24px;
  font-weight: 600;
}
.review-banner__video {
  position: relative;
  -webkit-clip-path: ellipse(51% 75% at 52% 51%);
          clip-path: ellipse(51% 75% at 52% 51%);
  height: 100%;
}
@media screen and (max-width: 1199px) {
  .review-banner__video {
    -webkit-clip-path: circle(71% at 73% 51%);
            clip-path: circle(71% at 73% 51%);
  }
}
@media screen and (max-width: 959px) {
  .review-banner__video {
    -webkit-clip-path: circle(59% at 46% 6%);
            clip-path: circle(59% at 46% 6%);
  }
}
.review-banner__video #review-video {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: 100%;
}
.review-banner__preview {
  position: relative;
  z-index: 3;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.review-banner__preview:hover .review-banner__play {
  transform: translate(-50%, -50%) scale(1.1);
}
.review-banner__preview.playing {
  opacity: 0;
  z-index: -1;
}
.review-banner__img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review-banner__play {
  position: absolute;
  transition: all 0.3s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 959px) {
  .review-banner__play {
    width: 80px;
    height: 80px;
  }
}

.catalog__sort {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 639px) {
  .catalog__sort {
    font-size: 14px;
  }
}
.catalog__sort button {
  display: flex;
  align-items: center;
  font: inherit;
  padding: 0;
  border: none;
  background: none;
  color: #E8292C;
  margin-left: 8px;
}
.catalog__view {
  display: inline-block;
  color: #A0A0A0;
  transition: all 0.3s ease;
}
.catalog__view:hover {
  text-decoration: none;
  color: #FF5959;
}
.catalog__view:not(:first-child) {
  margin-left: 16px;
}
.catalog__view.active {
  color: #E8292C;
}
@media screen and (max-width: 639px) {
  .catalog__view.active {
    display: none;
  }
}
.catalog__categories {
  list-style: none;
  padding: 16px;
  border-radius: 4px;
  background: #F8F8F8;
}
@media screen and (max-width: 959px) {
  .catalog__categories {
    margin-top: 0;
  }
}
.catalog__categories li:not(:last-child) {
  margin-bottom: 8px;
}
.catalog__categories a {
  display: inline-block;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 2px;
  color: #3C3E47;
  background: #ffffff;
  transition: all 0.3s ease;
}
.catalog__categories a:hover {
  text-decoration: none;
  background: #E8292C;
  color: #ffffff;
}
.catalog__filter-apply {
  display: none;
  position: fixed;
  border-radius: 4px;
  color: #ffffff;
  padding: 14px 16px;
  background: #E8292C;
  font-size: 16px;
  font-weight: 600;
  z-index: 10;
  border: none;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  .catalog__filter-apply {
    display: none !important;
  }
}
.catalog__filter-apply::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translate(-50%, -50%);
  border: 6px solid transparent;
  border-right: 6px solid #E8292C;
}
@media screen and (max-width: 959px) {
  .catalog__filter-desk {
    display: none;
  }
}
.catalog__offcanvas-submit {
  opacity: 0;
  z-index: -1;
  position: fixed;
  bottom: 8px;
  left: 16px;
  right: 16px;
}
.uk-offcanvas.uk-open .catalog__offcanvas-submit {
  opacity: 1;
  z-index: 1;
}
.catalog__filter {
  position: relative;
}
.catalog__filter .uk-accordion > :nth-child(n+2) {
  margin-top: 32px;
}
@media screen and (max-width: 959px) {
  .catalog__filter .uk-accordion > :nth-child(n+2) {
    margin-top: 0;
  }
  .catalog__filter .uk-accordion > li {
    border-bottom: 1px solid #D7D9E0;
  }
}
.catalog__filter .uk-accordion-title {
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding-right: 32px;
}
@media screen and (max-width: 959px) {
  .catalog__filter .uk-accordion-title {
    padding: 16px 32px 16px 0;
  }
}
.catalog__filter .uk-accordion-title::after {
  content: url("../img/icons/arrow-b.svg");
  position: absolute;
  right: 0;
  height: 24px;
  width: 24px;
  top: calc(50% - 12px);
}
.catalog__filter .uk-open .uk-accordion-title::after {
  transform: rotate(180deg);
}
.catalog__filter .uk-accordion-content {
  margin-top: 0;
}
@media screen and (max-width: 959px) {
  .catalog__filter .uk-accordion-content {
    padding-bottom: 16px;
  }
}
.catalog__filter .uk-accordion-content ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.catalog__filter .uk-accordion-content li:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (max-width: 959px) {
  .catalog__filter .uk-accordion-content li:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 959px) {
  .catalog__filter .uk-accordion-content .rs-content,
.catalog__filter .uk-accordion-content .rs-selected {
    max-height: 262px;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow-y: auto;
  }
  .catalog__filter .uk-accordion-content .rs-content li,
.catalog__filter .uk-accordion-content .rs-selected li {
    overflow-x: hidden;
  }
  .catalog__filter .uk-accordion-content .rs-content::-webkit-scrollbar,
.catalog__filter .uk-accordion-content .rs-selected::-webkit-scrollbar {
    width: 4px;
  }
  .catalog__filter .uk-accordion-content .rs-content::-webkit-scrollbar,
.catalog__filter .uk-accordion-content .rs-selected::-webkit-scrollbar {
    width: 4px;
    border-radius: 2px;
    background-color: #FFEEEE;
  }
  .catalog__filter .uk-accordion-content .rs-content::-webkit-scrollbar-thumb,
.catalog__filter .uk-accordion-content .rs-selected::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: #E8292C;
  }
}
.catalog__filter .checkbox label {
  color: #1B1B1F;
}
.catalog__filter .disabled-property.checkbox label,
.catalog__filter .checkbox input:disabled ~ label {
  color: #D7D9E0;
  cursor: default;
}
.catalog__filter .disabled-property.checkbox label > .checkbox-attr,
.catalog__filter .checkbox input:disabled ~ label > .checkbox-attr {
  border-color: #D7D9E0;
  background: #D7D9E0;
}
@media screen and (min-width: 959px) {
  .catalog__filter .uk-button-default {
    line-height: 32px;
    font-size: 14px;
    font-weight: 400;
    margin-top: 16px;
  }
}
.catalog__offcanvas-header {
  padding: 16px;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 16px;
  border-bottom: 1px solid #D7D9E0;
}
.catalog__offcanvas-header a {
  color: #1B1B1F;
  transition: all 0.3s ease;
  min-width: 24px;
}
.catalog__offcanvas-header a:hover {
  color: #E8292C;
}
.catalog__offcanvas-main {
  padding: 0 16px;
}
.catalog__offcanvas-bottom {
  margin-top: 24px;
  padding: 0 16px 24px;
}

.brands {
  margin-top: 24px;
  -moz-column-count: 4;
       column-count: 4;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media screen and (max-width: 959px) {
  .brands {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media screen and (max-width: 639px) {
  .brands {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.brands__item {
  display: flex;
}
.brands__item:not(:last-child) {
  margin-bottom: 24px;
}
.brands__item ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.brands__item li:not(:last-child) {
  margin-bottom: 8px;
}
.brands__item a {
  color: #1B1B1F;
}
.brands__item a:hover {
  color: #E8292C;
  text-decoration: none;
}
.brands__letter {
  text-align: center;
  min-width: 26px;
  max-width: 26px;
  margin-right: 24px;
  font-size: 24px;
  font-weight: 600;
}

.brand-categories a {
  font-weight: 500;
  color: #1B1B1F;
}
.brand-categories a:hover {
  color: #3D44FF;
  text-decoration: none;
}

.electro-banner {
  background: #F8F8F8;
}
.electro-banner__content {
  padding: 48px 0;
  box-sizing: border-box;
  min-height: 540px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .electro-banner__content {
    min-height: unset;
  }
}
.electro-banner__title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}
@media screen and (max-width: 959px) {
  .electro-banner__title {
    font-size: 32px;
  }
}

.download-price {
  padding: 16px;
  background: #ffffff;
  border: 1px solid #D7D9E0;
  border-radius: 4px;
  display: flex;
}
@media screen and (max-width: 639px) {
  .download-price {
    font-size: 14px;
  }
}
.download-price img {
  margin-right: 24px;
  width: 56px;
  height: 56px;
}
@media screen and (max-width: 639px) {
  .download-price img {
    width: 48px;
    height: 48px;
    margin-right: 8px;
  }
}
.download-price a {
  display: inline-block;
  text-decoration: underline;
}
.download-price p {
  margin: 0 0 8px;
}

.about-banner {
  background: url("../img/about-banner.jpg") no-repeat 50% 50%/cover;
  position: relative;
}
.about-banner::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 959px) {
  .about-banner {
    background: #1B1B1F;
  }
}
.about-banner__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 400px;
  font-size: 20px;
  color: #ffffff;
}
@media screen and (max-width: 959px) {
  .about-banner__inner {
    min-height: unset;
    padding: 48px 0;
    font-size: 16px;
  }
}
.about-banner h1 {
  font-size: 48px;
  color: #ffffff;
}
@media screen and (max-width: 959px) {
  .about-banner h1 {
    font-size: 32px;
  }
}

.about-advantages {
  background: #1B1B1F;
  color: #ffffff;
}
.about-advantages .uk-h1 {
  font-size: 48px;
  color: #FF5959;
  margin-bottom: 32px;
}
@media screen and (max-width: 959px) {
  .about-advantages .uk-h1 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.about-advantages__item {
  position: relative;
  padding-top: 22px;
}
@media screen and (max-width: 959px) {
  .about-advantages__item {
    padding-top: 14px;
  }
}
.about-advantages__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 228px;
  background: #FF5959;
}

.modal-page {
  display: flex;
  flex-direction: column;
}
.modal-page::before, .modal-page::after {
  box-flex: 1;
  flex-grow: 1;
  content: "";
  display: block;
  height: 24px;
}
@media screen and (max-width: 380px) {
  .modal-page {
    background: #ffffff;
  }
  .modal-page::before, .modal-page::after {
    display: none;
  }
}

.page-modal-block {
  margin: 0 auto;
}
@media screen and (max-width: 380px) {
  .page-modal-block {
    margin: 0;
  }
}

.form-fields_company.hidden,
.form-fields_change-pass.hidden {
  display: none;
}

.formFieldError {
  font-size: 12px;
  color: #E8292C;
}

.reg-pass input[name=changepass] {
  display: none;
}

.uk-input.has-error {
  border-color: #E8292C;
  background: #FFEEEE;
}

.rs-new-address.hide {
  display: none;
}

/**
* Скрытие блоков
 */
.t-order .rs-has-account, .t-order.user .t-order_contact-information:not(.user-contacts), .t-order.user .next, .t-order.user .captcha, .t-order.user .user-register, .t-order.user .user-without-register, .t-order.authorized .user-without-register, .t-order.noregister .user-register, .t-order.person .user-without-register, .t-order.company .user-without-register, .t-order.person .organization {
  display: none;
}

.t-order.user .rs-has-account, .t-order.noregister .user-without-register {
  display: block;
  width: 100%;
}

.t-opo.user .onePagePaymentBlock, .t-opo.user .onePageDeliveryBlock, .t-opo.user .t-order_comment-to-shipment, .t-opo.user .t-order_button-block {
  display: none;
}

#form-address-section-wrapper.hidden {
  display: none;
}

.page-success-result {
  margin-bottom: 16px;
  color: #09B963;
}

.captcha {
  margin-bottom: 16px;
}
.captcha span {
  display: flex;
  align-items: center;
}
.captcha .formFieldError {
  display: block;
  margin-top: 4px;
}
.captcha input {
  font: inherit;
  outline: none;
  margin-left: 8px;
  width: 100%;
  padding: 0 16px;
  height: 48px;
  border: 1px solid #D7D9E0;
  border-radius: 4px;
  box-sizing: border-box;
  color: #1B1B1F;
  transition: all 0.3s ease;
  background: #fff;
  vertical-align: middle;
  display: inline-block;
}
.captcha input:hover {
  border-color: #E8292C;
}
.captcha input:focus {
  border-bottom-color: #E8292C;
}

.icon-cart,
.icon-favorite,
.icon-profile {
  position: relative;
  color: #E8292C;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
}
@media screen and (max-width: 959px) {
  .icon-cart,
.icon-favorite,
.icon-profile {
    min-width: 24px;
    max-width: 24px;
    height: 24px;
  }
}
.invert-page .icon-cart,
.invert-page .icon-favorite,
.invert-page .icon-profile {
  color: #D7D9E0;
}
.icon-cart:hover,
.icon-favorite:hover,
.icon-profile:hover {
  color: #3D44FF;
}
.icon-cart .counter,
.icon-favorite .counter,
.icon-profile .counter {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8292C;
  color: #ffffff;
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 10px;
  min-width: 16px;
  max-width: 24px;
  height: 16px;
  padding: 4px;
  box-sizing: border-box;
  border-radius: 50%;
  overflow: hidden;
}

.modal-cart-item:not(:last-child) {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #D7D9E0;
}
.modal-cart-item__img {
  max-width: 56px;
  min-width: 56px;
  height: 56px;
  text-align: center;
}
.modal-cart-item__title {
  display: block;
  margin-bottom: 8px;
  color: #1B1B1F;
  transition: all 0.3s ease;
}
.modal-cart-item__title:hover {
  text-decoration: none;
  color: #E8292C;
}
.modal-cart-item__price {
  font-weight: 500;
  padding-left: 8px;
  margin-bottom: 16px;
}
.modal-cart-item__del {
  color: #D7D9E0;
  transition: all 0.3s ease;
}
.modal-cart-item .cart-count button {
  min-width: 24px;
  height: 24px;
}
.modal-cart-item .cart-count input {
  line-height: 24px;
  border: none;
}

.rs-type-interval input[type=number] {
  -moz-appearance: textfield;
}
.rs-type-interval input::-webkit-outer-spin-button,
.rs-type-interval input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.head__search {
  position: relative;
}
.head__search .ui-autocomplete.search-items {
  padding: 8px;
  box-sizing: border-box;
  position: absolute;
  max-width: 100%;
  min-width: 288px;
  flex-direction: column;
}
.head__search .ui-autocomplete.search-items li {
  display: flex;
  box-sizing: border-box;
  padding: 8px;
  margin: 0;
}
.head__search .ui-autocomplete.search-items li .image {
  margin-right: 16px;
  max-width: 48px;
  min-width: 48px;
  text-align: center;
}
.head__search .ui-autocomplete.search-items li .price {
  display: block;
  font-weight: 700;
  white-space: nowrap;
}
.head__search .ui-autocomplete.search-items li .title {
  display: block;
  word-break: break-word;
  margin-bottom: 4px;
}
.head__search .ui-autocomplete.search-items li a {
  display: block;
  font-weight: 500;
  flex: 1;
}
.head__search .ui-autocomplete.search-items li a .uk-text-small {
  font-size: 12px;
}

.ui-autocomplete {
  background: #fff;
  list-style-type: none;
  margin: 0;
  padding: 0;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  font-size: 14px !important;
}

.ui-autocomplete li {
  box-sizing: border-box;
  cursor: pointer;
}

.ui-autocomplete li {
  width: 100%;
  padding: 5px;
}
.ui-autocomplete li a {
  color: #1B1B1F;
}

.ui-autocomplete li.ui-state-focus a,
.ui-autocomplete li:focus a,
.ui-autocomplete li:hover a {
  background: transparent;
  color: #3D44FF;
  text-decoration: none;
}

.ui-autocomplete.search-city-items {
  max-width: 268px;
}

.ui-helper-hidden-accessible {
  display: none !important;
}

.checkout-page .head__top,
.checkout-page .head__catalog-btn,
.checkout-page .head__btn-links,
.checkout-page .head__search,
.checkout-page .head__icons,
.checkout-page .breadcrumbs-wrapper {
  display: none;
}

.ui-autocomplete.searchAffiliates {
  z-index: 1200;
  max-width: 100%;
}

.affiliates {
  padding: 0;
}
.affiliates ul.tree {
  max-height: 480px;
  overflow-y: auto;
  width: unset;
  margin: 0;
}
.affiliates ul.tree::-webkit-scrollbar {
  width: 4px;
}
.affiliates ul.tree::-webkit-scrollbar {
  width: 4px;
  border-radius: 2px;
  background-color: rgba(232, 41, 44, 0.5);
}
.affiliates ul.tree::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-color: #E8292C;
}
.affiliates ul.tree > li {
  font-size: 16px;
}
.affiliates ul.tree ul li a {
  opacity: 1;
}
.affiliates .fastSearch.uk-input {
  padding: 0 16px;
  height: 48px;
  border: 1px solid #D7D9E0;
  border-radius: 2px;
  margin-bottom: 24px;
  color: #1B1B1F;
  font-size: 16px;
  transition: all 0.3s ease;
  background: unset;
}
.affiliates .city.hl {
  color: #1B1B1F;
  transition: all 0.3s ease;
}
.affiliates .city.hl:hover {
  color: #E8292C;
}

.searchAffiliates li.other {
  font-size: 12px;
  padding: 0;
}

.head_absolute .breadcrumbs-wrapper {
  display: none;
}
.head_absolute .head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.rs-manual-login.hidden {
  display: none;
}

.last-address {
  padding: 0;
  list-style: none;
  margin: 0;
}
.last-address li {
  display: flex;
  align-items: center;
}
.last-address li:not(:last-child) {
  margin-bottom: 8px;
}
.last-address input {
  margin: 0;
  margin-right: 8px;
}
.last-address a {
  display: block;
  height: 16px;
  margin-left: 8px;
}
.last-address a img {
  height: 16px;
  min-width: 16px;
  display: block;
}

.uk-section-default .uk-h1, .uk-section-default h1 {
  color: #1B1B1F;
}

.noUi-target.noUi-horizontal {
  height: 4px;
  box-shadow: none;
  border: none;
}
.noUi-target.noUi-horizontal .noUi-handle {
  position: absolute;
  width: 4px;
  min-width: 4px;
  height: 16px;
  border: none;
  background: #1B1B1F;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  top: -6px;
  left: -2px;
  cursor: pointer;
  overflow: hidden;
}
.noUi-target.noUi-horizontal .noUi-handle::before, .noUi-target.noUi-horizontal .noUi-handle::after {
  display: none;
}
.noUi-target .noUi-connect {
  background: #E8292C;
  box-shadow: none;
}
.noUi-target .noUi-base {
  border-radius: 100px;
  width: 100%;
  height: 4px;
  background: #FFEEEE;
}

.concomitant-items {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #D7D9E0;
}
.concomitant-items .checkbox {
  font-weight: 400;
}
.concomitant-items .checkbox label {
  color: #1B1B1F;
}

.rs-selected.hidden {
  display: none;
}

@media screen and (max-width: 959px) {
  .filters {
    padding-bottom: 72px;
  }
}

.site-closed {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-closed .uk-section {
  flex: 1 1 0;
}

.review-item-stat {
  display: flex;
  align-items: center;
}
.review-item-stat span {
  font-size: 12px;
  line-height: 12px;
  color: #3C3E47;
}
.review-item-stat .stat {
  position: relative;
  display: block;
  height: 16px;
  width: 86px;
  background: url("../img/icons/star.svg") repeat-x;
  background-size: contain;
}
.review-item-stat .stat-active {
  position: absolute;
  height: 16px;
  left: 0;
  top: 0;
  width: 60%;
  background: url("../img/icons/star-active.svg") repeat-x;
  background-size: contain;
}

.review-aside {
  padding: 32px 24px;
  border: 1px solid #F8F8F8;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.review-aside-rating {
  font-weight: 700;
  font-size: 32px;
  margin-right: 16px;
}
.review-aside-rating-block {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 639px) {
  .review-aside {
    padding: 24px 16px;
  }
  .review-aside-rating-block {
    margin-bottom: 16px;
  }
}

.stars-block {
  overflow: hidden;
  height: 16px;
  width: 86px;
}

.stars-block i.active {
  background: url(../img/icons/star-active.svg) no-repeat;
}

.stars-block i {
  cursor: pointer;
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  background: url(../img/icons/star.svg) no-repeat;
}

.item-card-list {
  border: 1px solid #EBEBEC;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.item-card-list:hover {
  box-shadow: 0px 4px 16px rgba(42, 42, 42, 0.16);
}
.item-card-list__main {
  padding: 16px 16px 12px;
}
.item-card-list__main .uk-button-default {
  padding: 0 24px;
  line-height: 38px;
}
.item-card-list__main .uk-button-default:hover {
  color: #1B1B1F;
}
.item-card-list__main .uk-button-default:active {
  background: #ffffff;
  color: #E8292C;
}
.item-card-list__main .uk-button-default.rs-favorite {
  transition: all 0.3s ease;
  min-width: 24px;
  max-width: 24px;
  padding: 0 8px;
  box-sizing: content-box;
}
.item-card-list__main .uk-button-default.rs-favorite svg {
  fill: #ffffff;
  stroke: #84858A;
}
.item-card-list__main .uk-button-default.rs-favorite:hover {
  text-decoration: none;
}
.item-card-list__main .uk-button-default.rs-favorite:hover svg {
  fill: #ffffff;
  stroke: #E8292C;
}
.item-card-list__main .uk-button-default.rs-favorite.rs-in-favorite {
  border-color: #E8292C;
}
.item-card-list__main .uk-button-default.rs-favorite.rs-in-favorite svg {
  fill: #E8292C;
  stroke: #E8292C;
}
.item-card-list__main .uk-button-default.rs-to-cart {
  color: #E8292C;
  border-color: #E8292C;
}
.item-card-list__main .item-card__price {
  justify-content: flex-end;
}
@media screen and (max-width: 639px) {
  .item-card-list__main .item-card__price {
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    margin: 0;
  }
}
.item-card-list__main .item-card__old-price {
  margin: 0 8px 0 0;
}
@media screen and (max-width: 639px) {
  .item-card-list__main .item-card__old-price {
    order: 2;
    margin: 0 0 0 8px;
  }
}
.item-card-list__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #F8F8F8;
}
.item-card-list__footer .item-card__availability {
  background: transparent;
  padding: 0;
}
.item-card-list__footer .item-card__label-credit {
  padding: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 639px) {
  .item-card-list__footer .item-card__label-credit {
    font-size: 12px;
  }
}
.item-card-list__footer .uk-dropdown.item-card__dropdown {
  left: -12px !important;
  top: -8px !important;
}
.item-card-list__warehouses {
  font-size: 12px;
}
.item-card-list__warehouses a {
  color: #1B1B1F;
  transition: all 0.3s ease;
}
.item-card-list__warehouses a:hover {
  text-decoration: none;
  color: #E8292C;
}

.product-desc {
  overflow: hidden;
  height: 410px;
}
.product-desc.full {
  height: 100%;
}

#show-more-desc {
  display: none;
  margin-top: 8px;
}

.submiting .uk-button[type=submit],
.not-initialized .uk-button[type=submit] {
  pointer-events: none;
  background: #F8F8F8;
  color: #84858A;
}

.deliveryWidjet .pickpointsOpenMap.formSave {
  padding: 0;
  margin-top: 16px;
}

.product__aside-recommended {
  padding: 24px 16px 0;
  border: 1px solid #D7D9E0;
  border-radius: 4px;
}

.recommended-aside-products .product-recommend:not(:nth-child(-n+3)) {
  display: none;
}
.recommended-aside-products.full-recommend .product-recommend:not(:nth-child(-n+3)) {
  display: block;
}

.full-recommend-btn {
  font-size: 14px;
  margin: 24px 0;
}
.full-recommend-btn a {
  color: #3D44FF;
}
.full-recommend-btn a:hover {
  color: #E8292C;
}
.full-recommend-btn .full-close {
  display: none;
}
.full-recommend-btn.full-recommend .full-open {
  display: none;
}
.full-recommend-btn.full-recommend .full-close {
  display: block;
}

.product-recommend {
  font-size: 14px;
  margin-bottom: 24px;
}
.product-recommend__img {
  min-width: 48px;
  max-width: 48px;
  height: 48px;
}
.product-recommend__title {
  display: block;
  margin-bottom: 8px;
  color: #1B1B1F;
  transition: all 0.3s ease;
}
.product-recommend__title:hover {
  color: #E8292C;
  text-decoration: none;
}
.product-recommend__price {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 639px) {
  .product-recommend__price {
    font-size: 14px;
  }
}
.product-recommend__price_old {
  color: #84858A;
  font-size: 12px;
  font-weight: 500;
  text-decoration: line-through;
  white-space: nowrap;
}
.product-recommend__cart {
  color: #1B1B1F;
  border: 1px solid #E8292C;
  line-height: 20px;
  padding: 0 24px;
  font-size: 12px;
  transition: all 0.3s ease;
  margin-left: 8px;
  white-space: nowrap;
  border-radius: 4px;
}
.product-recommend__cart:hover {
  color: #ffffff;
  background: #E8292C;
  text-decoration: none;
}

.cart-authorization-info {
  border-left-color: #E8292C;
}

.rs-in-fav-act {
  display: none;
}

.rs-in-favorite .rs-in-fav-act {
  display: inline;
}
.rs-in-favorite .rs-in-fav-unact {
  display: none;
}

.hamburger-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 24px;
  max-width: 24px;
  height: 24px;
}

.hamburger-icon_lines {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
  transition-property: transform;
}
.hamburger-icon_lines::before, .hamburger-icon_lines::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: #ffffff;
}
.hamburger-icon_lines::before {
  top: -7px;
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}
.hamburger-icon_lines::after {
  bottom: -7px;
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.uk-open .hamburger-icon_lines {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(45deg);
}
.uk-open .hamburger-icon_lines::before {
  top: 0;
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
}
.uk-open .hamburger-icon_lines::after {
  bottom: 0;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
}

.mfp-content {
  background: #ffffff;
}
.mfp-content .selectPvz_title {
  padding: 16px;
}

.checkbox-product-concomitant {
  margin: 0 8px 0 0;
  display: inline-block;
  height: 16px;
  min-width: 16px;
  max-width: 16px;
  overflow: hidden;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 1px solid #84858A;
  border-radius: 4px;
  cursor: pointer;
}
.checkbox-product-concomitant:checked {
  background-color: #D7D9E0;
  border-color: #D7D9E0;
  background-image: url("../img/icons/check.svg");
}

.dolyami hr {
  height: 2px;
  background: #1B1B1F;
}
.dolyami-price .title {
  margin-top: 8px;
}
.dolyami-price .circle {
  margin-top: 16px;
  position: relative;
}
.dolyami-price .circle::before {
  content: "";
  height: 1px;
  width: 74%;
  position: absolute;
  top: 50%;
  right: 0;
  background: #D7D9E0;
}
.dolyami-price .circle.c-3::before {
  opacity: 0;
}
@media screen and (max-width: 959px) {
  .dolyami-price .circle::before {
    opacity: 0;
  }
}
@media screen and (max-width: 959px) {
  .dolyami-price {
    flex-direction: row;
    align-items: center;
  }
  .dolyami-price .money, .dolyami-price .title, .dolyami-price .circle {
    margin-top: 0;
  }
  .dolyami-price .money, .dolyami-price .title {
    margin-left: 12px;
  }
}

.checkbox-ios {
  display: inline-block;
  height: 24px;
  line-height: 24px;
  margin-right: 10px;
  position: relative;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.checkbox-ios .checkbox-ios-switch {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 46px;
  height: 24px;
  border-radius: 25%/50%;
  vertical-align: top;
  background: #D7D9E0;
  transition: 0.2s;
  cursor: pointer;
}
.checkbox-ios .checkbox-ios-switch:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  transition: 0.15s;
}
.checkbox-ios .checkbox-ios-switch:after {
  content: "";
  background-image: url("../img/dolyami/check.svg");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 2px;
  left: 2px;
  display: flex;
  width: 20px;
  height: 20px;
  opacity: 0;
}
.checkbox-ios input[type=checkbox] {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.checkbox-ios input[type=checkbox]:checked + .checkbox-ios-switch {
  background: #E8292C;
}
.checkbox-ios input[type=checkbox]:checked + .checkbox-ios-switch:before {
  transform: translateX(22px);
}
.checkbox-ios input[type=checkbox]:checked + .checkbox-ios-switch:after {
  opacity: 1;
  transform: translateX(22px);
}
.uk-pagination a, .uk-pagination span {
	padding: 0;
}

.checkout_alert {
  background: #E8292C;
  color: #fff;
  margin-top: 24px;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 4px;
}

.checkout_changeRegionButton {
  color: #E8292C;
  display: flex;
  align-items: center;
}

.checkout_changeRegionButton span {
  margin-left: 8px;
}

.checkout_changeRegionButton .small {
  background: #222;
  color: #fff;
  font-size: 12px;
  padding: 8px 12px;
  transition: .3s ease-in-out;
  margin-left: 24px;
  border-radius: 4px;
}

.checkout_changeRegionButton .small:hover {
  opacity: .8;
  text-decoration: none;
}

.rs-checkout_cityBlock h3 {
  margin-bottom: 24px;
}