label.quform-label-text {
    font-weight: 500;
    font-family: var(--font-family--primary);
    font-size: var(--font-size--xx-small);
    line-height: 1.2em;
    letter-spacing: 0.03em;
    padding-left: 0.6rem;
}

.quform form input.quform-field, .quform .quform-field-select, .quform .quform-field-textarea {
    border-radius: var(--border-radius--small);
    border: 2px solid var(--color--secondary-2);
    box-shadow: 0px 4px 24px 0px rgba(95, 123, 182, 0.16);
    padding: 1rem 1.25rem;
    font-family: var(--font-family--primary);
    font-size: var(--font-size--small);
    letter-spacing: 0.01em;
}

.quform form input.quform-field:focus, 
.quform .quform-field-textarea:focus {
    border: 2px solid var(--color--primary-1);
    outline: none;
    box-sizing: border-box; 
}

.quform .quform-field-textarea, span.quform-option-text {
    font-family: var(--font-family--primary);
    font-size: var(--font-size--small);
    line-height: 1.25em;
}

.quform-element.quform-element-submit {
    display: flex;
    justify-content: flex-end;
}

.quform-option:has(.quform-field-checkbox) span.quform-option-text {
    font-weight: 500;
    font-family: var(--font-family--primary);
    font-size: var(--font-size--xx-small);
    line-height: 1.2em;
    letter-spacing: 0.03em;
}

.quform input[type="checkbox"] {
    box-sizing: border-box;
    width: 1.5rem;
    height: 1.5rem;
    margin: 6px;
    padding: 0;
    border-radius: 50% !important;
    background-color: white;
    outline: none;
    appearance: none;
    cursor: pointer;
    box-shadow: 0px 4px 24px 0px rgba(95, 123, 182, 0.16) !important;
    padding: 0 !important;
}

input[type="checkbox"]:not(:disabled):checked {
    background-color: var(--color--primary-1);
}

.quform-input .quform-field.quform-field-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml,<svg width="18" height="10" viewBox="0 0 18 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9 10L18 1.55229L16.349 0L9 6.8998L1.65335 0L0 1.55229L9 10Z" fill="%23EE7E04"/></svg>');    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
}

.quform-option {
    display: flex;
    align-items: center;
}

label.quform-option-label {
    padding-top: 0.3em;
}

input[type=checkbox]:checked::before{
    display: none;
}

form .quform-error>.quform-error-inner {
    background-color: unset;
    border: none;
}

form .quform-success-message {
    padding: 1.5rem 1.5rem;
    border-left: none;
    border-radius: 1rem;
    line-height: 1.2em;
    margin-bottom: 2rem;
}

.qicon-check:before {
    padding-left: 0.75rem;
    scale: 1.2;
}

/* ------ Media Queries -------------------------------------------------------------------------------- */




@media screen and (max-width: 767px) {
    .quform-responsive-elements-phone-landscape .quform-button-submit-default {
        width: 100%;
    }

    .quform-spacer {
        margin-bottom: 0;
    }

    .quform form input.quform-field, .quform .quform-field-select, .quform .quform-field-textarea {
        padding: 0.4rem 0.8rem;
    }
}

