/* ----------- COLORS ----------- */
/* --------------------------------- */
/* ----------- COLORS ----------- */
/* ----------- COLORS ----------- */
/* --------------------------------- */
/* ----------- COLORS ----------- */
/* ----------- COLORS ----------- */
/* --------------------------------- */
/* ----------- COLORS ----------- */
.feedback-form .success-banner .inner .close, .feedback-form .success-banner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feedback-form .success-banner .inner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@keyframes spin-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes move-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-124.405vw);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes color-blink {
  0% {
    background-color: rgba(3, 122, 205, 0.7);
  }
  50% {
    background-color: rgb(255, 255, 255);
  }
  100% {
    background-color: rgb(3, 122, 205);
  }
}
@keyframes round-loader {
  0% {
    stroke-dasharray: 130, 150;
  }
  100% {
    stroke-dasharray: 0, 150;
  }
}
@keyframes colorBrand {
  0% {
    background-color: rgb(90, 180, 172);
  }
  20% {
    background-color: rgb(90, 180, 172);
  }
  50% {
    background-color: rgb(3, 122, 205);
  }
  70% {
    background-color: rgb(3, 122, 205);
  }
  100% {
    background-color: rgb(90, 180, 172);
  }
}
.feedback-form {
  padding: calc(30 * var(--resize-coeficient)) 0 calc(48 * var(--resize-coeficient)) 0;
  padding-bottom: 80px;
}
.feedback-form h1.as-h1, .feedback-form .as-h1 {
  color: rgb(49, 48, 47);
  text-align: center;
  font-family: "WixMadeforDisplay", sans-serif;
  font-size: calc(80 * var(--resize-coeficient));
  font-weight: 500;
  line-height: 1;
  letter-spacing: -4px;
  margin-bottom: calc(30 * var(--resize-coeficient));
}
.feedback-form .feedback-head {
  max-width: calc(805 * var(--resize-coeficient));
  margin: 0 auto;
}
.feedback-form .feedback-head__title {
  font-family: "WixMadeforDisplay", sans-serif;
  font-size: calc(80 * var(--resize-coeficient));
  font-weight: 500;
  line-height: 1;
  letter-spacing: calc(-4 * var(--resize-coeficient));
  text-align: center;
  margin-bottom: calc(30 * var(--resize-coeficient));
}
.feedback-form .feedback-head__description {
  color: rgb(49, 48, 47);
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: calc(16 * var(--resize-coeficient));
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: calc(48 * var(--resize-coeficient));
}
.feedback-form__container {
  margin: 0 calc(30 * var(--resize-coeficient));
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: calc(20 * var(--resize-coeficient));
  box-shadow: 0px 208px 58px 0px rgba(65, 184, 210, 0), 0px 133px 53px 0px rgba(65, 184, 210, 0.01), 0px 75px 45px 0px rgba(65, 184, 210, 0.05), 0px 33px 33px 0px rgba(65, 184, 210, 0.09), 0px 8px 18px 0px rgba(65, 184, 210, 0.1);
  position: relative;
  overflow: hidden;
}
.feedback-form__left {
  flex: 1;
  padding: calc(60 * var(--resize-coeficient));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feedback-form__divider {
  width: 1px;
  background: rgb(255, 255, 255);
  flex-shrink: 0;
}
.feedback-form__divider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.2) 4px, transparent 4px, transparent 8px);
  z-index: 2;
}
.feedback-form__right {
  flex: 1;
  padding: calc(60 * var(--resize-coeficient)) calc(60 * var(--resize-coeficient)) calc(60 * var(--resize-coeficient)) calc(60 * var(--resize-coeficient));
}
.feedback-form .quality-control__header {
  margin-bottom: calc(30 * var(--resize-coeficient));
}
.feedback-form .quality-control__title {
  font-family: "WixMadeforDisplay", sans-serif;
  font-weight: 500;
  font-size: calc(30 * var(--resize-coeficient));
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgb(49, 48, 47);
  margin-bottom: calc(15 * var(--resize-coeficient));
}
.feedback-form .quality-control__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: calc(16 * var(--resize-coeficient));
  line-height: 1.3;
  color: rgb(49, 48, 47);
}
.feedback-form .quality-control__description span {
  display: block;
}
.feedback-form .quality-control__description span:last-child {
  opacity: 0.5;
  margin-top: calc(5 * var(--resize-coeficient));
}
.feedback-form .quality-control__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: calc(10 * var(--resize-coeficient)) calc(30 * var(--resize-coeficient));
  padding: calc(20 * var(--resize-coeficient));
  background: rgb(240, 244, 246);
  border-radius: calc(100 * var(--resize-coeficient));
  width: -moz-max-content;
  width: max-content;
}
.feedback-form .quality-control__contact-item {
  display: flex;
  align-items: center;
  gap: calc(10 * var(--resize-coeficient));
}
.feedback-form .quality-control__contact-item svg {
  width: calc(17 * var(--resize-coeficient));
  height: calc(17 * var(--resize-coeficient));
  flex-shrink: 0;
  opacity: 1;
}
.feedback-form .quality-control__contact-item svg path {
  fill: rgb(238, 50, 36);
}
.feedback-form .quality-control__contact-item a {
  font-family: "PT Mono", sans-serif;
  font-size: calc(13 * var(--resize-coeficient));
  line-height: 1.1;
  color: rgb(49, 48, 47);
  -webkit-text-fill-color: rgb(49, 48, 47);
  text-decoration: none;
  opacity: 0.5;
}
.feedback-form .quality-control .action-button--outline {
  max-width: calc(180 * var(--resize-coeficient));
}
.feedback-form .quality-control .footer__quality-button--white {
  max-width: calc(180 * var(--resize-coeficient));
}
.feedback-form .form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(10 * var(--resize-coeficient));
  margin-bottom: calc(30 * var(--resize-coeficient));
}
.feedback-form .form-header__title {
  font-family: "WixMadeforDisplay", sans-serif;
  font-weight: 500;
  font-size: calc(30 * var(--resize-coeficient));
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgb(49, 48, 47);
}
.feedback-form .rating .star-box {
  display: flex;
  gap: 0;
}
.feedback-form .rating .star-box svg.star {
  flex-shrink: 0;
  width: calc(40 * var(--resize-coeficient));
  height: calc(40 * var(--resize-coeficient));
  cursor: pointer;
  padding: 5px;
}
.feedback-form .rating .star-box svg.star path {
  fill: #E4E4E4;
  transition: fill 0.2s ease;
}
.feedback-form .rating .star-box svg.star.white path {
  fill: #ABE5F2;
}
.feedback-form .rating .star-box:hover svg.star path {
  fill: #ABE5F2;
}
.feedback-form .rating .star-box:hover svg.star:hover ~ svg.star path {
  fill: #E4E4E4;
}
.feedback-form .form-fields {
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--resize-coeficient));
}
.feedback-form .form-row {
  display: flex;
  gap: calc(15 * var(--resize-coeficient));
}
.feedback-form .input-block {
  margin: 0;
}
.feedback-form .input-block.full-width {
  width: 100%;
}
.feedback-form .input-block.half-width {
  flex: 1;
}
.feedback-form .input-block label {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: calc(13 * var(--resize-coeficient));
  line-height: 1.1;
  color: rgb(179, 181, 181);
  margin-bottom: calc(10 * var(--resize-coeficient));
}
.feedback-form .input-block .error-input {
  margin-top: calc(5 * var(--resize-coeficient));
}
.feedback-form .input-block .error-input span {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: calc(11 * var(--resize-coeficient));
  line-height: 1.1;
  color: #EE3224;
}
.feedback-form .input-block input[type=text],
.feedback-form .input-block select,
.feedback-form .input-block textarea {
  width: 100%;
  padding: calc(15 * var(--resize-coeficient));
  background: rgb(240, 244, 246);
  backdrop-filter: blur(5px);
  border: 1px solid transparent;
  border-radius: calc(10 * var(--resize-coeficient));
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: calc(16 * var(--resize-coeficient));
  line-height: 1.1;
  color: rgb(49, 48, 47);
  transition: all 0.3s ease;
  height: calc(45 * var(--resize-coeficient));
}
.feedback-form .input-block input[type=text]::-moz-placeholder, .feedback-form .input-block select::-moz-placeholder, .feedback-form .input-block textarea::-moz-placeholder {
  color: rgb(49, 48, 47);
  opacity: 0.5;
}
.feedback-form .input-block input[type=text]::placeholder,
.feedback-form .input-block select::placeholder,
.feedback-form .input-block textarea::placeholder {
  color: rgb(49, 48, 47);
  opacity: 0.5;
}
.feedback-form .input-block input[type=text]:hover,
.feedback-form .input-block select:hover,
.feedback-form .input-block textarea:hover {
  background: rgb(240, 244, 246);
}
.feedback-form .input-block input[type=text]:focus,
.feedback-form .input-block select:focus,
.feedback-form .input-block textarea:focus {
  outline: none;
  background: rgb(240, 244, 246);
  border-color: transparent;
}
.feedback-form .input-block input[type=text].error,
.feedback-form .input-block select.error,
.feedback-form .input-block textarea.error {
  border: 2px solid rgb(238, 50, 36);
}
.feedback-form .input-block.block-select {
  position: relative;
}
.feedback-form .input-block.block-select.error .selectric {
  border: 2px solid rgb(238, 50, 36);
}
.feedback-form .input-block.block-select .selectric {
  background: rgb(240, 244, 246);
  backdrop-filter: blur(5px);
  border: 1px solid transparent;
  border-radius: calc(10 * var(--resize-coeficient));
  padding: 0;
  height: calc(45 * var(--resize-coeficient));
  transition: all 0.3s ease;
}
.feedback-form .input-block.block-select .selectric .label {
  padding: calc(15 * var(--resize-coeficient));
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: calc(16 * var(--resize-coeficient));
  line-height: 1.1;
  color: rgb(49, 48, 47);
  height: auto;
}
.feedback-form .input-block.block-select .selectric:before {
  content: none;
}
.feedback-form .input-block.block-select .selectric:hover {
  background: rgb(240, 244, 246);
}
.feedback-form .input-block.block-select .selectric .arr {
  position: absolute;
  top: 50%;
  right: calc(15 * var(--resize-coeficient));
  transform: translateY(-50%);
  width: calc(20 * var(--resize-coeficient));
  height: calc(20 * var(--resize-coeficient));
  pointer-events: none;
  transition: transform 0.3s ease;
}
.feedback-form .input-block.block-select .selectric .arr.opened {
  transform: translateY(-50%) rotate(180deg);
}
.feedback-form .input-block.block-select.selectric-open .selectric {
  background: rgb(240, 244, 246);
}
.feedback-form .input-block.block-select .selectric-items {
  top: calc(100% + calc(5 * var(--resize-coeficient)));
  border-radius: calc(10 * var(--resize-coeficient));
  background: #fff;
  border: 1px solid rgba(49, 48, 47, 0.1);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}
.feedback-form .input-block.block-select .selectric-items .selectric-scroll ul li {
  padding: calc(12 * var(--resize-coeficient)) calc(15 * var(--resize-coeficient));
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: calc(16 * var(--resize-coeficient));
  line-height: 1.1;
  color: rgb(49, 48, 47);
  transition: background 0.2s ease;
}
.feedback-form .input-block.block-select .selectric-items .selectric-scroll ul li:hover, .feedback-form .input-block.block-select .selectric-items .selectric-scroll ul li.highlighted {
  background: rgb(240, 244, 246);
}
.feedback-form .input-block.block-select .selectric-items .selectric-scroll ul li.selected {
  font-weight: 500;
}
.feedback-form .input-block.textarea {
  position: relative;
}
.feedback-form .input-block.textarea textarea {
  height: calc(130 * var(--resize-coeficient));
  padding: calc(15 * var(--resize-coeficient));
  resize: none;
}
.feedback-form .input-block.textarea .char-count {
  position: absolute;
  right: calc(15 * var(--resize-coeficient));
  bottom: calc(15 * var(--resize-coeficient));
  font-family: "Inter", sans-serif;
  font-size: calc(13 * var(--resize-coeficient));
  line-height: 1.1;
  color: rgba(0, 0, 0, 0.2);
}
.feedback-form .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(20 * var(--resize-coeficient));
  margin-top: calc(30 * var(--resize-coeficient));
}
.feedback-form .input-block.block-checkbox {
  flex: 1;
}
.feedback-form .input-block.block-checkbox .input_checkbox {
  display: flex;
  align-items: flex-start;
  gap: calc(9 * var(--resize-coeficient));
  cursor: pointer;
}
.feedback-form .input-block.block-checkbox .input_checkbox input[type=checkbox] {
  display: none;
}
.feedback-form .input-block.block-checkbox .input_checkbox .inp_checker {
  flex-shrink: 0;
  width: calc(20 * var(--resize-coeficient));
  height: calc(20 * var(--resize-coeficient));
  background: rgb(240, 244, 246);
  border-radius: calc(5 * var(--resize-coeficient));
  position: relative;
  transition: all 0.3s ease;
}
.feedback-form .input-block.block-checkbox .input_checkbox .inp_checker:after {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid rgb(49, 48, 47);
  border-bottom: 2px solid rgb(49, 48, 47);
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -5px;
}
.feedback-form .input-block.block-checkbox .input_checkbox .input-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: calc(12 * var(--resize-coeficient));
  line-height: 1.3;
  color: rgb(49, 48, 47);
  opacity: 0.5;
}
.feedback-form .input-block.block-recaptcha {
  margin-top: calc(20 * var(--resize-coeficient));
  text-align: center;
}
.feedback-form .success-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 39, 76, 0.47);
  backdrop-filter: blur(10px);
  z-index: 200;
}
.feedback-form .success-banner .inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(50 * var(--resize-coeficient));
  width: 86.875vw;
  height: 48.65vw;
  overflow: hidden;
  background-position: center top;
}
.feedback-form .success-banner .inner .success_msg {
  font-size: calc(100 * var(--resize-coeficient));
  line-height: calc(100 * var(--resize-coeficient));
  font-weight: 600;
  color: #fff;
  width: 60%;
}
.feedback-form .success-banner .inner .add-info {
  position: absolute;
  left: calc(50 * var(--resize-coeficient));
  bottom: calc(50 * var(--resize-coeficient));
  font-size: 1.529vw;
  line-height: 2.085vw;
  color: #fff;
}
.feedback-form .success-banner .inner .close {
  position: absolute;
  top: calc(100 * var(--resize-coeficient));
  right: calc(50 * var(--resize-coeficient));
  width: calc(40 * var(--resize-coeficient));
  height: calc(40 * var(--resize-coeficient));
  border-radius: calc(10 * var(--resize-coeficient));
  background-color: #fff;
  cursor: pointer;
}
.feedback-form .success-banner .inner .close img {
  width: calc(25 * var(--resize-coeficient));
  height: auto;
}
.feedback-form .success-banner.hidden {
  display: none;
}
.feedback-form .success-banner.showed {
  display: flex;
}

@media only screen and (max-width: 500px) {
  .feedback-form {
    padding: calc(45 * var(--resize-coeficient)) calc(20 * var(--resize-coeficient));
  }
  .feedback-form h1.as-h1, .feedback-form .as-h1 {
    font-size: calc(60 * var(--resize-coeficient));
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: calc(-3.6 * var(--resize-coeficient));
    margin-bottom: calc(20 * var(--resize-coeficient));
  }
  .feedback-form h1.as-h1 span, .feedback-form .as-h1 span {
    font-size: calc(18 * var(--resize-coeficient));
    line-height: calc(25 * var(--resize-coeficient));
  }
  .feedback-form .feedback-head__description {
    font-family: "Inter", sans-serif;
    font-size: calc(13 * var(--resize-coeficient));
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: calc(30 * var(--resize-coeficient));
  }
  .feedback-form__container {
    flex-direction: column;
    border-radius: calc(15 * var(--resize-coeficient));
    box-shadow: 0px 8px 18px 0px rgba(65, 184, 210, 0.1);
    margin: 0;
  }
  .feedback-form__left {
    flex: none;
    padding: calc(50 * var(--resize-coeficient)) calc(20 * var(--resize-coeficient));
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    align-items: center;
  }
  .feedback-form__divider {
    display: none;
  }
  .feedback-form__right {
    flex: none;
    padding: calc(42 * var(--resize-coeficient)) calc(20 * var(--resize-coeficient));
  }
  .feedback-form .quality-control {
    text-align: center;
  }
  .feedback-form .quality-control__header {
    margin-bottom: calc(15 * var(--resize-coeficient));
  }
  .feedback-form .quality-control__title {
    font-size: calc(25 * var(--resize-coeficient));
    margin-bottom: calc(20 * var(--resize-coeficient));
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: calc(-0.5 * var(--resize-coeficient));
    text-align: center;
  }
  .feedback-form .quality-control__description {
    font-size: calc(14 * var(--resize-coeficient));
  }
  .feedback-form .quality-control__description span:last-child {
    margin-top: calc(5 * var(--resize-coeficient));
  }
  .feedback-form .quality-control__contacts {
    flex-direction: row;
    gap: calc(20 * var(--resize-coeficient));
    padding: calc(15 * var(--resize-coeficient));
    border-radius: calc(50 * var(--resize-coeficient));
    margin-top: calc(70 * var(--resize-coeficient));
    justify-content: center;
    width: 100%;
  }
  .feedback-form .quality-control__contact-item {
    gap: calc(8 * var(--resize-coeficient));
  }
  .feedback-form .quality-control__contact-item svg {
    width: calc(15 * var(--resize-coeficient));
    height: calc(15 * var(--resize-coeficient));
  }
  .feedback-form .quality-control__contact-item a {
    font-size: calc(12 * var(--resize-coeficient));
  }
  .feedback-form .quality-control .action-button.action-button--outline {
    max-width: calc(170 * var(--resize-coeficient));
    max-height: calc(50 * var(--resize-coeficient));
    margin: 0 auto;
  }
  .feedback-form .form-header {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: calc(30 * var(--resize-coeficient));
  }
  .feedback-form .form-header__title {
    font-size: calc(40 * var(--resize-coeficient));
    font-weight: 500;
    letter-spacing: calc(-1.6 * var(--resize-coeficient));
    text-align: center;
    padding: 0;
  }
  .feedback-form .rating {
    width: 100%;
  }
  .feedback-form .rating .star-box {
    justify-content: center;
  }
  .feedback-form .rating .star-box svg.star {
    width: calc(40 * var(--resize-coeficient));
    height: calc(40 * var(--resize-coeficient));
  }
  .feedback-form .form-fields {
    gap: calc(30 * var(--resize-coeficient));
  }
  .feedback-form .form-row {
    flex-direction: column;
    gap: calc(30 * var(--resize-coeficient));
  }
  .feedback-form .input-block.full-width, .feedback-form .input-block.half-width {
    width: 100%;
  }
  .feedback-form .input-block label {
    font-size: calc(13 * var(--resize-coeficient));
    margin-bottom: calc(10 * var(--resize-coeficient));
  }
  .feedback-form .input-block .error-input {
    margin-top: calc(5 * var(--resize-coeficient));
  }
  .feedback-form .input-block .error-input span {
    font-size: calc(10 * var(--resize-coeficient));
  }
  .feedback-form .input-block input[type=text],
  .feedback-form .input-block select,
  .feedback-form .input-block textarea {
    padding: calc(12 * var(--resize-coeficient));
    border-radius: calc(8 * var(--resize-coeficient));
    font-size: calc(13 * var(--resize-coeficient));
  }
  .feedback-form .input-block.block-select .selectric {
    border-radius: calc(8 * var(--resize-coeficient));
  }
  .feedback-form .input-block.block-select .selectric .label {
    padding: calc(12 * var(--resize-coeficient));
    font-size: calc(13 * var(--resize-coeficient));
  }
  .feedback-form .input-block.block-select .selectric .arr {
    right: calc(12 * var(--resize-coeficient));
    width: calc(18 * var(--resize-coeficient));
    height: calc(18 * var(--resize-coeficient));
  }
  .feedback-form .input-block.block-select .selectric-items {
    top: calc(100% + calc(5 * var(--resize-coeficient)));
    border-radius: calc(8 * var(--resize-coeficient));
  }
  .feedback-form .input-block.block-select .selectric-items .selectric-scroll ul li {
    padding: calc(10 * var(--resize-coeficient)) calc(12 * var(--resize-coeficient));
    font-size: calc(14 * var(--resize-coeficient));
  }
  .feedback-form .input-block.textarea textarea {
    height: calc(200 * var(--resize-coeficient));
    padding: calc(12 * var(--resize-coeficient)) calc(12 * var(--resize-coeficient)) calc(40 * var(--resize-coeficient)) calc(12 * var(--resize-coeficient));
  }
  .feedback-form .input-block.textarea .char-count {
    right: calc(12 * var(--resize-coeficient));
    bottom: calc(12 * var(--resize-coeficient));
    font-size: calc(12 * var(--resize-coeficient));
  }
  .feedback-form .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(40 * var(--resize-coeficient));
    margin-top: calc(20 * var(--resize-coeficient));
  }
  .feedback-form .form-footer .action-button.action-button--filled {
    max-width: calc(170 * var(--resize-coeficient));
    max-height: calc(50 * var(--resize-coeficient));
    margin: 0 auto;
  }
  .feedback-form .form-footer .action-button.action-button--filled .label {
    transform: translateX(calc(10 * var(--resize-coeficient)));
  }
  .feedback-form .input-block.block-checkbox {
    width: 100%;
  }
  .feedback-form .input-block.block-checkbox .input_checkbox {
    gap: calc(8 * var(--resize-coeficient));
  }
  .feedback-form .input-block.block-checkbox .input_checkbox .inp_checker {
    width: calc(18 * var(--resize-coeficient));
    height: calc(18 * var(--resize-coeficient));
    border-radius: calc(4 * var(--resize-coeficient));
  }
  .feedback-form .input-block.block-checkbox .input_checkbox .inp_checker:after {
    width: calc(10 * var(--resize-coeficient));
    height: calc(10 * var(--resize-coeficient));
    border-radius: calc(2 * var(--resize-coeficient));
  }
  .feedback-form .input-block.block-checkbox .input_checkbox .input-text {
    font-size: calc(11 * var(--resize-coeficient));
  }
  .feedback-form .action-button.action-button--filled {
    width: 100%;
  }
  .feedback-form .footer__quality-button.footer__quality-button--blue {
    width: 100%;
  }
  .feedback-form .input-block.block-recaptcha {
    margin-top: calc(15 * var(--resize-coeficient));
    text-align: center;
  }
  .feedback-form .success-banner {
    display: block;
    padding: calc(15 * var(--resize-coeficient));
  }
  .feedback-form .success-banner .inner {
    display: block;
    width: 100%;
    height: 100%;
    padding: calc(80 * var(--resize-coeficient)) calc(20 * var(--resize-coeficient));
    border-radius: calc(15 * var(--resize-coeficient));
    background-image: url("/img/user/app/success-bg-mob.jpg");
  }
  .feedback-form .success-banner .inner .success_msg {
    font-size: calc(40 * var(--resize-coeficient));
    line-height: calc(40 * var(--resize-coeficient));
    width: auto;
  }
  .feedback-form .success-banner .inner .add-info {
    position: static;
    font-size: calc(15 * var(--resize-coeficient));
    line-height: calc(20 * var(--resize-coeficient));
    margin-top: calc(20 * var(--resize-coeficient));
  }
  .feedback-form .success-banner .inner .close {
    width: calc(45 * var(--resize-coeficient));
    height: calc(45 * var(--resize-coeficient));
  }
  .feedback-form .success-banner .inner .close img {
    width: calc(15 * var(--resize-coeficient));
  }
}
