

/* Start:/local/components/app.module/feedback.form/templates/.default/css/custom.css?174374625214335*/
:root {
  --text-placeholder: #aeaeae;
}
[v-cloak] {
  display: none;
}
.feedback-form-section {
  padding-top: 84px;
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.feedback-form-section .container {
  background: #fff;
}
/* form */
.feedback-form__header {
  text-align: center;
  margin-bottom: 64px;
  color: #5c5c5c;
}
.feedback-form__title {
  margin-bottom: 16px;
  font-family: var(--font-stem);
  font-weight: 500;
  font-size: 82px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.feedback-form__content {
  width: 760px;
  margin: 0 auto;
}
.feedback-form__content .input__field {
  padding-right: 24px;
}
.feedback-form__content .input__field#form-email {
  padding-right: 20px;
  letter-spacing: -0.6px;
}
.form-row {
  margin-bottom: 40px;
}
.feedback-form__group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feedback-form__group .feedback-form__error {
  position: relative;
  top: -16px;
}
.feedback-form__content .input__field_textarea {
  height: 271px;
}
.feedback-form__content .input__field::placeholder {
  color: var(--text-placeholder);
}
/* custom select */
.feedback-form__content .choices {
  padding: 1px;
  margin-bottom: 0;
  font-family: var(--font-stem);
  font-size: calc(1.8rem + (24 - 18) * ((100vw - 375px) / (1680 - 375)));
  font-weight: 500;
  line-height: 24px;
  color: var(--text-primary);
}
.feedback-form__content .choices .choices__inner {
  border-radius: 20px;
  border: none;
  box-shadow: 0 0 0 1px var(--base-02);
  background: #fff;
  padding: 27px 23px;
  padding-bottom: 27px;
  font-size: 24px;
}
.feedback-form__content .choices .choices__list--single {
  padding: 0;
  vertical-align: auto;
}
.feedback-form__content .choices[data-type*="select-one"]::after {
  right: 28px;
  top: 50%;
  width: 16px;
  height: 10px;
  margin-top: 0;
  background: url(/local/components/app.module/feedback.form/templates/.default/css/../img/select.svg) no-repeat center;
  border: none;
  transform: translateY(-50%) rotate(180deg);
  transform-origin: center;
  transition: transform 300ms ease-in-out;
}
.feedback-form__content .choices[data-type*="select-one"].is-open::after {
  transform: translateY(-50%) rotate(0);
  margin-top: 0;
}
.feedback-form__content .choices .choices__list.choices__list--dropdown {
  top: calc(100% + 4px);
  border: 1px solid var(--base-02);
  border-radius: 20px;
  padding: 5px;
  background: #fff;
}
.feedback-form__content
  .choices
  .choices__list.choices__list--dropdown
  .choices__list {
  max-height: 208px;
}
.feedback-form__content
  .choices
  .choices__list.choices__list--dropdown
  .choices__placeholder {
  display: none;
}
.feedback-form__content
  .choices.is-flipped
  .choices__list.choices__list--dropdown {
  top: auto;
  bottom: calc(100% + 4px);
}
.feedback-form__content
  .choices
  .choices__list.choices__list--dropdown
  .choices__item {
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 8px;
  font-family: var(--font-stem);
  font-size: var(--fs24);
  font-weight: 500;
  line-height: 1;
  color: var(--text-primary);
}
.choices__placeholder {
  color: var(--text-placeholder);
  opacity: 1;
}
/**/
.feedback-form {
  padding-top: 38px;
}
.feedback-form__content a {
  color: #354bca;
}
.feedback-form__content .button {
  margin: 0 auto;
}
.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}
.form-footer p {
  text-align: center;
  font-size: 16px;
  margin-bottom: 8px;
}
.form-footer p label {
  font-size: 14px;
}
.form-footer input[type="checkbox"] {
  margin-right: 8px;
}
/* file */
#file-drop-zone {
  padding: 0;
  margin-bottom: 12px;
  min-height: auto;
  border: none;
}

.dropzone.dz-started .dz-message {
  display: block;
}
.dropzone .dz-default {
  border: 1px dashed #354bca;
  border-radius: 20px;
  padding: 27px 30px 27px 24px;
  margin: 0 0 12px;
  min-height: 80px;
}
.dropzone .dz-default .dz-button {
  font-family: var(--font-stem);
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #aeaeae;
}
.dropzone .dz-default .dz-button span {
  color: #354bca;
  vertical-align: baseline;
}
.dropzone.dz-drag-hover .dz-default {
  background: rgba(0, 82, 250, 0.05);
}
/* Список файлов */
.dropzone-files {
  margin-bottom: 12px;
}
.dropzone-files .dz-preview {
  position: relative;
}
.dropzone-files .dz-preview .dz-filename {
  padding-left: 20px;
  padding-right: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #5c5c5c;
}
.dropzone-files .dz-preview .dz-error-message {
  position: absolute;
  bottom: 100%;
  padding: 5px 7px;
  border-radius: 5px;
  background: #000;
  color: #fff;
  font-size: 12px;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
.dropzone-files .dz-preview.dz-error .dz-filename:hover + .dz-error-message {
  opacity: 1;
}
.dropzone-files .dz-preview.dz-error .dz-filename {
  color: #ee344a;
}
.dropzone-files .dz-preview .dz-details {
  padding: 0;
  text-align: left;
}
.dropzone-files .dz-preview .dz-error-mark,
.dropzone-files .dz-preview .dz-image,
.dropzone-files .dz-preview .dz-progress {
  display: none;
}
.dropzone-files .dz-preview .dz-size {
  display: none;
}
.dropzone-files .dz-preview .dz-remove {
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: url(/local/components/app.module/feedback.form/templates/.default/css/../img/file_del.svg) no-repeat center;
  text-decoration: none;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  z-index: 9999;
}
/**/
.form-row__file-deck {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
}
.form-row__file {
  border: 1px dashed #354bca;
  border-radius: 20px;
  padding: 28px 30px 28px 24px;
  margin-bottom: 12px;
}
.form-row__file-list {
  margin-bottom: 12px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 140%;
  color: #5c5c5c;
}
.form-row__file-list ul li {
  font: inherit;
}
.form-checkbox input {
  display: none;
}
.form-checkbox__prefix {
  display: block;
  margin-bottom: 8px;
}
.form-checkbox label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.form-checkbox label:before {
  display: inline-block;
  width: 29px;
  height: 28px;
  margin-right: 8px;
  content: "";
  background: url(/local/components/app.module/feedback.form/templates/.default/css/../img/check.svg) no-repeat center;
}
.form-checkbox input:checked + label:before {
  background-image: url(/local/components/app.module/feedback.form/templates/.default/css/../img/checked.svg);
}

.feedback-form__content .just-validate-error-label {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #ee344a !important;
}
.feedback-form__content .form-product-container_error .choices__inner,
.feedback-form__content .form-reason-container_error .choices__inner {
  box-shadow: 0 0 0 1px #ee344a;
}
.feedback-form__content .form-checkbox .just-validate-error-label {
  margin: 0;
}
.feedback-form__content .just-validate-error-field {
  box-shadow: 0 0 0 1px #ee344a;
}
.feedback-form__content .file-list_error {
  color: #ee344a !important;
}
.file-list li {
  position: relative;
  padding-right: 20px;
}
.file-list .file-list__del {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background: url(/local/components/app.module/feedback.form/templates/.default/css/../img/file_del.svg) no-repeat center;
  text-decoration: none;
}

/**/
.feedback-form__code {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
  padding: 181px 0 100px;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
}
.feedback-form__code .form-code__change,
.feedback-form__code .form-code__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #5c5c5c;
}
.feedback-form__code .form-code__title {
  margin-bottom: 8px;
}
.form-code__row {
  margin-bottom: 40px;
}
.form-code__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.form-code__errors{
  padding-top: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #ee344a;
}
.form-code__phone {
  padding-top: 30px;
}
.form-code__row_code {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.sms-code {
  display: grid;
  grid-template-columns: repeat(2, 65px);
  gap: 16px;
  justify-content: center;
}
.sms-code__item {
  border: 1px solid #c9c9c9;
  border-radius: 20px;
  padding: 20px 0;
  height: 80px;
  font-size: 0;
  line-height: 0;
}
.sms-code__item input {
  border: none;
  width: 100%;
  height: 100%;
  text-align: center;
  font-family: var(--font-stem);
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
}
.sms-code__item input:focus-visible {
  border: none;
  outline: none;
}
/**/
#form-thenk {
  display: flex;
  padding-top: calc(230px - 32px - 38px);
  padding-bottom: calc(230px - 150px);
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#form-thenk svg {
  margin-bottom: 40px;
}
#form-thenk h1 {
  margin-bottom: 20px;
  font-family: var(--font-stem);
  font-weight: 500;
  font-size: 64px;
  line-height: 100%;
}
#form-thenk p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #5c5c5c;
}
.form-row_file__errors,
.form-footer__errors{
  font-size: 14px;
  font-weight: 500;
  color: #ee344a !important;
}
.form-row_file__errors.form-row_file__errors_error,
.form-footer__errors.form-footer__errors_error{
  margin-bottom: 12px;
}
.form-row_file__errors.form-row_file__errors_error{
  margin-top: 8px;
}
@media (max-width: 1679px) {
  :root {
    --block-paddings: calc(18px + (28 - 18) * ((100vw - 375px) / (1680 - 375)))
      calc(20px + (24 - 20) * ((100vw - 375px) / (1680 - 375)));
    --block-paddings-right: calc(
      20px + (24 - 20) * ((100vw - 375px) / (1680 - 375))
    );
    --block-radius: calc(16px + (20 - 16) * ((100vw - 375px) / (1680 - 375)));
  }
  .form-row {
    margin-bottom: 32px;
  }
  .feedback-form {
    padding-top: 0;
  }
  .feedback-form-section .container {
    border-radius: var(--block-radius);
    padding: 24px 0 0;
  }
  .feedback-form__content {
    max-width: 100%;
    padding: 0 calc(16px + (70 - 16) * ((100vw - 375px) / (1680 - 375)));
  }
  .feedback-form__title {
    font-size: calc(28px + (82 - 28) * ((100vw - 375px) / (1680 - 375)));
    line-height: 100%;
  }
  .feedback-form__header {
    margin-bottom: 32px;
    padding: 0 calc(16px + (70 - 16) * ((100vw - 375px) / (1680 - 375)));
    font-size: 14px;
    line-height: 130%;
  }
  /* */
  .dropzone .dz-default {
    padding-top: 18px;
    padding-bottom: 18px;
    min-height: auto;
    border-radius: 18px;
  }
  .dropzone .dz-default .dz-button {
    font-size: 0;
  }
  .dropzone .dz-default .dz-button span {
    font-size: 18px;
  }
  /**/
  .feedback-form__content .choices[data-type*="select-one"]::after {
    width: 12px;
    height: 7px;
    background-image: url(/local/components/app.module/feedback.form/templates/.default/css/../img/mobile_select.svg);
  }
  .feedback-form__content .choices .choices__inner {
    height: calc(54px + (80 - 54) * ((100vw - 375px) / (1680 - 375)));
    padding: var(--block-paddings);
    padding-right: var(--block-paddings-right);
    border-radius: var(--block-radius);
    font-size: calc(18px + (24 - 18) * ((100vw - 375px) / (1680 - 375)));
    line-height: calc(18px + (24 - 18) * ((100vw - 375px) / (1680 - 375)));
  }
  /**/
  .feedback-form__content
    .choices
    .choices__list.choices__list--dropdown
    .choices__list {
    height: 149px;
  }
  .feedback-form__content
    .choices
    .choices__list.choices__list--dropdown
    .choices__item {
    padding: calc(10px + (20 - 10) * ((100vw - 375px) / (1680 - 375)))
      calc(15px + (20 - 15) * ((100vw - 375px) / (1680 - 375)));
    padding-right: calc(15px + (20 - 15) * ((100vw - 375px) / (1680 - 375)));
    border-radius: var(--block-radius);
    font-size: calc(1.8rem + (24 - 18) * ((100vw - 375px) / (1680 - 375)));
    margin-bottom: 1px;
  }
  .feedback-form__group {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feedback-form__group .feedback-form__error {
    top: 0;
  }
  .choices {
    margin-bottom: 0;
  }
  .form-checkbox label::before {
    width: 18px;
    height: 18px;
    background-image: url(/local/components/app.module/feedback.form/templates/.default/css/../img/mobile_check.svg);
  }
  .form-checkbox input:checked + label::before {
    background-image: url(/local/components/app.module/feedback.form/templates/.default/css/../img/mobile_checked.svg);
  }
  .form-footer p {
    font-size: calc(12px + (16 - 12) * ((100vw - 375px) / (1680 - 375)));
  }
  .form-footer p label,
  .form-footer {
    font-size: calc(11px + (14 - 11) * ((100vw - 375px) / (1680 - 375)));
  }
  .form-row__file-deck {
    font-size: 11px;
  }
  .feedback-form__content .just-validate-error-label {
    font-size: calc(11px + (14 - 11) * ((100vw - 375px) / (1680 - 375)));
  }
  .form-row__file-list {
    font-size: calc(12px + (16 - 12) * ((100vw - 375px) / (1680 - 375)));
  }
  .feedback-form__content .input__field {
    padding: calc(18px + (28 - 18) * ((100vw - 375px) / (1680 - 375)))
      calc(20px + (24 - 20) * ((100vw - 375px) / (1680 - 375)));
    font-size: calc(18px + (24 - 18) * ((100vw - 375px) / (1680 - 375)));
  }
  .feedback-form__content .input__field_textarea {
    height: 162px;
  }
  /**/
  .form-code__row {
    margin-bottom: 32px;
  }
  .feedback-form__code {
    padding: 56px 18px 14px;
    font-size: calc(14px + (20 - 14) * ((100vw - 375px) / (1680 - 375)));
  }
  .feedback-form__code .form-code__change,
  .feedback-form__code .form-code__title {
    font-weight: 500;
    font-size: calc(14px + (20 - 14) * ((100vw - 375px) / (1680 - 375)));
    line-height: 130%;
    color: #5c5c5c;
  }
  .form-code__row_code {
    gap: 16px;
  }
  .form-code__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .sms-code {
    gap: 6px;
    grid-template-columns: repeat(2, 44px);
  }
  .sms-code__item {
    border-radius: calc(16px + (20 - 16) * ((100vw - 375px) / (1680 - 375)));
    padding: 18px 0;
    height: 54px;
  }
  .sms-code__item input {
    font-size: 18px;
    line-height: 18px;
  }
  /**/
  #form-thenk {
    padding-right: 16px;
    padding-left: 16px;
    padding-top: calc(125px - 16px - 24px);
    padding-bottom: calc(125px - 82px);
  }
  #form-thenk svg {
    width: 100px;
    height: 100px;
    margin-bottom: 32px;
  }
  #form-thenk h1 {
    margin-bottom: 8px;
    font-size: 26px;
  }
  #form-thenk p {
    font-size: 14px;
  }
}

/* End */


/* Start:/local/components/app.module/faq.list/templates/.default/style.css?174811365744*/
.otherheader{
font-weight:bold !important;
}
/* End */


/* Start:/local/components/app.module/footer/templates/.default/style.css?1766341898209*/
@media screen and (max-width: 1679px) {
	.main-search__form .input__button {
		right: 20px;
	}
	.main-search__empty{
		min-height:350px;
	}
	.main-search__body:has(.main-search__item){
		min-height:350px;
	}
}
/* End */
/* /local/components/app.module/feedback.form/templates/.default/css/custom.css?174374625214335 */
/* /local/components/app.module/faq.list/templates/.default/style.css?174811365744 */
/* /local/components/app.module/footer/templates/.default/style.css?1766341898209 */
