.feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedback-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.feedback-modal__content {
  position: relative;
  background: white;
  border-radius: 25px;
  width: 90%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.feedback-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 31px 0;
}
.feedback-modal__title {
  margin: 0;
  font-size: 32px;
  color: #2840B6;
  text-transform: uppercase;
}
.feedback-modal__close {
  background: none;
  border: none;
  font-size: 70px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2840B6;
  transition: color 0.3s ease;
  /*&:hover {
  	color: #333;
  }*/
}
.feedback-modal__body {
  padding: 20px 31px;
}
.feedback-modal__body form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feedback-modal__body form .form_item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.feedback-modal__body form .form_item .item--title {
  font-size: 20px;
  font-weight: 500;
}
.feedback-modal__body form .form_item .item--input,
.feedback-modal__body form .form_item .item--select,
.feedback-modal__body form .form_item .item--textarea {
  padding: 9.5px 20px;
  border: 2px solid #74B0FC;
  border-radius: 15px;
  color: #2840B6;
  outline: none;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  vertical-align: middle;
  transition: box-shadow 0.2s ease;
}
.feedback-modal__body form .form_item .item--input:focus,
.feedback-modal__body form .form_item .item--select:focus,
.feedback-modal__body form .form_item .item--textarea:focus {
  box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.25);
}
.feedback-modal__body form .form_item .item--textarea {
  min-height: 104px;
  resize: vertical;
}
.feedback-modal__body form .form_checkbox {
  padding-bottom: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
}
.feedback-modal__body form .form_checkbox .checkbox--icon {
  min-height: 60px;
  aspect-ratio: 1;
  border: 3px solid #74B0FC;
  border-radius: 10px;
  background-image: url("/upload/img/contacts.form/contacts-form-agree-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F0F5FF;
  background-blend-mode: lighten;
  background-size: 75%;
  transition: all 0.2s ease;
}
.feedback-modal__body form .form_checkbox .checkbox--icon.checked {
  background-color: #ADD1FF;
  background-blend-mode: normal;
}
.feedback-modal__body form .form_checkbox .checkbox--text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.feedback-modal__body form .btn--submit {
  align-self: center;
  padding: 18px 150px;
  background-color: #4087E8;
  color: #fff;
  border: 0;
  border-radius: 25px;
  font-size: 28px;
  font-weight: 500;
}
.feedback-modal__body form .btn--submit.disabled {
  background-color: #ccc;
}
@media (max-width: 992px) {
  .feedback-modal__content {
    max-width: 468px;
    border-radius: 15px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .feedback-modal__header {
    padding: 0;
  }
  .feedback-modal__body {
    padding: 0;
  }
  .feedback-modal__body form {
    gap: 10px;
  }
  .feedback-modal__body form .form_item .item--title {
    font-size: 16px;
    font-weight: 400;
  }
  .feedback-modal__body form .form_item .item--input,
  .feedback-modal__body form .form_item .item--select,
  .feedback-modal__body form .form_item .item--textarea {
    padding: 8px 16px;
    border: 1px solid #74B0FC;
    border-radius: 10px;
    color: #2840B6;
    outline: none;
    font-size: 16px;
  }
  .feedback-modal__body form .form_item .item--textarea {
    min-height: 104px;
    resize: vertical;
  }
  .feedback-modal__body form .form_checkbox {
    padding-bottom: 10px;
  }
  .feedback-modal__body form .form_checkbox .checkbox--icon {
    min-height: 30px;
    border: 1px solid #74B0FC;
    border-radius: 5px;
  }
  .feedback-modal__body form .form_checkbox .checkbox--text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
  }
  .feedback-modal__body form .btn--submit {
    padding: 12px 89px;
    border-radius: 10px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .feedback-modal__content {
    max-width: 468px;
    border-radius: 15px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .feedback-modal__title {
    font-size: 18px;
  }
  .feedback-modal__close {
    font-size: 35px;
    height: 17px;
  }
  .feedback-modal__body {
    padding: 0;
  }
  .feedback-modal__body form {
    gap: 10px;
  }
  .feedback-modal__body form .form_item .item--title {
    font-size: 12px;
    font-weight: 400;
  }
  .feedback-modal__body form .form_item .item--input,
  .feedback-modal__body form .form_item .item--select,
  .feedback-modal__body form .form_item .item--textarea {
    padding: 8px 16px;
    border: 1px solid #74B0FC;
    border-radius: 10px;
    color: #2840B6;
    outline: none;
    font-size: 14px;
  }
  .feedback-modal__body form .form_item .item--textarea {
    min-height: 104px;
    resize: vertical;
  }
  .feedback-modal__body form .form_checkbox {
    padding-bottom: 10px;
  }
  .feedback-modal__body form .form_checkbox .checkbox--icon {
    min-height: 30px;
    border: 1px solid #74B0FC;
    border-radius: 5px;
  }
  .feedback-modal__body form .form_checkbox .checkbox--text {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
  }
  .feedback-modal__body form .btn--submit {
    padding: 12px 89px;
    border-radius: 10px;
    font-size: 14px;
  }
}

.feedback-form .form-row {
  display: flex;
  gap: 15px;
}
.feedback-form .form-group {
  margin-bottom: 20px;
  flex: 1;
}
.feedback-form .form-group .form-label {
  display: block;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #2840B6;
}
.feedback-form .form-group .form-input,
.feedback-form .form-group .form-textarea {
  display: block;
  width: 100%;
  padding: 0.075rem 0.75rem;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
  color: #2840B6;
  background-color: #fff;
  background-clip: padding-box;
  border: 2px solid #74b0fc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 15px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.feedback-form .form-group .form-input:focus,
.feedback-form .form-group .form-textarea:focus {
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.feedback-form .form-group .form-input.error,
.feedback-form .form-group .form-textarea.error {
  border-color: #ff4444;
  background-color: #fff5f5;
  box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.1);
}
.feedback-form .form-group .form-textarea {
  resize: vertical;
  min-height: 100px;
  resize: none;
}
.feedback-form .form-group .checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.feedback-form .form-group .checkbox-label .checkbox-input {
  margin-right: 8px;
  margin-top: 2px;
}
.feedback-form .form-group .checkbox-label .checkbox-text {
  font-size: 20px;
  color: #2840B6;
}
.feedback-form .form-group .checkbox-label .checkbox-text.error-text {
  color: #ff4444;
  font-weight: 500;
}
.feedback-form .form-group input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  /* Safari support */
  width: 35px;
  height: 35px;
  border: 3px solid #74B0FC;
  margin-right: 10px;
  border-radius: 10px;
  cursor: pointer;
  /*! -webkit-animation: pulsing 2s infinite; */
  /* Safari support */
  /*! animation: pulsing 2s infinite; */
}
.feedback-form .form-group input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 3px;
  width: 9px;
  height: 15px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(45deg);
}
.feedback-form .form-group input[type=checkbox]:checked {
  background-color: blue;
  border: 3px solid transparent;
  animation: none;
  position: relative;
}
.feedback-form .form-group input[type=checkbox]:checked:after {
  content: "";
  position: absolute;
  left: 10px;
  top: 3px;
  width: 10px;
  height: 18px;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(45deg);
}
.feedback-form .form-group .error-text {
  color: #ff4444;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}
.feedback-form .form-group .file-drop-area {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 25px;
  border: 4px dashed rgb(116, 176, 252);
  border-radius: 25px;
  transition: 0.2s;
}
.feedback-form .form-group .file-drop-area.is-active {
  background-color: rgba(255, 255, 255, 0.05);
}
.feedback-form .form-group .fake-btn {
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 8px 15px;
  margin-right: 10px;
  font-size: 20px;
  text-transform: uppercase;
}
.feedback-form .form-group .file-msg {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.feedback-form .form-group .file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
.feedback-form .form-group .file-input:focus {
  outline: none;
}
.feedback-form .form-actions {
  display: flex;
  justify-content: center;
}
.feedback-form .form-actions .btn-submit {
  background: #0066cc;
  color: white;
  border: none;
  padding: 22px 15px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 28px;
  width: 64%;
  transition: all 0.3s ease;
  position: relative;
}
.feedback-form .form-actions .btn-submit:hover:not(:disabled) {
  background: #0052a3;
  transform: translateY(-1px);
}
.feedback-form .form-actions .btn-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}
.feedback-form .form-actions .btn-submit--error {
  background: #ff4444;
}
.feedback-form .form-actions .btn-submit--error:hover {
  background: #e03e3e;
}
.feedback-form .form-actions .btn-submit--shake {
  animation: shake 0.5s ease-in-out;
}

.feedback-success {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #c3e6cb;
}

.confirm-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirm-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.confirm-modal__content {
  position: relative;
  background: white;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.confirm-modal__title {
  margin: 0 0 16px 0;
  font-size: 1.25rem;
  color: #333;
}
.confirm-modal__message {
  margin: 0 0 24px 0;
  color: #666;
  line-height: 1.5;
}
.confirm-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.confirm-modal__actions .btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}
.confirm-modal__actions .btn--cancel {
  background: #f5f5f5;
  color: #333;
}
.confirm-modal__actions .btn--cancel:hover {
  background: #e5e5e5;
}
.confirm-modal__actions .btn--confirm {
  background: #ff4444;
  color: white;
}
.confirm-modal__actions .btn--confirm:hover {
  background: #e03e3e;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}