/* Links */
/* Footer top region */
/* Footer middle region */
/* Footer bottom region */
/* Submit button */
/* Button variant 1 */
/* Button variant 1 - alternative */
/* Button variant 2 */
/* Button variant 2 - alternative*/
/* Box shadow colors */
/* Container colors */
/* Search colors */
/* Menu colors */
/** General **/
/** Mobile **/
/* Navigation colors */
@font-face {
  font-family: "Tan Pearl";
  src: url("../assets/fonts/Tan-Pearl/tan-pearl-regular.ttf");
}
@font-face {
  font-family: "Raleway";
  src: url("../assets/fonts/Raleway/Raleway-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Raleway";
  font-style: italic;
  src: url("../assets/fonts/Raleway/Raleway-Italic-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat/Montserrat-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  src: url("../assets/fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Bellota Text";
  src: url("../assets/fonts/Bellota_Text/BellotaText-Regular.ttf");
}
@font-face {
  font-family: "Bellota Text";
  font-style: italic;
  src: url("../assets/fonts/Bellota_Text/BellotaText-Italic.ttf");
}
@font-face {
  font-family: "Bellota Text";
  font-weight: lighter;
  src: url("../assets/fonts/Bellota_Text/BellotaText-Light.ttf");
}
@font-face {
  font-family: "Bellota Text";
  font-weight: lighter;
  font-style: italic;
  src: url("../assets/fonts/Bellota_Text/BellotaText-LightItalic.ttf");
}
@font-face {
  font-family: "Bellota Text";
  font-weight: bold;
  src: url("../assets/fonts/Bellota_Text/BellotaText-Bold.ttf");
}
@font-face {
  font-family: "Bellota Text";
  font-weight: bold;
  font-style: italic;
  src: url("../assets/fonts/Bellota_Text/BellotaText-BoldItalic.ttf");
}
.layout-item--webform__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  row-gap: 16px;
  padding: 96px 64px;
}
@media (min-width: 993px) {
  .layout-item--webform__container {
    background-image: linear-gradient(104.18deg, white 4.34%, rgba(255, 255, 255, 0.6) 95.78%);
    padding: 96px 64px;
    border-radius: 24px;
    box-shadow: 0px 16px 32px 0px rgba(220, 43, 113, 0.078);
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
  }
}
@media (max-width: 992px) {
  .layout-item--webform__container {
    flex-direction: column;
    padding: 0;
  }
}
.layout-item--webform__container .webform-wrapper,
.layout-item--webform__container .decoration-wrapper {
  flex: 1;
  max-width: 50%;
}
@media (max-width: 992px) {
  .layout-item--webform__container .webform-wrapper,
  .layout-item--webform__container .decoration-wrapper {
    max-width: none;
    max-width: initial;
  }
}
@media (max-width: 992px) {
  .layout-item--webform__container .webform-wrapper {
    background-image: linear-gradient(104.18deg, white 4.34%, rgba(255, 255, 255, 0.6) 95.78%);
    padding: 48px 24px;
    border-radius: 24px;
    box-shadow: 0px 16px 32px 0px rgba(220, 43, 113, 0.078);
    -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
  }
}
.layout-item--webform__container .webform-wrapper form .form-item {
  margin-bottom: 24px;
}
.layout-item--webform__container .webform-wrapper form .form-item input {
  width: 100%;
  max-width: 100%;
  color: black;
  font-size: 16px;
  font-family: "Bona Nova";
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 768px) {
  .layout-item--webform__container .webform-wrapper form .form-item input {
    font-size: 14px;
  }
}
.layout-item--webform__container .webform-wrapper form .form-item input[type=text], .layout-item--webform__container .webform-wrapper form .form-item input[type=email] {
  padding: 20px 16px;
  border: 2px solid #6D6464;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .layout-item--webform__container .webform-wrapper form .form-item input[type=text], .layout-item--webform__container .webform-wrapper form .form-item input[type=email] {
    padding: 16px;
  }
}
.layout-item--webform__container .webform-wrapper form .form-item input[type=text]:focus, .layout-item--webform__container .webform-wrapper form .form-item input[type=email]:focus {
  border-color: black;
}
.layout-item--webform__container .webform-wrapper form .form-item input[type=text].error, .layout-item--webform__container .webform-wrapper form .form-item input[type=email].error {
  border-color: #F52A53;
}
.layout-item--webform__container .webform-wrapper form .form-item input[type=checkbox], .layout-item--webform__container .webform-wrapper form .form-item input[type=radio] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  min-width: 32px;
  width: 32px;
  height: 32px;
  border: 2px solid black;
  border-radius: 8px;
  margin: 0;
}
.layout-item--webform__container .webform-wrapper form .form-item input[type=checkbox]::after, .layout-item--webform__container .webform-wrapper form .form-item input[type=radio]::after {
  content: "";
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  background-image: url("../assets/svgs/checkmark.svg");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
}
.layout-item--webform__container .webform-wrapper form .form-item input[type=checkbox]:checked, .layout-item--webform__container .webform-wrapper form .form-item input[type=radio]:checked {
  background-color: white;
  border-color: #F75198;
}
.layout-item--webform__container .webform-wrapper form .form-item input[type=checkbox]:checked::after, .layout-item--webform__container .webform-wrapper form .form-item input[type=radio]:checked::after {
  display: block;
}
.layout-item--webform__container .webform-wrapper form .form-item textarea {
  width: 100%;
  max-width: 100%;
  color: black;
  font-size: 16px;
  font-family: "Bona Nova";
  font-weight: 400;
  line-height: 1;
  padding: 20px 16px;
  border: 2px solid #6D6464;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .layout-item--webform__container .webform-wrapper form .form-item textarea {
    font-size: 14px;
  }
}
.layout-item--webform__container .webform-wrapper form .form-item textarea:focus {
  border-color: black;
}
.layout-item--webform__container .webform-wrapper form .form-item textarea.error {
  border-color: #F52A53;
}
.layout-item--webform__container .webform-wrapper form .form-item h3 {
  margin-top: 0;
}
.layout-item--webform__container .webform-wrapper form .form-item label {
  display: block;
  color: black;
  font-size: 16px;
  font-family: "Bona Nova";
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}
.layout-item--webform__container .webform-wrapper form .form-actions .form-submit {
  cursor: pointer;
  display: inline-block;
  color: white;
  background-color: #F75198;
  font-size: 20px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 14px 48px;
  margin: 5px 0;
  border: 2px solid #F75198;
  border-radius: 16px;
  transition: background-color 300ms ease, border-color 300ms ease;
}
@media (max-width: 992px) {
  .layout-item--webform__container .webform-wrapper form .form-actions .form-submit {
    padding: 14px 28px;
  }
}
@media (max-width: 768px) {
  .layout-item--webform__container .webform-wrapper form .form-actions .form-submit {
    padding: 14px;
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .layout-item--webform__container .webform-wrapper form .form-actions .form-submit {
    padding: 12px;
    font-size: 16px;
  }
}
.layout-item--webform__container .webform-wrapper form .form-actions .form-submit:hover, .layout-item--webform__container .webform-wrapper form .form-actions .form-submit:focus {
  background-color: #6D6464;
  border-color: #6D6464;
}
@media (max-width: 992px) {
  .layout-item--webform__container .webform-wrapper form .form-actions .form-submit {
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .layout-item--webform__container .webform-wrapper form .form-actions .form-submit {
    width: 100%;
  }
}
.layout-item--webform__container .decoration-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .layout-item--webform__container .decoration-wrapper svg {
    max-width: 125px;
    max-height: 115px;
  }
}
@media (max-width: 768px) {
  .layout-item--webform__container .decoration-wrapper svg {
    max-width: 75px;
    max-height: 65px;
  }
}
