.wrap-detail-page .wpcf7 {
  margin-top: 0 !important;
}

.custom-form > .wpcf7 {
  width: 100%;
}

.custom-form .wpcf7-response-output {
  color: #FFFFFF;
  width: 100%;
  border-radius: 10px;
  margin: 2em 0 1em !important;
  padding: 0.5em 1em !important;
  transition: max-height 0.8s, margin 0.8s, padding-top 0.8s, padding-bottom 0.8s;
}

.custom-form .wpcf7 form.init .wpcf7-response-output,
.custom-form .wpcf7 form.resetting .wpcf7-response-output,
.custom-form .wpcf7 form.submitting .wpcf7-response-output {
  max-height: 0;
  opacity: 0;
  padding: 0 !important;
  margin: 0 !important;
  display: block;
}

.custom-form form .wpcf7-response-output {
  max-height: 200px;
  width: auto;
}

.custom-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
}
.custom-form .custom-form--wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.custom-form .row {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .custom-form .row {
    gap: 15px;
  }
}
@media screen and (max-width: 640px) {
  .custom-form .row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.custom-form .row > p, .custom-form .row > div {
  flex: 1 0;
  width: 100%;
}
.custom-form .row div.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  align-self: stretch;
}
.custom-form .row div.row-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-form .row div.row-button p.form-button {
  max-width: 300px;
}
@media screen and (max-width: 440px) {
  .custom-form .row div.row-button p.form-button {
    max-width: 100%;
  }
}
.custom-form .row.row-label {
  flex-direction: column;
  gap: 20px;
  margin-bottom: 45px;
}
.custom-form .row.row-label > p {
  margin: 0;
}
.custom-form .row.row-label > p > label {
  margin: 0;
  text-align: left;
}
.custom-form .form-input > span {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.custom-form .form-input > span > span {
  margin-top: 5px;
}
.custom-form .form-input input, .custom-form .form-input textarea {
  margin-top: 0 !important;
  width: 100%;
  box-sizing: border-box;
}
.custom-form .form-input input:focus, .custom-form .form-input textarea:focus {
  border: 2px solid #ffffff;
}
.custom-form .form-input input::placeholder, .custom-form .form-input textarea::placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.custom-form .form-input input:-ms-input-placeholder, .custom-form .form-input textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.custom-form .form-input input::-ms-input-placeholder, .custom-form .form-input textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.65);
}
.custom-form .form-input textarea {
  min-height: 140px;
  height: 195px;
}
.custom-form .text-little {
  color: #ffffff;
}
.custom-form .text-little a {
  color: inherit;
  text-decoration: underline;
}
.custom-form .form-button {
  position: relative;
  border-radius: 90px;
  width: auto !important;
  flex: 0 !important;
}
@media screen and (max-width: 640px) {
  .custom-form .form-button {
    width: 100%;
  }
}
.custom-form .form-button .button-basic {
  margin: 0;
  height: 54px;
}
.custom-form .form-button .wpcf7-spinner {
  position: absolute;
  margin: 0;
  top: 30%;
  right: 5%;
}

.custom-form.btn-center .row.row-button {
  justify-content: center;
}

.custom-form.text-black .wpcf7-response-output {
  color: #000000;
}
.custom-form.text-black .text-little {
  color: #000000;
}
.custom-form.text-black label {
  color: #000000;
}
.custom-form.text-black .form-input input, .custom-form.text-black .form-input textarea {
  color: #000000 !important;
}
.custom-form.text-black .form-input input::placeholder, .custom-form.text-black .form-input textarea::placeholder {
  color: rgba(0, 0, 0, 0.65);
}
.custom-form.text-black .form-input input:-ms-input-placeholder, .custom-form.text-black .form-input textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.65);
}
.custom-form.text-black .form-input input::-ms-input-placeholder, .custom-form.text-black .form-input textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.65);
}

/*-------- INPUT FILE-------*/
form .row .form-file input {
  background: transparent;
  min-height: auto;
  padding-left: 0;
  border-radius: unset;
  box-shadow: unset;
  border: unset;
}
form .row .form-file .input__file {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
}
form .row .form-file .input__file-button {
  display: flex;
  align-items: center;
}
form .row .form-file span.input__file-button-text {
  text-align: left;
}

form .row .form-file span.input__file-icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E40019;
  border-radius: 50%;
  margin-left: 35px;
  cursor: pointer;
  transition: all 0.3s;
}
form .row .form-file span.input__file-icon-wrapper:hover {
  box-shadow: 3px 2px 6px rgba(43, 59, 89, 0.6);
  scale: 105%;
}

form .row .form-file .input__file-button span.input__file-icon-wrapper::after {
  content: "";
  width: 50px;
  height: 50px;
  background: url("../img/icons/file-line-arrow.svg") no-repeat center;
  transition: all 0.6s;
}

form .row .form-file .input__file-button.upload-file span.input__file-icon-wrapper::after {
  background: url("../img/icons/file-arrow-success.svg") no-repeat center;
}

/*# sourceMappingURL=custom-form.css.map */
