@charset "UTF-8";
html {
  box-sizing: border-box;
  scroll-padding-top: var(--h-height, 0);
  scroll-behavior: smooth;
}

*, :before, :after {
  box-sizing: inherit;
  flex: 0 1 auto;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font: normal normal 16px/normal Play, sans-serif;
  color: #17182D;
  background-color: #F4F4F7;
  overflow-anchor: none;
}

header, footer {
  flex: 0 0 auto;
}

main {
  flex-grow: 1;
}

img,
iframe,
svg,
object,
video {
  max-width: 100%;
  user-select: none;
}

img {
  height: auto;
}

a {
  color: #60B834;
}

a img {
  border: none;
}

em {
  font-style: inherit;
  color: #60B834;
}

p {
  margin: 0 0 1.25em;
}
p:last-child {
  margin-bottom: 0;
}

small {
  font-size: 0.8571428571em;
}

ul {
  padding: 0 0 0 1.2em;
  margin: 0 0 1em;
}
ul:last-child {
  margin-bottom: 0;
}

ol {
  padding: 0;
  list-style-position: inside;
  margin: 0 0 1.2em;
}
ol:last-child {
  margin-bottom: 0;
}
ol > li {
  margin: 0 0 0.2em;
}
ol > li:last-child {
  margin-bottom: 0;
}

*:focus {
  outline: none;
}

*:invalid {
  box-shadow: none;
}

/*элементы форм*/
input, textarea, button, select {
  font: inherit;
  color: inherit;
}

textarea {
  resize: none;
}

select {
  display: block;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  font: normal normal 16px/normal Play, sans-serif;
  padding: 8.5px 30px 8.5px 10px;
  border: 1px solid #E7EAF4;
  border-radius: 8px;
  background: url(../img/select-angle.svg) no-repeat right 12px center/11px auto #fff;
}
select::-ms-expand {
  display: none;
}

[type=search] {
  appearance: textfield;
}
[type=search]::-webkit-search-decoration, [type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-results-button, [type=search]::-webkit-search-results-decoration {
  display: none;
}

label {
  user-select: none;
}

.text-input {
  display: block;
  width: 100%;
  border: 1px solid #E7EAF4;
  border-radius: 8px;
  padding: 8.5px 10px;
  background-color: #fff;
  font: normal normal 16px/normal Play, sans-serif;
  color: #17182D;
}
.text-input::-webkit-input-placeholder {
  color: #4E4F63;
}
.text-input::-moz-placeholder {
  color: #4E4F63;
}
.text-input:-ms-input-placeholder {
  color: #4E4F63;
}

.radio-btn {
  display: block;
  position: relative;
}
.radio-btn__input {
  position: absolute;
  z-index: -1;
  margin: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}
.radio-btn__btn {
  display: block;
  border: 1px solid #E7EAF4;
  color: #17182D;
  border-radius: 8px;
  font: normal normal 16px/36px Play, sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  padding: 0 30px;
  cursor: pointer;
  max-width: 100%;
  transition: all 0.2s ease;
}
.radio-btn__input:checked + .radio-btn__btn {
  border-color: #17182D;
}
.radio-btn__remove-btn {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 8px;
  line-height: 38px;
  width: 30px;
  text-align: center;
  color: #17182D;
  cursor: pointer;
  display: none;
}
.radio-btn__input:checked ~ .radio-btn__remove-btn {
  display: block;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px 18px;
  margin: 0 0 20px;
}
.radio-group:last-child {
  margin-bottom: 0;
}
.radio-group__item {
  flex: 1 1 calc(50% - 9px);
}

.number-plate-field {
  display: flex;
  align-items: flex-start;
  position: relative;
  --radius: 8px;
}
.number-plate-field:before, .number-plate-field:after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #E7EAF4;
  top: 24px;
  position: absolute;
  z-index: 1;
}
.number-plate-field:before {
  left: 9px;
}
.number-plate-field:after {
  right: 9px;
}
.number-plate-field__part {
  flex: 1 1 auto;
  position: relative;
}
.number-plate-field__part--small {
  width: 88px;
  flex: 0 0 auto;
}
.number-plate-field__input {
  display: block;
  border: 1px solid #E7EAF4;
  width: 100%;
  height: 55px;
  border-radius: 0;
  font: normal normal 52px/1 RoadNumbers, sans-serif;
  color: #17182D;
  background-color: #fff;
  min-width: 0;
  padding: 0 15px;
  text-align: center;
}
.number-plate-field__input--small {
  font-size: 24px;
  padding: 0 5px 25px;
}
.number-plate-field__part:first-child .number-plate-field__input {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
  padding-left: 25px;
}
.number-plate-field__part:last-child .number-plate-field__input {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  padding-right: 25px;
}
.number-plate-field__label {
  font-size: 14px;
  color: #4F506C;
  display: block;
  text-align: center;
  margin: 0.5em 0 0;
}
.number-plate-field__country {
  display: flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  left: 9px;
  top: 28px;
}
.number-plate-field__country-label {
  font: normal 600 14px/normal Montserrat, sans-serif;
  color: #17182D;
}
.number-plate-field__country-flag {
  width: 21px;
  height: auto;
}

.toggle {
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  position: relative;
  width: 71px;
  height: 36px;
  border-radius: 18px;
  background-color: #60B834;
  flex: 0 0 auto;
  cursor: pointer;
  margin: 0;
}
.toggle:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #36774C;
  transition: all 0.2s ease;
  position: absolute;
  top: 7px;
  left: 7px;
}
.toggle:checked:before {
  background-color: #fff;
  left: 42px;
}

/*кнопки*/
button,
[type=submit],
[type=reset],
[type=image] {
  cursor: pointer;
}

.btn {
  display: inline-block;
  vertical-align: top;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  max-width: 100%;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  text-align: center;
  text-shadow: none;
  font: normal bold 20px/48px Play, sans-serif;
  background-color: #60B834;
  color: #fff;
  border: 1px solid #60B834;
  border-radius: 8px;
  padding: 0 20px;
}
.btn:active {
  transform: translateY(2px);
}
.btn--white {
  border-color: #fff;
  background-color: #fff;
  color: #17182D;
  font-weight: 400;
}
.btn--stroke {
  border-color: #E7EAF4;
  background-color: transparent;
  color: #17182D;
}
.btn--left {
  text-align: left;
}
.btn--block {
  display: block;
  width: 100%;
  padding: 0 10px;
}
.btn--small {
  font-size: 16px;
  line-height: 36px;
  padding: 0 10px;
  font-weight: 400;
}
.btn__icon {
  font-size: 1.5em;
  vertical-align: -0.2em;
  max-height: 1em;
}
.btn__icon:first-child {
  margin-right: 0.2em;
}
.btn__icon:last-child {
  margin-left: 0.2em;
}
.btn__icon--mobile {
  display: none;
}
.btn__icon--small {
  vertical-align: -0.1em;
  font-size: 0.9em;
}
.btn__icon--small:first-child {
  margin-right: 0.7em;
}
.btn__icon--small:last-child {
  margin-left: 0.7em;
}

/*заголовки*/
h1, h2, h3, h4, h5, h6 {
  margin: 1.25em 0;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  color: #60B834;
}

h1, h2 {
  font-size: 32px;
  line-height: 1;
}

h1 {
  margin: 2em 0 1em;
}

h2 {
  margin: 1.5em 0;
}

h3 {
  font-size: 24px;
  line-height: normal;
}

h4 {
  font-size: 20px;
  line-height: normal;
}

h5 {
  font-size: inherit;
}

/*модификаторы*/
.text-center {
  text-align: center;
}

/*таблицы*/
.table-wrapper {
  max-width: 100%;
  overflow: auto;
  padding: 5px;
  background-color: #fff;
  border-radius: 15px;
}

table {
  width: 100%;
  border-spacing: 0;
  --radius: 15px;
}

tbody tr:first-child td {
  border-top: 3px solid #fff;
}

td {
  height: 100px;
  border-top: 1px solid #ECECEC;
  background-color: #fff;
  padding: 20px;
  vertical-align: middle;
}

th {
  background-color: #F4F4F7;
  padding: 20px;
  vertical-align: middle;
  height: 60px;
  font-weight: inherit;
  text-align: inherit;
}
th:first-child {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
th:last-child {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

td:first-child, th:first-child {
  padding-left: 35px;
}
td:last-child, th:last-child {
  padding-right: 35px;
}

.align-top td, .align-top th {
  vertical-align: top;
}

.low-cells td, .low-cells th {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

.bill {
  margin: 1.5em 0;
}
.bill:first-child {
  margin-top: 0;
}
.bill:last-child {
  margin-bottom: 0;
}
.bill td, .bill th {
  background: none;
  padding: 0.2em 1em;
  height: 1.25em;
  border: none;
  color: inherit;
  vertical-align: top;
}
.bill td:first-child, .bill th:first-child {
  padding-left: 0;
  border-radius: 0;
}
.bill td:last-child, .bill th:last-child {
  padding-right: 0;
  border-radius: 0;
}
.bill th {
  font-weight: bold;
}
.bill tbody tr td {
  border: none;
}

/*контейнеры*/
.main-section {
  padding: 30px 0 100px;
  overflow: hidden;
}
.main-section--low {
  padding: 11px 0 20px;
}
.main-section--low h1 {
  margin-bottom: 0.6em;
}
.main-section--low h1:last-child {
  margin-bottom: 0;
}

.wrapper {
  width: 100%;
  max-width: 1140px;
  margin: auto;
  padding: 0 15px;
}

.box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/*модальные окна*/
.modal {
  display: none;
  width: 450px;
  max-width: 100%;
  border-radius: 15px;
  padding: 40px 45px 45px;
}
.modal.fancybox-content {
  display: inline-block;
}
.modal__head {
  margin: 0 0 1.2em;
}
.modal__head:last-child {
  margin-bottom: 0;
}
.modal__form {
  margin: 0 0 2.2em;
}
.modal__form:last-child {
  margin-bottom: 0;
}
.modal__input {
  display: block;
  width: 100%;
  margin: 0 0 12px;
}
.modal__input:last-child {
  margin-bottom: 0;
}
.modal__btn {
  min-width: 122px;
}
.modal__footer {
  font-size: 0.875em;
}

/*ШАПКА*/
.logo {
  display: inline-block;
  max-width: 100%;
  flex: 0 0 auto;
}
.logo__img {
  width: 100%;
  height: var(--height, auto);
  object-fit: contain;
  object-position: left center;
}

.notification {
  padding: 7px;
}
.notification__icon {
  display: block;
  font-size: 17px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.notification__icon--active:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #60B834;
  position: absolute;
  top: 0.3em;
  right: 0;
}
.notification__dropdown {
  position: absolute;
  top: 0;
  right: 15px;
  width: max-content;
  max-width: 240px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 23px 20px;
  color: #60B834;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.notification--open .notification__dropdown {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.notification__title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  line-height: 1.5;
  cursor: pointer;
}
.notification__list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: 22px 0 0;
}
.notification__list:first-child {
  margin-top: 0;
}
.notification__list > li > a {
  display: block;
  width: fit-content;
  padding: 0.37em 0;
  text-decoration: none;
}

.auth {
  display: block;
  color: inherit;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}
.auth__head {
  display: flex;
  align-items: center;
  gap: 0.5833333333em;
  cursor: pointer;
}
.auth__pic {
  font-size: 1.4166666667em;
  font-weight: 400;
  font-family: icomoon;
  width: 1em;
  height: 1em;
  line-height: 1;
  flex: 0 0 auto;
}
.auth__pic:empty:before {
  content: "\e90e";
}
.auth__pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
.auth__text {
  display: inline-block;
  max-width: 9.0833333333em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.auth__text--full {
  max-width: none;
}
.auth__dropdown {
  position: absolute;
  top: 0;
  right: 15px;
  width: max-content;
  max-width: calc(100% - 30px);
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 23px 20px;
  color: #60B834;
  transition: all 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.auth--open .auth__dropdown {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.auth__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: bold;
  margin-top: 22px;
}
.auth__menu:first-child {
  margin-top: 0;
}
.auth__menu > li > a {
  display: block;
  width: fit-content;
  padding: 0.37em 0;
  text-decoration: none;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  position: relative;
  cursor: pointer;
}
.menu-btn:before, .menu-btn:after {
  content: "";
  display: block;
  border-top: 2px solid;
  position: absolute;
  width: 32px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}
.menu-btn:before {
  border-bottom: 2px solid;
  height: 22px;
}
.menu-btn--active:before {
  transform: translateY(-50%) rotate(-45deg);
  border-width: 1px;
  height: 2px;
}
.menu-btn--active:after {
  transform: translateY(-50%) rotate(45deg);
}

.header {
  position: relative;
  width: 100%;
  margin-top: 25px;
  z-index: 5;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  padding: 16.5px 15px;
}
.header__logo {
  width: 230px;
}
.header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 15px;
  margin: 0 auto;
}
.header__menu > li > a {
  display: block;
  color: inherit;
  padding: 10px 7.5px;
  border-radius: 8px;
  text-decoration: none;
}
.header__menu > li.active {
  margin-left: 7.5px;
  margin-right: 7.5px;
}
.header__menu > li.active:first-child {
  margin-left: 0;
}
.header__menu > li.active:last-child {
  margin-right: 0;
}
.header__menu > li.active > a {
  background-color: #60B834;
  color: #fff;
  text-decoration: none;
  padding-left: 15px;
  padding-right: 15px;
}

/*ОСНОВНОЕ СОДЕРЖИМОЕ*/
.rating-widget {
  background-color: #fff;
  padding: 5px 15px;
  border-radius: 15px;
  flex: 0 0 auto;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
}
.rating-widget--mobile {
  display: none;
}
.rating-widget--simple {
  width: fit-content;
  background: none;
  padding: 0;
  border-radius: 0;
  margin: 25px 0;
}
.rating-widget--simple:first-child {
  margin-top: 0;
}
.rating-widget--simple:last-child {
  margin-bottom: 0;
}
.rating-widget__head {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.rating-widget__stars {
  display: flex;
  font-size: 16px;
  gap: 0.3em;
  color: #F4F4F7;
}
.rating-widget__star--active {
  color: #60B834;
}
.rating-widget__star--half {
  background: linear-gradient(to right, #60B834 50%, #F4F4F7 50%);
  color: transparent;
  -webkit-background-clip: text;
}
.rating-widget__value {
  font-size: 20px;
  font-weight: bold;
}
.rating-widget__capiton {
  font-size: 15px;
}

.section-head {
  display: flex;
  gap: 15px;
  margin: 25px 0 10px;
}
.section-head:first-child {
  margin-top: 0;
}
.section-head:last-child {
  margin-bottom: 0;
}
.section-head + div {
  margin-top: 0;
}
.section-head__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 15px;
  text-align: center;
  flex: 1 1 auto;
}
.section-head__text-inner {
  width: 100%;
}
.section-head__text h1, .section-head__text h2 {
  font-weight: inherit;
  font-size: 26px;
}

.form-title {
  display: flex;
  align-items: center;
  border: 1px solid #E7EAF4;
  border-radius: 8px;
  padding: 13.5px 55px 13.5px 25px;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  margin: 0 0 13px;
}
.form-title:last-child {
  margin-bottom: 0;
}
.form-title__icon {
  font-size: 21px;
  margin: 0 12px 0 0;
}
.form-title__btn {
  width: 44px;
  line-height: 44px;
  font-size: 20px;
  text-align: center;
  color: #fff;
  background-color: #60B834;
  position: absolute;
  top: calc(50% - 22px);
  right: 3px;
  border-radius: 6px;
  user-select: none;
  cursor: pointer;
}

.app {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}
.app__main {
  flex: 1 1 auto;
}
.app__text {
  font-size: 12px;
  margin: 0 0 24px;
}
.app__text:last-child {
  margin-bottom: 0;
}
.app__text h4 {
  margin-bottom: 0.2em;
}
.app__text h4:last-child {
  margin-bottom: 0;
}
.app__btn {
  margin: 0 0 13px;
}
.app__btn:last-child {
  margin-bottom: 0;
}
.app__img {
  width: 140px;
  flex: 0 0 auto;
  border-radius: 8px;
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.15);
}

.search-form {
  margin: 45px 0;
  background-color: #fff;
  padding: 26px;
  border-radius: 15px;
  display: flex;
  gap: 30px;
  border: 2px solid #60B834;
}
.search-form:first-child {
  margin-top: 0;
}
.search-form:last-child {
  margin-bottom: 0;
}
.search-form__main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.search-form__sidebar {
  width: 408px;
  flex: 0 0 auto;
  order: 1;
}
.search-form__sidebar--not-auth .search-form__options {
  display: none;
}
.search-form__options {
  margin: 0 0 25px;
}
.search-form__options:last-child {
  margin-bottom: 0;
}
.search-form__app--mobile {
  display: none;
}
.search-form__tabs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  background-color: #F4F4F7;
  border-radius: 8px;
  padding: 3px;
  margin: 0 0 25px;
}
.search-form__tabs-list:last-child {
  margin-bottom: 0;
}
.search-form__tabs-list > li {
  flex: 1 1 auto;
  border-left: 1px solid #E7E7E7;
}
.search-form__tabs-list > li:first-child {
  border-left: none;
}
.search-form__tabs-list > li > a {
  display: block;
  font-size: 16px;
  padding: 13px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  color: inherit;
}
.search-form__tabs-list > li.active {
  border-color: transparent;
}
.search-form__tabs-list > li.active + li {
  border-color: transparent;
}
.search-form__tabs-list > li.active > a {
  background-color: #fff;
}
.search-form__tabs-select {
  display: none;
}
.search-form__tab {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.search-form__text {
  font-size: 12px;
  line-height: 1.3333333333;
  margin: 0 0 25px;
}
.search-form__text:last-child {
  margin-bottom: 0;
}
.search-form__text a {
  color: inherit;
  text-decoration: underline;
}
.search-form__fieldset {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px 22px;
  justify-content: center;
  width: 100%;
  margin: auto 0 0;
}
.search-form__field:not(:only-child) {
  flex: 1 1 auto;
}
.search-form__btn {
  margin: 28px 0 0;
}
.search-form__btn:first-child {
  margin-top: 0;
}

@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.progress {
  margin: 45px 0;
}
.progress:first-child {
  margin-top: 0;
}
.progress:last-child {
  margin-bottom: 0;
}
.progress__text {
  text-align: center;
  margin: 0 0 0.7em;
}
.progress__text:last-child {
  margin-bottom: 0;
}
.progress__bar {
  width: 265px;
  max-width: 100%;
  height: 20px;
  background-color: #B8B9C9;
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
}
.progress__bar:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 4px);
  right: 6px;
  animation: spin 1s linear infinite;
}
.progress__value {
  display: block;
  width: 0;
  background-color: #60B834;
  border-radius: inherit;
  height: 100%;
  animation: progress 1.5s linear forwards;
}

.message {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  padding: 25px 70px;
  margin: 15px 0;
}
.message:first-child {
  margin-top: 0;
}
.message:last-child {
  margin-bottom: 0;
}
.search-form + .message {
  margin-top: -25px;
}
.message__close-btn {
  display: inline-block;
  color: #60B834;
  font-size: 17px;
  width: 3em;
  text-align: center;
  line-height: 3;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
.message__image {
  width: 230px;
  flex: 0 0 auto;
}
.message__text {
  background: linear-gradient(to bottom, #60B834, #12592A);
  border-radius: 8px;
  font-size: 32px;
  line-height: 1;
  font-weight: bold;
  padding: 0.5em 1.5em;
  width: 15.94em;
  max-width: 100%;
  color: #fff;
  text-align: center;
}

.file-link {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.4em;
  line-height: 1.4;
  min-height: 1.4em;
}
.file-link:before {
  content: "\e908";
  font-family: icomoon;
  line-height: 1;
  font-weight: 400;
  position: absolute;
  top: calc(50% - 0.5em);
  left: 0;
}

.catalog {
  margin: 35px 0 45px;
}
.catalog:first-child {
  margin-top: 0;
}
.catalog:last-child {
  margin-bottom: 0;
}
.catalog--no-mt {
  margin-top: 0;
}
.catalog__body {
  margin: 0 0 25px;
}
.catalog__body:last-child {
  margin-bottom: 0;
}
.catalog__body--small-gap {
  margin-bottom: 15px;
}
.catalog__body--small-text {
  font-size: 14px;
}
.catalog__id--short {
  word-break: break-all;
  width: 170px;
  padding-right: 34px;
}
.catalog__text-info {
  max-width: 280px;
}
.catalog__image-link {
  display: block;
  width: fit-content;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7;
}
.catalog__image-link:before {
  content: "\e902";
  font-family: icomoon;
  font-weight: 400;
  vertical-align: -0.1em;
  margin-right: 0.5em;
}
.catalog__price {
  display: block;
  text-align: center;
  margin: 0 0 4px;
}
.catalog__price:last-child {
  margin-bottom: 0;
}
.catalog__price--old {
  font-size: 13px;
  color: #35C254;
  text-decoration: line-through;
}
.catalog__date {
  white-space: nowrap;
  font-size: 12px;
  color: #5B5C74;
  text-align: center;
}
.catalog__time {
  white-space: nowrap;
  font-size: 12px;
  color: #5B5C74;
}
.catalog__btn-cell {
  width: 0;
}
.catalog__bill {
  max-width: 410px;
  margin: 1em 0 1em auto;
}
.catalog__bill td, .catalog__bill th {
  padding-top: 0;
  padding-bottom: 0;
}
.catalog__item-gallery {
  display: none;
}

.text-columns {
  margin: 45px 0;
}
.text-columns:first-child {
  margin-top: 0;
}
.text-columns:last-child {
  margin-bottom: 0;
}
.text-columns__item {
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 8px;
  width: calc((100% - 60px) / 3);
  font-size: 14px;
}

.infographics {
  background-color: #fff;
  border-radius: 8px;
  padding: 34px 24px;
  margin: 45px 0;
}
.infographics:first-child {
  margin-top: 0;
}
.infographics:last-child {
  margin-bottom: 0;
}
.infographics__inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-right: -44px;
}
.infographics__text {
  width: calc(54% - 10px);
}
.infographics__text:only-child {
  flex: 1 1 auto;
  padding-right: 44px;
}
.infographics__img {
  width: calc(46% - 10px);
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 30px 0;
}
.buttons:first-child {
  margin-top: 0;
}
.buttons:last-child {
  margin-bottom: 0;
}

.option-block {
  background-color: #F4F4F7;
  border-radius: 15px;
  padding: 15px 30px;
  margin: 30px 0;
}
.option-block:first-child {
  margin-top: 0;
}
.option-block:last-child {
  margin-bottom: 0;
}
.option-block__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 20px;
}
.option-block__head:last-child {
  margin-bottom: 0;
}
.option-block__label {
  font-weight: bold;
  font-size: 24px;
}

.nice-nav {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  margin: 30px 0 45px;
}
.nice-nav:first-child {
  margin-top: 0;
}
.nice-nav:last-child {
  margin-bottom: 0;
}
.nice-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0 0 45px;
}
.nice-nav__list:last-child {
  margin-bottom: 0;
}
.nice-nav__list > li {
  width: calc(50% - 10px);
}
.nice-nav__list > li > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #F4F4F7;
  border-radius: 8px;
  min-height: 50px;
  padding: 6px 25px 6px 45px;
  color: inherit;
  height: 100%;
  text-decoration: none;
}

.page-404 {
  position: relative;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-404__text {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
}
.page-404__text h1 {
  font-size: 178px;
  line-height: 1;
  color: #60B834;
  margin: 0;
}

.contacts {
  background-color: #fff;
  border-radius: 15px;
  padding: 50px 0;
  margin: 35px 0 45px;
}
.contacts:first-child {
  margin-top: 0;
}
.contacts:last-child {
  margin-bottom: 0;
}
.contacts__body {
  padding: 40px 130px;
  border-bottom: 1px solid #EBEBEB;
}
.contacts__body:last-child {
  border-bottom: none;
}
.contacts__text {
  line-height: 1.5;
  margin: 0 0 1.7em;
}
.contacts__text:last-child {
  margin-bottom: 0;
}
.contacts__form {
  margin: 0 0 40px;
}
.contacts__form:last-child {
  margin-bottom: 0;
}
.contacts__fields {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin: 0 0 25px;
}
.contacts__fields:last-child {
  margin-bottom: 0;
}
.contacts__field {
  flex: 0 1 calc(50% - 15px);
}
.contacts__field--big {
  flex: 1 1 100%;
}
.contacts__footer {
  padding: 40px 35px 40px 130px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.contacts__footer-text {
  width: 473px;
  line-height: 1.5;
}

.sign-form {
  background-color: #fff;
  border-radius: 15px;
  padding: 50px;
  margin: 35px 0 45px;
}
.sign-form:first-child {
  margin-top: 0;
}
.sign-form:last-child {
  margin-bottom: 0;
}
.sign-form__main {
  max-width: 760px;
  margin: 0 auto;
}
.sign-form__nav {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1.2em;
  align-items: baseline;
  justify-content: center;
  color: #7F8094;
  margin: 0 0 30px;
}
.sign-form__nav:last-child {
  margin-bottom: 0;
}
.sign-form__nav-item {
  color: inherit;
  text-decoration: none;
}
.sign-form__nav-item--active {
  color: #17182D;
}
.sign-form__form {
  margin: 0 0 20px;
}
.sign-form__form:last-child {
  margin-bottom: 0;
}
.sign-form__fields {
  margin: 0 0 30px;
}
.sign-form__fields:last-child {
  margin-bottom: 0;
}
.sign-form__field {
  margin: 0 0 20px;
}
.sign-form__field:last-child {
  margin-bottom: 0;
}
.sign-form__note {
  display: flex;
  align-items: center;
  gap: 1em;
}
.sign-form__note-icon {
  color: #60B834;
  font-size: 1.36em;
  line-height: 1;
  flex: 0 0 auto;
}

/**/
.message-block {
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  padding: 50px 130px;
  margin: 35px 0 45px;
}
.message-block:first-child {
  margin-top: 0;
}
.message-block:last-child {
  margin-bottom: 0;
}
.message-block__nav-link {
  display: flex;
  align-items: center;
  gap: 0.63em;
  color: inherit;
  width: fit-content;
  text-decoration: none;
  max-width: 100%;
}
.message-block__title {
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  color: #60B834;
  position: relative;
  margin-top: 35px;
  margin-bottom: 20px;
}
.message-block__title-icon {
  margin-top: 0.12em;
}
.message-block__text {
  margin: 1.5em 0;
}
.message-block__text:first-child {
  margin-top: 0;
}
.message-block__text:last-child {
  margin-bottom: 0;
}
.message-block__text h4 {
  margin-bottom: 0.6em;
}
.message-block__text h4:last-child {
  margin-bottom: 0;
}

.payment-block {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 11px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 825px;
  min-height: 80px;
  margin: 0 0 10px auto;
}
.payment-block:last-child {
  margin-bottom: 0;
}
.payment-block__img {
  max-width: 210px;
  max-height: 57px;
  flex: 0 0 auto;
}
.payment-block__text {
  font-size: 12px;
  flex: 1 1 auto;
}
.payment-block__btn {
  min-width: 286px;
  flex: 0 0 auto;
  order: 1;
}

/*ПОДВАЛ*/
.footer {
  font-size: 14px;
  padding: 2em 0;
  border-top: 1px solid #E4E4E4;
}
.footer__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: space-between;
}
.footer__column--with-icon {
  position: relative;
  padding-left: 2em;
}
.footer__column-icon {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 0;
  font-size: 1.3571428571em;
}
.footer__column a {
  display: inline-block;
  color: inherit;
}

/*АДАПТИВ*/
@media (min-width: 992px) {
  a:hover {
    text-decoration: none;
  }
  td {
    transition: background 0.2s ease;
  }
  tr:hover td {
    background-color: #F4F4F7;
    border-top-color: transparent;
  }
  tr:hover td:first-child {
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
  }
  tr:hover td:last-child {
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
  }
  tr:hover + tr td {
    border-color: transparent;
  }
  .bill tr:hover td {
    background: none;
  }
  .table-wrapper {
    scrollbar-color: #12592A #E7EAF4;
    scrollbar-width: thin;
  }
  .table-wrapper::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: #E7EAF4;
  }
  .table-wrapper::-webkit-scrollbar-thumb {
    background: #12592A;
  }
  .btn {
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  .btn:hover {
    text-decoration: none;
    background-color: #12592A;
    border-color: #12592A;
    color: #fff;
  }
  .btn--stroke:hover, .btn--white:hover {
    border-color: #17182D;
    background-color: #17182D;
  }
  .radio-btn__remove-btn {
    transition: all 0.2s ease;
  }
  .radio-btn__remove-btn:hover {
    color: #12592A;
  }
  .auth__menu a:hover {
    text-decoration: underline;
  }
  .notification__list a:hover {
    text-decoration: underline;
  }
  .header__menu > li > a {
    transition: all 0.2s ease;
  }
  .header__menu > li:hover > a {
    color: #60B834;
    text-decoration: none;
  }
  .header__menu > li.active > a {
    color: #fff;
  }
  .message__close-btn {
    transition: all 0.5s ease;
  }
  .message:hover .message__close-btn {
    transform: rotate(180deg);
  }
  .catalog__image-link:hover {
    text-decoration: none;
    color: #12592A;
  }
  .nice-nav__list a {
    transition: all 0.2s ease;
  }
  .nice-nav__list a:hover {
    text-decoration: none;
    background-color: #60B834;
    color: #fff;
  }
  .sign-form__nav a:hover {
    color: #60B834;
    text-decoration: none;
  }
  .payment-block {
    transition: all 0.2s ease;
  }
  .payment-block:hover {
    border-color: #E7EAF4;
  }
  .message-block__nav-link {
    transition: all 0.2s ease;
  }
  .message-block__nav-link:hover {
    color: #60B834;
  }
  .footer__column a:hover {
    color: #60B834;
  }
}
@media (max-width: 1199px) {
  .wrapper {
    max-width: 992px;
  }
  .header__inner {
    gap: 10px;
  }
  .header__logo {
    width: 180px;
  }
  .header__menu {
    font-size: 13px;
  }
  .nice-nav__list {
    gap: 15px;
  }
  .nice-nav__list > li {
    width: calc(50% - 7.5px);
  }
  .nice-nav__list > li > a {
    padding: 6px 20px;
  }
  .contacts {
    padding: 30px 0;
  }
  .contacts__body, .contacts__footer {
    padding-left: 35px;
  }
  .sign-form {
    padding: 40px;
  }
  .message-block {
    padding: 40px;
  }
}
@media (max-width: 991px) {
  body {
    position: relative;
  }
  .low-bg {
    background-size: 100% min(260px, 50vh);
  }
  .main-section {
    padding-bottom: 60px;
  }
  .main-section--low {
    padding-bottom: 20px;
  }
  h1, h2 {
    font-size: 28px;
  }
  h2 {
    margin-bottom: 1em;
  }
  .table-wrapper {
    border-radius: 8px;
  }
  table {
    --radius: 8px;
  }
  td, th {
    padding: 15px;
    height: auto;
  }
  td:first-child, th:first-child {
    padding-left: 20px;
  }
  td:last-child, th:last-child {
    padding-right: 20px;
  }
  .mobile-collapsed-table {
    display: block;
    border-radius: 0;
    overflow: hidden;
    /*счётная таблица внутри обычной*/
  }
  .mobile-collapsed-table tbody, .mobile-collapsed-table tfoot, .mobile-collapsed-table tr, .mobile-collapsed-table td, .mobile-collapsed-table th {
    display: block;
  }
  .mobile-collapsed-table thead {
    display: none;
  }
  .mobile-collapsed-table tr {
    border-bottom: 1px solid #ECECEC;
  }
  .mobile-collapsed-table tr:last-child {
    border-bottom: none;
  }
  .mobile-collapsed-table td {
    width: auto;
    height: auto;
    border: none;
    padding: 10px 15px;
  }
  .mobile-collapsed-table td[data-caption]:before {
    content: attr(data-caption);
    display: block;
    font-weight: bold;
    margin: 0 0 0.5em;
  }
  .mobile-collapsed-table td[data-caption]:before:last-child {
    margin-bottom: 0;
  }
  .mobile-collapsed-table td:first-child {
    padding-left: 15px;
    padding-top: 15px;
  }
  .mobile-collapsed-table td:last-child {
    padding-right: 15px;
    padding-bottom: 15px;
  }
  .mobile-collapsed-table tbody {
    max-height: none;
  }
  .mobile-collapsed-table tbody tr:last-child td {
    border-radius: 0;
  }
  .mobile-collapsed-table .bill td, .mobile-collapsed-table .bill th {
    padding: 0;
    height: auto;
    margin: 0 0 0.3em;
  }
  .mobile-collapsed-table .bill td:last-child, .mobile-collapsed-table .bill th:last-child {
    margin-bottom: 0;
  }
  .mobile-collapsed-table .bill tr {
    border: none;
    margin: 0 0 0.6em;
  }
  .mobile-collapsed-table .bill tr:last-child {
    margin-bottom: 0;
  }
  .bill tr {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.2em 1em;
    justify-content: space-between;
  }
  .menu-btn {
    display: inline-block;
  }
  .notification__icon {
    font-size: 24px;
  }
  .notification__title {
    font-size: 14px;
  }
  .notification__dropdown {
    padding-top: 15px;
    right: 5px;
  }
  .auth {
    padding: 7px;
  }
  .auth__text {
    display: none;
  }
  .auth__text--full {
    display: block;
  }
  .auth__pic {
    font-size: 24px;
    text-align: center;
  }
  .auth__dropdown {
    right: 5px;
    padding-top: 15px;
  }
  .header {
    padding: 5px 0;
    background-color: #fff;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  .header__inner {
    background: none;
    padding: 0;
    border-radius: 0;
    position: static;
  }
  .header__logo {
    margin-right: auto;
  }
  .header__menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    font-size: 16px;
    text-align: right;
    text-transform: none;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 63px);
    overflow: auto;
    pointer-events: none;
    transform-origin: center top;
    transform: perspective(100vh) rotate3d(1, 0, 0, -90deg);
    transition: all 0.3s ease-in-out;
  }
  .header__menu--open {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
    transform: perspective(100vh) rotate3d(1, 0, 0, 0deg);
    pointer-events: auto;
  }
  .header__menu > li {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
  }
  .header__menu > li > a {
    border-radius: 0;
    padding: 15px;
    -webkit-tap-highlight-color: transparent;
  }
  .header__menu > li > a:active {
    background-color: #12592A;
  }
  .header__menu > li.active {
    margin: 0;
  }
  .rating-widget {
    border-radius: 8px;
  }
  .rating-widget--desktop {
    display: none;
  }
  .rating-widget--mobile {
    display: block;
  }
  .app {
    display: block;
  }
  .app__img {
    display: none;
  }
  .section-head {
    flex-direction: column;
    gap: 10px;
  }
  .section-head__text {
    padding: 10px 15px;
    border-radius: 8px;
  }
  .section-head__text h1, .section-head__text h2 {
    font-size: 20px;
  }
  .search-form {
    display: block;
    border-radius: 8px;
    margin: 30px 0 40px;
  }
  .search-form__main {
    display: block;
    width: auto;
    margin: 0 0 30px;
  }
  .search-form__main:last-child {
    margin-bottom: 0;
  }
  .search-form__sidebar {
    width: auto;
    margin: 0 0 30px;
  }
  .search-form__sidebar:last-child {
    margin-bottom: 0;
  }
  .search-form__sidebar--not-auth, .search-form__sidebar:empty {
    display: none;
  }
  .search-form__app {
    display: none;
    width: fit-content;
  }
  .search-form__app--mobile {
    display: block;
  }
  .progress {
    margin: 35px 0;
  }
  .message {
    border-radius: 8px;
    padding-right: 50px;
    padding-left: 25px;
  }
  .message__text {
    font-size: 28px;
  }
  .catalog__body--small-text {
    font-size: inherit;
  }
  .catalog__price, .catalog__date {
    text-align: inherit;
  }
  .text-columns {
    display: block;
    margin: 30px 0 40px;
  }
  .text-columns__item {
    width: auto;
    font-size: inherit;
    padding: 20px;
    margin: 0 0 20px;
  }
  .text-columns__item:last-child {
    margin-bottom: 0;
  }
  .infographics {
    padding: 24px 20px;
    margin: 30px 0 40px;
    position: relative;
  }
  .infographics__inner {
    display: block;
    margin: 0;
  }
  .infographics__text {
    width: auto;
    position: relative;
    z-index: 1;
  }
  .infographics__img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    opacity: 0.2;
  }
  .nice-nav {
    border-radius: 8px;
    padding: 20px;
  }
  .nice-nav__list {
    margin: 0 0 25px;
  }
  .sign-form {
    border-radius: 8px;
  }
  .sign-form__nav {
    font-size: 22px;
  }
  .contacts {
    border-radius: 8px;
    padding: 20px 0;
  }
  .contacts__body, .contacts__footer {
    padding: 30px;
    gap: 20px;
  }
  .contacts__footer-img {
    max-width: calc(50% - 10px);
  }
  .contacts__fields {
    gap: 10px;
  }
  .contacts__field {
    flex-basis: calc(50% - 5px);
  }
  .contacts__field--big {
    flex-basis: 100%;
  }
  .message-block {
    border-radius: 8px;
  }
  .payment-block {
    max-width: none;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .btn__icon--desktop {
    display: none;
  }
  .btn__icon--mobile {
    display: inline-block;
  }
  .number-plate-field__input {
    font-size: 36px;
    padding-bottom: 0;
  }
  .number-plate-field__input--small {
    font-size: 24px;
    padding-bottom: 25px;
  }
  .bill {
    display: block;
  }
  .bill tbody, .bill tr, .bill td, .bill th {
    display: block;
  }
  .bill td, .bill th {
    padding: 0;
    width: auto;
    height: auto;
  }
  .bill td:not(:last-child) .btn, .bill th:not(:last-child) .btn {
    margin-bottom: 15px;
  }
  .bill tr {
    display: flex;
    margin: 0 0 0.75em;
  }
  .bill tr:last-child {
    margin-bottom: 0;
  }
  .search-form {
    padding: 20px;
  }
  .search-form__tabs-list {
    display: none;
  }
  .search-form__tabs-select {
    display: block;
    padding-top: 15px;
    padding-left: 15px;
    padding-bottom: 15px;
    margin: 0 0 12px;
  }
  .search-form__tabs-select:last-child {
    margin-bottom: 0;
  }
  .search-form__field {
    width: 100%;
  }
  .search-form__fieldset {
    gap: 15px;
  }
  .message {
    padding: 40px 15px 15px;
    display: block;
  }
  .message__image {
    display: block;
    width: fit-content;
    margin: 0 auto 15px;
  }
  .message__image:last-child {
    margin-bottom: 0;
  }
  .message__text {
    width: auto;
    font-size: 18px;
  }
  .catalog__body .bill {
    font-size: 14px;
  }
  .catalog__body .bill td, .catalog__body .bill th {
    width: 100%;
  }
  .catalog__bill {
    max-width: none;
    margin-bottom: 1em;
  }
  .catalog__bill tr {
    margin-bottom: 0.15em;
  }
  .option-block {
    padding: 20px;
  }
  .option-block__head {
    gap: 10px;
    align-items: center;
  }
  .option-block__label {
    font-size: inherit;
  }
  .nice-nav__list {
    display: block;
  }
  .nice-nav__list > li {
    width: auto;
    margin: 0 0 10px;
  }
  .nice-nav__list > li:last-child {
    margin-bottom: 0;
  }
  .contacts__footer {
    display: block;
  }
  .contacts__footer-text {
    width: auto;
    margin: 0 0 2em;
  }
  .contacts__footer-text:last-child {
    margin-bottom: 0;
  }
  .contacts__footer-img {
    display: block;
    max-width: 100%;
    max-height: 80px;
  }
  .sign-form__main {
    width: auto;
  }
  .message-block {
    padding: 20px 20px 30px;
  }
  .payment-block {
    padding: 0;
    background: none;
    border: none;
    display: block;
    min-height: 0;
    margin: 0 0 15px;
  }
  .payment-block__img {
    display: none;
  }
  .payment-block__text {
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
    font-size: 12px;
    order: 1;
    text-align: center;
  }
  .payment-block__btn {
    display: block;
    width: fit-content;
    min-width: 290px;
    margin: 0 auto 5px;
  }
  .payment-block__btn:last-child {
    margin-bottom: 0;
  }
  .footer {
    padding: 20px 0;
  }
  .footer__wrapper {
    display: block;
  }
  .footer__column {
    margin: 0 0 1.5em;
  }
  .footer__column:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 479px) {
  .low-bg {
    background-size: 100% min(200px, 50vh);
  }
  h1 {
    margin-bottom: 0.6em;
  }
  h1, h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
  .radio-group {
    display: block;
  }
  .radio-group__item {
    width: auto;
    margin: 0 0 7px;
  }
  .radio-group__item:last-child {
    margin-bottom: 0;
  }
  .table-wrapper {
    border-radius: 4px;
  }
  table {
    font-size: 12px;
    --radius: 4px;
  }
  td, th {
    padding: 1em 0.6em;
  }
  td:first-child, th:first-child {
    padding-left: 1em;
  }
  td:last-child, th:last-child {
    padding-right: 1em;
  }
  .mobile-collapsed-table {
    --radius: 8px;
  }
  .mobile-collapsed-table,
  .bill {
    font-size: inherit;
  }
  .btn {
    font-size: 16px;
  }
  .modal {
    border-radius: 8px;
    padding: 35px 15px;
  }
  .modal__form {
    margin: 0 0 20px;
  }
  .modal__btn {
    display: block;
    width: 100%;
  }
  .main-section {
    padding-top: 12px;
  }
  .notification {
    padding: 7px 5px;
  }
  .auth {
    padding: 7px 5px;
  }
  .header__logo {
    width: 165px;
    flex: 0 1 auto;
  }
  .header__wrapper {
    padding: 0 8px;
  }
  .header__inner {
    gap: 8px;
  }
  .form-title {
    padding-left: 13.5px;
  }
  .app {
    display: block;
  }
  .app__main {
    margin: 0 0 20px;
  }
  .app__main:last-child {
    margin-bottom: 0;
  }
  .search-form {
    margin-top: 0;
  }
  .search-form__app {
    display: none;
    width: auto;
  }
  .search-form__app--mobile {
    display: block;
  }
  .search-form__btn {
    margin-top: 20px;
  }
  .catalog {
    margin-top: 0;
  }
  .catalog__btn {
    display: block;
    width: 100%;
  }
  .catalog__bill {
    font-size: 14px;
  }
  .buttons__item {
    flex: 1 1 auto;
  }
  .option-block {
    border-radius: 8px;
    padding: 15px;
  }
  .option-block__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .nice-nav {
    margin-top: 0;
    padding: 20px 15px;
  }
  .nice-nav__list > li > a {
    padding: 6px 15px;
  }
  .nice-nav__btn {
    display: block;
    width: 100%;
    padding: 0 5px;
  }
  .contacts {
    margin-top: 0;
    padding: 0;
  }
  .contacts__body, .contacts__footer {
    padding: 30px 20px;
  }
  .contacts__fields {
    display: block;
    margin: 0 0 15px;
  }
  .contacts__field {
    margin: 0 0 10px;
  }
  .contacts__field:last-child {
    margin-bottom: 0;
  }
  .page-404__text {
    font-size: 18px;
  }
  .page-404__text h1 {
    font-size: 120px;
  }
  .sign-form {
    margin-top: 0;
    padding: 30px 15px;
  }
  .sign-form__nav {
    font-size: 18px;
    margin: 0 0 20px;
  }
  .sign-form__fields {
    margin: 0 0 20px;
  }
  .sign-form__field {
    margin: 0 0 10px;
  }
  .sign-form__note {
    font-size: 12px;
  }
  .message-block {
    padding: 20px 15px 30px;
  }
  .payment-block__btn {
    width: 100%;
    padding: 0 10px;
  }
  .text-columns,
  .infographics,
  .message-block {
    margin-top: 0;
  }
}
