:root {
  --workspace-color: #f7c906;
  --yellow-2: #f7de03;
  --perview-btn: #D8A549;
  --perview-bg: #F8F1E4;
  --font-family: "sofia-pro" !important;
  --font-family-3: "sofia-pro" !important;
  --font-family-2: "Kyrie Serif" !important;
}

:root {
  /* ====== General Styles Variables ======*/
  --alpha: 0;
  --transparent: transparent;
  --white: #ffffff;
  --black-00: #000000;
  --black-e0: #e0e0e0;
  --error-color: #ff0000;
  --default-border-width: 1px;
  /* ====== Global Styles Variables ======*/
  --field-deafult-color: var(--black-e0);
  --brand-color: var(--brand-color);
  /* ====== Form Font Styles Variables ======*/
  --form-font: "sofia-pro";
  --form-font-style: unset;
  --form-font-weight: normal;
  --form-font-color: var(--black-00);
  --form-background-color: var(--transparent);
  --form-border-width: var(--default-border-width);
  --form-border-style: solid;
  --form-border-color: var(--transparent);
  --form-title-font: var(--form-font);
  --form-title-font-size: 22px;
  --form-title-font-weight: 700;
  --form-title-font-style: var(--form-font-style);
  --form-title-font-color: var(--form-font-color);
  /* ====== Form Field Styles Variables ======*/
  --field-label-font: var(--form-font);
  --field-label-font-size: 14px;
  --field-label-font-weight: var(--form-font-weight);
  --field-label-font-style: var(--form-font-style);
  --field-label-font-color: var(--form-font-color);
  --field-font: var(--form-font);
  --field-font-size: 12px;
  --field-font-weight: var(--form-font-weight);
  --field-font-style: var(--form-font-style);
  --field-font-color: var(--black);
  --field-border-width: var(--default-border-width);
  --field-border-style: solid;
  --field-border-color: var(--field-color, var(--field-deafult-color));
  --field-background-color: var(--white);
  --field-radius: 3px;
  --field-space: 21px;
  /* ====== Checkbox Styles Variables ======*/
  --checkbox-background-color: var(--brand-color);
  --checkbox-border-color: var(--field-deafult-color);
  --checkbox-label-font: var(--form-font);
  --checkbox-label-font-weight: var(--form-font-weight);
  --checkbox-label-font-style: var(--form-font-style);
  --checkbox-label-font-color: var(--form-font-color);
  /* ====== Radio Styles Variables ======*/
  --radio-background-color: var(--brand-color);
  --radio-border-color: var(--field-deafult-color);
  --radio-label-font: var(--form-font);
  --radio-label-font-weight: var(--form-font-weight);
  --radio-label-font-style: var(--form-font-style);
  --radio-label-font-color: var(--form-font-color);
  /* ====== Form Block Styles Variables ======*/
  --block-border-width: 1px;
  --block-border-style: solid;
  --block-border-color: var(--transparent);
  --block-background-color: var(--transparent);
  --block-padding-has: 21px;
  --block-padding-has-not: 0px;
  /* ====== Form Button Styles Variables ======*/
  --button-font: "sofia-pro";
  --button-font-size: 16px;
  --button-font-weight: normal;
  --button-font-style: var(--form-font-style);
  --button-font-color: var(--white);
  --button-alignment: flex-start;
  --button-border-width: 1px;
  --button-border-style: solid;
  --button-border-color: var(--yellow-2);
  --button-background-color: var(--yellow-2);
  --button-radius: 0px;
  --button-padding: 0px 20px;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

body {
  font-family: var(--form-font);
  position: relative;
}

.wlsp-block-container.hide_css_labels .wlsp-class-label {
  display: none !important;
}
.wlsp-form {
  background-color: var(--form-background-color);
  border-width: var(--form-border-width);
  border-style: var(--form-border-style);
  border-color: var(--form-border-color);
  padding: 50px;
  min-height: 100vh;
}
@media only screen and (max-width: 1440px) {
  .wlsp-form {
    padding: 40px;
  }
}
@media only screen and (max-width: 1366px) {
  .wlsp-form {
    padding: 35px;
  }
}
@media only screen and (max-width: 1024px) {
  .wlsp-form {
    padding: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .wlsp-form {
    padding: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .wlsp-form {
    padding: 20px;
  }
}
.wlsp-form-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.wlsp-form-title {
  margin-bottom: 21px;
}
.wlsp-form-title h2 {
  font-family: var(--form-title-font);
  font-size: var(--form-title-font-size);
  font-weight: var(--form-title-font-weight);
  text-transform: var(--form-title-font-style);
  color: var(--form-title-font-color);
}
.wlsp-form-title:hover .wlsp-class-label {
  opacity: 1;
}
.wlsp-field-group {
  display: block;
  width: 100%;
  margin-bottom: var(--field-space);
  background-color: var(--block-background-color);
  border-width: var(--block-border-width);
  border-style: var(--block-border-style);
  border-color: var(--block-border-color);
  padding: var(--block-padding);
}
@media only screen and (max-width: 1366px) {
  .wlsp-field-group {
    --block-padding-has: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .wlsp-field-group {
    --block-padding-has: 10px;
  }
}
.wlsp-field-group h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 400;
}
.wlsp-field-group p {
  font-size: 14px;
  font-weight: 400;
  text-transform: var(--form-title-font-style);
}
.wlsp-field-group .error_msg,
.wlsp-field-group label.error,
.wlsp-field-group .invalid-feedback {
  font-size: 14px;
  font-weight: 400;
  color: #ff0000 !important;
  margin-top: 5px;
  margin-bottom: 0;
}
.wlsp-field-group .error_msg:empty,
.wlsp-field-group label.error:empty,
.wlsp-field-group .invalid-feedback:empty {
  margin-bottom: 0;
}
.wlsp-field-group .error_msg strong,
.wlsp-field-group label.error strong,
.wlsp-field-group .invalid-feedback strong {
  font-weight: 400;
}
.wlsp-field-group:hover .wlsp-class-label {
  opacity: 1;
  display: block;
}
.wlsp-field-label {
  display: block;
  width: 100%;
  font-family: var(--field-label-font);
  font-size: var(--field-label-font-size);
  line-height: 20px;
  font-weight: var(--field-label-font-weight);
  text-transform: var(--field-label-font-style);
  color: var(--field-label-font-color);
  margin-bottom: 11px;
}
.wlsp-field-label-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
.wlsp-field-label-wrapper .wlsp-class-label {
  display: block;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 11px;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  font-style: italic;
  opacity: 0;
  transition: opacity 0.15s ease;
  font-family: "sofia-pro" !important;
  position: unset;
  top: 0px;
  right: 0px;
  margin-bottom: 0;
  cursor: pointer;
  white-space: nowrap;
  position: absolute;
  top: 0;
  right: 0;
  background: #000000;
  z-index: 1;
  border-radius: 5px;
  padding: 12px;
  color: #ffffff;
  margin-top: 12px;
}
.wlsp-field-label-wrapper .wlsp-class-label::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #000000;
  position: absolute;
  transform: rotate(45deg);
  margin-top: -8px;
  z-index: 0;
  right: 10px;
  top: 0;
}
.wlsp-field-label-wrapper .wlsp-class-label .inner-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wlsp-field-label-wrapper .wlsp-class-label .inner-box svg {
  margin-left: 10px;
}
.wlsp-field-desc {
  color: #999999;
}
.wlsp-field-error {
  display: block;
  width: 100%;
  color: var(--error-color);
}
.wlsp-field-control {
  display: block;
  width: 100%;
  font-family: var(--field-font);
  font-size: var(--field-font-size);
  font-weight: var(--field-font-weight);
  font-style: var(--field-font-style);
  color: var(--black-00);
  background-color: var(--field-background-color);
  border-width: var(--field-border-width);
  border-style: var(--field-border-style);
  border-color: var(--field-color, var(--field-deafult-color));
  border-radius: var(--field-radius);
  padding: 10px 17px 10px 21px;
  min-height: 42px;
  box-sizing: border-box;
  transition: all 0.4s ease;
  /* 
  &::-webkit-input-placeholder,
  &::-moz-input-placeholder,
  &::-ms-input-placeholder,
  &::-o-input-placeholder {
  	color: #000;
  }
  */
}
.wlsp-field-control:focus {
  border-color: var(--field-color, var(--brand-color));
}
.wlsp-field-control:disabled, .wlsp-field-control.disabled {
  background-color: #F7F7F7;
  border-color: #E0E0E0;
}
.wlsp-field-control.error {
  border-color: #ff0000;
}
.wlsp-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url("/imgs/icons/dropdown.svg");
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: 20px;
}
.wlsp-field-checkbox {
  display: inline-flex;
}
.wlsp-field-checkbox-row {
  margin-bottom: 14px;
}
.wlsp-field-checkbox-row:last-of-type {
  margin-bottom: 0px;
}
.wlsp-field-checkbox:last-of-type {
  margin-right: 0px;
}
.wlsp-field-checkbox input[type=checkbox] {
  position: absolute;
  z-index: -999;
  opacity: 0;
}
.wlsp-field-checkbox input[type=checkbox] + label {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}
.wlsp-field-checkbox input[type=checkbox] + label .checkbox {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border: 1px solid var(--field-color, var(--field-deafult-color));
  box-sizing: border-box;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.wlsp-field-checkbox input[type=checkbox] + label .checkbox svg {
  width: 75%;
  height: 75%;
  display: block;
  stroke: #4F4F4F;
  opacity: 0;
  transition: all 0.3s ease;
}
.wlsp-field-checkbox input[type=checkbox] + label .check-label {
  font-family: var(--checkbox-label-font);
  font-weight: var(--checkbox-label-font-weight);
  text-transform: var(--checkbox-label-font-style);
  color: var(--checkbox-label-font-color);
  font-size: 14px;
  line-height: normal;
  margin-left: 10px;
}
.wlsp-field-checkbox input[type=checkbox]:checked + label .checkbox {
  border-color: var(--field-color, var(--checkbox-background-color));
  background-color: var(--field-color, var(--checkbox-border-color));
}
.wlsp-field-checkbox input[type=checkbox]:checked + label .checkbox svg {
  opacity: 1;
}
.wlsp-field-radio {
  display: inline-flex;
}
.wlsp-field-radio-row {
  margin-bottom: 14px;
}
.wlsp-field-radio-row:last-of-type {
  margin-bottom: 0px;
}
.wlsp-field-radio:last-of-type {
  margin-right: 0px;
}
.wlsp-field-radio input[type=radio] {
  position: absolute;
  z-index: -999;
  opacity: 0;
}
.wlsp-field-radio input[type=radio] + label {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}
.wlsp-field-radio input[type=radio] + label .radio {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border: 1px solid var(--field-color, var(--field-deafult-color));
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.wlsp-field-radio input[type=radio] + label .radio span {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background-color: #4f4f4f;
  opacity: 0;
  transition: all 0.4s ease;
}
.wlsp-field-radio input[type=radio] + label .radio-label {
  font-family: var(--radio-label-font);
  font-weight: var(--radio-label-font-weight);
  text-transform: var(--radio-label-font-style);
  color: var(--radio-label-font-color);
  font-size: 14px;
  line-height: normal;
  margin-left: 10px;
}
.wlsp-field-radio input[type=radio]:checked + label .radio {
  background-color: var(--field-color, var(--radio-background-color));
  border-color: var(--field-color, var(--radio-border-color));
}
.wlsp-field-radio input[type=radio]:checked + label .radio span {
  opacity: 1;
}
.wlsp-button {
  font-family: var(--button-font);
  font-size: var(--button-font-size);
  font-weight: var(--button-font-weight);
  text-transform: var(--button-font-style);
  background-color: var(--button-background-color);
  color: var(--button-font-color);
  border-width: var(--button-border-width);
  border-style: var(--button-border-style);
  border-color: var(--button-border-color);
  border-radius: var(--button-radius);
  line-height: 20px;
  min-height: 50px;
  padding: var(--button-padding);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.wlsp-button-group:hover .wlsp-class-label {
  opacity: 1;
  display: block;
}
.wlsp-button-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: var(--button-alignment);
}
.wlsp-alert-success {
  margin-bottom: 21px !important;
  display: block;
  border-radius: 3px;
  padding: 10px 15px;
  color: #fff;
  background: #048a33;
}
.wlsp-message-container {
  min-height: inherit;
  margin: -50px;
}
@media only screen and (max-width: 1440px) {
  .wlsp-message-container {
    margin: -40px;
  }
}
@media only screen and (max-width: 1366px) {
  .wlsp-message-container {
    margin: -35px;
  }
}
@media only screen and (max-width: 1024px) {
  .wlsp-message-container {
    margin: -30px;
  }
}
@media only screen and (max-width: 768px) {
  .wlsp-message-container {
    margin: -25px;
  }
}
@media only screen and (max-width: 575px) {
  .wlsp-message-container {
    margin: -20px;
  }
}
.wlsp-message-box {
  background: #e9fbed;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  color: var(--black-00);
  border: 2px solid #c4edcd;
}
.wlsp-message-box-wrap {
  min-height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*# sourceMappingURL=form_perview.css.map*/