@charset "UTF-8";
body {
  font-family: Roboto,Arial, Helvetica, sans-serif;
}

.cart {
  margin-bottom: 100px;
  font-family: Roboto, Arial, sans-serif;
}

@media screen and (min-width: 1024px) {
  .cart {
    margin-bottom: 100px;
  }
}

.cart h1 {
  margin: 16px 0;
  color: #26292C;
  font-size: 32px;
  line-height: 1.1875;
}

.cart button:focus {
  outline: none;
}

@media screen and (min-width: 1024px) {
  .cart__hint a:hover {
    border-bottom: 1px solid rgba(37, 37, 37, 0.7);
    color: #252525;
  }
}

.cart__columns {
  margin-top: 16px;
}

.cart__columns + .cart__items {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .cart__columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.cart__title {
  display: block;
  color: #26292C;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
}

.cart__payment, .cart__delivery {
  margin-top: 12px;
  padding-bottom: 8px;
}

.cart__checkout {
  margin-top: 16px;
  z-index: 1;
}

@media screen and (min-width: 1280px) {
  .cart__checkout {
    margin-top: 0;
  }
}

.cart__total {
  display: block;
  color: #26292C;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.cart__section {
  display: block;
  margin-top: 16px;
}

.cart__info {
  display: block;
  margin-top: 16px;
  position: relative;
}

.cart__info:first-child {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .cart__helper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1280px) {
  .cart__helper {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .cart__column {
    width: calc(50% - 8px);
  }
}

@media screen and (min-width: 1280px) {
  .cart__column {
    width: 100%;
  }
}

.cart__tab {
  display: none;
}

.cart__tab.is-active {
  display: block;
}

.cart__form {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .cart__form {
    margin-top: 0;
  }
}

@media screen and (min-width: 1280px) {
  .cart__form {
    margin-top: 24px;
  }
}

.cart__row {
  display: block;
  margin-top: 12px;
}

.cart__row:first-child {
  margin-top: 0;
}

.cart__input, .cart__textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  padding: 12px 16px;
  width: 100%;
  height: 48px;
  border: 1px solid #D3D4D5;
  border-radius: 8px;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #fff;
  color: #252525;
  font-size: 16px;
  line-height: 1.375;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.cart__input:disabled, .cart__textarea:disabled {
  background-color: #F2F2F2;
  color: #B2B2B2;
  cursor: not-allowed;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}

.form__error .cart__input, .form__error .cart__textarea {
  color: #FF3131;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.form__error .cart__input::-webkit-input-placeholder, .form__error .cart__textarea::-webkit-input-placeholder {
  color: rgba(255, 49, 49, 0.5);
}

.form__error .cart__input:-ms-input-placeholder, .form__error .cart__textarea:-ms-input-placeholder {
  color: rgba(255, 49, 49, 0.5);
}

.form__error .cart__input::-ms-input-placeholder, .form__error .cart__textarea::-ms-input-placeholder {
  color: rgba(255, 49, 49, 0.5);
}

.form__error .cart__input::placeholder, .form__error .cart__textarea::placeholder {
  color: rgba(255, 49, 49, 0.5);
}

.cart__input:focus, .cart__input.has-content, .cart__textarea:focus, .cart__textarea.has-content {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  border-color: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.cart__input::-webkit-input-placeholder, .cart__textarea::-webkit-input-placeholder {
  color: #B2B2B2;
}

.cart__input:-ms-input-placeholder, .cart__textarea:-ms-input-placeholder {
  color: #B2B2B2;
}

.cart__input::-ms-input-placeholder, .cart__textarea::-ms-input-placeholder {
  color: #B2B2B2;
}

.cart__input::placeholder, .cart__textarea::placeholder {
  color: #B2B2B2;
}

.cart__textarea {
  resize: none;
}

.cart__message {
  display: none;
  margin-top: 4px;
  color: #FF3131;
  font-size: 13px;
  line-height: 1.23;
}

.form__error .cart__message {
  display: block;
}

.cart__submit.cart__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background-color: #085293;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
}

.cart__submit.cart__submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.cart__submit.cart__submit:not([disabled]):active {
  background: #005299;
}

@media screen and (min-width: 1024px) {
  .cart__submit:not([disabled]):hover {
    background: #005299;
  }
}

.cart__sent {
  display: block;
  max-width: 670px;
  color: #252525;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (min-width: 768px) {
  .cart__sent {
    min-height: 300px;
  }
}

.basket_mobile {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: transparent;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
}

.basket_mobile:active {
  background: #F2F2F2;
}

.basket_mobile img {
  display: block;
  width: 100%;
}

.basket_mobile_active {
  background-color: #E74C3C;
}

.basket_mobile_active:active {
  background: #DA2D1B;
}

.basketNew {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 12px;
  border-radius: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #F7F7F7;
  color: #252525;
  font-size: 14px;
  line-height: 1.43;
}

.basketNew_type_active {
  background: #E74C3C;
  color: white;
}

.basketNew__icon {
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -2px;
  margin-right: 6px;
}

.basketNew__counter {
  margin-right: 10px;
}

a.basketNew {
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
}

a.basketNew:hover, a.basketNew:focus {
  background: #F2F2F2;
  color: #252525;
  text-decoration: none;
}

a.basketNew_type_active:hover, a.basketNew_type_active:focus {
  background: #DA2D1B;
  color: white;
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  .tags-is-active .brand_cloud {
    display: block;
    padding: 0 16px;
  }
}

.brand_cloud-item {
  background: #EBEBEB;
}

.brand_cloud-item:nth-child(n + 9) {
  display: none;
}

@media screen and (min-width: 1024px) {
  .brand_cloud-item:nth-child(n + 9) {
    display: block;
  }
}

.tags-is-active .brand_cloud-item:nth-child(n + 9) {
  display: block;
}

@media screen and (max-width: 1023px) {
  .tags-is-active .brand_cloud-item {
    display: block;
    margin: 0;
    padding: 12px 0;
    border-top: 0.5px solid #DEE1E3;
    border-radius: 0;
    position: relative;
    color: #26292C !important;
    background: transparent;
  }
  .tags-is-active .brand_cloud-item:first-child {
    border: none;
  }
  .tags-is-active .brand_cloud-item::before {
    display: block;
    width: calc(100% + 32px);
    height: 100%;
    position: absolute;
    top: 0;
    left: -16px;
    z-index: -1;
    background: transparent;
    content: "";
    -webkit-transition: background 0.25s;
    transition: background 0.25s;
  }
  .tags-is-active .brand_cloud-item:hover::before, .tags-is-active .brand_cloud-item:active::before, .tags-is-active .brand_cloud-item.is-chosen::before {
    background-color: #EDF5FD;
  }
}

.brand_cloud__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 8px 12px 8px 16px;
  border: none;
  border-radius: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #F4F5F6;
  color: #3385CC;
  font-size: 14px;
  line-height: 20px;
}

.brand_cloud__more:nth-child(-n + 9) {
  display: none;
}

@media screen and (min-width: 1024px) {
  .brand_cloud__more {
    display: none;
  }
}

.tags-is-active .brand_cloud__more {
  display: none;
}

.brand_cloud__more span {
  margin-right: 4px;
}

.catalog-top + .brand_cloud-wrapper {
  margin-top: 24px;
}

@media screen and (min-width: 1024px) {
  .catalog-top + .brand_cloud-wrapper {
    margin-top: 26px;
  }
}

@media screen and (max-width: 1023px) {
  .brand_cloud-wrapper.tags-is-active {
    display: block;
    margin-top: 0;
    padding-top: 44px;
    padding-bottom: 60px;
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1005;
    background: white;
  }
  .brand_cloud-wrapper.tags-is-active::after {
    width: 100%;
    height: 60px;
    position: fixed;
    bottom: 0;
    left: 0;
    background: white;
    content: "";
  }
}

.brand_cloud-wrapper__title {
  display: none;
  padding: 12px 44px 12px 16px;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: #085293;
  color: white;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tags-is-active .brand_cloud-wrapper__title {
  display: block;
}

@media screen and (min-width: 1024px) {
  .tags-is-active .brand_cloud-wrapper__title {
    display: none;
  }
}

.brand_cloud-wrapper__cross {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 44px;
  height: 44px;
  padding: 14px;
  border: none;
  outline: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  background: #085293;
}

.brand_cloud-wrapper__cross img {
  display: block;
  width: 100%;
}

.brand_cloud-wrapper__close {
  display: none;
  width: calc(100% - 32px);
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  background-color: #F4F5F6;
  color: #5E666E;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.brand_cloud-wrapper__close:hover, .brand_cloud-wrapper__close:active {
  background: #EEF0F1;
  color: #26292C;
}

.tags-is-active .brand_cloud-wrapper__close {
  display: block;
}

@media screen and (min-width: 1024px) {
  .tags-is-active .brand_cloud-wrapper__close {
    display: none;
  }
}

.catalog-top__holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -16px;
  padding: 0 8px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.catalog-top__holder::-webkit-scrollbar {
  display: none;
}

@media screen and (min-width: 1024px) {
  .catalog-top__holder {
    margin: -8px -12px;
    padding: 0;
    overflow-x: visible;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.catalog-top__dealer {
  margin: 0 8px;
  color: #CC3333;
}

@media screen and (min-width: 1024px) {
  .catalog-top__dealer {
    margin: 8px 12px 0;
  }
}

.catalog-top__reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 1024px) {
  .catalog-top__reviews {
    margin: 8px 12px 0;
  }
}

.catalog-top__star {
  display: block;
  width: 20px;
  margin-right: 4px;
}

.catalog-top__star img {
  display: block;
}

.catalog-top__mark {
  color: #3385CC;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}

@media screen and (min-width: 1024px) {
  .catalog-top__mark:hover {
    color: #26292C;
  }
}

.catalog-top__link {
  margin: 0 8px;
  color: #3385CC;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}

@media screen and (min-width: 1024px) {
  .catalog-top__link {
    margin: 8px 12px 0;
  }
  .catalog-top__link:hover {
    color: #26292C;
  }
}

.catalog-top__description {
  display: block;
  max-width: 775px;
  margin-top: 16px;
  color: #5E666E;
  font-size: 14px;
  line-height: 20px;
}

.mobile-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 20px;
}

@media screen and (max-width: 1199px) {
  .notebook-buttons.notebook-buttons {
    display: flex;
  }
}

@media screen and (min-width: 1024px) {
  .mobile-buttons {
    display: none;
  }
}

.mobile-buttons button {
  margin: 16px 8px 0;
  padding: 13px 16px;
  border: none;
  border-radius: 8px;
}

.mobile-buttons__selection {
  display: flex;
  align-items: center;
  width: calc(100% - 16px);
  background: #26292C;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.mobile-buttons__selection-icon {
  flex: 0 0 auto;
  height: 24px;
  width: 24px;
  margin-left: auto;
}

.mobile-buttons__selection:hover, .mobile-buttons__selection:active {
  background: #515456;
  color: #ffffff;
}

.mobile-buttons__selection:focus {
  outline: none;
}

.mobile-buttons__sorting, .mobile-buttons__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(50% - 16px);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #F4F5F6;
  color: #26292C;
}

.mobile-buttons__sorting:hover, .mobile-buttons__sorting:active, .mobile-buttons__filter:hover, .mobile-buttons__filter:active {
  background-color: #EEF0F1;
}

.mobile-buttons__filter.is-active::after {
  display: block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  border-radius: 50%;
  background-color: #3385CC;
  content: "";
}

@media screen and (max-width: 1023px) {
  #catalogBlock .flex-start {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 1023px) {
  #catalogBlock .leftBlock {
    display: block;
    width: 100%;
    max-width: none;
    margin-right: 0;
  }
}

#catalogBlock .sidebar {
  display: block;
}

@media screen and (max-width: 1023px) {
  #catalogBlock .filter-section.is-opened .btn-result #setFilter {
    left: 16px;
    visibility: visible;
  }
}

@media screen and (max-width: 1023px) {
  #catalogBlock .btn-result {
    margin: 0;
    max-width: none;
  }
}

@media screen and (min-width: 1024px) {
  #catalogBlock .btn-result {
    margin-top: 72px;
    padding: 12px 16px;
    position: -webkit-sticky !important;
    position: sticky !important;
    background-color: #F5F6F7;
    border-radius: 12px;
  }
}

#catalogBlock .btn-result #setFilter {
  padding: 12px 15px;
  border-radius: 12px;
  background-color: #006DCC;
  color: white;
  font-weight: 500;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

@media screen and (min-width: 1024px) {
  #catalogBlock .btn-result #setFilter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 48px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #catalogBlock .btn-result #setFilter:hover {
    background-color: #005299;
  }
}

@media screen and (max-width: 1023px) {
  #catalogBlock .btn-result #setFilter {
    width: calc(100% - 32px);
    height: 48px;
    position: fixed;
    bottom: 16px;
    left: calc(100% + 16px);
    z-index: 5;
    background-color: #E74C3C;
    visibility: hidden;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
  }
  #catalogBlock .btn-result #setFilter:hover, #catalogBlock .btn-result #setFilter:active {
    background-color: #CC3333;
  }
}

#catalogBlock .btn-result #clearFilter {
  padding: 12px 15px;
  border-radius: 12px;
  color: #26292C !important;
  font-weight: 400;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  background-color: #F5F6F7 !important;
}

@media screen and (min-width: 1024px) {
  #catalogBlock .btn-result #clearFilter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 44px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #catalogBlock .btn-result #clearFilter:hover {
    background-color: transparent;
    color: #26292C;
  }
}

@media screen and (max-width: 1023px) {
  #catalogBlock .btn-result #clearFilter {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  #catalogBlock .filter-section {
    display: block;
    width: 100%;
    padding-top: 44px;
    padding-bottom: 60px;
    overflow-y: auto;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    z-index: 1005;
    background: white;
    visibility: hidden;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
  }
  #catalogBlock .filter-section.is-opened {
    right: 0;
    left: 0;
    visibility: visible;
  }
  #catalogBlock .filter-section.is-opened::after {
    width: 100%;
    height: 60px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 4;
    background: white;
    content: "";
  }
}

@media screen and (min-width: 1024px) {
  #catalogBlock .filter-section {
    margin-top: 16px;
  }
  #catalogBlock .filter-section:first-child {
    margin-top: 0;
  }
}

#catalogBlock .filter-section__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 44px;
  height: 44px;
  padding: 14px;
  border: none;
  outline: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
  background: #085293;
  outline: none;
}

#catalogBlock .filter-section__close img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  #catalogBlock .filter-section__close {
    display: none;
  }
}

.sorting {
  padding-top: 44px;
  padding-bottom: 60px;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  background: white;
}

@media screen and (max-width: 1023px) {
  .sorting {
    right: auto;
    left: 100%;
    visibility: hidden;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
  }
  .sorting.is-active {
    display: block;
    right: 0;
    left: 0;
    visibility: visible;
  }
  .sorting.is-active::after {
    width: 100%;
    height: 60px;
    position: fixed;
    bottom: 0;
    left: 0;
    background: white;
    content: "";
  }
}

@media screen and (min-width: 1024px) {
  .sorting {
    display: block;
    margin-top: 16px;
    padding: 16px 16px 20px;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    background-color: #F9FAFA;
  }
  .sorting:first-child {
    margin-top: 0;
  }
}

.sorting__title {
  display: block;
  width: 100%;
  padding: 12px 44px 12px 16px;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 2;
  background: #085293;
  color: white;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.sorting.is-active .sorting__title {
  left: 0;
}

@media screen and (min-width: 1024px) {
  .sorting__title {
    padding: 0;
    position: static;
    background: transparent;
    color: #053561;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
  }
}

.sorting__cross {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 44px;
  height: 44px;
  padding: 14px;
  border: none;
  outline: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  background: #085293;
  outline: none;
}

.sorting__cross img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .sorting__cross {
    display: none;
  }
}

.sorting__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 1024px) {
  .sorting__list {
    margin-top: 12px;
    padding: 0;
  }
}

.sorting__list li {
  border-bottom: 0.5px solid #DEE1E3;
}

@media screen and (min-width: 1024px) {
  .sorting__list li {
    border: none;
    margin-top: 4px;
  }
  .sorting__list li:first-child {
    margin-top: 0;
  }
}

.sorting__list li a {
  display: block;
  margin: 0 -16px;
  padding: 12px 48px 12px 16px;
  position: relative;
  color: #26292C;
  font-size: 16px;
  line-height: 20px;
}

@media screen and (min-width: 1024px) {
  .sorting__list li a {
    margin: 0;
    padding: 2px 0 2px 24px;
    font-size: 14px;
  }
}

.sorting__list li a:hover {
  text-decoration: none;
  background-color: transparent;
}

.sorting__list li a:hover::after {
  border-color: #ACB3B9;
}

@media screen and (max-width: 1023px) {
  .sorting__list li a {
    -webkit-transition: background 0.25s;
    transition: background 0.25s;
  }
  .sorting__list li a:hover, .sorting__list li a:active {
    background: #EDF5FD;
  }
}

.sorting__list li a::after {
  width: 16px;
  height: 16px;
  border: 1px solid #DEE1E3;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 16px;
  background: white;
  content: "";
  -webkit-transition: border 0.25s;
  transition: border 0.25s;
}

@media screen and (min-width: 1024px) {
  .sorting__list li a::after {
    top: 4px;
    right: auto;
    left: 0;
  }
  .sorting__list li a::after:hover {
    background-color: #ACB3B9;
  }
}

.sorting__list li a.active:hover::after {
  border-color: #3385CC;
}

.sorting__list li a.active::after {
  border: 5px solid #3385CC;
}

.sorting__list li a.active.hide-active::after {
  border: 1px solid #DEE1E3;
}

.sorting__list li a.current::after {
  border: 5px solid #3385CC;
}

.sorting__apply {
  display: block;
  width: calc(100% - 32px);
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  position: fixed;
  bottom: 16px;
  left: calc(100% + 16px);
  z-index: 2;
  background-color: #E74C3C;
  outline: none;
  color: white;
  font-weight: 500;
  text-align: center;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.sorting.is-active .sorting__apply {
  left: 16px;
}

@media screen and (min-width: 1024px) {
  .sorting__apply {
    display: none;
  }
}

.sorting__apply:hover, .sorting__apply:active {
  background: #CC3333;
}

.selection {
  display: block;
  margin-top: 16px;
  padding: 16px;
  border-radius: 4px;
  background: #EDF5FD;
}

.selection:first-child {
  margin-top: 0;
}

@media screen and (max-width: 1023px) {
  .selection {
    display: none;
  }
}

.selection__title {
  display: block;
  color: #053561;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
}

.selection__form {
  margin-top: 12px;
}

.selection__row {
  margin-top: 8px;
}

.selection__row:first-child {
  margin-top: 0;
}

.selection__row_type_submit {
  margin-top: 12px;
}

.selection__select {
  display: block;
  width: 100%;
  padding: 7px 41px 7px 11px;
  border-radius: 2px;
  border: 1px solid #DAECFB;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #26292C;
  font-size: 14px;
  line-height: 20px;
  background-color: white;
  position: relative;
  z-index: 1;
  cursor: pointer;
  background: white url(../svg/dropdown.svg) no-repeat calc(100% - 11px) center;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.selection__select:focus {
  outline: none;
}

.selection__select:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.selection__select:disabled {
  opacity: 1;
  background-color: #F9FAFA;
  color: #ACB3B9;
  cursor: not-allowed;
}

.selection__select option:first-child {
  display: none;
}

.selection__button {
  display: block;
  width: 100%;
  padding: 8px 13px;
  border-radius: 8px;
  background-color: #1261A6;
  color: white;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  cursor: pointer;
  border: 0;
}

.selection__button:focus {
  outline: none;
}

.selection__button:not(:disabled):active {
  background-color: #085293;
}

@media screen and (min-width: 1024px) {
  .selection__button:not(:disabled):hover {
    background-color: #085293;
  }
}

.selection__button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.selection-mobile {
  display: block;
  padding: 0 16px 60px;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  background: white;
  visibility: hidden;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.selection-mobile.is-active {
  display: block;
  visibility: visible;
  -webkit-transform: none;
  transform: none;
}

.selection-mobile.is-active::after {
  width: 100%;
  height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  background: white;
  content: "";
}

@media screen and (min-width: 1201px) {
  .selection-mobile.is-active {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
  .selection-mobile {
    display: none;
  }
}

.selection-mobile__title {
  display: block;
  padding: 16px 32px 16px 2px;
  position: sticky;
  top: 0;
  z-index: 2;
  color: #000;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  background: #fff;
  border-bottom: 1px solid #EEF0F1;
  margin-bottom: 16px;
}

@media screen and (min-width: 1201px) {
  .selection-mobile__title {
    padding: 0;
    position: fixed;
    background: transparent;
    color: #053561;
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
  }
}

.selection-mobile__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  outline: none;
  position: fixed;
  top: 10px;
  right: 8px;
  z-index: 11;
  background: transparent;
  outline: none;
  color: #000;
  padding: 0;
}

.selection-mobile__close img {
  display: block;
  width: 100%;
}

.selection-mobile__close-icon {
  height: 14px;
  width: 14px;
}

.selection-mobile__body {
  padding: 0 16px;
  position: relative;
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 12px;
  border-radius: 8px;
  background: #F4F5F6;
}

.selection-mobile__row:not(:first-child) {
  border-top: 1px solid #DEE1E3;
}

.selection-mobile__row.is-active {
  display: block;
  padding: 0 16px 16px;
  border: none;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  background-color: white;
}

.selection-mobile__subtitle {
  display: block;
  margin: 0 -16px;
  padding: 17px 53px 18px 16px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #787B7C;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.selection-mobile__subtitle:active {
  background-color: #EEF0F1;
}

.selection-mobile__subtitle::after {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 14px;
  background: url("../svg/chevron-right.svg") center center no-repeat;
  background-size: 24px 24px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
}

.selection-mobile__subtitle.disabled {
  background: #F4F5F6;
  color: #D3D4D5;
  pointer-events: none;
}

.selection-mobile__subtitle.disabled::after {
  opacity: 0.2;
}

.selection-mobile__row.is-active .selection-mobile__subtitle {
  margin: 0 -16px 16px;
  padding: 16px 48px;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  color: #26292C;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
}

.selection-mobile__row.is-active .selection-mobile__subtitle::after {
  width: 36px;
  height: 36px;
  right: auto;
  left: 8px;
  background: url("../svg/back-black.svg") center center no-repeat;
  background-size: 24px 24px;
}

.selection-mobile__row.is-active .selection-mobile__subtitle::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 16px;
  width: calc(100% - 32px);
  border-bottom: 1px solid #EEF0F1;
}

.selection-mobile__chosen {
  margin-left: 3px;
  color: #26292C;
}

.selection-mobile__row:not(.is-active) .selection-mobile__chosen:not(:empty) ~ .selection-mobile__subtitle-text {
  display: none;
}

.selection-mobile__row.is-active .selection-mobile__chosen {
  display: none;
}

.selection-mobile__list,
.selection-mobile__row .select-search__input {
  display: none;
}

.selection-mobile__row.is-active .select-search__input {
  display: block;
  margin-bottom: 16px;
}

.selection-mobile__row.is-active .selection-mobile__list {
  display: block;
  background: #F4F5F6;
  border-radius: 12px;
}

.selection-mobile__list li {
  display: block;
  padding: 14px 16px;
  position: relative;
  background: #F4F5F6;
  color: #26292C;
  border-radius: 12px;
  transition: background 0.3s;
}

.selection-mobile__list li.is-chosen {
  background: #DEE1E3;
}

.selection-mobile__list li:not(:last-child)::before {
  content: "";
  display: block;
  width: calc(100% - 32px);
  position: absolute;
  bottom: 0;
  left: 16px;
  border-bottom: 1px solid #DEE1E3;
}

.selection-mobile__list li:active {
  background: #EEF0F1;
}

.selection-mobile__apply {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 17px 16px;
  border: none;
  background: #1261A6;
  border-radius: 12px;
  z-index: 2;
  outline: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.selection-mobile__apply:focus {
  outline: none;
}

.selection-mobile__apply:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.selection-mobile__apply:active {
  background-color: #085293;
}

.new-filter.smartfilter {
  border-radius: 4px;
  background-color: #085293;
}

@media screen and (max-width: 1023px) {
  .new-filter.smartfilter {
    border-radius: 0;
    background-color: white;
  }
}

.new-filter__title {
  display: block;
  width: 100%;
  padding: 16px 16px 2px;
  color: #053561;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

@media screen and (max-width: 1023px) {
  .new-filter__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 12px 44px 12px 16px;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 2;
    background: #085293;
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    visibility: hidden;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
  }
  .filter-section.is-opened .new-filter__title {
    right: 0;
    left: 0;
    visibility: visible;
  }
}

.new-filter__chosen {
  display: none;
  margin-left: 3px;
  color: #5E666E;
  font-size: 16px;
  line-height: 20px;
}

@media screen and (max-width: 1023px) {
  .new-filter__chosen {
    display: inline;
  }
  .new-filter__section.is-chosen .new-filter__chosen {
    display: none;
  }
}

.new-filter__section .new-filter__subtitle.title {
  width: 100%;
  margin-bottom: 0;
  padding-right: 20px;
  position: relative;
  color: #053561;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
}

.new-filter__section .new-filter__subtitle.title:hover::after {
  -webkit-filter: invert(15%) sepia(19%) saturate(5345%) hue-rotate(187deg) brightness(98%) contrast(100%);
  filter: invert(15%) sepia(19%) saturate(5345%) hue-rotate(187deg) brightness(98%) contrast(100%);
}

@media screen and (max-width: 1023px) {
  .new-filter__section .new-filter__subtitle.title:hover::after {
    -webkit-filter: none;
    filter: none;
  }
}

.new-filter__section .new-filter__subtitle.title::after {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  right: 0;
  background: url("../svg/filter-dropdown.svg") no-repeat center center;
  background-size: 16px 16px;
  -webkit-filter: invert(93%) sepia(5%) saturate(134%) hue-rotate(169deg) brightness(92%) contrast(91%);
  filter: invert(93%) sepia(5%) saturate(134%) hue-rotate(169deg) brightness(92%) contrast(91%);
  content: "";
  -webkit-transition: -webkit-transform 0.25s, -webkit-filter 0.25s;
  transition: -webkit-transform 0.25s, -webkit-filter 0.25s;
  transition: transform 0.25s, filter 0.25s;
  transition: transform 0.25s, filter 0.25s, -webkit-transform 0.25s, -webkit-filter 0.25s;
}

@media screen and (max-width: 1023px) {
  .new-filter__section .new-filter__subtitle.title {
    display: block;
    padding: 12px 32px 12px 0;
    border-bottom: 0.5px solid #DEE1E3;
    overflow: hidden;
    color: #26292C;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .new-filter__section .new-filter__subtitle.title::after {
    width: 16px;
    height: 16px;
    top: 12px;
    background-image: url("../svg/filter-arrow.svg");
    background-size: 20px 20px;
    -webkit-filter: none;
    filter: none;
  }
  .new-filter__section .new-filter__subtitle.title::before {
    display: block;
    width: calc(100% + 32px);
    height: 100%;
    position: absolute;
    top: 0;
    left: -16px;
    z-index: -1;
    background-color: transparent;
    content: "";
  }
  .new-filter__section .new-filter__subtitle.title:hover:before, .new-filter__section .new-filter__subtitle.title:active:before {
    background-color: #EDF5FD;
  }
}

@media screen and (min-width: 1024px) {
  .new-filter__section.is-active-pc .new-filter__subtitle.title {
    margin-bottom: 8px;
  }
  .new-filter__section.is-active-pc .new-filter__subtitle.title::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@media screen and (max-width: 1023px) {
  .new-filter__section.is-chosen .new-filter__subtitle.title {
    min-height: 44px;
    padding-right: 16px;
    padding-left: 48px;
    border: none;
    background-color: #085293;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    color: white;
  }
  .new-filter__section.is-chosen .new-filter__subtitle.title::after {
    width: 44px;
    height: 44px;
    top: 0;
    right: auto;
    left: 0;
    background: url("../svg/back.svg") center center no-repeat;
    background-size: 24px 24px;
    -webkit-filter: none;
    filter: none;
  }
  .new-filter__section.is-chosen .new-filter__subtitle.title::before {
    display: none;
  }
}

.bx-filter-section .smartfilter .new-filter__section {
  padding: 10px 16px;
}

@media screen and (max-width: 1023px) {
  .bx-filter-section .smartfilter .new-filter__section {
    padding: 0 16px;
  }
  .bx-filter-section .smartfilter .new-filter__section:hover, .bx-filter-section .smartfilter .new-filter__section:active {
    background-color: #EDF5FD;
  }
  .bx-filter-section .smartfilter .new-filter__section.is-chosen {
    padding: 44px 0 76px;
    overflow-y: auto;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    background: white;
  }
}

@media screen and (min-width: 1024px) {
  .bx-filter-section .smartfilter .new-filter__section:last-of-type {
    margin-bottom: -70px;
  }
}

.new-filter.sortBlock-left fieldset .change-number .new-filter__input {
  width: calc(50% - 4px);
  padding: 7px 11px;
  font-size: 14px;
  line-height: 20px;
  -webkit-transition: border 0.25s;
  transition: border 0.25s;
}

.new-filter.sortBlock-left fieldset .change-number .new-filter__input::-webkit-input-placeholder {
  color: #ACB3B9;
}

.new-filter.sortBlock-left fieldset .change-number .new-filter__input:-ms-input-placeholder {
  color: #ACB3B9;
}

.new-filter.sortBlock-left fieldset .change-number .new-filter__input::-ms-input-placeholder {
  color: #ACB3B9;
}

.new-filter.sortBlock-left fieldset .change-number .new-filter__input::placeholder {
  color: #ACB3B9;
}

.new-filter.sortBlock-left fieldset .change-number .new-filter__input:focus {
  border-color: #ACB3B9;
}

.new-filter.sortBlock-left fieldset .change-number .new-filter__input.has-content {
  border-color: #3385CC;
  -webkit-box-shadow: inset 0 0 0 1px #3385CC;
  box-shadow: inset 0 0 0 1px #3385CC;
}

@media screen and (max-width: 1023px) {
  .new-filter.sortBlock-left fieldset .change-number .new-filter__input {
    width: 100%;
    height: auto;
    border: none;
    border-bottom: 0.5px solid #DEE1E3;
    padding: 12px 0;
    font-size: 16px;
    line-height: 20px;
  }
  .new-filter.sortBlock-left fieldset .change-number .new-filter__input:focus {
    border-color: #ACB3B9;
    border-width: 1px;
  }
  .new-filter.sortBlock-left fieldset .change-number .new-filter__input.has-content {
    border-color: #DEE1E3;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.new-filter.sortBlock-left fieldset .psevdo-select {
  width: 100%;
  padding: 7px 30px 7px 11px;
  border-color: #D3D6D9;
  border-radius: 2px;
  font-size: 14px;
  line-height: 20px;
}

.new-filter.sortBlock-left fieldset .psevdo-select::after {
  width: 16px;
  height: 16px;
  background: url("../svg/filter-more.svg") no-repeat center center;
  background-size: 16px 16px;
  -webkit-transform: none;
  transform: none;
  content: "";
}

@media screen and (max-width: 1023px) {
  .new-filter.sortBlock-left fieldset .psevdo-select {
    display: block;
    height: auto;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    position: static;
  }
  .new-filter.sortBlock-left fieldset .psevdo-select span {
    display: none;
  }
  .new-filter.sortBlock-left fieldset .psevdo-select .new-filter__full {
    display: block;
    width: 100%;
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 0 16px;
    border: 0;
    overflow-y: visible;
    position: static;
    top: 0;
    left: 0;
  }
  .new-filter.sortBlock-left fieldset .psevdo-select .new-filter__full li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 0.5px solid #DEE1E3;
    font-size: 16px;
    line-height: 20px;
  }
  .new-filter.sortBlock-left fieldset .psevdo-select .new-filter__full li label {
    display: block;
    margin: 0 -16px;
    padding: 12px 40px 12px 16px;
    font-size: 16px;
    line-height: 20px;
  }
  .new-filter.sortBlock-left fieldset .psevdo-select .new-filter__full li label .checkmark {
    display: block;
    top: 14px;
    right: 16px;
    left: auto;
  }
  .new-filter.sortBlock-left fieldset .psevdo-select .new-filter__full li label:hover, .new-filter.sortBlock-left fieldset .psevdo-select .new-filter__full li label:active {
    background-color: #EDF5FD;
  }
}

@media screen and (min-width: 1024px) {
  .new-filter.sortBlock-left fieldset .psevdo-select {
    -webkit-transition: border 0.25s;
    transition: border 0.25s;
  }
  .new-filter.sortBlock-left fieldset .psevdo-select.is-active {
    border-color: #3385CC;
    -webkit-box-shadow: inset 0 0 0 1px #3385cc;
    box-shadow: inset 0 0 0 1px #3385cc;
  }
  .new-filter.sortBlock-left fieldset .psevdo-select .new-filter__full {
    top: -12px;
    left: 202px;
    -webkit-columns: 3 0px;
    columns: 3 0px;
  }
  .new-filter.sortBlock-left fieldset .psevdo-select .new-filter__full li {
    display: inline-block;
  }
}

.new-filter__checkbox.checkbox {
  padding-left: 24px;
  font-size: 14px;
}

@media screen and (max-width: 1023px) {
  .new-filter__checkbox.checkbox::before {
    width: calc(100% + 32px);
    height: 100%;
    position: absolute;
    top: 0;
    left: -16px;
    z-index: -1;
    background: transparent;
    content: "";
  }
  .new-filter__checkbox.checkbox:hover::before {
    background-color: #EDF5FD;
  }
}

.new-filter__checkbox.checkbox .new-filter__checkmark.checkmark {
  border-color: #D3D6D9;
}

.new-filter__checkbox.checkbox .new-filter__checkmark.checkmark::after {
  border-color: white;
}

.new-filter__checkbox.checkbox:hover input ~ .new-filter__checkmark.checkmark {
  background: white;
  border-color: #ACB3B9;
}

.new-filter__checkbox.checkbox input:checked ~ .new-filter__checkmark.checkmark {
  border-color: #3385CC;
  background: #3385CC;
}

.new-filter__list {
  display: none;
}

@media screen and (min-width: 1024px) {
  .new-filter__section.is-active-pc .new-filter__list {
    display: block;
  }
  .new-filter.sortBlock-left .new-filter__section.is-active-pc .new-filter__list + .psevdo-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.new-filter.sortBlock-left .new-filter__list + .psevdo-select {
  display: none;
}

@media screen and (max-width: 1023px) {
  .new-filter__section.is-chosen .new-filter__list:last-child {
    display: block;
  }
}

.new-filter.sortBlock-left .new-filter__section.is-chosen .new-filter__list + .psevdo-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1023px) {
  .new-filter__list {
    padding: 0 16px;
  }
  .new-filter__list label {
    display: block;
    margin: 0;
    padding: 12px 24px 12px 0;
    border-bottom: 0.5px solid #DEE1E3;
    font-size: 16px;
    line-height: 20px;
  }
  .new-filter__list label.checkbox {
    padding-left: 0;
    font-size: 16px;
    line-height: 20px;
  }
  .new-filter__list label .checkmark {
    display: block;
    top: 14px;
    right: 0;
    left: auto;
  }
}

.new-filter__holder {
  display: none;
}

@media screen and (min-width: 1024px) {
  .new-filter__section.is-active-pc .new-filter__holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 1023px) {
  .new-filter__holder {
    padding: 0 16px;
  }
  .new-filter__section.is-chosen .new-filter__holder {
    display: block;
  }
}

.popup-is-opened body {
  overflow: hidden;
}

.popup-is-opened body jdiv {
  opacity: 0;
  visibility: 0;
}

@media screen and (max-width: 1023px) {
  .brand_cloud-wrapper.tags-is-active {
    -webkit-animation: slideInRight 0.3s ease;
    animation: slideInRight 0.3s ease;
  }
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

/*# sourceMappingURL=styles.css.map */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 48px;
  padding: 0 24px;
  outline: none;
  border: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
  border-radius: 8px;
}

a.btn:hover,
.btn:hover {
  text-decoration: none;
}

.btn--gray {
  background: #5E666E;
  color: #fff;
}

.btn--gray:hover {
  background: #787B7C;
  color: #fff;
}

.btn--gray-light {
  background: #E6E8EB;
  color: #000;
}

.btn--gray-light:hover {
  background: #D6D8DB;
  color: #26292C
}

.svg-sprite {
  display: block;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.section {
  margin: 32px 0;
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}

.section__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #26292C;
  margin: 0 12px 16px 0;
}

.section__title:only-child {
  margin-right: 0;
}

.section__head .section__title {
  margin-bottom: 0;
}

h3.section__title {
  font-size: 20px;
  line-height: 26px;
}

.section__title-link {
  display: inline-flex;
  align-items: center;
  transition: color .15s;
}

.section__title-link:hover {
  text-decoration: none;
  color: #085293;
}

.section__title-link-icon-wrap {
  display: inline-block;
  text-align: center;
  background: #EBEBEB;
  margin-left: 10px;
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 555px;
}

.section__title-link-icon {
  width: 20px;
  height: 20px;
}

.section__subtitle {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #A2A4A5;
}

.section__subtitle-icon {
  height: 24px;
  width: 24px;
  margin-left: 4px;
}

.section__actions {
  margin-top: 16px;
}

.reviews-row {
  display: flex;
  align-items: flex-start;
  overflow: auto;
  margin: 0 -8px -16px;
  scrollbar-width: none;
}

.reviews-row::-webkit-scrollbar {
  width: 0;
}

.reviews-row__item {
  flex: 0 0 calc(25% - 16px);
  margin: 0 8px 16px;
}

.reviews-card {
  background: #F5F6F7;
  border-radius: 16px;
  padding: 16px;
  transition: background-color 0.15s;
  cursor: pointer;
}

.reviews-card:hover {
  background: #E6E8EB;
}

.reviews-card__head {
  /* display: flex; */
  margin-bottom: 8px;
}

.reviews-card__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #26292C;
}

.reviews-card__stars {
  display: flex;
  /* margin-left: 8px; */
}

.reviews-card__star {
  height: 20px;
  width: 20px;
  color: #D3D4D5;
}

.reviews-card__star--active {
  color: #515456;
}

.reviews-card__text {
  font-size: 14px;
  line-height: 18px;
  color: #26292C;
}

.reviews-card__footer {
  color: #515456;
  margin-top: 8px;
}

@media (max-width: 1199px) {

  .reviews-row {
    flex-wrap: nowrap;
    margin: 0 -16px -12px;
    padding: 0 16px 12px;
  }

  .reviews-row__item {
    flex: 0 0 280px;
    margin: 0 16px 0 0;
  }

  .reviews-row__item:last-child {
    margin: 0;
  }
}

.tags {
  display: flex;
  flex-wrap: wrap;
  overflow: auto;
  margin: 0 -4px 16px;
}

.tags__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  background: #E6E8EB;
  border-radius: 36px;
  padding: 0 16px;
  margin: 0 4px 8px;
  font-size: 14px;
  line-height: 20px;
  color: #26292C;
  transition: background-color 0.15s, color 0.15s;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

a.tags__item:hover,
.tags__item:hover {
  background: #D6D8DB;
  text-decoration: none;
}

a.tags__item:active,
.tags__item:active {
  background: #5E666E;
  color: #fff;
}

.tags__item-icon {
  height: 20px;
  width: 20px;
  margin-left: 4px;
}

.review-subtitle {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 16px;
}

.review-subtitle__icon {
  height: 20px;
  width: 20px;
}

.reviews-grid {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -8px -16px;
}

.reviews-grid__item {
  flex: 0 0 calc(25% - 16px);
  margin: 0 8px 16px;
}

.reviews-card .reviews-card__text {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 6;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.reviews-grid .reviews-card__text br {
  content: " ";
  display: none;
}

.reviews-grid .reviews-card {
  cursor: pointer;
}

.modal .reviews-card__head {
  display: block;
  margin-bottom: 12px;
}

.modal .reviews-card__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 12px;
}

.modal .reviews-card__text {
  font-size: 16px;
  line-height: 22px;
}

.modal .reviews-card__stars {
  margin: 0;
}

.modal .reviews-card__footer {
  font-size: 16px;
  line-height: 22px;
  margin-top: 12px;
}

@media (max-width: 1199px) {

  .reviews-grid__item {
    flex: 0 0 calc(50% - 16px);
  }

  .tags {
    flex-wrap: nowrap;
    margin: 0 -16px 4px;
    padding: 0 16px 12px;
  }

  .tags__item {
    margin: 0 8px 0 0;
  }

  .tags__item:last-child {
    margin: 0;
  }
}

@media (max-width: 767px) {

  .reviews-grid {
    display: block;
    margin: 0;
  }

  .reviews-grid__item {
    margin: 0 0 16px;
  }

  .reviews-grid__item:last-child {
    margin: 0;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 10000;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #14171A99;
}

.modal__panel {
  max-width: calc(100% - 32px);
  width: 480px;
  background: #fff;
  padding: 16px;
  color: #26292C;
  border-radius: 16px;
  position: absolute;
  overflow: hidden;
  z-index: 3;
  top: 20%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateZ(0);
}

.modal__close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  opacity: 0.5;
  transition: opacity 0.2s linear;
  border: 0;
  background-color: transparent;
  color: #515456;
}

.modal__close:hover {
  color: #26292C;
}

.modal__close:focus {
  outline: none;
}

.modal__close-icon {
  height: 14px;
  width: 14px;
}

.modal__btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  background-color: #EBEBEB;
  color: #26292C;
  border-radius: 12px;
  width: 100%;
  padding: 17px 0;
  transition: background-color ease-in-out 0.15s, color ease-in-out 0.15s;
  cursor: pointer;
  outline: none;
  border: 0;
  margin-top: 16px;
}

.modal__btn:hover {
  background: #E0E0E0;
  transition: all 0.3s;
}

.modal__btn:focus {
  outline: none;
}

.modal__btn:active {
  background: #26292C;
  color: #fff;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px 8px;
}

.product-grid__item {
  flex: 0 0 20%;
  padding: 0 8px 16px;
}

.product-card {
  position: relative;
}

.product-card__banner {
  position: relative;
  margin-bottom: 8px;
}

.product-card__banner::before {
  content: "";
  display: block;
  padding-top: 66.66%;
}

.product-card__banner-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}

.product-card__title {
  display: block;
  color: #006DCC;
  font-size: 14px;
  line-height: 20px;
  transition: color 0.15s;
  margin-bottom: 4px;
}

.product-card__title:hover {
  color: #005299;
  text-decoration: none;
}

.product-card__text {
  color: #26292C;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 4px
}

.product-card__price {
  color: #26292C;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.48px;
}

.product-card__action {
  cursor: pointer;
  border: 0;
}

.product-card__price-block {
  margin-top: 2px;
}

.full_price_block {
  margin-top: 2px;
}

@media (max-width: 1199px) {

  .product-grid {
    overflow: auto;
    flex-wrap: nowrap;
    margin: 0 -16px;
    padding: 0 16px;
    scrollbar-width: none;
  }

  .product-grid::-webkit-scrollbar {
    width: 0;
    display: none;
  }

  .product-grid__item {
    flex: 0 0 220px;
    padding: 0;
    margin-right: 16px;
  }

  .product-grid__item:last-child {
    margin-right: 0;
  }

  .product-card__action {
    opacity: 1;
  }

  .product-card {
    display: flex;
    flex-direction: column;
  }

  .product-card__price {
    margin-top: auto;
  }

  .product-card__price-block {
    display: block;
    margin-top: 2px;
  }

  .product-card__action {
    margin: 8px 0 0;
  }
}

.map-box {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #F4F5F6;
  background: #F4F5F6;
}

.map-box__content {
  flex: 0 0 390px;
  padding: 24px;
  color: #26292C;
}

.map-box__title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 30px;
}

.map-box__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.map-box__actions {
  margin-top: 16px;
  display: flex;
}

.map-box__action {
  flex: calc(50% - 8px);
  border-radius: 12px;
}

.map-box__action:not(:last-child) {
  margin-right: 8px;
}

.map-box__view {
  flex: 1 1 auto;
}

.map-box__view > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {

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

  .map-box__content {
    order: 2;
    flex: 0 0 auto;
    padding: 16px 24px 24px;
  }

  .map-box__actions {
    margin-top: 16px;
  }

  .map-box__view {
    flex: 0 0 220px;
  }
}


.section__title + .news-grid {
  margin-top: 16px;
}

.news-grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -16px;
  scrollbar-width: none;
}

.news-grid::-webkit-scrollbar {
  display: none;
  width: 0;
}

.news-grid--alt {
  width: calc(100% + 16px);
  margin: -8px;
}

.news-grid__col {
  padding: 8px;
  width: 25%;
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  .news-grid__col {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .news-grid__col {
    width: 100%;
  }
}

.news-grid__item {
  flex: 0 0 calc(25% - (48px / 3));
  display: flex;
  flex-direction: column;
  margin: 0 16px 16px 0;
  color: #26292C;
  transition: color .15s;
}

.news-grid--alt .news-grid__item {
  flex: 0 0 auto;
  margin: 0;
  transition: color .3s;
}

.news-grid__item:active,
.news-grid__item:hover {
  color: #005299;
  text-decoration: none;
}

.news-grid--alt .news-grid__item:active,
.news-grid--alt .news-grid__item:hover {
  color: #006DCC;
}

.news-grid__item:active .news-grid__item-banner::after,
.news-grid__item:hover .news-grid__item-banner::after {
  opacity: 1;
}

.news-grid__item:nth-child(4) {
  margin: 0;
}

.news-grid__item-banner {
  position: relative;
  margin-bottom: 8px;
  border-radius: 16px;
  background-color: #F5F6F7;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.news-grid__item-banner::before {
  content: "";
  display: block;
  padding-top: 66.66%;
}

.news-grid__item-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}

.news-grid__item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 1199px) {

  .news-grid {
    flex-wrap: nowrap;
    overflow: auto;
    margin-bottom: 0;
    margin-right: -16px;
    margin-left: -16px;
    padding: 0 16px;
  }

  .news-grid--alt {
    flex-wrap: wrap;
    width: calc(100% + 16px);
    margin: -8px;
    padding: 0;
  }

  .news-grid__item {
    flex: 0 0 280px;
    margin: 0 16px 0 0;
  }

  .news-grid__item:nth-child(4) {
    margin: 0 16px 0 0;
  }

  .news-grid__item:last-child {
    margin: 0;
  }
}

/* text-guide */

.text-guide {
  max-width: 880px;
  color: #26292C;
  font-size: 16px;
  line-height: 24px;
}

.text-guide p {
  margin: 12px 0;
}

.text-guide h1 {
  color: #26292C;
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
}

.text-guide h2 {
  color: #26292C;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin: 16px 0 12px;
}

.text-guide h2:first-child {
  margin-top: 0;
}

.text-guide h3 {
  color: #26292C;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin: 16px 0 12px;
}

.text-guide ul {
  list-style-type: disc;
  padding: 0 0 0 28px;
  margin: 12px 0;
}

.text-guide li {
  margin-bottom: 12px;
}

.text-guide li:last-child {
  margin-bottom: 0;
}

.text-guide a {
  color: #006DCC;
  text-decoration: none;
  transition: color 0.15s;
}

.text-guide a:hover {
  color: #005299;
}

.text-guide a:active {
  color: #005299;
}

.contactsPage:last-child {
  margin-bottom: 80px;
}

.fotorama__img {
  background: #fff;
}


.card-links {
  margin-top: 32px;
}

.card-links__title {
  color: #26292C;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 12px;
}

.card-links__items {
  display: flex;
  margin-bottom: -12px;
}

.card-links__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 16px 0 0;
}

.card-links__col:last-child {
  margin-right: 0;
}

.card-links__item {
  margin: 0 0 12px 0;
  color: #006DCC;
}

.card-links__item:last-child {
  margin-right: 0;
}

.card-links__item:active,
.card-links__item:hover {
  text-decoration: none;
  color: #005299;
}


@media (min-width: 1200px) {
  .card-links {
    display: none;
  }
} 

.info-cols {
  display: flex;
}

.info-cols__item {
  flex: 0 0 calc(33.33% - (32px / 3));
  margin-right: 16px;
}

.info-cols__item:last-child {
  margin-right: 0;
}

@media (max-width: 1023px) {
  .info-cols {
    display: block;
  }

  .info-cols__item {
    margin: 0 0 16px;
  }

  .info-cols__item:last-child {
    margin: 0;
  }
}


.sidebar__arrow-link {
  margin-bottom: 8px;
}

.arrow-link {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px 12px 12px 16px;
  border-radius: 12px;
  background: #26292C;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}

.arrow-link:active,
.arrow-link:hover {
  text-decoration: none;
  background-color: #515456;
  color: #ffffff;
}

.arrow-link__icon {
  flex: 0 0 auto;
  height: 24px;
  width: 24px;
  margin-left: 8px;
}

@media (max-width: 1199px) {
  .sidebar__arrow-link {
    display: none;
  }
}