@charset "UTF-8";
:root {
  --color-primary: #e12429;
  --color-yellow: #efcd55;
  --color-green: #4ca75c;
  --color-text-base: #000;
  --color-text-light: #5a5a5a;
  --color-text-disabled: #a1a1a1;
  --color-bg: #f7f7f7;
  --color-border: #d8d7d7;
  --color-border-light: #e8e8e8;
  --font-family-base: "Roboto", sans-serif;
  --font-size-base: 14px;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --line-height-base: 1.5;
  --container-max-width: 1330px;
  --container-gutter: 20px;
  --z-index-dropdown: 10;
  --z-index-sticky: 20;
  --z-index-modal: 30;
}

:root {
  scroll-behavior: smooth;
}

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

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  font: 14px/20px "Roboto", sans-serif;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  outline: 0;
  transition: all 0.15s;
}

b {
  font-weight: 500;
}

img {
  max-width: 100%;
}

img,
svg {
  vertical-align: middle;
}

button,
input,
textarea {
  padding: 0;
  font: inherit;
  color: inherit;
  background: 0;
  border: 0;
  outline: 0;
}

button {
  text-align: left;
  transition: all 0.15s;
  -webkit-appearance: button;
}
button:not(:disabled) {
  cursor: pointer;
}

input::-webkit-search-decoration, input::-webkit-search-cancel-button, input::-webkit-search-results-button, input::-webkit-search-results-decoration, input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  display: none;
}

textarea {
  resize: vertical;
}

.sprite {
  display: none;
}

.icon-16 {
  width: 16px;
  height: 16px;
}

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

.icon-24 {
  width: 24px;
  height: 24px;
}

.link {
  color: #e12429;
}
.link:hover, .link:focus-visible {
  text-decoration: underline;
}

.link-underline {
  color: #e12429;
  text-decoration: underline;
}
.link-underline:hover, .link-underline:focus-visible {
  text-decoration: none;
}

.text-field {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  background-color: #fff;
  border: 1px solid #d8d7d7;
}
.text-field:focus {
  background-color: #fff;
  border-color: #e12429;
}
.text-field::placeholder {
  color: #d8d7d7;
}
.text-field--fill {
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}
.text-field--fill::placeholder {
  color: #a1a1a1;
}

textarea.text-field {
  display: block;
  height: 80px;
  padding: 12px 16px;
}

.checkbox {
  display: block;
  cursor: pointer;
}
.checkbox__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.checkbox__label {
  display: flex;
  align-items: center;
}
.checkbox__label::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #d8d7d7;
  border-radius: 2px;
}
.checkbox__input:focus-visible + .checkbox__label::before {
  border-color: #e12429;
}
.checkbox__input:checked + .checkbox__label::before {
  background: #4ca75c url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.66797 12.4072L11.2861 4.04688H12.7217L9.49512 14.0068H8.42188L8.66797 12.4072ZM7.69043 8.73633L8.91406 12.4482L9.13281 14.0068H8.13477L6.19336 8.73633H7.69043ZM5.27734 10.0625V8.73633H7.59473V10.0625H5.27734Z' fill='white'/%3E%3C/svg%3E%0A");
  border: 0;
}
.checkbox__input:disabled + .checkbox__label {
  color: #a1a1a1;
}
.checkbox__input:disabled + .checkbox__label::before {
  border-color: #e8e8e8;
}
.checkbox__input:disabled:checked + .checkbox__label::before {
  background-color: #e8e8e8;
}

.btn {
  display: inline-block;
  padding: 9px 20px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background-color: #e12429;
  border: 1px solid #e12429;
  border-radius: 2px;
}
.btn:hover, .btn:focus-visible {
  background-color: #f21318;
  border-color: #f21318;
}
.btn:active {
  background-color: #d41d22;
  border-color: #d41d22;
}
.btn:disabled {
  color: #a1a1a1;
  background-color: #d8d7d7;
  border-color: #d8d7d7;
  pointer-events: none;
}
.btn--outline {
  color: #e12429;
  background: 0;
}
.btn--outline:hover, .btn--outline:focus-visible {
  color: #fff;
  background-color: #e12429;
}
.btn--outline:active {
  color: #fff;
  background-color: #d41d22;
  border-color: #d41d22;
}
.btn--outline:disabled {
  background-color: #fff;
}
.btn--block {
  display: block;
  width: 100%;
}

.quantity {
  display: flex;
  justify-content: space-between;
  height: 40px;
  color: #a1a1a1;
  background-color: #f7f7f7;
  border-radius: 2px;
}
.quantity--dark {
  color: #5a5a5a;
}
.quantity__btn {
  flex-shrink: 0;
  padding: 0 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.quantity__btn:hover, .quantity__btn:focus-visible {
  color: var(--color-text-base);
}
.quantity__input {
  width: 24px;
  height: 100%;
  text-align: center;
}

.island-fill {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 2px;
}

.island-outline {
  background-color: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 2px;
}

.select2-container--default .select2-selection--single {
  height: 40px;
  border-color: var(--color-border-light);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 10px;
  padding-right: 40px;
  line-height: 40px;
  color: #5a5a5a;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 30px;
  height: 38px;
  border-left: 1px solid #e8e8e8;
}

.select2-dropdown {
  border-color: #e8e8e8;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #e8e8e8;
}

.select2-search--dropdown {
  padding: 8px;
}

.select2-container--default .select2-results__option--selected {
  background-color: #e8e8e8;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #e12429;
}

.counter {
  width: 16px;
  height: 16px;
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  color: #000;
  background-color: #e8e8e8;
  border-radius: 8px;
}
.counter--primary {
  color: #fff;
  background-color: #e12429;
}

.radio-select {
  position: relative;
}
.radio-select__btn {
  position: relative;
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 40px 0 10px;
  line-height: 40px;
  background-color: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.radio-select__btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  height: 100%;
  border-left: 1px solid var(--color-border-light);
}
.radio-select__btn::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 11px;
  width: 0;
  height: 0;
  border-width: 5px 4px 0 4px;
  border-style: solid;
  border-color: #888 transparent transparent transparent;
}
.radio-select--visible .radio-select__current::after {
  transform: scaleY(-1);
}
.radio-select__flyout {
  position: absolute;
  z-index: 20;
  left: 0;
  display: none;
  width: 100%;
  background-color: #fff;
  border-color: var(--color-border-light);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.radio-select--visible .radio-select__flyout {
  display: block;
}
.radio-select__search {
  padding: 8px;
}
.radio-select__search-field {
  width: 100%;
  padding: 4px;
  border: 1px solid var(--color-border-light);
}
.radio-select__list {
  max-height: 192px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) var(--color-bg);
}
.radio-select__list::-webkit-scrollbar {
  width: 4px;
}
.radio-select__list::-webkit-scrollbar-thumb {
  background-color: var(--color-border);
  border-radius: 2px;
}
.radio-select__list::-webkit-scrollbar-track {
  background-color: var(--color-bg);
  border-radius: 2px;
}
.radio-select__item {
  display: block;
}
.radio-select__field {
  position: absolute;
  z-index: -999;
  opacity: 0;
}
.radio-select__label {
  display: block;
  padding: 6px;
  cursor: pointer;
}
.radio-select__label:hover {
  background-color: var(--color-border-light);
}
.radio-select__field:checked + .radio-select__label {
  color: #fff;
  background-color: var(--color-primary);
}

.radio {
  display: block;
  cursor: pointer;
}
.radio__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.radio__label {
  position: relative;
  display: flex;
  align-items: center;
}
.radio__label::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background-color: #fff;
  border: 1px solid #d8d7d7;
  border-radius: 9px;
  box-shadow: inset 0 0 0 3px #fff;
}
.radio__input:checked + .radio__label::before {
  background-color: #e12429;
  border-color: #e12429;
}
.radio__input:disabled + .radio__label {
  color: #a1a1a1;
}
.radio__input:disabled + .radio__label::before {
  border-color: #e8e8e8;
}
.radio__input:disabled:checked + .radio__label::before {
  background-color: #e8e8e8;
}

.radio-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
}
.radio-list__item {
  margin: 10px 0;
}

.avatar-field__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.avatar-field__label {
  display: flex;
  align-items: center;
  text-decoration: underline;
  cursor: pointer;
}
.avatar-field__label:hover {
  color: #e12429;
}
.avatar-field__preview {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border: 1px solid #d8d7d7;
  border-radius: 20px;
  overflow: hidden;
}
.avatar-field__img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.avatar-field__add {
  max-width: 100px;
  font-size: 10px;
  line-height: 13px;
  color: rgba(0, 0, 0, 0.5);
}
.avatar-field__label:hover .avatar-field__add {
  color: #e12429;
}
.avatar-field__load {
  margin-left: auto;
}

.form-field__label {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 500;
}
.form-field__label--required::after {
  content: "*";
  margin-left: 4px;
  color: #e12429;
}

.file-field__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.file-field__label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.file-field__label:hover {
  color: #e12429;
}
.file-field__icon {
  margin-right: 4px;
}

.container {
  width: 100%;
  max-width: 1330px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.header {
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid #e8e8e8;
}
.header--catalog-visible {
  z-index: 30;
}
.header__top {
  font-size: 12px;
  line-height: 18px;
  border-bottom: 1px solid #e8e8e8;
}
@media (max-width: 979.98px) {
  .header__top {
    display: none;
  }
}
.header__top-row {
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.header__top-btn {
  display: flex;
  align-items: center;
}
.header__top-btn:hover, .header__top-btn:focus-visible {
  color: #e12429;
}
.header__top-btn:disabled {
  pointer-events: none;
}
.header__top-btn--accent {
  font-weight: 500;
}
.header__top-icon {
  margin-right: 8px;
}
.header__top-counter {
  margin-left: 8px;
}
.header__top-callback {
  margin: 0 64px 0 16px;
  color: #a1a1a1;
}
.header__top-callback:hover, .header__top-callback:focus-visible {
  color: #e12429;
}
.header__top-user {
  margin: 0 24px 0 auto;
}
.header__main {
  background-color: #fff;
}
.header__main--sticky {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.14);
}
.header__main-row {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 980px) {
  .header__main-row {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.header__logo:hover, .header__logo:focus-visible {
  opacity: 0.7;
}
@media (max-width: 979.98px) {
  .header__catalog-btn {
    order: -1;
    margin-right: 16px;
    font-size: 0;
    color: #e12429;
  }
}
@media (min-width: 980px) {
  .header__catalog-btn {
    display: flex;
    align-items: center;
    margin: 0 24px 0 32px;
    padding: 7px 16px;
    font-weight: 500;
    background-color: #f7f7f7;
    border: 1px solid #f7f7f7;
    border-radius: 2px;
  }
  .header__catalog-btn:hover, .header__catalog-btn:focus-visible {
    background-color: #ededed;
    border-color: #ededed;
  }
  .header__catalog-btn:active {
    transform: scale(0.96);
  }
  .header__catalog-btn--active {
    color: #e12429;
    background-color: #fff;
    border-color: #e12429;
  }
  .header__catalog-btn--active:hover, .header__catalog-btn--active:focus-visible {
    color: #fff;
    background-color: #e12429;
    border-color: #e12429;
  }
}
.header__catalog-btn-icon--close {
  display: none;
}
@media (min-width: 1024px) {
  .header__catalog-btn-icon {
    margin-right: 8px;
  }
}
.header__search {
  position: relative;
  display: flex;
  flex-grow: 1;
}
@media (max-width: 979.98px) {
  .header__search {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 20px;
    background-color: #fff;
    border-top: 1px solid #e8e8e8;
  }
  .header__search--visible {
    display: flex;
  }
}
.header__search-btn {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 40px;
  padding: 0;
}
.header__cart {
  display: flex;
  align-items: center;
  margin-left: 24px;
}
@media (max-width: 979.98px) {
  .header__cart {
    display: none;
  }
}
.header__cart-icon {
  position: relative;
  margin-right: 12px;
  color: #a1a1a1;
}
.header__cart-counter {
  position: absolute;
  top: -4px;
  right: -4px;
}
.header__cart-title {
  font-weight: 500;
}
.header__cart:hover .header__cart-title, .header__cart:focus-visible .header__cart-title {
  text-decoration: underline;
}
.header__cart--not-empty {
  color: #e12429;
}
.header__cart-hint {
  font-size: 12px;
  line-height: 18px;
  color: #a1a1a1;
}
.header__mobile {
  display: flex;
  margin-left: auto;
  padding-left: 16px;
}
@media (min-width: 980px) {
  .header__mobile {
    display: none;
  }
}
.header__mobile-btn {
  position: relative;
}
.header__mobile-btn--active {
  color: #e12429;
}
.header__mobile-btn + .header__mobile-btn {
  margin-left: 8px;
}
.header__mobile-counter {
  position: absolute;
  top: -4px;
  right: -4px;
}
.header__callback {
  position: absolute;
  z-index: 10;
  display: none;
  width: 300px;
  padding: 20px 15px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 4px 35px rgba(0, 0, 0, 0.25);
}
.header__callback--visible {
  display: block;
}
@media (max-width: 979.98px) {
  .header__callback {
    top: 100%;
    right: 20px;
  }
}
@media (min-width: 980px) {
  .header__callback {
    top: 0;
  }
}
.header__callback-online {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 500;
}
.header__callback-online::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  background-color: #e12429;
  border-radius: 3px;
  animation: blink 1s linear infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.header__callback-num {
  display: block;
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: #e12429;
}
.header__callback-text {
  font-size: 12px;
  line-height: 18px;
}
.header__callback-title {
  margin-bottom: 8px;
  font-weight: 500;
}
.header__callback-divider {
  margin: 20px -15px;
  border-bottom: 1px solid #d8d7d7;
}
.header__callback-form {
  margin-top: 15px;
}
.header__catalog {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  background-color: #fff;
}
.header__catalog--visible {
  display: block;
}
@media (min-width: 768px) {
  .header__catalog {
    padding: 48px 0;
    border-top: 1px solid #e8e8e8;
  }
}
@media (min-width: 980px) {
  .header__catalog {
    padding-bottom: 72px;
  }
}
.header__catalog-row {
  margin: 0 -20px;
}
@media (min-width: 768px) {
  .header__catalog-row {
    display: flex;
    flex-wrap: wrap;
    margin: -24px -20px;
  }
}
@media (max-width: 767.98px) {
  .header__catalog-col {
    border-top: 1px solid #e8e8e8;
  }
}
@media (min-width: 768px) {
  /*.header__catalog-col {*/
  /*    padding: 24px 20px;*/
  /*    width: 33.3333333333%;*/
  /*}*/
  .header__catalog-col {
    padding: 24px 20px;
  }
}
/*@media (min-width: 980px) {*/
/*    .header__catalog-col {*/
/*        width: 25%;*/
/*    }*/
/*}*/
/*@media (min-width: 1200px) {*/
/*    .header__catalog-col {*/
/*        width: 16.6666666667%;*/
/*    }*/
/*}*/
.header__catalog-title {
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .header__catalog-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
  }
}
.header__catalog-title-link {
  display: block;
  flex-grow: 1;
}
.header__catalog-title-link:hover, .header__catalog-title-link:focus-visible {
  color: #e12429;
}
.header__catalog-toggle {
  width: 50px;
  height: 50px;
  text-align: center;
}
.header__catalog-toggle--active {
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .header__catalog-toggle {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .header__catalog-list {
    display: none;
    padding: 0 20px 20px;
  }
}
@media (min-width: 768px) {
  .header__catalog-list {
    margin-top: 12px;
  }
}
.header__catalog-link {
  display: block;
}
.header__catalog-link:hover, .header__catalog-link:focus-visible {
  color: #e12429;
}
.header__catalog-link + .header__catalog-link {
  margin-top: 12px;
}
.header__nav {
  position: relative;
}
@media (max-width: 979.98px) {
  .header__nav {
    display: none;
  }
}
.header__nav-row {
  display: flex;
  justify-content: space-between;
}
.header__nav-link {
  padding-bottom: 16px;
  font-weight: 500;
}
.header__nav-link:hover, .header__nav-link:focus-visible {
  color: #e12429;
}
.header__nav-link--active {
  color: #e12429;
  border-bottom: 1px solid #e12429;
}
.header__nav-flyout {
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 50%;
  display: none;
  margin-top: 1px;
  padding: 18px 40px;
  background-color: #fff;
  box-shadow: 0 4px 17px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
}
.header__nav-dropdown:hover .header__nav-flyout, .header__nav-dropdown:focus-within .header__nav-flyout {
  display: flex;
}
.header__nav-col {
  display: flex;
  align-items: center;
  font-weight: 500;
  white-space: nowrap;
}
.header__nav-col:hover, .header__nav-col:focus-visible {
  color: #e12429;
}
.header__nav-col + .header__nav-col {
  margin-left: 50px;
}
.header__nav-media {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-right: 16px;
  background-color: #f7f7f7;
  border-radius: 46px;
  transition: background-color 0.15s;
}
.header__nav-col:hover .header__nav-media, .header__nav-col:focus-visible .header__nav-media {
  background-color: #ededed;
}

.footer {
  margin-top: auto;
  background-color: #f7f7f7;
}
.footer__subscribe {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .footer__subscribe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
  }
}
@media (max-width: 767.98px) {
  .footer__subscribe-col + .footer__subscribe-col {
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .footer__subscribe-col {
    flex: 1 0 0;
  }
  .footer__subscribe-col + .footer__subscribe-col {
    margin-left: 40px;
  }
}
@media (min-width: 980px) {
  .footer__subscribe-col {
    max-width: 480px;
  }
}
.footer__subscribe-title {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.footer__subscribe-text {
  font-weight: 500;
}
@media (min-width: 980px) {
  .footer__subscribe-row {
    display: flex;
  }
}
@media (max-width: 979.98px) {
  .footer__subscribe-submit {
    width: 100%;
    margin-top: 16px;
  }
}
@media (min-width: 980px) {
  .footer__subscribe-submit {
    margin-left: 16px;
  }
}
.footer__main {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border: solid #e8e8e8;
  border-width: 1px 0;
}
@media (max-width: 979.98px) {
  .footer__main {
    flex-wrap: wrap;
  }
}
@media (min-width: 980px) {
  .footer__main {
    padding: 40px 0;
  }
}
@media (max-width: 979.98px) {
  .footer__main-col {
    width: 50%;
    padding: 15px 0;
  }
  .footer__main-col--payments {
    width: 100%;
  }
}
.footer__main-title {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.footer__nav-link {
  display: block;
  color: #5a5a5a;
}
.footer__nav-link:hover, .footer__nav-link:focus-visible {
  color: #e12429;
}
.footer__nav-link + .footer__nav-link {
  margin-top: 8px;
}
.footer__contacts {
  margin-bottom: 30px;
}
.footer__contacts-item {
  display: flex;
  align-items: center;
}
.footer__contacts-item:hover, .footer__contacts-item:focus-visible {
  color: #e12429;
}
.footer__contacts-item + .footer__contacts-item {
  margin-top: 8px;
}
.footer__contacts-icon {
  margin-right: 8px;
}
.footer__social {
  display: flex;
}
.footer__social-item {
  text-decoration: underline;
}
.footer__social-item:hover, .footer__social-item:focus-visible {
  color: #e12429;
}
.footer__social-item + .footer__social-item {
  margin-left: 12px;
}
.footer__copyright {
  padding: 30px 0;
  color: #a1a1a1;
}

.page-header {
  margin-top: 24px;
  margin-bottom: 32px;
}
.page-header__breadcrumbs {
  margin-bottom: 16px;
}
.page-header__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 8px;
}
.page-header__title {
  margin: 0;
  font-size: 32px;
  line-height: 38px;
  font-weight: 400;
}

.form__row + .form__row {
  margin-top: 20px;
}
.form__label {
  display: block;
  margin-bottom: 8px;
}
.form__success {
  display: none;
  padding: 8px 12px;
  font-size: 12px;
  color: #4ca75c;
  background-color: rgba(76, 167, 92, 0.1);
  border: 1px solid rgba(76, 167, 92, 0.2);
  border-radius: 2px;
}
.form__success--visible {
  display: block;
}
.form__error {
  display: none;
  padding: 8px 12px;
  font-size: 12px;
  color: #f00;
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 2px;
}
.form__error--visible {
  display: block;
}

.modal {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  padding: 20px;
  overflow: hidden auto;
}
.modal--visible {
  display: flex;
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: auto;
  padding: 32px;
  background-color: #fff;
  border-radius: 2px;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #e12429;
}
.modal__title {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.backdrop {
  position: fixed;
  z-index: 29;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
}
.backdrop--visible {
  display: block;
}

.wide-carousel__slide {
  position: relative;
  display: flex;
  height: 300px;
  background-position: center;
  background-size: cover;
}
.wide-carousel__content {
  position: absolute;
  top: 50%;
  max-width: 560px;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .wide-carousel__content {
    padding: 0 80px;
  }
}
.wide-carousel__caption {
  margin-bottom: 8px;
  font-weight: 500;
}
.wide-carousel__title {
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
}
.wide-carousel__text {
  margin-top: 8px;
}
.wide-carousel__btn {
  margin-top: 20px;
}
.wide-carousel__nav {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .wide-carousel__nav {
    display: none;
  }
}
.wide-carousel__nav-btn {
  padding: 4px;
  border-radius: 50%;
  color: #fff;
  background-color: #e12429;
  pointer-events: auto;
}
.wide-carousel__nav-btn:hover, .wide-carousel__nav-btn:focus-visible {
  background-color: #f21318;
  border-color: #f21318;
}
.wide-carousel__nav-btn:active {
  background-color: #d41d22;
  border-color: #d41d22;
}
.wide-carousel__pagination {
  position: absolute;
  z-index: 1;
  bottom: 32px !important;
  display: flex;
  justify-content: center;
}
.wide-carousel__pagination-item {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: #fff;
  border-radius: 6px;
}
.wide-carousel__pagination-item--active {
  background-color: #e12429;
}

.product-block {
  position: relative;
}
@media (min-width: 980px) {
  .product-block {
    height: 420px;
  }
  .product-block:hover, .product-block:focus-within {
    z-index: 10;
  }
}
.product-block__inner {
  padding: 20px;
  background-color: #fff;
  box-shadow: inset -1px 0 0 0 #e8e8e8, inset 0 -1px 0 0 #e8e8e8, -1px -1px 0 0 #e8e8e8, -1px 0 0 0 #e8e8e8, 0 -1px 0 0 #e8e8e8;
}
@media (max-width: 979.98px) {
  .product-block__inner {
    display: flex;
    align-items: flex-start;
  }
}
@media (min-width: 980px) {
  .product-block__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (min-width: 980px) {
  .product-block:hover .product-block__inner, .product-block:focus-within .product-block__inner {
    height: auto;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  }
}
.product-block__media {
  position: relative;
  flex-shrink: 0;
  width: 100px;
  margin-right: 16px;
}
@media (min-width: 768px) {
  .product-block__media {
    width: 150px;
  }
}
@media (min-width: 980px) {
  .product-block__media {
    width: 100%;
    height: 200px;
    margin-right: 0;
  }
}
.product-block__badges {
  display: flex;
}
@media (max-width: 979.98px) {
  .product-block__badges {
    margin-top: 8px;
  }
}
@media (min-width: 980px) {
  .product-block__badges {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
  }
}
.product-block__badges-item {
  padding: 0 4px;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  border-radius: 2px;
}
.product-block__badges-item + .product-block__badges-item {
  margin-left: 4px;
}
.product-block__badges-item--bestseller {
  background-color: #e12429;
}
.product-block__badges-item--new {
  background-color: #4ca75c;
}
.product-block__favorite {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  color: #a1a1a1;
}
.product-block__favorite:hover, .product-block__favorite:focus-visible {
  color: #000;
}
.product-block__favorite--active {
  color: #e12429;
}
@media (min-width: 980px) {
  .product-block__favorite {
    display: none;
  }
}
@media (min-width: 980px) {
  .product-block:hover .product-block__favorite, .product-block:focus-within .product-block__favorite {
    display: block;
  }
}
.product-block__icons {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}
@media (max-width: 979.98px) {
  .product-block__icons {
    display: none;
  }
}
.product-block__icons-item {
  position: relative;
  display: block;
  margin-left: -3px;
  padding: 3px;
  color: #a1a1a1;
  border-radius: 2px;
}
.product-block__icons-item::after {
  position: absolute;
  top: 0;
  left: 100%;
  content: attr(data-name);
  display: none;
  height: 30px;
  margin-left: 8px;
  padding: 0 10px;
  font-size: 12px;
  line-height: 30px;
  white-space: nowrap;
  color: #fff;
  background-color: #e12429;
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.product-block__icons-item:hover {
  color: #fff !important;
  background-color: #e12429;
}
.product-block__icons-item:hover::after {
  display: block;
}
.product-block:hover .product-block__icons-item, .product-block:focus-within .product-block__icons-item {
  color: #e12429;
}
.product-block__photo {
  display: block;
  max-width: 200px;
  margin: 0 auto;
}
@media (max-width: 979.98px) {
  .product-block__content {
    flex-grow: 1;
  }
}
@media (min-width: 980px) {
  .product-block__content {
    margin-top: 20px;
  }
}
.product-block__price {
  display: flex;
  align-items: center;
}
.product-block__price-current {
  font-size: 24px;
  line-height: 30px;
}
.product-block__price-old {
  position: relative;
  margin-left: 8px;
  font-size: 16px;
  line-height: 22px;
  color: #a95457;
}
.product-block__price-old::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  border-top: 2px solid;
  transform: rotate(-10deg);
}
.product-block__bonuses {
  font-size: 12px;
  line-height: 18px;
  color: #a1a1a1;
}
.product-block__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 4px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  overflow: hidden;
}
.product-block__name:hover, .product-block__name:focus-visible {
  color: #e12429;
}
.product-block__props {
  display: flex;
  margin-top: 8px;
}
.product-block__props-item {
  padding: 2px 4px;
  background-color: #f7f7f7;
  border-radius: 2px;
}
.product-block__props-item + .product-block__props-item {
  margin-left: 4px;
}
.product-block__bottom {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.product-block__spec + .product-block__spec {
  margin-left: 4px;
}
.product-block__rating {
  display: flex;
  align-items: center;
  margin-left: 8px;
}
.product-block__rating-num {
  margin-left: 4px;
  color: #a1a1a1;
}
.product-block__availability {
  margin-left: auto;
}
.product-block__availability-btn {
  position: relative;
  font-size: 12px;
  line-height: 18px;
  text-decoration: underline;
}
.product-block__availability-flyout {
  z-index: 10;
  display: none;
  width: 150%;
  max-width: 90vw;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.product-block__availability--visible .product-block__availability-flyout {
  display: block;
}
.product-block__availability-title {
  padding: 14px 20px;
  font-weight: 500;
  color: #fff;
  background-color: #e12429;
}
.product-block__availability-item {
  padding: 14px 20px;
}
.product-block__availability-item + .product-block__availability-item {
  border-top: 1px solid #e8e8e8;
}
.product-block__flyout {
  margin-top: 16px;
}
@media (min-width: 980px) {
  .product-block__flyout {
    display: none;
  }
}
@media (min-width: 980px) {
  .product-block:hover .product-block__flyout, .product-block:focus-within .product-block__flyout {
    display: block;
  }
}
@media (min-width: 980px) {
  .product-block__actions {
    display: flex;
  }
}
.product-block__quantity {
  flex-grow: 1;
}
@media (max-width: 979.98px) {
  .product-block__quantity {
    display: none;
  }
}
@media (max-width: 979.98px) {
  .product-block__cart {
    width: 100%;
  }
}
@media (min-width: 980px) {
  .product-block__cart {
    flex-shrink: 0;
    margin-left: 12px;
  }
}
.product-block__tire {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  margin: 20px -20px -20px;
  font-weight: 500;
  color: #fff;
  background-color: #e12429;
}
@media (max-width: 979.98px) {
  .product-block__tire {
    display: none;
  }
}
.product-block__tire-icon {
  margin-right: 8px;
}
.product-block .btn {
  white-space: nowrap;
}

.kit {
  padding: 16px 16px 32px;
  box-shadow: inset -1px 0 0 0 #e8e8e8, inset 0 -1px 0 0 #e8e8e8, -1px -1px 0 0 #e8e8e8, -1px 0 0 0 #e8e8e8, 0 -1px 0 0 #e8e8e8;
}
.kit:hover {
  position: relative;
  z-index: 1;
  box-shadow: inset -1px 0 0 0 #e12429, inset 0 -1px 0 0 #e12429, -1px -1px 0 0 #e12429, -1px 0 0 0 #e12429, 0 -1px 0 0 #e12429;
}
@media (min-width: 980px) {
  .kit {
    display: flex;
    align-items: center;
    padding: 32px 24px;
  }
}
.kit__product {
  display: flex;
}
.kit__photo {
  flex-shrink: 0;
  width: 100px;
  margin-right: 16px;
}
@media (min-width: 768px) {
  .kit__photo {
    width: 140px;
  }
}
.kit__price {
  display: flex;
  align-items: center;
}
.kit__price-current {
  font-size: 24px;
  line-height: 30px;
}
.kit__price-old {
  position: relative;
  margin-left: 8px;
  font-size: 16px;
  line-height: 22px;
  color: #a95457;
}
.kit__price-old::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  border-top: 2px solid;
  transform: rotate(-10deg);
}
.kit__bonuses {
  font-size: 12px;
  line-height: 18px;
  color: #a1a1a1;
}
.kit__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 4px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  overflow: hidden;
}
.kit__name:hover, .kit__name:focus-visible {
  color: #e12429;
}
.kit__props {
  display: flex;
  margin-top: 8px;
}
.kit__props-item {
  padding: 2px 4px;
  background-color: #f7f7f7;
  border-radius: 2px;
}
.kit__props-item + .kit__props-item {
  margin-left: 4px;
}
.kit__bottom {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.kit__rating {
  display: flex;
  align-items: center;
  margin-left: 8px;
}
.kit__rating-num {
  margin-left: 4px;
  color: #a1a1a1;
}
.kit__divider {
  margin: 16px 0;
  font-size: 27px;
  text-align: center;
  color: #e12429;
}
@media (min-width: 980px) {
  .kit__divider {
    margin: 0 32px;
  }
}
@media (max-width: 979.98px) {
  .kit__total {
    text-align: center;
  }
}
.kit__total-caption {
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 18px;
  color: #a1a1a1;
}
@media (max-width: 979.98px) {
  .kit__total-caption {
    display: none;
  }
}
.kit__total-price {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #e12429;
}

.section {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .section {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
.section__header {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
}
.section__header--underline {
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
}
.section__title {
  font-size: 24px;
  line-height: 30px;
}
@media (min-width: 768px) {
  .section__title {
    font-size: 32px;
    line-height: 38px;
  }
}
.section__more {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 15px;
}
.section__more:hover, .section__more:focus-visible {
  color: #e12429;
}

@media (min-width: 980px) {
  .choice {
    display: flex;
    margin: 0 -10px;
  }
}
@media (max-width: 979.98px) {
  .choice__col {
    margin-bottom: 24px;
  }
}
@media (min-width: 980px) {
  .choice__col {
    width: 50%;
    padding: 0 10px;
  }
}
.choice__island {
  height: 100%;
  background-color: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
@media (max-width: 979.98px) {
  .choice__island {
    padding: 24px 16px;
  }
}
@media (min-width: 980px) {
  .choice__island {
    padding: 40px 32px;
  }
}
.choice__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.choice__title {
  font-size: 24px;
  line-height: 30px;
}
.choice__toggle {
  display: flex;
}
@media (max-width: 767.98px) {
  .choice__toggle {
    width: 100%;
    margin-top: 8px;
  }
}
.choice__toggle-btn {
  color: #5a5a5a;
}
.choice__toggle-btn:hover, .choice__toggle-btn:focus-visible {
  color: #e12429;
}
.choice__toggle-btn + .choice__toggle-btn {
  margin-left: 24px;
}
.choice__toggle-btn--active {
  color: #e12429;
  border-bottom: 1px solid;
  pointer-events: none;
}
.choice__content {
  display: none;
}
.choice__content--visible {
  display: block;
}
.choice__tire-top {
  display: flex;
  align-items: flex-end;
  margin-bottom: 16px;
}
.choice__tire-top-col {
  flex: 1 0 0;
  max-width: 100px;
}
.choice__tire-top-divider {
  margin: 0 16px;
  font-size: 18px;
  line-height: 35px;
  color: #a1a1a1;
}
.choice__tire-bottom {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1199.98px) {
  .choice__tire-bottom {
    flex-wrap: wrap;
  }
}
.choice__tire-bottom-col {
  flex: 1 0 0;
}
.choice__tire-bottom-col + .choice__tire-bottom-col {
  margin-left: 16px;
}
@media (min-width: 1200px) {
  .choice__tire-bottom-col {
    max-width: 120px;
  }
  .choice__tire-bottom-col + .choice__tire-bottom-col {
    margin-left: 40px;
  }
}
@media (max-width: 1199.98px) {
  .choice__tire-actions {
    width: 100%;
    margin-top: 24px;
  }
}
@media (min-width: 1200px) {
  .choice__tire-actions {
    margin-left: auto;
    padding-left: 40px;
  }
}
.choice__disc-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin: -8px;
}
@media (min-width: 1200px) {
  .choice__disc-row {
    margin-right: -20px;
    margin-left: -20px;
  }
}
.choice__disc-col {
  width: 50%;
  padding: 8px;
}
@media (min-width: 1200px) {
  .choice__disc-col {
    width: 33.3333333333%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.choice__disc-actions {
  margin-top: 8px;
  padding: 8px;
}
@media (min-width: 1200px) {
  .choice__disc-actions {
    margin: 0 0 0 auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.choice__label {
  margin-bottom: 8px;
  white-space: nowrap;
}
.choice__actions {
  display: flex;
}
.choice__actions-btn + .choice__actions-btn {
  margin-left: 12px;
}

.choice-car {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin: -8px;
}
@media (min-width: 980px) {
  .choice-car {
    margin-right: -20px;
    margin-left: -20px;
  }
}
.choice-car__col {
  width: 50%;
  padding: 8px;
}
@media (min-width: 980px) {
  .choice-car__col {
    width: 33.3333333333%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.choice-car__action {
  padding: 8px;
}
@media (max-width: 979.98px) {
  .choice-car__action {
    width: 100%;
    margin-top: 8px;
  }
}
@media (min-width: 980px) {
  .choice-car__action {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.choice-car__label {
  margin-bottom: 8px;
  white-space: nowrap;
}

.popular {
  margin-top: 32px;
  padding: 24px 20px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
@media (min-width: 980px) {
  .popular {
    margin-top: 32px;
  }
}
.popular__title {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.popular__title:not(:first-child) {
  margin-top: 20px;
}
.popular__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2px -6px;
}
.popular__link {
  display: inline-block;
  margin: 2px 6px;
}

@media (min-width: 768px) {
  .collection {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .collection__col {
    width: 50%;
  }
}
@media (min-width: 980px) {
  .collection__col {
    width: 33.3333333333%;
  }
}
@media (min-width: 1200px) {
  .collection__col {
    width: 20%;
  }
}

.features {
  display: flex;
  flex-wrap: wrap;
  margin: -16px -20px;
}
.features__col {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
}
@media (min-width: 768px) {
  .features__col {
    width: 50%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .features__col {
    width: 25%;
    grid-template-columns: repeat(4, 1fr);
  }
}
.features__img {
  flex-shrink: 0;
  margin-right: 32px;
}
.features__title {
  margin-bottom: 4px;
  font-weight: 500;
}

.offers {
  display: grid;
  gap: var(--container-gutter);
}
@media (min-width: 768px) {
  .offers {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .offers {
    grid-template-columns: repeat(3, 1fr);
  }
}
.offers__col {
  border: 1px solid var(--color-border-light);
}
.offers__img {
  width: 100%;
  transition: opacity 0.15s;
}
.offers__col:hover .offers__img {
  opacity: 0.8;
}
.offers__content {
  padding: 16px 20px;
}
.offers__title {
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: var(--font-weight-medium);
}
.offers__col:hover .offers__title {
  color: var(--color-primary);
}
.offers__date {
  color: var(--color-text-light);
}

.brands__col {
  text-align: center;
}
.brands__nav {
  position: absolute;
  z-index: 1;
  top: 50%;
  color: var(--color-text-disabled);
  transform: translateY(-50%);
}
.brands__nav:hover {
  color: var(--color-primary);
}
.brands__nav--prev {
  left: 0;
  transform: translateY(-50%) scaleX(-1);
}
.brands__nav--next {
  right: 0;
}

.articles {
  display: grid;
  gap: var(--container-gutter);
}
@media (min-width: 768px) {
  .articles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .articles {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.articles__col {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .articles__col--lg {
    grid-column: span 2;
    grid-row: 1/-1;
  }
}
.articles__img {
  flex-shrink: 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: opacity 0.15s;
}
.articles__col:hover .articles__img {
  opacity: 0.8;
}
@media (min-width: 768px) {
  .articles__col--lg .articles__img {
    height: 420px;
  }
}
.articles__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 16px 24px;
  border: solid var(--color-border-light);
  border-width: 0 1px 1px;
}
.articles__col--lg .articles__content {
  padding: 24px 32px;
}
.articles__caption {
  margin-bottom: 4px;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: var(--color-text-disabled);
}
.articles__title {
  color: var(--color-text-light);
}
.articles__col:hover .articles__title {
  color: var(--color-primary);
}
.articles__col--lg .articles__title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: var(--color-text-base);
}
.articles__text {
  margin-top: 4px;
  color: var(--color-text-light);
}
.articles__date {
  margin-top: auto;
  padding-top: 12px;
  color: var(--color-text-light);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-disabled);
}
.breadcrumbs__item + .breadcrumbs__item::before {
  content: " - ";
  color: var(--color-text-disabled);
}
.breadcrumbs__item:link:hover {
  color: var(--color-primary);
}

.catalog {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .catalog {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
}
.catalog__car {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 16px;
  width: 100%;
  margin-bottom: 24px;
  padding: 10px 20px;
  background-color: var(--color-bg);
  border-radius: 2px;
}
.catalog__car--large {
  position: relative;
  padding: 32px 24px;
}
@media (max-width: 768px) {
  .catalog__car {
    flex-direction: column;
    align-items: flex-start;
  }
}
.catalog__car-model {
  display: flex;
  align-items: center;
}
.catalog__car-img {
  width: 60px;
  height: 60px;
  margin-right: 20px;
  border-radius: 30px;
}
.catalog__car-name {
  margin-right: 24px;
  font-weight: var(--font-weight-medium);
}
@media (max-width: 768px) {
  .catalog__car-btn {
    width: 100%;
  }
}
.catalog__car-title {
  font-size: 24px;
  line-height: 30px;
}
.catalog__car-remove {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-disabled);
}
.catalog__car-remove:hover {
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .catalog__car-remove {
    order: -1;
  }
}
@media (min-width: 768px) {
  .catalog__car-remove {
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .catalog__car--large .catalog__car-remove {
    position: absolute;
    top: 32px;
    right: 24px;
  }
}
.catalog__car-section {
  width: 100%;
}
.catalog__car-section + .catalog__car-section {
  margin-top: 24px;
}
.catalog__car-row {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .catalog__car-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 980px) {
  .catalog__car-row {
    grid-template-columns: repeat(4, 1fr);
  }
}
.catalog__car-caption {
  font-weight: var(--font-weight-medium);
}
.catalog__car-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-top: 4px;
}
@media (min-width: 1024px) {
  .catalog__sidebar {
    width: 25%;
    padding-right: var(--container-gutter);
  }
}
@media (min-width: 1024px) {
  .catalog__content {
    width: 75%;
  }
}
.catalog__toolbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.catalog__sort {
  display: flex;
  align-items: center;
  column-gap: 16px;
  width: 30%;
}
@media (max-width: 1024px) {
  .catalog__sort {
    display: none;
  }
}
.catalog__search {
  display: flex;
}
@media (max-width: 1024px) {
  .catalog__search {
    display: none;
  }
}
.catalog__filter-btn {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-left: auto;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .catalog__filter-btn {
    display: none;
  }
}
@media (min-width: 768px) {
  .catalog__products {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .catalog__products-col {
    width: 50%;
  }
}
@media (min-width: 980px) {
  .catalog__products-col {
    width: 33.3333333333%;
  }
}
@media (min-width: 1200px) {
  .catalog__products-col {
    width: 25%;
  }
}
.catalog__pagination {
  margin-top: 24px;
}

.filter {
  position: relative;
}
@media (max-width: 1024px) {
  .filter {
    position: fixed;
    z-index: var(--z-index-modal);
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
  .filter--visible {
    display: block;
  }
}
.filter__result {
  position: absolute;
  z-index: 19;
  left: 100%;
  display: none;
  padding: 8px 16px;
  white-space: nowrap;
  color: #fff;
  background-color: var(--color-primary);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
}
@media (max-width: 979.98px) {
  .filter__result {
  }
}
.filter__result::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 0;
  height: 0;
  margin-top: -4px;
  border-width: 4px 4px 4px 0;
  border-style: solid;
  border-color: transparent var(--color-primary) transparent transparent;
}
.filter__result-submit {
  border-bottom: 1px dotted;
}
.filter__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--color-border-light);
}
@media (min-width: 1024px) {
  .filter__header {
    display: none;
  }
}
.filter__title {
  font-size: 24px;
  line-height: 30px;
}
.filter__section {
  padding: 20px;
}
.filter__section + .filter__section {
  border-top: 1px solid var(--color-border-light);
}
.filter__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: var(--font-weight-medium);
}
.filter__toggle--collapse .filter__chevron {
  transform: rotate(-90deg);
}
.filter__collapse {
  padding-top: 20px;
}
.filter__row + .filter__row {
  margin-top: 12px;
}
.filter__table {
  display: flex;
  align-items: center;
}
.filter__table-cell {
  width: 50%;
}
.filter__label {
  margin-bottom: 8px;
}
.filter__range-row {
  display: flex;
  align-items: center;
}
.filter__range-field {
  flex-grow: 1;
}
.filter__range-divider {
  flex-shrink: 0;
  width: 12px;
  margin: 0 8px;
  border-bottom: 1px solid var(--color-text-disabled);
}
.filter__tabs-pill {
  display: flex;
  margin-bottom: 20px;
}
.filter__tabs-btn {
  flex: 1 0 0;
  height: 35px;
  text-align: center;
  border: 1px solid var(--color-text-disabled);
}
.filter__tabs-btn:first-child {
  border-radius: 2px 0 0 2px;
}
.filter__tabs-btn:last-child {
  border-radius: 0 2px 2px 0;
}
.filter__tabs-btn--active {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.filter__tabs-content {
  display: none;
}
.filter__tabs-content--visible {
  display: block;
}
.filter__reset {
  width: 100%;
  text-align: center;
  text-decoration: underline;
  color: var(--color-text-disabled);
}
.filter__reset:hover {
  color: var(--color-primary);
}

.irs--round .irs-line {
  height: 3px;
  background-color: var(--color-border);
}

.irs--round .irs-bar {
  height: 3px;
  background-color: var(--color-primary);
}

.irs--round .irs-handle {
  top: 29px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--color-primary);
}

.irs--round .irs-from, .irs--round .irs-to, .irs--round .irs-single {
  padding: 0;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-text-base);
  background: 0;
}
.irs--round .irs-from::before, .irs--round .irs-to::before, .irs--round .irs-single::before {
  content: none;
}

.irs-from, .irs-to, .irs-single {
  top: 10px;
}

.irs--round .irs-min, .irs--round .irs-max {
  top: 10px;
  padding: 0;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-text-disabled);
  background: 0;
}

.pagination {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.pagination__item {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-weight: var(--font-weight-medium);
  border-radius: 2px;
}
.pagination__item + .pagination__item {
  margin-left: 4px;
}
.pagination__item:hover {
  background-color: var(--color-bg);
}
.pagination__item--active {
  color: #fff;
  background-color: var(--color-primary);
  pointer-events: none;
}
.pagination__ellipsis {
  margin: 0 8px;
}
.pagination__all {
  margin-left: 8px;
  font-size: 12px;
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
}
.pagination__all:hover {
  text-decoration: underline;
}
.pagination__nav {
  color: var(--color-text-disabled);
}
.pagination__nav:hover {
  color: var(--color-primary);
}
.pagination__nav--prev {
  margin-right: 8px;
}
.pagination__nav--next {
  margin-left: 8px;
}

.product-light {
  position: relative;
  padding: 16px;
  background-color: #fff;
  box-shadow: inset -1px 0 0 0 var(--color-border-light), inset 0 -1px 0 0 var(--color-border-light), -1px -1px 0 0 var(--color-border-light), -1px 0 0 0 var(--color-border-light), 0 -1px 0 0 var(--color-border-light);
}
.product-light__remove {
  position: absolute;
  top: 16px;
  right: 16px;
}
.product-light__remove:hover {
  color: var(--color-primary);
}
.product-light__photo {
  display: block;
  max-width: 120px;
  margin: 0 auto;
  text-align: center;
}
.product-light__photo img {
  max-width: 120px;
  height: 120px;
  object-fit: cover;
}
.product-light__price {
  display: flex;
  align-items: center;
  margin-top: 8px;
}
.product-light__price-current {
  font-size: 23px;
}
.product-light__price-old {
  position: relative;
  margin-left: 8px;
  font-size: 16px;
  color: #a95457;
}
.product-light__price-old::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  border-top: 2px solid;
  transform: rotate(-10deg);
}
.product-light__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 4px;
  font-size: 15px;
  font-weight: var(--font-weight-medium);
  overflow: hidden;
}
.product-light__name:hover {
  color: var(--color-primary);
}

.viewed {
  position: sticky;
  z-index: var(--z-index-sticky);
  bottom: 0;
}
@media (max-width: 768px) {
  .viewed {
    display: none;
  }
}
.viewed__badge {
  display: inline-flex;
  align-items: center;
  height: 40px;
  background-color: #fff;
  border: 1px solid var(--color-border-light);
}
.viewed__badge--active {
  width: 100%;
}
.viewed__icon {
  padding: 8px;
  text-align: center;
  color: #fff;
  background-color: var(--color-primary);
}
.viewed__counter {
  margin: 0 24px 0 16px;
  color: var(--color-text-light);
}
.viewed__toggle {
  display: flex;
  align-items: center;
  margin: 0 16px 0 auto;
  color: var(--color-primary);
}
.viewed__toggle:hover {
  text-decoration: underline;
}
.viewed__toggle-icon {
  margin-left: 8px;
}
.viewed__badge--active .viewed__toggle-icon {
  transform: rotate(180deg);
}
.viewed__content {
  display: none;
  background-color: #fff;
}

.alternative {
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .alternative {
    display: none;
  }
}
.alternative__section {
  padding: 20px;
}
.alternative__section + .alternative__section {
  border-top: 1px solid var(--color-border-light);
}
.alternative__title {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.alternative__caption {
  margin: 8px 0 4px;
  font-weight: 500;
}

.product__sku {
  margin-bottom: 8px;
  color: #a1a1a1;
}
@media (min-width: 980px) {
  .product__sku {
    display: none;
  }
}
@media (min-width: 980px) {
  .product__row {
    display: flex;
    margin: 0 -10px;
  }
}
@media (max-width: 979.98px) {
  .product__col + .product__col {
    margin-top: 32px;
  }
}
@media (min-width: 980px) {
  .product__col {
    width: 50%;
    padding: 0 10px;
  }
}
.product__tabs {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .product__tabs {
    margin-top: 40px;
  }
}

.product-favorite {
  display: flex;
  align-items: center;
  text-decoration: underline;
  color: #a1a1a1;
}
.product-favorite__icon {
  margin-right: 8px;
}
.product-favorite:hover, .product-favorite:focus-visible {
  color: #e12429;
}

.product-gallery__main {
  text-align: center;
  border: 1px solid #e8e8e8;
}
.product-gallery__thumbs {
  margin-top: 16px;
}
.product-gallery__thumbs-slide {
  width: 80px;
  height: 80px;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
.product-gallery__thumbs-slide--active {
  border-color: #5a5a5a;
}

.product-order {
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
.product-order__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #e8e8e8;
}
.product-order__sku {
  margin-left: auto;
  color: #a1a1a1;
}
@media (max-width: 979.98px) {
  .product-order__sku {
    display: none;
  }
}
.product-order__brand {
  margin-left: 24px;
  padding: 0 4px;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
.product-order__brand-img {
  height: 40px;
  object-fit: contain;
}
.product-order__content {
  padding: 24px;
}
.product-order__price {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.product-order__price-current {
  font-size: 32px;
  line-height: 38px;
  font-weight: 500;
}
.product-order__price-old {
  position: relative;
  margin-left: 16px;
  font-size: 16px;
  line-height: 22px;
  color: #a95457;
}
.product-order__price-old::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  border-top: 2px solid;
  transform: rotate(-10deg);
}
@media (min-width: 768px) {
  .product-order__row {
    display: flex;
    margin: 0 -20px;
  }
}
@media (max-width: 767.98px) {
  .product-order__col + .product-order__col {
    margin-top: 24px;
  }
}
@media (min-width: 768px) {
  .product-order__col {
    width: 50%;
    padding: 0 20px;
  }
}
.product-order__availability {
  display: inline-block;
  margin-bottom: 16px;
}
.product-order__add {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 16px;
  margin-bottom: 16px;
}
.product-order__fast {
  margin-bottom: 24px;
}
.product-order__prop {
  display: flex;
  margin-top: 8px;
}
.product-order__prop-key {
  margin-right: 22px;
  font-weight: 500;
}
.product-order__euro {
  display: flex;
  gap: 8px;
}
.product-order__euro-item {
  height: 20px;
  padding: 0 6px;
  background-color: #e8e8e8;
  border-radius: 2px;
}
.product-order__euro-item--primary {
  background-color: #e12429;
}
.product-order__feature {
  display: flex;
  align-items: center;
}
.product-order__feature + .product-order__feature {
  margin-top: 16px;
}
.product-order__feature-icon {
  flex-shrink: 0;
  margin-right: 12px;
  color: #e12429;
}
.product-order__feature-title {
  font-weight: 500;
}
.product-order__feature-text {
  font-size: 12px;
  line-height: 18px;
}
.product-order__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid #e8e8e8;
}
@media (max-width: 767.98px) {
  .product-order__footer {
    flex-wrap: wrap;
  }
}
.product-order__share {
  display: flex;
  align-items: stretch;
  color: #5a5a5a;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
.product-order__share-text {
  padding: 9px 22px;
}
.product-order__share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-left: 1px solid #e8e8e8;
}
.product-order__hint {
  margin-left: 20px;
  font-size: 12px;
  line-height: 18px;
  color: #5a5a5a;
}
@media (max-width: 767.98px) {
  .product-order__hint {
    width: 100%;
    margin: 16px 0 0;
  }
}

.product-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.product-rating__star + .product-rating__star {
  margin-left: 2px;
}
.product-rating__counter {
  text-decoration: underline;
}
.product-rating__counter:hover, .product-rating__counter:focus-visible {
  color: #e12429;
}
@media (max-width: 979.98px) {
  .product-rating__counter {
    width: 100%;
    margin-top: 4px;
  }
}
@media (min-width: 980px) {
  .product-rating__counter {
    margin-left: 8px;
  }
}

.product-carousel {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .product-carousel {
    margin-top: 24px;
  }
}
.product-carousel__img {
  width: 100%;
  min-height: 100px;
  object-fit: cover;
}
.product-carousel__nav {
  position: absolute;
  z-index: 1;
  top: 50%;
  padding: 4px;
  border-radius: 50%;
  color: #fff;
  background-color: #e12429;
  transform: translateY(-50%);
}
.product-carousel__nav:hover, .product-carousel__nav:focus-visible {
  background-color: #f21318;
  border-color: #f21318;
}
.product-carousel__nav:active {
  background-color: #d41d22;
  border-color: #d41d22;
}
.product-carousel__nav--prev {
  left: 16px;
}
.product-carousel__nav--next {
  right: 16px;
}
.product-carousel__pagination {
  position: absolute;
  z-index: 1;
  bottom: 8px !important;
  display: flex;
  justify-content: center;
}
.product-carousel__pagination-item {
  width: 6px;
  height: 6px;
  margin: 0 4px;
  background-color: #fff;
  border-radius: 3px;
}
.product-carousel__pagination-item--active {
  background-color: #e12429;
}

.product-tabs {
  padding-bottom: 40px;
  border-bottom: 1px solid #e8e8e8;
}
.product-tabs--flow {
  padding-bottom: 0;
  border-bottom: 0;
}
.product-tabs__header {
  position: relative;
  margin-bottom: 24px;
}
.product-tabs__header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #e8e8e8;
}
.product-tabs__btn {
  width: auto;
  padding: 14px 24px;
  background-color: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
.product-tabs__btn--active {
  font-weight: 500;
  color: #e12429;
  background-color: #fff;
  box-shadow: inset 0 -2px 0 #e12429;
}
.product-tabs__content {
  display: none;
}
.product-tabs__content--visible {
  display: block;
}
.product-tabs__content-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.product-tabs__content-title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}
.product-tabs__content-counter {
  margin-left: 12px;
  font-size: 24px;
  line-height: 30px;
  color: #a1a1a1;
}
.product-tabs__content-action {
  margin-left: auto;
}

.product-params {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .product-params {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -20px;
  }
}
.product-params__row {
  display: flex;
  padding: 8px 0;
}
@media (min-width: 768px) {
  .product-params__row {
    width: 50%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.product-params__key {
  position: relative;
  flex-grow: 1;
  margin-right: 8px;
}
.product-params__key::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 5px;
  right: 0;
  left: 0;
  border-bottom: 1px solid #e8e8e8;
}
.product-params__name {
  padding-right: 8px;
  color: #a1a1a1;
  background-color: #fff;
}
.product-availability__toggle {
  display: flex;
  margin-bottom: 24px;
}
.product-availability__toggle-btn {
  display: flex;
  align-items: center;
}
.product-availability__toggle-btn:hover, .product-availability__toggle-btn:focus-visible {
  color: #e12429;
}
.product-availability__toggle-btn--active {
  color: #e12429;
  text-decoration: underline;
  pointer-events: none;
}
.product-availability__toggle-btn + .product-availability__toggle-btn {
  margin-left: 32px;
}
.product-availability__toggle-icon {
  margin-right: 8px;
}
.product-availability__content {
  display: none;
}
.product-availability__content--visible {
  display: block;
}
@media (min-width: 768px) {
  .product-availability__table-row {
    display: grid;
    grid-template-columns: 3fr 0.5fr 1fr;
    grid-column-gap: 16px;
    align-items: center;
    padding: 12px 16px;
    border: solid #e8e8e8;
    border-width: 0 1px 1px 1px;
  }
}
.product-availability__table-header {
  color: #fff;
  background-color: #e12429;
  border-color: #e12429;
  border-radius: 2px 2px 0 0;
}
@media (max-width: 767.98px) {
  .product-availability__table-header {
    display: none;
  }
}
@media (min-width: 768px) {
  .product-availability__main {
    display: flex;
    align-items: center;
  }
}
.product-availability__address {
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .product-availability__address {
    padding: 8px 16px;
    color: #fff;
    background-color: #e12429;
  }
}
.product-availability__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 767.98px) {
  .product-availability__tags {
    padding: 8px 16px;
    border: solid #e8e8e8;
    border-width: 0 1px 1px;
  }
}
@media (min-width: 768px) {
  .product-availability__tags {
    margin-left: 16px;
  }
}
.product-availability__tags-item {
  padding: 1px 12px;
  color: #5a5a5a;
  background-color: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
@media (max-width: 767.98px) {
  .product-availability__section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    border: solid #e8e8e8;
    border-width: 0 1px 1px;
  }
}
@media (min-width: 768px) {
  .product-availability__title {
    display: none;
  }
}
.product-availability__quantity {
  font-weight: 500;
}
.product-availability__map {
  height: 480px;
}

@media (min-width: 980px) {
  .product-delivery__description {
    width: 60%;
  }
}
.product-delivery__filter {
  display: flex;
  margin: 24px 0;
}
.product-delivery__filter-item + .product-delivery__filter-item {
  margin-left: 16px;
}
.product-delivery__filter-label {
  margin-bottom: 8px;
  font-weight: 500;
}
.product-delivery__result {
  padding: 24px;
  background-color: #f7f7f7;
  border-radius: 2px;
}
@media (min-width: 980px) {
  .product-delivery__result-row {
    display: flex;
  }
}
@media (max-width: 979.98px) {
  .product-delivery__result-description {
    margin-bottom: 24px;
  }
}
@media (min-width: 980px) {
  .product-delivery__result-description {
    width: 50%;
    padding-right: 40px;
  }
}
.product-delivery__result-title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.product-delivery__result-section {
  margin-top: 12px;
}
.product-delivery__result-map {
  flex-grow: 1;
  height: 260px;
}
.product-delivery__result-info {
  display: flex;
  margin-top: 24px;
  font-weight: 500;
  color: #a1a1a1;
}
.product-delivery__result-info-icon {
  flex-shrink: 0;
  margin-right: 8px;
}

.product-reviews__item {
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 2px;
}
.product-reviews__item + .product-reviews__item {
  margin-top: 24px;
}
@media (min-width: 980px) {
  .product-reviews__item {
    display: flex;
    align-items: center;
    padding: 24px 32px;
  }
}
@media (max-width: 979.98px) {
  .product-reviews__summary {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
  }
}
@media (min-width: 980px) {
  .product-reviews__summary {
    flex-shrink: 0;
    width: 22%;
    margin-right: 48px;
    padding-right: 48px;
    border-right: 1px solid #e8e8e8;
  }
}
.product-reviews__summary-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.product-reviews__summary-section {
  margin-top: 12px;
}
.product-reviews__author {
  font-weight: 500;
}
.product-reviews__date {
  margin-left: 12px;
  color: #a1a1a1;
}
.product-reviews__total {
  display: flex;
  align-items: center;
  font-weight: 500;
}
@media (max-width: 979.98px) {
  .product-reviews__total {
    margin-left: auto;
  }
}
.product-reviews__total-star {
  margin: 0 2px 0 8px;
}
.product-reviews__rating {
  display: flex;
  margin-top: 2px;
}
.product-reviews__comment {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-reviews__comment-section + .product-reviews__comment-section {
  margin-top: 24px;
}
.product-reviews__comment-title {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.product-reviews__useful {
  display: flex;
  align-items: baseline;
  column-gap: 8px;
  color: #5a5a5a;
}
@media (max-width: 979.98px) {
  .product-reviews__useful {
    order: 1;
    margin-top: 24px;
  }
}
@media (min-width: 980px) {
  .product-reviews__useful {
    align-self: flex-end;
  }
}
.product-reviews__useful-counter {
  padding: 0 6px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #fff;
  background-color: #e8e8e8;
  border-radius: 2px;
}
.product-reviews__useful-counter--positive {
  background-color: #4ca75c;
}
.product-reviews__useful-counter--negative {
  background-color: #e12429;
}
.product-reviews__useful-positive {
  color: #4ca75c;
}
.product-reviews__useful-negative {
  color: #e12429;
}
.product-reviews__useful-btn {
  margin-right: 4px;
  text-decoration: underline;
}
.product-reviews__useful-btn:hover, .product-reviews__useful-btn:focus-visible {
  text-decoration: none;
}

.product-tests__item {
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 2px;
}
.product-tests__item + .product-tests__item {
  margin-top: 24px;
}
@media (min-width: 980px) {
  .product-tests__item {
    display: flex;
    align-items: center;
    padding: 24px 32px;
  }
}
@media (max-width: 979.98px) {
  .product-tests__summary {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
  }
}
@media (min-width: 980px) {
  .product-tests__summary {
    flex-shrink: 0;
    width: 25%;
    margin-right: 48px;
    padding-right: 48px;
    border-right: 1px solid #e8e8e8;
  }
}
.product-tests__title {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.product-tests__row {
  margin-top: 2px;
}
.product-tests__comment {
  display: flex;
  margin-top: 8px;
}
.product-tests__comment-icon {
  margin-right: 8px;
  color: #a1a1a1;
}
.product-tests__content {
  flex-grow: 1;
}
.product-tests__section {
  display: flex;
  align-items: flex-start;
}
.product-tests__section + .product-tests__section {
  margin-top: 24px;
}
.product-tests__section-icon {
  flex-shrink: 0;
  width: 22px;
  margin-right: 12px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  border-radius: 2px;
}
.product-tests__section-icon--positive {
  background-color: #4ca75c;
}
.product-tests__section-icon--negative {
  background-color: #e12429;
}

.map-balloon {
  padding: 8px 16px 8px 0;
  font: 14px/20px "Roboto", sans-serif;
}
.map-balloon__address {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.map-balloon__icon {
  margin-right: 8px;
  color: #e12429;
}
.map-balloon__item {
  margin-top: 4px;
  padding-left: 32px;
}

.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6, .wysiwyg p {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.wysiwyg h1:first-child, .wysiwyg h2:first-child, .wysiwyg h3:first-child, .wysiwyg h4:first-child, .wysiwyg h5:first-child, .wysiwyg h6:first-child, .wysiwyg p:first-child {
  margin-top: 0;
}
.wysiwyg h1:last-child, .wysiwyg h2:last-child, .wysiwyg h3:last-child, .wysiwyg h4:last-child, .wysiwyg h5:last-child, .wysiwyg h6:last-child, .wysiwyg p:last-child {
  margin-bottom: 0;
}
.wysiwyg h1 {
  font-size: 32px;
  line-height: 38px;
  font-weight: 500;
}
.wysiwyg h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}
.wysiwyg h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.wysiwyg h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.wysiwyg h5 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.wysiwyg h6 {
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

.tire-service {
  margin-bottom: 40px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}
@media (min-width: 980px) {
  .tire-service {
    display: flex;
    align-items: flex-start;
  }
}
@media (min-width: 980px) {
  .tire-service__content {
    flex-grow: 1;
    padding-right: 20px;
  }
}
.tire-service__section {
  padding-bottom: 40px;
}
.tire-service__section:not(:first-child) {
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}
.tire-service__header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}
.tire-service__title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
@media (min-width: 980px) {
  .tire-service__center {
    display: flex;
  }
}
@media (max-width: 979.98px) {
  .tire-service__data {
    margin-bottom: 32px;
  }
}
@media (min-width: 980px) {
  .tire-service__data {
    width: 320px;
    padding-right: 60px;
  }
}
.tire-service__data-section + .tire-service__data-section {
  margin-top: 32px;
}
.tire-service__times {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.tire-service__times-btn {
  padding: 1px 12px;
  text-align: center;
  color: #5a5a5a;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
.tire-service__times-btn:hover, .tire-service__times-btn:focus-visible {
  color: #e12429;
  border-color: #e12429;
}
.tire-service__times-btn:disabled {
  background-color: #e8e8e8;
  pointer-events: none;
}
@media (min-width: 980px) {
  .tire-service__address {
    flex-grow: 1;
  }
}
.tire-service__label {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 500;
}
.tire-service__label--required::after {
  content: "*";
  margin-left: 4px;
  color: #e12429;
}
.tire-service__label-icon {
  margin-right: 4px;
}
.tire-service__city {
  display: flex;
  align-items: center;
  margin-left: 12px;
  color: #e12429;
}
@media (max-width: 979.98px) {
  .tire-service__map {
    height: 320px;
  }
}
@media (min-width: 980px) {
  .tire-service__map {
    height: 440px;
  }
}
.tire-service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.tire-service__tags-item {
  padding: 1px 12px;
  color: #5a5a5a;
  background-color: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
.tire-service__contacts {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .tire-service__contacts {
    display: flex;
  }
}
.tire-service__contacts-item {
  display: flex;
  align-items: center;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .tire-service__contacts-item + .tire-service__contacts-item {
    margin-top: 8px;
  }
}
@media (min-width: 768px) {
  .tire-service__contacts-item + .tire-service__contacts-item {
    margin-left: 32px;
  }
}
.tire-service__contacts-icon {
  flex-shrink: 0;
  margin-right: 8px;
}
.tire-service__route {
  display: flex;
  align-items: center;
  margin-top: 16px;
  padding: 9px 12px;
  color: #e12429;
  border: 1px solid #e12429;
  border-radius: 2px;
}
.tire-service__route:hover, .tire-service__route:focus-visible {
  color: #fff;
  background-color: #e12429;
}
.tire-service__route-icon {
  margin-right: 8px;
}
.tire-service__car {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 16px;
}
@media (min-width: 768px) {
  .tire-service__car {
    gap: 30px;
  }
}
.tire-service__car-checkboxes {
  display: flex;
  align-items: center;
  column-gap: 24px;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .tire-service__car-checkboxes {
    column-gap: 30px;
  }
}
.tire-service__services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .tire-service__services {
    grid-template-columns: repeat(3, 1fr);
  }
}
.tire-service__personal {
  display: grid;
  gap: 24px 30px;
}
@media (min-width: 768px) {
  .tire-service__personal {
    grid-template-columns: repeat(3, 1fr);
  }
}
.tire-service__summary {
  padding: 24px;
  background-color: #f7f7f7;
  border-radius: 2px;
}
@media (min-width: 980px) {
  .tire-service__summary {
    position: sticky;
    top: 92px;
    flex-shrink: 0;
    width: 240px;
    margin-top: 48px;
  }
}
.tire-service__summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.tire-service__summary-title {
  font-weight: 500;
}
.tire-service__summary-list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-bottom: 16px;
}
.tire-service__summary-address {
  margin-top: 8px;
}
.tire-service__summary-divider {
  margin: 24px -24px 16px;
  border-bottom: 1px solid #e8e8e8;
}
.tire-service__summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.tire-service__summary-cost {
  font-size: 24px;
  line-height: 30px;
}
.tire-service__summary-hint {
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 18px;
}

.qs-datepicker-container {
  position: relative;
  top: 0 !important;
}

.qs-controls {
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #e12429;
}

.qs-arrow {
  order: 1;
  width: 35px;
  height: 45px;
  background: url("data:image/svg+xml,%0A%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.39136 3.40388L10.5279 7.54046C10.7818 7.7943 10.7818 8.20585 10.5279 8.45969L6.39136 12.5963C6.13752 12.8501 5.72596 12.8501 5.47212 12.5963C5.21828 12.3424 5.21828 11.9309 5.47212 11.677L9.06831 8.08084V7.91931L5.47212 4.32312C5.21828 4.06928 5.21828 3.65772 5.47212 3.40388C5.72596 3.15004 6.13752 3.15004 6.39136 3.40388Z' fill='white'/%3E%3C/svg%3E%0A") no-repeat center;
  cursor: pointer;
  transition: transform 0.15s;
}

.qs-left {
  transform: scaleX(-1);
}

.qs-month-year {
  flex-grow: 1;
  padding-left: 20px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}

.qs-month {
  margin-right: 4px;
}

.qs-squares {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 4px;
  padding-bottom: 12px;
  background-color: #f7f7f7;
  border: 1px solid #e8e8e8;
}

.qs-square {
  text-align: center;
}

.qs-day {
  margin-bottom: 10px;
  padding: 5px 0;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
}

.qs-num {
  width: 27px;
  height: 27px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 27px;
  color: #5a5a5a;
  border: 1px solid #f7f7f7;
  border-radius: 2px;
  cursor: pointer;
}
.qs-num:hover {
  border-color: #e12429;
}

.qs-disabled {
  color: #a1a1a1;
  pointer-events: none;
}

.qs-active {
  color: #e12429;
  border-color: #e12429;
}

.qs-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.9);
}

.qs-overlay-year {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  font-size: 20px;
  text-align: center;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.qs-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.qs-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.qs-overlay-month-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 8px;
  padding: 30px;
}
@media (min-width: 980px) {
  .qs-overlay-month-container {
    padding: 40px;
  }
}

.qs-overlay-month {
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.qs-overlay-month:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.qs-submit {
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
}
.qs-submit.qs-disabled {
  opacity: 0.6;
}
.qs-submit:not(.qs-disabled) {
  background-color: #e12429;
  cursor: pointer;
}
.qs-submit:not(.qs-disabled):hover {
  background-color: #cb1c20;
}

.qs-hidden {
  display: none;
}

.categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 70px;
}
@media (min-width: 768px) {
  .categories {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 980px) {
  .categories {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1200px) {
  .categories {
    grid-template-columns: repeat(7, 1fr);
  }
}
.categories__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
  background-color: #f7f7f7;
  box-shadow: inset -1px 0 0 0 #e8e8e8, inset 0 -1px 0 0 #e8e8e8, -1px -1px 0 0 #e8e8e8, -1px 0 0 0 #e8e8e8, 0 -1px 0 0 #e8e8e8;
}
.categories__img {
  width: 92px;
  height: 92px;
  background-color: #fff;
  border-radius: 46px;
}
.categories__title {
  margin: auto;
  padding: 16px 0 12px;
}
.categories__item:hover .categories__title {
  color: #e12429;
}
.categories__counter {
  color: #a1a1a1;
}

.account-header__title {
  margin: 0;
  font-size: 32px;
  line-height: 38px;
  font-weight: 400;
}
.account-header__user {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.account-header__user-name {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #adadad;
}
@media (min-width: 768px) {
  .account-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .account-header__user {
    margin-top: 0;
  }
}

.account-page {
  margin-bottom: 40px;
}
.account-page__title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.account-page__title-icon {
  margin-right: 5px;
}
.account-page__header {
  margin: 0 -20px 30px;
  padding: 10px 20px;
  border: solid #e8e8e8;
  border-width: 1px 0 0;
}
.account-page__header--fixed {
  min-height: 100px;
  border-bottom-width: 1px;
}
.account-page__header-title {
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.account-page__header-status {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #4ca75c;
}
@media (min-width: 768px) {
  .account-page__header {
    margin: 0 0 20px -33px;
    padding: 15px 33px;
  }
}
@media (min-width: 980px) {
  .account-page {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 80px;
  }
  .account-page__sidebar {
    width: 25%;
    padding-right: 33px;
  }
  .account-page__content {
    width: 75%;
  }
}

.account-menu {
  margin-bottom: 40px;
}
.account-menu__item {
  display: block;
  padding: 20px 15px;
  line-height: 1;
}
.account-menu__item + .account-menu__item {
  border-top: 1px solid #e8e8e8;
}
.account-menu__item--active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}
.account-menu__item:hover:not(.account-menu__item--active) {
  color: #e12429;
}

.form-personal {
  display: grid;
  row-gap: 30px;
  max-width: 744px;
  margin-bottom: 60px;
}
.form-personal__action {
  margin-top: 10px;
}
.form-personal__btn {
  width: 100%;
}
@media (min-width: 768px) {
  .form-personal {
    grid-template-columns: 1fr 1fr;
    gap: 25px 84px;
    margin-bottom: 20px;
  }
  .form-personal__action {
    grid-column: span 2;
    margin-top: 0;
    text-align: right;
  }
  .form-personal__btn {
    width: auto;
  }
}

.form-password {
  max-width: 744px;
}
.form-password__col {
  margin-bottom: 30px;
}
.form-password__actions {
  margin-top: 40px;
}
.form-password__btn {
  width: 100%;
  margin-bottom: 40px;
}
.form-password__delete {
  display: flex;
  align-items: center;
  color: #808080;
}
.form-password__delete:hover {
  color: #e12429;
}
.form-password__delete-icon {
  margin-right: 4px;
}
@media (min-width: 768px) {
  .form-password__row {
    display: flex;
  }
  .form-password__col {
    width: 198px;
    margin: 0 18px 0 0;
  }
  .form-password__actions {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
  }
  .form-password__btn {
    width: auto;
    margin-bottom: 0;
  }
}

.orders-list {
  margin-top: 30px;
  padding-bottom: 42px;
  overflow-x: auto;
}
.orders-list::-webkit-scrollbar {
  height: 8px;
}
.orders-list::-webkit-scrollbar-thumb {
  background: #e12429;
  border-radius: 4px;
}
.orders-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.07);
  border-radius: 4px;
}
.orders-list table {
  width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
}
.orders-list thead {
  color: #fff;
  background-color: #e12429;
}
.orders-list thead th {
  padding: 13px 19px 15px;
  font-weight: 500;
  text-align: left;
}
.orders-list tbody {
  border: 1px solid #e8e8e8;
}
.orders-list tbody tr {
  border-top: 1px solid #e8e8e8;
}
.orders-list tbody tr:hover {
  color: #e12429;
}
.orders-list tbody td {
  padding: 12px 19px;
  font-size: 15px;
  line-height: 20px;
}
.orders-list tbody td small {
  font-size: 13px;
  line-height: 18px;
}
.orders-list a:hover {
  text-decoration: underline;
}

.order-data {
  max-width: 656px;
}
.order-data__title {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.order-props {
  margin-bottom: 40px;
}
.order-props__item {
  display: flex;
  column-gap: 8px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .order-props {
    margin-bottom: 45px;
  }
}

.order-cancel__toggle {
  margin-bottom: 8px;
  color: #e12429;
  text-decoration: underline;
}
.order-cancel__toggle:hover {
  text-decoration: none;
}
.order-cancel--confirm .order-cancel__toggle {
  display: none;
}
.order-cancel__actions {
  display: none;
  align-items: center;
  margin: 14px 0;
}
.order-cancel--confirm .order-cancel__actions {
  display: flex;
}
.order-cancel__apply {
  min-width: 140px;
  margin-right: 24px;
  line-height: 1;
}
.order-cancel__back {
  text-decoration: underline;
  color: rgba(0, 0, 0, 0.5);
}
.order-cancel__back:hover {
  text-decoration: none;
}

.order-map {
  height: 268px;
  margin-bottom: 30px;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .order-map {
    margin-bottom: 20px;
  }
}

.order-products__title {
  margin-bottom: 20px;
}
.order-products__item {
  display: flex;
  align-items: flex-start;
  margin: 0 -20px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 22px;
  border: solid #e8e8e8;
  border-width: 1px 0;
}
.order-products__item + .order-products__item {
  margin-top: -1px;
}
.order-products__img {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  margin-right: 24px;
  object-fit: cover;
}
.order-products__data {
  flex-grow: 1;
  padding-top: 8px;
}
.order-products__right {
  margin-top: 10px;
}
.order-products__count {
  display: flex;
  align-items: baseline;
}
.order-products__not-paid {
  display: inline-block;
  margin-top: 14px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 20px;
  color: #e12429;
  background-color: #ffedea;
  border: 1px solid #e12429;
}
.order-products__price {
  margin-left: 12px;
}
.order-products__total {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  margin: 30px 0 40px;
}
.order-products__total-caption {
  margin-right: 15px;
  font-size: 16px;
  line-height: 22px;
}
.order-products__total-sum {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.order-products__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .order-products__item {
    margin: 0;
    padding-right: 0;
    padding-left: 0;
  }
  .order-products__data {
    display: flex;
    justify-content: space-between;
  }
  .order-products__right {
    flex-shrink: 0;
    margin: 0 0 0 24px;
    text-align: right;
  }
  .order-products__total {
    margin: 15px 0 35px;
  }
  .order-products__actions {
    flex-direction: row-reverse;
  }
}

.bonuses__row {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.bonuses__rules {
  margin-right: 20px;
  color: #e12429;
}
.bonuses__rules:hover {
  text-decoration: underline;
}
.bonuses__available {
  padding: 10px 20px;
  background-color: #ffedea;
  border-radius: 2px;
}
.bonuses__primary {
  color: #e12429;
}
@media (min-width: 768px) {
  .bonuses {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .bonuses__row {
    margin-top: 0;
  }
}

.individual-order__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  margin-bottom: 20px;
}
.individual-order__divider {
  border-bottom: 1px solid #e8e8e8;
}
.individual-order__action {
  margin-top: 20px;
}
.individual-order__btn {
  width: 100%;
}
@media (min-width: 768px) {
  .individual-order__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 25px;
  }
  .individual-order__field {
    grid-column: span 2;
  }
  .individual-order__half {
    grid-column: span 3;
  }
  .individual-order__full, .individual-order__divider {
    grid-column: span 6;
  }
  .individual-order__action {
    text-align: right;
  }
  .individual-order__btn {
    width: auto;
  }
}

.cart-product {
  position: relative;
  display: flex;
  margin: 0 -20px;
  padding: 15px 20px;
  border: solid #e8e8e8;
  border-width: 1px 0;
}
.cart-product:hover {
  z-index: 1;
  border-color: #e12429;
}
.cart-product + .cart-product {
  margin-top: -1px;
}
.cart-product__remove {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #a1a1a1;
}
.cart-product__remove:hover {
  color: #e12429;
}
.cart-product .product-block__icons {
  position: static;
  display: block;
  flex-shrink: 0;
  align-self: flex-start;
}
.cart-product__photo {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  margin-right: 10px;
  object-fit: cover;
}
.cart-product__data {
  flex-grow: 1;
}
.cart-product__title {
  display: block;
  margin-bottom: 10px;
  padding-right: 24px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.cart-product__subtitle {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cart-product__sku {
  color: #a1a1a1;
}
.cart-product__availability {
  text-decoration: underline;
}
.cart-product__unit-price {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.cart-product__unit-count {
  font-size: 16px;
  line-height: 22px;
  color: #a1a1a1;
}
.cart-product__quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cart-product__price {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .cart-product {
    align-items: center;
    margin: 0;
    padding: 15px 45px 15px 15px;
    border-width: 1px;
  }
  .cart-product__remove {
    right: 45px;
  }
  .cart-product__photo {
    width: 140px;
    height: 140px;
    margin-right: 24px;
  }
  .cart-product__data {
    display: flex;
    flex-wrap: wrap;
  }
  .cart-product__title {
    width: 100%;
  }
  .cart-product__subtitle {
    display: block;
    margin-bottom: 0;
  }
  .cart-product__sku {
    margin-bottom: 4px;
  }
  .cart-product__total {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  .cart-product__quantity {
    margin-bottom: 0;
  }
  .cart-product__unit {
    margin-right: 20px;
  }
  .cart-product__unit-price {
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
  }
  .cart-product__price {
    margin-left: 20px;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
  }
}

.cart-recommend {
  margin: 40px 0;
}
.cart-recommend + .cart-recommend {
  margin-top: 100px;
}
.cart-recommend__title {
  margin-bottom: 30px;
  font-weight: 500;
}
.cart-recommend__carousel {
  padding: 1px 0 0 1px;
}
.cart-recommend__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.cart-recommend__nav-btn {
  padding: 4px;
  border-radius: 50%;
  color: #fff;
  background-color: #e12429;
  pointer-events: auto;
}
.cart-recommend__nav-btn:hover, .cart-recommend__nav-btn:focus-visible {
  background-color: #f21318;
  border-color: #f21318;
}
.cart-recommend__nav-btn:active {
  background-color: #d41d22;
  border-color: #d41d22;
}
.cart-recommend__nav-btn.swiper-button-disabled {
  opacity: 0;
}
.cart-recommend__pagination {
  display: flex;
  align-items: center;
  width: auto !important;
  margin: 0 24px;
}
.cart-recommend__pagination.swiper-pagination-lock {
  display: none;
}
.cart-recommend__pagination-item {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background-color: #e8e8e8;
  border-radius: 6px;
  transition: all 0.15s;
}
.cart-recommend__pagination-item--active {
  width: 12px;
  height: 12px;
  background-color: #e12429;
}
@media (min-width: 768px) {
  .cart-recommend {
    margin: 50px 0;
  }
  .cart-recommend + .cart-recommend {
    margin-top: 50px;
  }
  .cart-recommend__title {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
  }
  .cart-recommend__nav-btn {
    position: absolute;
    z-index: 1;
    top: 50%;
    margin-top: -37px;
  }
  .cart-recommend__nav-btn--prev {
    left: 8px;
  }
  .cart-recommend__nav-btn--next {
    right: 8px;
  }
}

.cart-services {
  max-width: 500px;
  font-size: 16px;
  line-height: 22px;
}
.cart-services__item {
  display: block;
  cursor: pointer;
  border: 1px solid #e8e8e8;
}
.cart-services__item:hover {
  position: relative;
  z-index: 1;
  border-color: #e12429;
}
.cart-services__item + .cart-services__item {
  margin-top: -1px;
}
.cart-services__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.cart-services__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 30px;
  font-weight: 500;
}
.cart-services__label::after {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #d8d7d7;
  border-radius: 2px;
}
.cart-services__input:focus-visible + .cart-services__label::after {
  border-color: #e12429;
}
.cart-services__input:checked + .cart-services__label::after {
  background: #4ca75c url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.66797 12.4072L11.2861 4.04688H12.7217L9.49512 14.0068H8.42188L8.66797 12.4072ZM7.69043 8.73633L8.91406 12.4482L9.13281 14.0068H8.13477L6.19336 8.73633H7.69043ZM5.27734 10.0625V8.73633H7.59473V10.0625H5.27734Z' fill='white'/%3E%3C/svg%3E%0A");
  border: 0;
}
.cart-services__input:disabled + .cart-services__label {
  color: #a1a1a1;
}
.cart-services__input:disabled + .cart-services__label::before {
  border-color: #e8e8e8;
}
.cart-services__input:disabled:checked + .cart-services__label::after {
  background-color: #e8e8e8;
}
.cart-services__hint {
  margin-top: 20px;
  color: #a1a1a1;
}

.cart-bottom {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .cart-bottom {
    display: flex;
    align-items: flex-end;
  }
}

.cart-promo__field {
  display: flex;
}
@media (min-width: 768px) {
  .cart-promo__input {
    max-width: 220px;
  }
}

.cart-total {
  margin-top: 40px;
}
.cart-total__sum {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 15px;
}
.cart-total__caption {
  margin-right: 16px;
  font-size: 18px;
  line-height: 24px;
}
.cart-total__price {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .cart-total {
    margin: 0 0 0 auto;
  }
}

.checkout-page {
  margin-bottom: 80px;
}
@media (min-width: 980px) {
  .checkout-page {
    display: flex;
    align-items: flex-start;
    margin-bottom: 70px;
  }
  .checkout-page__content {
    flex-grow: 1;
    padding-right: 30px;
  }
  .checkout-page__sidebar {
    position: sticky;
    top: 92px;
    flex-shrink: 0;
    width: 240px;
    margin-top: 48px;
  }
}

.checkout-summary {
  padding: 24px;
  background-color: #f7f7f7;
  border-radius: 2px;
}
.checkout-summary__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}
.checkout-summary__cost {
  font-size: 24px;
  line-height: 30px;
}
.checkout-summary__prop {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 18px;
}
.checkout-summary__prop-left {
  position: relative;
  flex-grow: 1;
}
.checkout-summary__prop-left::before {
  content: "";
  position: absolute;
  border-bottom: 1px dashed rgba(161, 161, 161, 0.5);
  bottom: 5px;
  display: block;
  left: 0;
  right: 6px;
}
.checkout-summary__prop-name {
  position: relative;
  z-index: 1;
  padding-right: 6px;
  background-color: #f7f7f7;
}
.checkout-summary__hint {
  margin-top: 30px;
  font-size: 12px;
  line-height: 18px;
}
.checkout-summary__btn {
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .checkout-summary__btn {
    display: none !important;
  }
}

.checkout-section {
  margin-bottom: 40px;
}
.checkout-section__header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.checkout-section__num {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  color: #fff;
  background-color: #e12429;
  border-radius: 10px;
}
.checkout-section__title {
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .checkout-section {
    margin-bottom: 45px;
  }
}

.checkout-form {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  max-width: 850px;
}
.checkout-form__hint {
  grid-column: -1/1;
  color: #a1a1a1;
}
@media (min-width: 768px) {
  .checkout-form {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

.checkout-shop + .checkout-shop {
  margin-top: 30px;
}
.checkout-shop__map {
  position: relative;
  margin-bottom: 30px;
}
.checkout-shop__map-inner {
  height: 320px;
}
.checkout-shop__content {
  padding-bottom: 30px;
  border-bottom: 1px solid #e8e8e8;
}
.checkout-shop__data {
  padding-left: 28px;
}
.checkout-shop__address {
  margin-left: 4px;
  font-weight: 500;
}
.checkout-shop__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0;
}
.checkout-shop__tags-item {
  padding: 1px 12px;
  color: #5a5a5a;
  background-color: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
.checkout-shop__work {
  display: flex;
  align-items: center;
  font-weight: 500;
}
.checkout-shop__work-icon {
  margin-right: 8px;
}
.checkout-shop__availability {
  margin-top: 15px;
  color: #e12429;
  text-decoration: underline;
}
.checkout-shop__route {
  display: none !important;
  align-items: center;
  margin-top: 15px;
}
.checkout-shop--current .checkout-shop__route {
  display: flex !important;
}
.checkout-shop__route-icon {
  margin-right: 8px;
}
.checkout-shop__path {
  position: absolute;
  z-index: 1;
  bottom: 40px;
  left: 40px;
  display: none;
  width: 280px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 4px 35px rgba(0, 0, 0, 0.17);
}
.checkout-shop__path--visible {
  display: block;
}
.checkout-shop__path-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #e12429;
}
.checkout-shop__path-header {
  display: flex;
  padding: 15px;
}
.checkout-shop__path-header-icon {
  flex-shrink: 0;
  margin-right: 8px;
  color: #e12429;
}
.checkout-shop__path-title {
  margin-bottom: 8px;
  font-weight: 500;
}
.checkout-shop__path-actions {
  padding: 20px 15px 15px;
  border-top: 1px solid #d8d7d7;
}
.checkout-shop__path-btn {
  display: flex;
  align-items: center;
  grid-column-gap: 8px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid #d8d7d7;
  border-radius: 2px;
}
.checkout-shop__path-btn + .checkout-shop__path-btn {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .checkout-shop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
  .checkout-shop__map {
    order: 1;
    width: 480px;
    height: 100%;
    margin-bottom: 0;
  }
}

.checkout-courier__title {
  margin: 30px 0;
  font-weight: 500;
}
.checkout-courier__form {
  margin-bottom: 35px;
}
.checkout-courier__caption {
  margin: 15px 0;
  font-weight: 500;
}
.checkout-courier__list {
  margin: 0;
}

.checkout-shipping__title {
  margin: 30px 0;
  font-weight: 500;
}
.checkout-shipping__list {
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
.checkout-shipping__item {
  display: block;
}
.checkout-shipping__item + .checkout-shipping__item {
  border-top: 1px solid #e8e8e8;
}
.checkout-shipping__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.checkout-shipping__label {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  cursor: pointer;
}
.checkout-shipping__label::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
}
.checkout-shipping__input:checked + .checkout-shipping__label::before {
  background: #4ca75c url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.66797 12.4072L11.2861 4.04688H12.7217L9.49512 14.0068H8.42188L8.66797 12.4072ZM7.69043 8.73633L8.91406 12.4482L9.13281 14.0068H8.13477L6.19336 8.73633H7.69043ZM5.27734 10.0625V8.73633H7.59473V10.0625H5.27734Z' fill='white'/%3E%3C/svg%3E%0A");
  border: 0;
}
.checkout-shipping__img {
  flex-shrink: 0;
  width: 50px;
  margin-right: 10px;
}
.checkout-shipping__top {
  display: flex;
  margin-bottom: 4px;
}
.checkout-shipping__name {
  margin-right: 15px;
  font-weight: 500;
}
.checkout-shipping__bottom {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
}

.checkout-payment {
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
.checkout-payment__item {
  display: block;
}
.checkout-payment__item + .checkout-payment__item {
  border-top: 1px solid #e8e8e8;
}
.checkout-payment__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.checkout-payment__label {
  display: flex;
  padding: 15px;
  cursor: pointer;
}
.checkout-payment__label::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
.checkout-payment__input:checked + .checkout-payment__label::before {
  background: #4ca75c url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.66797 12.4072L11.2861 4.04688H12.7217L9.49512 14.0068H8.42188L8.66797 12.4072ZM7.69043 8.73633L8.91406 12.4482L9.13281 14.0068H8.13477L6.19336 8.73633H7.69043ZM5.27734 10.0625V8.73633H7.59473V10.0625H5.27734Z' fill='white'/%3E%3C/svg%3E%0A");
  border: 0;
}
.checkout-payment__name {
  display: block;
  margin-bottom: 2px;
  font-weight: 500;
  line-height: 20px;
}
.checkout-payment__hint {
  color: #a1a1a1;
}

.checkout-comment {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e8e8e8;
}
.checkout-comment__field {
  margin-bottom: 30px;
}
.checkout-comment__radio {
  display: block;
}
.checkout-comment__radio + .checkout-comment__radio {
  margin-top: 15px;
}
.checkout-comment__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.checkout-comment__label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.checkout-comment__label::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  background-color: #e8e8e8;
  border-radius: 9px;
}
.checkout-comment__input:checked + .checkout-comment__label::before {
  background: #4ca75c url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.66797 12.4072L11.2861 4.04688H12.7217L9.49512 14.0068H8.42188L8.66797 12.4072ZM7.69043 8.73633L8.91406 12.4482L9.13281 14.0068H8.13477L6.19336 8.73633H7.69043ZM5.27734 10.0625V8.73633H7.59473V10.0625H5.27734Z' fill='white'/%3E%3C/svg%3E%0A");
}

.checkout-conditions__checkbox {
  margin-bottom: 15px;
}
.checkout-conditions__text {
  margin-top: 30px;
  font-weight: 500;
}

.checkout-action {
  margin-top: 40px;
}
.checkout-action__btn {
  display: none !important;
}
@media (min-width: 768px) {
  .checkout-action {
    margin-top: 30px;
    text-align: right;
  }
  .checkout-action__btn {
    display: inline-block !important;
    width: 280px;
  }
}

.order-final {
  margin-bottom: 80px;
  border: 1px solid #e8e8e8;
  border-radius: 2px;
}
.order-final__data {
  padding: 30px 20px;
}
.order-final__title {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}
.order-final__row + .order-final__row {
  margin-top: 25px;
}
.order-final__key {
  flex-shrink: 0;
  margin-bottom: 5px;
  font-weight: 500;
  color: #a1a1a1;
}
.order-final__list {
  margin: 0;
  padding-left: 15px;
}
.order-final__status {
  margin-top: 20px;
}
.order-final__services {
  padding: 30px;
  border: solid #e8e8e8;
  border-width: 1px 0 0;
}
.order-final__checkbox + .order-final__checkbox {
  margin-top: 18px;
}
.order-final__price {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  text-decoration: underline;
  color: #e12429;
}
.order-final__price-icon {
  margin-right: 4px;
}
.order-final__btn {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .order-final {
    display: flex;
    max-width: 1020px;
    margin-bottom: 70px;
  }
  .order-final__data {
    width: 60%;
  }
  .order-final__row {
    display: flex;
    align-items: flex-start;
  }
  .order-final__row + .order-final__row {
    margin-top: 15px;
  }
  .order-final__key {
    width: 30%;
    margin-bottom: 0;
  }
  .order-final__services {
    display: flex;
    flex-direction: column;
    width: 40%;
    border-width: 0 0 0 1px;
  }
  .order-final__btn {
    margin-top: auto;
  }
}

.error-page {
  text-align: center;
  max-width: 600px;
  padding-top: 150px;
  padding-bottom: 150px;
}
.error-page__code {
  font-size: 200px;
  font-weight: 700;
  line-height: 1.2;
  color: #e12429;
}
.error-page__code i {
  margin-right: 20px;
}
.error-page__title {
  margin: 1px 0 20px;
  font-size: 28px;
  line-height: 1.2;
}
.error-page__text {
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .error-page {
    padding-top: 60px;
  }
  .error-page__code {
    font-size: 280px;
  }
}

.seo-text h1,
.seo-text h2,
.seo-text h3 {
  margin: 1.5em 0 1em;
  font-weight: 400;
  line-height: 1.2;
}
.seo-text h1 {
  margin-top: 0;
  font-size: 30px;
}
.seo-text h2 {
  font-size: 24px;
}
.seo-text h3 {
  font-size: 20px;
}
.seo-text__collapse h2:first-child {
  margin-top: 0;
}
.seo-text__collapse {
  display: none;
  margin-top: 32px;
}
.seo-text__toggle {
  border-bottom: 1px dotted;
}
.seo-text__toggle:hover {
  border-bottom: 0;
}

.search-banner {
  position: relative;
  width: 100%;
  height: 240px;
  margin: 32px 0 40px;
}
.search-banner__container {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
}
.search-banner__title {
  margin-bottom: 24px;
  font-size: 30px;
  font-weight: 600;
  line-height: 35px;
  color: #fff;
}
.search-banner__btn {
  padding: 14px 34px;
  font-size: 15px;
}
.search-banner__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 980px) {
  .search-banner {
    height: 150px;
    margin-bottom: 80px;
  }
  .search-banner__container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-banner__title {
    margin: 0 180px 0 0;
  }
}

.basket-item-amount-filed {
  width: 24px;
  height: 100%;
  text-align: center;
  border: none;
}

.bx-ui-sls-container {
  height: 40px;
}

.cart-final__compilation-carousel .swiper-slide {
  height: auto;
}
.cart-final__compilation-carousel .product-block {
  height: 100%;
}
.cart-final__compilation-carousel .product-block__media {
  height: 120px;
}

.tire-service__address > .tire-service__map > .tire-service__route {
  color: #000
}
.tire-service__address > .tire-service__map > .tire-service__route:hover {
  background-color: #fff;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #00000080;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 30;
}
.overlay:not(.active) {
  opacity: 0;
  visibility: hidden
}

@media only screen and (max-width: 576px) {
  .overlay {
      display:none
  }
}

.tires-popup-form {
  display: none;
  position: fixed;
  min-width: 420px;
  max-width: 520px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-radius: 5px;
  -moz-radius: 5px;
  -webkit-border-radius: 5px;
  background: #fff;
  z-index: 3000;
  opacity: 1;
  border-radius: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.show {
  display: block !important;
}

.tires-popup-form .close {
  margin: 0;
  position: absolute;
  right: 33px;
  top: 37px;
  cursor: pointer;
  z-index: 2;
  display: block;
  border-radius: 0;
  width: 14px;
  height: 14px;
  float: right;
  opacity: 1;
  font-size: 21px;
    line-height: 1;
    color: #000;
    text-shadow: none;
}
.tires-popup-form .close i{
  background: url(/bitrix/templates/aspro_tires2/css/../images/close_icons.png) -1px -59px no-repeat;
  background-position: -1px -46px !important;
  display: block;
  border-radius: 0;
  width: 14px;
  height: 14px;
  opacity: 1;
}
.tires-popup-form .form {
  position: relative;
}
.tires-popup-form .form .form_head{
  border-bottom: 2px solid;
    padding: 34px 75px 35px 35px;
    border-bottom-color: #e12429;
}
.tires-popup-form .form .form_head h2{
  margin: 0;
  font-weight: 400;
  font-size: 1.866em;
    line-height: 28px;
}
.tires-popup-form .form .form_body{
  margin: 0;
  padding: 29px 35px 6px;
  position: relative;
}
.tires-popup-form .form .form_footer{
  padding: 0 35px 12px;
    display: block;
    margin: 0 0 23px 0;
}
.tires-popup-form .form_body .form-control{
  background-color: #fff;
  border: 0 solid #d5dadc;
  box-shadow: none;
  border-radius: 0;
  height: auto;
  padding: 0;
  margin: 0 0 19px;
  background: none;
  position: relative;
  width: 100%;
  color: #555;
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  font-size: 14px;
  line-height: 1.428571429;
  display: block;
  vertical-align: middle;
}
.tires-popup-form .form_body .form-control label {
  font-weight: 400;
  color: #888888;
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}
.tires-popup-form .form_body .form-control .star,
.tires-popup-form .required-star{
  font-size: 12px;
  font-weight: normal;
  line-height: 0;
  margin: 0;
    top: 0;
    padding: 0;
  position: relative;
  color: #e62222;
}
.tires-popup-form input[type="text"], 
.tires-popup-form input[type="password"], 
.tires-popup-form input[type="email"], 
.tires-popup-form input[type="tel"], 
.tires-popup-form select, 
.tires-popup-form textarea{
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  line-height: 20px;
  background: #f7f7f7;
  border: 1px solid #eeeeee;
  border-radius: 2px;
  box-shadow: none;
  color: #383838;
  height: auto;
  font-size: 13px;
  padding: 8px 13px 7px;
  margin: 0;
    font-family: inherit;
}
.tires-popup-form .filter.licence_block{
  padding: 0 0 20px;
  position: relative;
  margin: -10px 0 0;
  display: flex;
}
.tires-popup-form input:not(.btn) {
  line-height: 20px;
}
.tires-popup-form .filter.licence_block input[type="checkbox"] {
  line-height: 0;
  margin: 0;
}
.tires-popup-form .filter.licence_block a{
  color: #e62222;
}
.tires-popup-form .filter.label_block input + label {
  padding-left: 12px;
  font-size: 13px;
  color: #888;
  position: relative;
  z-index: 100;
  cursor: pointer;
  outline: none;
  font-weight: normal;
}
.tires-popup-form .inner-table-block {
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 20px;
}
.tires-popup-form .more_text_small {
  font-size: 13px;
  color: #b3b3b3;
    line-height: 16px;
    padding: 0 0 0;
}
.tires-popup-form .form_result.success{
  margin: 0;
    padding: 30px 35px 30px;
    color: #333;
}
@media only screen and (max-width: 576px) {
  .tires-popup-form{
    width: 100%;
    height: 100%;
    min-width: unset;
    overflow: auto; 
  }
  .tires-popup-form .form .form_body{
    padding: 20px 20px 6px;
  }
}

.inner-table-block .callback-block{
  min-width: 200px;
  cursor: pointer;
  margin-bottom: 24px;
}
.product-toorder-link{
  width: 100%;
}

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