.feedback-form {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("/templates/project/assets/img/feedback_form_background.png");
  margin-top: 40px;
}

.feedback-form__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feedback-form__header h3 {
  color: var(--color-white-100);
}

.feedback-form__header .title_S {
  color: var(--color-white-100);
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
}

.feedback-form__header--phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  border-radius: 8px;
  background: rgba(17, 0, 0, 0.5);
  backdrop-filter: blur(40px);
  align-self: flex-start;
}

.feedback-form__header--phone .subtitle {
  color: var(--color-white-100);
  font-family: Roboto;
  font-style: normal;
}

.feedback-form__header--phone a {
  color: var(--color-white-100);
  font-family: Roboto;
  font-style: normal;
}

.feedback-form__header--phone ul {
  display: flex;
}

.feedback-form__header--phone ul li {
  list-style: inside;
  color: var(--color-white-100);
  font-family: Roboto;
  font-style: normal;
}

.feedback-form__header--phone ul li::marker {
  font-size: 1.3em;
}

.feedback-form form {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 17px 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feedback-form form textarea {
  height: 100px;
  resize: none;
}

.feedback-form .form-group {
  display: grid;
  align-items: center;
  gap: 12px;
}

.feedback-form .form-group .button {
  position: relative;
}

.feedback-form .form-group .button input[type=submit] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.feedback-form .form-group .phone-group {
  display: flex;
  width: 100%;
}

.feedback-form .form-group .phone-input-wrapper {
  display: flex;
  flex-direction: row;
  justify-items: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.feedback-form .form-group .custom-country-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px 0 0 8px;
  padding: 5px 12px;
  cursor: pointer;
  height: 52px;
  min-width: 120px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  color: var(--color-black-100);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  position: relative;
}

.feedback-form .form-group .custom-country-select:hover {
  border-color: #ffffff;
}

.feedback-form .form-group .custom-country-select .icon-20-arrow {
  transform: rotate(90deg);
  transition: transform 0.2s;
  color: var(--color-white-100);
}

.feedback-form .form-group .custom-country-select__col {
  display: flex;
  flex-direction: column;
}

.feedback-form .form-group .custom-country-select__col .cc-picker-title {
  color: var(--color-white-100);
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.feedback-form .form-group .selected-country-info {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-white-100);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.feedback-form .form-group .dropdown-wrapper {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  width: auto;
  z-index: 1000;
  padding: 12px;
}

.feedback-form .form-group .country-search {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 8px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.feedback-form .form-group .country-search:focus {
  border-color: #999999;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.feedback-form .form-group .country-dropdown {
  max-height: 220px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

.feedback-form .form-group .country-dropdown li {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.feedback-form .form-group .country-dropdown li:hover {
  background-color: #f2f2f2;
}

.feedback-form .form-group .country-dropdown li:active {
  transform: scale(0.98);
}

.feedback-form .form-group .input-group .phone-input-wrapper .phone-input {
  border-radius: 8px;
  width: 100%;
  background: var(--color-white-100);
  color: var(--color-black-100);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  position: relative;
}

.feedback-form .form-group .input-group .phone-input-wrapper .phone-input::-moz-placeholder {
  color: var(--color-white-50);
}

.feedback-form .form-group .input-group .phone-input-wrapper .phone-input::placeholder {
  color: var(--color-white-50);
}

.feedback-form .form-group .phone-input {
  border-radius: 0px 8px 8px 0px;
}

.feedback-form .file-input .file-input__label {
  display: grid;
  grid-template-columns: 16px auto;
  align-items: center;
  position: relative;
  grid-gap: 10px;
  border-radius: 6px;
  border: 1px dashed var(--color-white-100);
  backdrop-filter: blur(15px);
  cursor: pointer;
}

.feedback-form .file-input .file-input__label:hover {
  background: rgba(255, 255, 255, 0.2);
}

.feedback-form .file-input .file-input__label svg {
  width: 16px;
  height: 20px;
}

.feedback-form .file-input .file-input__label input[type=file] {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}

.feedback-form .file-input .file-input__label .file-input__text,
.feedback-form .file-input .file-input__label b {
  color: var(--color-white-100);
  font-family: Roboto;
  font-style: normal;
  white-space: nowrap;
}

.feedback-form .file-input .file-input__label b {
  font-weight: 500;
}

@media (min-width: 1401px) {
  .feedback-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 16px;
    padding: 30px;
    border-radius: 20px;
  }

  .feedback-form__header {
    height: 100%;
    gap: 16px;
    justify-content: space-between;
  }

  .feedback-form__header h3 {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.32px;
  }

  .feedback-form__header .title_S {
    font-size: 16px;
  }

  .feedback-form__header--phone {
    padding: 12px 20px;
  }

  .feedback-form__header--phone .subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
  }

  .feedback-form__header--phone a {
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.24px;
  }

  .feedback-form__header--phone ul {
    gap: 8px;
  }

  .feedback-form__header--phone ul li {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
  }

  .feedback-form form {
    min-width: 600px;
  }

  .feedback-form .form-group.col {
    grid-template-columns: 3fr 1fr;
  }

  .feedback-form .form-group.col input[name=email] {
    grid-column: span 2;
  }

  .feedback-form .form-group.top-group {
    grid-template-columns: 1fr 1fr;
  }

  .feedback-form input::-moz-placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 135%;
  }

  .feedback-form input::placeholder {
    font-size: 16px;
    font-weight: 400;
    line-height: 135%;
  }

  .feedback-form .file-input .file-input__label {
    padding: 14px 18px;
    height: 52px;
  }

  .feedback-form .file-input .file-input__label .file-input__text,
  .feedback-form .file-input .file-input__label b {
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.12px;
  }
}

@media (max-width: 833px) {
  .feedback-form {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 16px;
    gap: 16px;
  }

  .feedback-form__header {
    gap: 8px;
  }

  .feedback-form__header h3 {
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.18px;
  }

  .feedback-form__header .title_S {
    font-size: 12px;
  }

  .feedback-form__header--phone {
    padding: 12px;
  }

  .feedback-form__header--phone .subtitle {
    font-size: 12px;
    font-weight: 500;
    line-height: 120%;
  }

  .feedback-form__header--phone a {
    font-size: 18px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.18px;
  }

  .feedback-form__header--phone ul {
    gap: 12px;
  }

  .feedback-form__header--phone ul li {
    font-size: 8px;
    font-weight: 400;
    line-height: 120%;
  }

  .feedback-form form {
    min-width: 100%;
  }

  .feedback-form form textarea::-moz-placeholder {
    font-size: 12px;
    font-weight: 400px;
  }

  .feedback-form form textarea::placeholder {
    font-size: 12px;
    font-weight: 400px;
  }

  .feedback-form form textarea::-moz-placeholder {
    font-size: 12px;
    font-weight: 400px;
  }

  .feedback-form form textarea::placeholder {
    font-size: 12px;
    font-weight: 400px;
  }

  .feedback-form .form-group .button {
    width: 100%;
  }

  .feedback-form .form-group .custom-country-select {
    width: -moz-fit-content;
    width: fit-content;
    height: 36px;
    margin: 0px !important;
    line-height: 100%;
  }

  .feedback-form input {
    height: 36px;
    padding: 9px 12px;
    width: 100%;
  }

  .feedback-form input::-moz-placeholder {
    font-size: 12px;
    font-weight: 400;
    line-height: 135%;
  }

  .feedback-form input::placeholder {
    font-size: 12px;
    font-weight: 400;
    line-height: 135%;
  }

  .feedback-form .file-input .file-input__label {
    height: 36px;
    padding: 9px 12px;
  }

  .feedback-form .file-input .file-input__label .file-input__text,
  .feedback-form .file-input .file-input__label b {
    font-size: 8px;
    font-weight: 500;
    font-weight: 500;
    line-height: 120%;
  }
}

@media (max-width: 768px) {
  .feedback-form .form-group .custom-country-select {
    margin: 0 0 12px 0;
    width: -moz-fit-content;
    width: fit-content;
  }

  .feedback-form .form-group .dropdown-wrapper {
    max-width: auto;
  }
}

@media (min-width: 834px) and (max-width: 1400px) {
  .feedback-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 60px;
    padding: 20px;
    border-radius: 16px;
  }

  .feedback-form__header {
    height: 100%;
    gap: 16px;
    justify-content: space-between;
  }

  .feedback-form__header h3 {
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.2px;
  }

  .feedback-form__header .title_S {
    font-size: 12px;
  }

  .feedback-form__header--phone {
    padding: 12px 20px;
  }

  .feedback-form__header--phone .subtitle {
    font-size: 12px;
    font-weight: 600;
    line-height: 135%;
  }

  .feedback-form__header--phone a {
    font-size: 20px;
    font-weight: 800;
    line-height: 120%;
    letter-spacing: -0.2px;
  }

  .feedback-form__header--phone ul {
    gap: 12px;
  }

  .feedback-form__header--phone ul li {
    font-size: 10px;
    font-weight: 400;
    line-height: 135%;
  }

  .feedback-form form {
    min-width: 350px;
  }

  .feedback-form form textarea::-moz-placeholder {
    font-size: 12px;
    font-weight: 400px;
  }

  .feedback-form form textarea::placeholder {
    font-size: 12px;
    font-weight: 400px;
  }

  .feedback-form form textarea::-moz-placeholder {
    font-size: 12px;
    font-weight: 400px;
  }

  .feedback-form form textarea::placeholder {
    font-size: 12px;
    font-weight: 400px;
  }

  .feedback-form .form-group.col {
    grid-template-columns: 3fr 1fr;
  }

  .feedback-form .form-group.col input[name=email] {
    grid-column: 2;
    width: 100%;
  }

  .feedback-form .form-group.col .phone-input-wrapper {
    order: 1;
    grid-column: span 2;
  }

  .feedback-form .form-group.top-group {
    grid-template-columns: 1fr 1fr;
  }

  .feedback-form .form-group .custom-country-select {
    width: -moz-fit-content;
    width: fit-content;
    height: 36px;
    line-height: 100%;
  }

  .feedback-form .form-group .phone-input {
    width: 100%;
  }

  .feedback-form input {
    height: 36px;
    padding: 9px 12px;
  }

  .feedback-form input::-moz-placeholder {
    font-size: 12px;
    font-weight: 400;
    line-height: 135%;
  }

  .feedback-form input::placeholder {
    font-size: 12px;
    font-weight: 400;
    line-height: 135%;
  }

  .feedback-form .file-input .file-input__label {
    height: 36px;
    padding: 9px 12px;
  }

  .feedback-form .file-input .file-input__label .file-input__text,
  .feedback-form .file-input .file-input__label b {
    font-size: 8px;
    font-weight: 500;
    font-weight: 500;
    line-height: 135%;
    letter-spacing: -0.08px;
  }
}
/*# sourceMappingURL=feedback.css.map */
