.favorite__section {
  height: calc(100vh - 500px);
}

.favorite__reg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 50px;
}

.favorite__text {
  font-size: 18px;
  line-height: 20px;
  color: var(--red-color);
  text-align: center;
}

.favorite__link {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #474fa0ad;
  text-decoration: underline;
  text-transform: uppercase;
  text-align: center;
  background: #222 -webkit-gradient(linear, left top, right top, from(#222), to(#222), color-stop(0.9, #000)) 0 0 no-repeat;
  background-image: -webkit-linear-gradient(-40deg,
      transparent 0%,
      transparent 40%,
      #fff 50%,
      transparent 60%,
      transparent 100%);
  background-size: 200px;
  -webkit-background-clip: text;
  text-shadow: 0 0px 0px rgba(255, 255, 255, 0.5);
  -webkit-animation: shine 2.5s infinite;
  animation: shine 2.5s infinite;
}

@-webkit-keyframes shine {
  0% {
    background-position: -500px;
  }

  100% {
    background-position: 500px;
  }
}

@keyframes shine {
  0% {
    background-position: -500px;
  }

  100% {
    background-position: 500px;
  }
}

.sell__title {
  font-size: 32px;
  line-height: 39px;
  margin-bottom: 40px;
}

.form__validation {
  padding-bottom: 20px;
}

textarea {
  height: 100px;
  margin-bottom: 0;
}

.show__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: var(--white-color);
  background: var(--btn-color);
  border-radius: 10px;
  max-width: 300px;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  margin-top: 20px;
}

.show__section.disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}

.sell__form {
  padding-bottom: 30px;
}

.sell__form-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.sell__form-top .select {
  max-width: 470px;
  color: var(--blue-color);
}

.sell__links-container {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.sell__links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 18px 1fr 18px 1fr 18px 1fr 18px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.sell__item {
  width: 130px;
  height: 50px;
  background: var(--white-color);
  border: 1px solid rgba(71, 79, 160, 0.15);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  cursor: pointer;
}

.sell__item:nth-child(n + 26) {
  display: none;
}

.sell__links.open .sell__item:nth-child(n + 26) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sell__item img {
  width: 34px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.sell__item span {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  text-align: right;
}

.sell__links-btn {
  display: block;
  width: 200px;
  height: 50px;
  font-weight: 600;
  font-size: 16px;
  line-height: 14px;
  color: var(--white-color);
  background: #b289f5;
  -webkit-box-shadow: 0px 22px 22px rgb(71 79 160 / 7%), 0px 4.91399px 4.91399px rgb(71 79 160 / 4%),
    0px 1.46302px 1.46302px rgb(71 79 160 / 3%);
  box-shadow: 0px 22px 22px rgb(71 79 160 / 7%), 0px 4.91399px 4.91399px rgb(71 79 160 / 4%),
    0px 1.46302px 1.46302px rgb(71 79 160 / 3%);
  border-radius: 2px 2px 10px 10px;
  margin: 0 auto;
  margin-top: 10px;
}

.params__section {
  display: none;
  max-width: 670px;
  background: #ffffffb0;
  border-radius: 10px;
  margin: 40px auto;
  padding: 15px;
}

.params__section:last-child {
  margin-bottom: 0;
}

.params__wrap {
  background: #ffffffb0;
  border: 2px dashed rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 15px;
}

.params__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.params__name {
  color: var(--black-color);
}

.params__name-car {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.params__mark,
.params__model {
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
}

.params__name span {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
}

/* .params__img {
	width: 67px;
	height: 69px;
} */

.params__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.params__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--black-color);
}

.transition,
.params__link i:before,
.params__link i:after,
.params__main {
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.no-select,
.params__menu {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.params__menu {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--blue-color);
}

.params__output {
  position: absolute;
  top: 10px;
  right: 60px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
}

.params__main {
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.params__main.active {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.params__main span {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.params__main span:hover {
  color: var(--blue-color);
  font-weight: 700;
}

.params__list .label {
  display: block;
  max-width: 100%;
  margin-bottom: 10px;
}

/* .params__list {
  perspective: 900;
}
.params__link {
  position: relative;
  padding: 10px 20px;
  background: var(--white-color);
  border: 1px solid rgba(71, 79, 160, 0.12);
  border-radius: 10px;
  max-width: 467px;
  width: 100%;
  margin: auto;
  margin-bottom: 10px;
  animation: flipdown 0.5s ease both;
} */

/* .params__link:nth-of-type(1) {
	animation-delay: 0.125s;
}
.params__link:nth-of-type(2) {
	animation-delay: 0.25s;
}
.params__link:nth-of-type(3) {
	animation-delay: 0.375s;
}
.params__link:nth-of-type(4) {
	animation-delay: 0.5s;
}
.params__link:nth-of-type(5) {
	animation-delay: 0.625s;
}
.params__link:nth-of-type(6) {
	animation-delay: 0.75s;
}
.params__link:nth-of-type(7) {
	animation-delay: 0.825s;
}
.params__link:nth-of-type(8) {
	animation-delay: 1s;
}
.params__link:nth-of-type(9) {
	animation-delay: 1.125s;
}

@keyframes flipdown {
	0% {
		opacity: 0;
		transform-origin: top center;
		transform: rotateX(-90deg);
	}
	5% {
		opacity: 1;
	}
	80% {
		transform: rotateX(8deg);
	}
	83% {
		transform: rotateX(6deg);
	}
	92% {
		transform: rotateX(-3deg);
	}
	100% {
		transform-origin: top center;
		transform: rotateX(0deg);
	}
} */

/* .params__link:last-of-type {
  margin-bottom: 0;
}

.params__link i {
  position: absolute;
  top: 14px;
  right: 20px;
  transform: translate(-6px, 0);
}

.params__link i:before,
.params__link i:after {
  content: "";
  position: absolute;
  background: #8f8f8f;
  width: 3px;
  height: 10px;
}

.params__link i:before {
  transform: translate(-2px, 0) rotate(45deg);
}

.params__link i:after {
  transform: translate(3px, 0) rotate(-45deg);
}

.params__link input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}

.params__link input[type="checkbox"]:checked ~ .params__main {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}

.params__link input[type="checkbox"]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}

.params__link input[type="checkbox"]:checked ~ i:after {
  transform: translate(-3px, 0) rotate(-45deg);
} */

.param__title {
  font-weight: 800;
  font-size: 32px;
  line-height: 32px;
}

.photo__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  margin: 20px 0;
}

/* .dropzone {
  position: relative;
  min-height: 150px;
  background: #ffffffb0;
  border: 2px dashed rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}

.dropzone img {
  position: absolute;
  top: 15px;
  left: calc(50% - 28.5px);
  width: 57px;
  height: 57px;
  pointer-events: none;
}

.dropzone__text {
  position: absolute;
  bottom: 15px;
  left: 18px;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  color: #d2d2d2;
}

@media (max-width: 690px) {
  .dropzone__text {
    left: calc(50% - 190px);
    font-size: 20px;
    line-height: 30px;
  }
}

.dropzone .dz-message,
.dropzone .dz-preview {
  margin: 0;
}

.dropzone .dz-preview .dz-image {
  width: 114px;
  height: 114px;
} */

.param__type {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  margin-top: 30px;
}

.param__row,
.param__row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
}

.param__select {
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.param__hide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.param__hide.disabled {
  display: none;
}

.param__select .select {
  max-width: 290px;
}

.param__select img {
  position: absolute;
  top: 18px;
  right: 16px;
  pointer-events: none;
}

/* .param__select select {
  font-weight: 400;
  font-size: 15px;
  line-height: 14px;
  color: var(--blue-color);
  background: var(--white-color);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  border: 1px solid rgba(71, 79, 160, 0.2);
  padding: 16px 40px 16px 20px;
  width: 100%;
} */

.param__span {
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  padding: 5px 20px;
  background: var(--white-color);
  border: 1px solid rgba(71, 79, 160, 0.15);
  border-radius: 12px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  margin: 5px 0;
}

.param__span:not(:last-child) {
  margin-right: 10px;
}

.param__span.choosen,
.param__span.choosen {
  background: rgba(170, 247, 158, 0.46);
}

.param__describe {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  margin-top: 25px;
}

.param__contacts-form,
.param__price-form {
  max-width: 468px;
  margin: 0 auto;
}

.param__contacts-form input,
.param__price-input {
  font-weight: 400;
  font-size: 15px;
  line-height: 14px;
  color: var(--blue-color);
  background: var(--white-color);
  border-radius: 10px;
  border: 1px solid rgba(71, 79, 160, 0.2);
  padding: 16px 40px 16px 20px;
  width: 100%;
  margin-bottom: 20px;
}

.param__contacts-form input:first-child {
  margin-top: 40px;
}

.param__contacts-form button {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--white-color);
  background: -webkit-gradient(linear, left top, left bottom, from(#c09ef7), to(#b289f5));
  background: -o-linear-gradient(top, #c09ef7 0%, #b289f5 100%);
  background: linear-gradient(180deg, #c09ef7 0%, #b289f5 100%);
  -webkit-box-shadow: 0px 22px 22px rgb(71 79 160 / 7%), 0px 4.91399px 4.91399px rgb(71 79 160 / 4%),
    0px 1.46302px 1.46302px rgb(71 79 160 / 3%);
  box-shadow: 0px 22px 22px rgb(71 79 160 / 7%), 0px 4.91399px 4.91399px rgb(71 79 160 / 4%),
    0px 1.46302px 1.46302px rgb(71 79 160 / 3%);
  border: 1px solid rgba(71, 79, 160, 0.2);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  margin-bottom: 40px;
}

.param__price-input {
  margin-top: 30px;
}

.label__width {
  max-width: 100%;
  margin-bottom: 20px;
}

.checkbox__margin {
  margin-top: 10px;
  cursor: pointer;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.checkbox__margin p {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
}

.modal__open {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin: 20px 0;
}

.modal__open span {
  font-weight: 600;
  color: var(--blue-color);
  cursor: pointer;
  text-decoration: underline;
}

.modal__docs {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.modal__docs.open {
  opacity: 1;
  visibility: visible;
}

.modal__docs-wrap {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100vh;
  padding: 30px;
}

.modal__docs-wrap img {
  width: 100%;
  height: 75vh;
  -o-object-fit: contain;
  object-fit: contain;
}

.param__sts {
  max-width: 468px;
  margin: 0 auto;
}

.sell__form-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 630px;
  margin-top: 20px;
}

.checkbox__block .sell__form-check {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--black-color);
  margin-right: 20px;
}

.sell__form-btn {
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  color: var(--white-color);
  background: -webkit-gradient(linear, left top, left bottom, from(#c09ef7), to(#b289f5));
  background: -o-linear-gradient(top, #c09ef7 0%, #b289f5 100%);
  background: linear-gradient(180deg, #c09ef7 0%, #b289f5 100%);
  border: 1px solid rgba(71, 79, 160, 0.15);
  -webkit-box-shadow: 0px 22.3363px 17.869px rgba(71, 79, 160, 0.0417275), 0px 12.5216px 10.0172px rgba(71, 79, 160, 0.035),
    0px 6.6501px 5.32008px rgba(71, 79, 160, 0.0282725), 0px 2.76726px 2.21381px rgba(71, 79, 160, 0.0196802);
  box-shadow: 0px 22.3363px 17.869px rgba(71, 79, 160, 0.0417275), 0px 12.5216px 10.0172px rgba(71, 79, 160, 0.035),
    0px 6.6501px 5.32008px rgba(71, 79, 160, 0.0282725), 0px 2.76726px 2.21381px rgba(71, 79, 160, 0.0196802);
  border-radius: 30px;
  padding: 15px 30px;
  min-width: 244px;
}

.sell__form-btn.disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: .5;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

aside {
  display: none;
  float: left;
  left: 0;
  position: sticky;
  top: 250px;
  margin: 40px 0;
  margin-left: 30px;
}

aside ul li {
  position: relative;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--black-color);
  margin-bottom: 20px;
}

aside ul li span.show {
  position: absolute;
  top: 0;
  left: -40px;
  border: 2px solid #53a047;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-top: none;
  border-right: none;
  width: 17px;
  height: 11px;
}

.aside__discharge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: var(--blue-color);
  background: var(--white-color);
  border: 1px solid rgba(71, 79, 160, 0.15);
  -webkit-box-shadow: 0px 12.5216px 10.0172px rgb(71 79 160 / 4%), 0px 6.6501px 5.32008px rgb(71 79 160 / 3%),
    0px 2.76726px 2.21381px rgb(71 79 160 / 2%);
  box-shadow: 0px 12.5216px 10.0172px rgb(71 79 160 / 4%), 0px 6.6501px 5.32008px rgb(71 79 160 / 3%),
    0px 2.76726px 2.21381px rgb(71 79 160 / 2%);
  border-radius: 10px;
  padding: 12px 20px;
  margin-left: -20px;
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  position: relative;
  padding-left: 55px;
}

.aside__discharge:hover {
  background: var(--blue-color);
  color: var(--white-color);
}

.aside__discharge::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 20px;
  background: url(/img/svg/aside-btn.svg) no-repeat center;
  background-size: cover;
  width: 19px;
  height: 27px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.aside__discharge img {
  width: 19px;
  height: 27px;
  margin-right: 20px;
  display: none;
}

.aside__discharge:hover::before {
  background: url(/img/svg/aside-btn-hover.svg) no-repeat center;
  background-size: cover;
}

.custom-file-upload {
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
  background: var(--green-color);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.custom-file-upload:hover {
  background: #ddd;
}

#file-input {
  display: none;
}

#imageContainer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}

.img__wrap {
  position: relative;
  /*transition: all .3s ease;*/
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  float: left;
}

/*.img__wrap:hover,*/
/*.img__wrap.hover__effect {*/
/*  opacity: .8;*/
/*}*/

.file__btn {
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  background: var(--bg-card);
  border-radius: 50%;
  padding: 3px;
  font-size: 18px;
  line-height: 18px;
  color: var(--blue-color);
  z-index: 2;
  cursor: pointer;
  /*pointer-events: none;*/
}

.img__wrap:hover .file__btn,
.img__wrap.hover__effect .file__btn {
  opacity: 1;
  visibility: visible;
}

.file__img {
  position: relative;
  width: 100%;
  height: 110px;
  -o-object-fit: contain;
  object-fit: contain;
  cursor: pointer;
}

.last__check-label {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 15px;
}

.last__check-label p {
  font-size: 14px;
  line-height: 16px;
}

.last__check-label p a {
  color: var(--blue-color);
}

/* ------------------------- @media ---------------------------- */

@media screen and (max-width: 1120px) {
  .params__section {
    margin-left: calc(0% + 220px);
  }
}

@media screen and (max-width: 768px) {
  .params__section {
    margin-left: auto;
  }

  .sell__title {
    font-size: 22px;
    line-height: 27px;
  }

  aside {
    display: none !important;
  }
}

@media screen and (max-width: 762px) {
  .sell__links-container {
    display: none;
  }
}

@media screen and (max-width: 560px) {
  .sell__form-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
}

@media screen and (max-width: 460px) {
  .last__check-label p {
    font-size: 12px;
    line-height: 14px;
  }
}

@media screen and (max-width: 375px) {
  .params__section {
    background: none;
    margin: 20px auto;
    padding: 0;
  }

  .params__wrap {
    background: none;
    border: none;
    padding: 0;
  }
}