/**
 * Frontend Forms Styles
 */
.mvl-forms-editor-steps-wizard {
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
}

.mvl-forms-editor-steps-wizard-inner {
    display: flex;
    width: 100%;
    gap: 10px;
}

.mvl-forms-editor-steps-wizard-step {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 33.33%;
}

.mvl-forms-editor-steps-wizard-step-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.steps-wizard-step-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 13px;
    color: #131925;
}

.steps-wizard-step-description {
    font-size: 12px;
    font-weight: 400;
    line-height: 13px;
    color: #98A0B3;
}

@media (max-width: 768px) {
    .steps-wizard-step-description {
        font-size: 10px;
        line-height: 11px;
    }
}

.mvl-forms-editor-steps-wizard-step-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mvl-forms-editor-steps-wizard-step-inner.filled .mvl-forms-editor-steps-wizard-step-number {
    background-color: #3783E1;
    color: #fff;
}

.mvl-forms-editor-steps-wizard-step-inner.filled .mvl-forms-editor-steps-wizard-step-progress {
    position: relative;
}

.mvl-forms-editor-steps-wizard-step-inner.filled .mvl-forms-editor-steps-wizard-step-progress::before {
    content: "";
    display: block;
    width: 50%;
    height: 6px;
    background-color: #3783E1;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
}

.mvl-forms-editor-steps-wizard-step-number {
    width: 24px;
    min-width: 24px;
    min-height: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #EFF4FB;
    color: #56637A;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .mvl-forms-editor-steps-wizard-step-number {
        width: 18px;
        min-width: 18px;
        min-height: 18px;
        height: 18px;
        font-size: 11px;
    }
}

.mvl-forms-editor-steps-wizard-step-progress {
    width: 100%;
    height: 6px;
    background-color: #EFF4FB;
    border-radius: 5px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field,
.mvl-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field label,
.mvl-form-field label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .mvl-field-header,
.mvl-form-field .mvl-field-header {
    display: flex;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .mvl-form-label,
.mvl-form-field .mvl-form-label {
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .mvl-form-label .required,
.mvl-form-field .mvl-form-label .required {
    position: absolute;
    top: -5px;
    font-size: 22px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .mvl-form-description,
.mvl-form-field .mvl-form-description {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    cursor: help;
    color: #9CA3AF;
    font-size: 14px;
    transition: color 0.2s ease;
    margin-left: 5px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .mvl-form-description i,
.mvl-form-field .mvl-form-description i {
    font-size: 14px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field input:not([type=submit]), .stm-register-form.mvl-forms-editor-register-form .mvl-form-field textarea, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field select,
.mvl-form-field input:not([type=submit]),
.mvl-form-field textarea,
.mvl-form-field select {
    background-color: transparent;
    border: 1px solid var(--motors-border-color);
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    color: var(--motors-text-color);
    transition: all 0.3s ease;
    line-height: 0;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field input:not([type=submit]):focus, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field textarea:focus, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field select:focus,
.mvl-form-field input:not([type=submit]):focus,
.mvl-form-field textarea:focus,
.mvl-form-field select:focus {
    outline: none;
    box-shadow: none;
    background-color: var(--motors-bg-color);
    border-color: var(--motors-accent-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field input:not([type=submit])::-moz-placeholder, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field textarea::-moz-placeholder, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field select::-moz-placeholder, .mvl-form-field input:not([type=submit])::-moz-placeholder, .mvl-form-field textarea::-moz-placeholder, .mvl-form-field select::-moz-placeholder {
    color: var(--motors-text-alpha-color);
    font-size: 16px;
    font-weight: 400;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field input:not([type=submit])::placeholder, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field textarea::placeholder, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field select::placeholder,
.mvl-form-field input:not([type=submit])::placeholder,
.mvl-form-field textarea::placeholder,
.mvl-form-field select::placeholder {
    color: var(--motors-text-alpha-color);
    font-size: 16px;
    font-weight: 400;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field input:not([type=submit]):disabled, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field textarea:disabled, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field select:disabled,
.mvl-form-field input:not([type=submit]):disabled,
.mvl-form-field textarea:disabled,
.mvl-form-field select:disabled {
    background-color: var(--motors-bg-lowestalpha-contrast);
    color: var(--motors-contrast-text-alpha-color);
    cursor: not-allowed;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field select:not(.select2-hidden-accessible),
.mvl-form-field select:not(.select2-hidden-accessible) {
    line-height: 1.5;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239CA3AF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field textarea,
.mvl-form-field textarea {
    line-height: 1.5;
    resize: vertical;
    min-height: 150px;
}

@media (max-width: 768px) {
    .stm-register-form.mvl-forms-editor-register-form .mvl-form-field textarea,
  .mvl-form-field textarea {
        min-height: 100px;
    }
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .radio-group,
.mvl-form-field .radio-group {
    display: flex;
    gap: 12px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .radio-label,
.mvl-form-field .radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .radio-label span,
.mvl-form-field .radio-label span {
    font-size: 14px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field input[type=radio],
.mvl-form-field input[type=radio] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--motors-border-color);
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.1s linear;
    background: transparent;
    padding: 0px;
    background-color: transparent;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field input[type=radio]:hover,
.mvl-form-field input[type=radio]:hover {
    border-color: var(--motors-accent-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field input[type=radio]:focus,
.mvl-form-field input[type=radio]:focus {
    border-color: var(--motors-accent-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field input[type=radio]:checked,
.mvl-form-field input[type=radio]:checked {
    border: 5px solid var(--motors-accent-color);
    background: transparent;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-radio,
.mvl-form-field.field-radio {
    gap: 16px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .checkbox-group,
.mvl-form-field .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .checkbox-label,
.mvl-form-field .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    margin: 0;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .checkbox-label span,
.mvl-form-field .checkbox-label span {
    font-size: 14px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field label[for=whatsapp-checker], .stm-register-form.mvl-forms-editor-register-form .mvl-form-field label[for=stm_show_email],
.mvl-form-field label[for=whatsapp-checker],
.mvl-form-field label[for=stm_show_email] {
    margin-top: 0;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field label[for=whatsapp-checker] span, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field label[for=stm_show_email] span,
.mvl-form-field label[for=whatsapp-checker] span,
.mvl-form-field label[for=stm_show_email] span {
    font-size: 13px;
    color: var(--motors-text-alpha-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field input[type=checkbox],
.mvl-form-field input[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 17px;
    height: 17px;
    min-width: 17px;
    border: 1px solid var(--motors-border-color);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    padding: 0px;
    background: unset;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field input[type=checkbox]:hover,
.mvl-form-field input[type=checkbox]:hover {
    border-color: var(--motors-accent-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field input[type=checkbox]:checked,
.mvl-form-field input[type=checkbox]:checked {
    border-color: var(--motors-accent-color);
    background: var(--motors-accent-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field input[type=checkbox]:checked::after,
.mvl-form-field input[type=checkbox]:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 5px;
    width: 5px;
    height: 7px;
    border: solid var(--motors-contrast-text-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload,
.mvl-form-field.field-file-upload .mvl-file-upload {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-button,
.mvl-form-field.field-file-upload .mvl-file-upload-button {
    font-weight: 500;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-dropzone.has-error,
.mvl-form-field.field-file-upload .mvl-file-upload-dropzone.has-error {
    border-color: var(--motors-error-text-color);
    color: var(--motors-error-text-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-input,
.mvl-form-field.field-file-upload .mvl-file-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-dropzone,
.mvl-form-field.field-file-upload .mvl-file-upload-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 38px 20px;
    border: 2px dashed var(--motors-border-color);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6B7280;
    min-height: 180px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-dropzone:hover, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-dropzone:focus, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-dropzone:focus-visible, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-dropzone:focus-within,
.mvl-form-field.field-file-upload .mvl-file-upload-dropzone:hover,
.mvl-form-field.field-file-upload .mvl-file-upload-dropzone:focus,
.mvl-form-field.field-file-upload .mvl-file-upload-dropzone:focus-visible,
.mvl-form-field.field-file-upload .mvl-file-upload-dropzone:focus-within {
    border-color: var(--motors-accent-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-dropzone.has-error,
.mvl-form-field.field-file-upload .mvl-file-upload-dropzone.has-error {
    border-color: var(--motors-error-text-color);
    color: var(--motors-error-text-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-dropzone .mvl-btn,
.mvl-form-field.field-file-upload .mvl-file-upload-dropzone .mvl-btn {
    align-self: center;
    font-weight: 500;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-icon i,
.mvl-form-field.field-file-upload .mvl-file-upload-icon i {
    font-size: 48px;
    color: var(--motors-border-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-text,
.mvl-form-field.field-file-upload .mvl-file-upload-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: inherit;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-message,
.mvl-form-field.field-file-upload .mvl-file-upload-message {
    font-size: 14px;
    font-weight: 500;
    color: var(--motors-border-color);
    line-height: 20px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-hint,
.mvl-form-field.field-file-upload .mvl-file-upload-hint {
    font-size: 13px;
    color: var(--motors-contrast-text-alpha-color);
    line-height: 1.4;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-btn,
.mvl-form-field.field-file-upload .mvl-btn {
    font-weight: 600;
    cursor: pointer;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-status,
.mvl-form-field.field-file-upload .mvl-file-upload-status {
    width: 100%;
    text-align: left;
    display: none;
    flex-direction: column;
    gap: 8px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-status.is-visible,
.mvl-form-field.field-file-upload .mvl-file-upload-status.is-visible {
    display: flex;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-error,
.mvl-form-field.field-file-upload .mvl-file-upload-error {
    color: var(--motors-error-text-color);
    font-size: 13px;
    line-height: 1.4;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-files,
.mvl-form-field.field-file-upload .mvl-file-upload-files {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--motors-contrast-text-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-files::before,
.mvl-form-field.field-file-upload .mvl-file-upload-files::before {
    content: attr(data-empty-text);
    color: var(--motors-contrast-text-alpha-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-files.has-files::before,
.mvl-form-field.field-file-upload .mvl-file-upload-files.has-files::before {
    display: none;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-files li,
.mvl-form-field.field-file-upload .mvl-file-upload-files li {
    background-color: var(--motors-bg-lowestalpha-contrast);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-file-name,
.mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-file-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--motors-text-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-file-size,
.mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-file-size {
    color: var(--motors-text-color);
    font-size: 12px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-remove,
.mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-remove {
    margin-left: auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: var(--motors-bg-lowestalpha-contrast);
    color: var(--motors-accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin: 0;
    padding: 0;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-remove:hover, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-remove:focus,
.mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-remove:hover,
.mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-remove:focus {
    background: var(--motors-accent-color);
    color: var(--motors-contrast-text-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-remove:hover span, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-remove:focus span,
.mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-remove:hover span,
.mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-remove:focus span {
    color: var(--motors-contrast-text-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-remove span,
.mvl-form-field.field-file-upload .mvl-file-upload-files li .mvl-file-upload-remove span {
    display: inline-block;
    font-size: 16px;
    line-height: 0;
    color: var(--motors-text-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.field-checkbox,
.mvl-form-field.field-checkbox {
    gap: 12px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .mvl-btn,
.mvl-form-field .mvl-btn {
    align-self: end;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.mvl-forms-field-datetime .stm-datepicker-input-icon:after,
.mvl-form-field.mvl-forms-field-datetime .stm-datepicker-input-icon:after {
    border-left: 1px solid var(--motors-border-color);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    right: 0;
    color: var(--motors-text-alpha-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.mvl-required .mvl-form-label .required.mvl-form-field-error,
.mvl-form-field.mvl-required .mvl-form-label .required.mvl-form-field-error {
    color: var(--motors-error-text-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container,
.mvl-form-field .select2-container {
    width: 100% !important;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container .select2-selection--single,
.mvl-form-field .select2-container .select2-selection--single {
    background-color: transparent;
    border: 1px solid var(--motors-border-color);
    border-radius: 8px;
    padding: 0;
    height: auto;
    transition: all 0.3s ease;
    outline: none;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container .select2-selection--single .select2-selection__rendered,
.mvl-form-field .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 7px 12px;
    font-size: 16px;
    color: var(--motors-text-color);
    line-height: 1.5;
    padding-right: 40px;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container .select2-selection--single .select2-selection__placeholder,
.mvl-form-field .select2-container .select2-selection--single .select2-selection__placeholder {
    color: var(--motors-text-alpha-color);
    font-size: 16px;
    font-weight: 400;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container .select2-selection--single .select2-selection__arrow,
.mvl-form-field .select2-container .select2-selection--single .select2-selection__arrow {
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container .select2-selection--single .select2-selection__arrow b,
.mvl-form-field .select2-container .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container .select2-selection--single .select2-selection__arrow::after,
.mvl-form-field .select2-container .select2-selection--single .select2-selection__arrow::after {
    content: "\e9ff";
    font-family: "motors-icons";
    font-size: 16px;
    color: var(--motors-text-alpha-color);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container .select2-selection--single[aria-expanded=true],
.mvl-form-field .select2-container .select2-selection--single[aria-expanded=true] {
    border-color: var(--motors-accent-color);
    background-color: var(--motors-bg-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container .select2-selection--single[aria-expanded=true] .select2-selection__arrow::after,
.mvl-form-field .select2-container .select2-selection--single[aria-expanded=true] .select2-selection__arrow::after {
    transform: translateY(-50%) rotate(180deg);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container.select2-container--focus .select2-selection--single, .stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container.select2-container--open .select2-selection--single,
.mvl-form-field .select2-container.select2-container--focus .select2-selection--single,
.mvl-form-field .select2-container.select2-container--open .select2-selection--single {
    border-color: var(--motors-accent-color);
    background-color: var(--motors-bg-color);
    box-shadow: none;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container.select2-container--disabled .select2-selection--single,
.mvl-form-field .select2-container.select2-container--disabled .select2-selection--single {
    background-color: var(--motors-bg-lowestalpha-contrast);
    color: var(--motors-contrast-text-alpha-color);
    cursor: not-allowed;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container.select2-container--disabled .select2-selection--single .select2-selection__rendered,
.mvl-form-field .select2-container.select2-container--disabled .select2-selection--single .select2-selection__rendered {
    color: var(--motors-contrast-text-alpha-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container--default .select2-results__option,
.mvl-form-field .select2-container--default .select2-results__option {
    padding: 10px 12px;
    font-size: 16px;
    color: var(--motors-text-color);
    transition: background-color 0.2s ease;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container--default .select2-results__option[aria-selected=true],
.mvl-form-field .select2-container--default .select2-results__option[aria-selected=true] {
    background-color: var(--motors-bg-lowestalpha-contrast);
    color: var(--motors-text-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container--default .select2-results__option--highlighted[aria-selected],
.mvl-form-field .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--motors-accent-color);
    color: var(--motors-contrast-text-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container--default .select2-results__option[role=group],
.mvl-form-field .select2-container--default .select2-results__option[role=group] {
    padding: 0;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field .select2-container--default .select2-results__option--disabled,
.mvl-form-field .select2-container--default .select2-results__option--disabled {
    color: var(--motors-contrast-text-alpha-color);
    cursor: not-allowed;
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field.mvl-form-field-error .select2-container .select2-selection--single,
.mvl-form-field.mvl-form-field-error .select2-container .select2-selection--single {
    border-color: var(--motors-error-text-color);
}

.stm-register-form.mvl-forms-editor-register-form .mvl-form-field select.select2-hidden-accessible,
.mvl-form-field select.select2-hidden-accessible {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
}

.select2-dropdown {
    border: 1px solid var(--motors-border-color);
    border-radius: 4px;
    background-color: var(--motors-bg-color);
    z-index: 9999;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.select2-dropdown .select2-results__options .select2-results__option {
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 400;
}

.select2-dropdown .select2-results__options .select2-results__option--highlighted {
    background-color: var(--motors-accent-color-super-lowalpha);
}

.select2-dropdown .select2-results__options .select2-results__option[aria-selected=true] {
    background-color: var(--motors-accent-color-super-lowalpha);
    position: relative;
}

.select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    color: var(--motors-accent-color);
    font-weight: 700;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.select2-dropdown .select2-results__options .select2-results__option .mvl-placeholder {
    color: var(--motors-text-alpha-color);
}

.admin-bar:not(.woocommerce-checkout) .select2-container--open .select2-dropdown {
    top: 0;
}

.admin-bar .select2-container.select2-container--default.select2-container--open {
    margin-top: 32px;
}

.select2-container.select2-container--default.select2-container--open {
    z-index: 10000;
}

.field-half-width {
    width: calc((100% - 20px) / 2);
}

.field-one-third-width {
    width: calc((100% - 40px) / 3);
}

.field-two-thirds-width {
    width: calc((100% - 40px) * 2 / 3 + 20px);
}

.field-full-width {
    width: 100%;
}

@media (max-width: 768px) {
    .mvl-form-inner .mvl-form-field {
        width: 100% !important;
    }

    .mvl-form-inner .mvl-form-field input, .mvl-form-inner .mvl-form-field textarea, .mvl-form-inner .mvl-form-field select {
        margin-bottom: 0;
    }

    .mvl-form-inner .mvl-form-field.field-radio .radio-group {
        width: 100%;
        flex-direction: column;
    }

    .mvl-form-inner .mvl-form-field.field-radio .radio-group .radio-label {
        width: 100%;
    }

    .mvl-form-inner .mvl-form-field .select2-container {
        width: 100% !important;
    }
}

.mvl-primary-btn,
.mvl-secondary-btn,
.mvl-thirdary-btn,
.mvl-fourthary-btn,
.mvl-delete-btn {
    display: flex;
    padding: 10px 20px !important;
    justify-content: center;
    align-items: center;
    border-radius: 8px !important;
    font-size: 16px !important;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    min-height: 42px;
    outline: none;
    box-shadow: none;
    line-height: 1em;
    text-transform: none !important;
    font-weight: 500 !important;
    margin: 0;
    width: unset !important;
    max-width: unset !important;
}

.mvl-primary-btn:where([type=submit]),
.mvl-secondary-btn:where([type=submit]),
.mvl-thirdary-btn:where([type=submit]),
.mvl-fourthary-btn:where([type=submit]),
.mvl-delete-btn:where([type=submit]) {
    padding: 10px 20px !important;
}

.mvl-primary-btn.disabled,
.mvl-secondary-btn.disabled,
.mvl-thirdary-btn.disabled,
.mvl-fourthary-btn.disabled,
.mvl-delete-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.mvl-fourthary-btn {
    background-color: var(--motors-contrast-text-alpha-color);
    color: var(--motors-text-color);
    border: 1px solid var(--motors-contrast-text-alpha-color);
}

.mvl-primary-btn {
    background-color: var(--motors-accent-color);
    color: var(--motors-contrast-text-color) !important;
    border: 1px solid var(--motors-accent-color);
}

.mvl-primary-btn:active, .mvl-primary-btn:focus, .mvl-primary-btn:hover {
    background-color: var(--motors-bg-contrast);
}

.mvl-primary-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.mvl-secondary-btn {
    border: 1px solid var(--motors-contrast-text-alpha-color);
    background-color: var(--motors-contrast-text-alpha-color);
    color: var(--motors-text-color);
}

.mvl-secondary-btn:active, .mvl-secondary-btn:focus, .mvl-secondary-btn:hover {
    border-color: var(--motors-accent-color);
    color: var(--motors-accent-color);
}

.mvl-secondary-btn::before {
    background-color: var(--motors-text-color);
}

.mvl-secondary-btn::after {
    background-color: var(--motors-text-color);
}

.mvl-secondary-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.mvl-thirdary-btn {
    border: 1px solid var(--motors-contrast-text-alpha-color);
    color: var(--motors-text-color) !important;
    background-color: var(--motors-bg-color);
}

.mvl-thirdary-btn:after, .mvl-thirdary-btn:before {
    background-color: var(--motors-text-color) !important;
}

.mvl-thirdary-btn:before {
    height: 2px;
    width: 12px;
    margin-right: 4px;
}

.mvl-thirdary-btn:after {
    width: 2px;
    height: 12px;
}

.mvl-thirdary-btn:active, .mvl-thirdary-btn:focus, .mvl-thirdary-btn:hover {
    background-color: var(--motors-contrast-text-alpha-color) !important;
    color: var(--motors-text-color) !important;
}

.mvl-thirdary-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.mvl-delete-btn {
    background-color: var(--motors-error-text-color);
    color: var(--motors-contrast-text-color);
    border: 1px solid var(--motors-error-text-color);
}

.mvl-delete-btn:active, .mvl-delete-btn:focus, .mvl-delete-btn:hover {
    background-color: var(--motors-error-text-color) !important;
    color: var(--motors-contrast-text-color);
    border-color: var(--motors-error-text-color);
}

.mvl-delete-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.mvl-short-btn {
    height: 42px;
    width: 42px;
}

.mvl-short-btn i {
    margin: 0;
    font-size: 16px;
}

.mvl-text-no-wrap {
    white-space: nowrap;
}

.mvl-simple-btn {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    color: var(--motors-contrast-text-alpha-color);
    transition: all 0.3s ease;
}

.mvl-simple-btn i {
    font-size: 15px;
    color: var(--motors-contrast-text-alpha-color);
}

.mvl-simple-btn:hover {
    color: var(--motors-accent-color);
}

.mvl-simple-btn:hover i {
    color: var(--motors-accent-color);
}

.mvl-simple-btn:hover i.motors-icons-mvl-trash {
    color: var(--motors-error-text-color);
}

.mvl-sell-your-car-form .mvl-form-step, .mvl-trade-in-form .mvl-form-step {
    display: none;
}

.mvl-sell-your-car-form .mvl-form-step.active, .mvl-trade-in-form .mvl-form-step.active {
    display: block;
}

.mvl-sell-your-car-form button[type=submit], .mvl-trade-in-form button[type=submit] {
    margin: 0 !important;
}

.mvl-form {
    position: unset;
    transform: unset;
}

.mvl-forms-editor-steps-wizard {
    padding: 32px 0;
}

.mvl-forms-editor-steps-wizard-inner {
    gap: 24px;
}

.mvl-forms-editor-steps-wizard-step-number {
    min-width: 40px;
    min-height: 40px;
    height: 40px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .mvl-forms-editor-steps-wizard-step-number {
        min-width: 30px;
        min-height: 30px;
        height: 30px;
        font-size: 16px;
    }
}

.steps-wizard-step-description {
    font-size: 14px;
}

@media (max-width: 768px) {
    .steps-wizard-step-description {
        font-size: 12px;
        line-height: 13px;
    }
}

.steps-wizard-step-title {
    font-size: 16px;
}

@media (max-width: 768px) {
    .steps-wizard-step-title {
        font-size: 14px;
        line-height: 13px;
    }
}

.mvl-forms-editor-steps-wizard-step {
    cursor: pointer;
    gap: 16px;
}

.mvl-form-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 0 32px 0;
}

.mvl-modal-form.modal .modal-dialog {
    z-index: 9999;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100%;
}

.mvl-modal-form.modal .modal-dialog .mvl-modal-form-body {
    padding: 20px;
}

.mvl-form-step-navigation {
    display: flex;
    gap: 20px;
}

button.mvl-primary-btn {
    background-color: var(--motors-accent-color);
    border: 1px solid var(--motors-accent-color);
    color: var(--motors-contrast-text-color);
}

button.mvl-primary-btn:hover {
    background-color: var(--motors-bg-contrast);
    border-color: var(--motors-accent-color);
}

button.mvl-secondary-btn {
    border: 1px solid var(--motors-border-color);
    background-color: var(--motors-bg-lowestalpha-contrast);
    color: var(--motors-text-alpha-color);
}

button.mvl-secondary-btn:hover {
    border-color: var(--motors-accent-color);
    color: var(--motors-accent-color);
}

.mvl-modal-form#trade-in .modal-dialog {
    top: 20px;
    transform: translateY(0);
}

.mvl-modal-form#trade-in .modal-dialog .mvl-form-inner {
    padding: 32px 0;
    border-top: 1px solid #EFF4FB;
}

.mvl-modal-form#trade-in .modal-dialog .mvl-modal-form-body {
    padding: 0 50px 50px 50px;
}

@media (max-width: 768px) {
    .mvl-modal-form#trade-in .modal-dialog .mvl-modal-form-body {
        padding: 0 20px 20px 20px;
    }
}

.mvl-modal-form-header {
    padding: 20px;
    position: relative;
    background-color: var(--motors-bg-contrast);
}

.mvl-modal-form-header .modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 20px;
    color: var(--motors-contrast-text-alpha-color);
    cursor: pointer;
}

@media (max-width: 768px) {
    .mvl-modal-form-header .modal-close {
        font-size: 16px;
    }
}

.modal-header-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.modal-header-title .modal-title {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--motors-contrast-text-color);
}

@media (max-width: 768px) {
    .modal-header-title .modal-title {
        font-size: 14px;
    }
}

.modal-header-title .test-drive-car-name {
    font-size: 16px;
    color: var(--motors-contrast-text-alpha-color);
}

@media (max-width: 768px) {
    .modal-header-title .test-drive-car-name {
        font-size: 14px;
    }
}

.modal-header-title i {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    background-color: var(--motors-accent-color);
    color: var(--motors-contrast-text-color);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.modal-header-title-content {
    display: flex;
    flex-direction: column;
}

.mvl-forms-editor-register-form .mvl-fe-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: row;
}

.mvl-forms-editor-register-form .mvl-fe-form form .form-checker {
    width: 100%;
}

.mvl-forms-editor-register-form .mvl-fe-form form .form-checker.form-group.mvl-form-checker {
    margin-bottom: 0;
}

.mvl-forms-editor-register-form .mvl-fe-form form .form-checker.form-group.mvl-form-checker label {
    margin: 0;
    gap: 8px;
}

.mvl-forms-editor-register-form .mvl-fe-form form .stm-show-password {
    position: relative;
}

.mvl-forms-editor-register-form .mvl-fe-form form .stm-show-password i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.mvl-forms-editor-register-form .mvl-fe-form form .motors-socials-head {
    width: 100%;
}

.mvl-forms-editor-register-form .mvl-fe-form form .motors-socials {
    width: 100%;
}

.mvl-forms-editor-register-form .mvl-fe-form form .form-group-submit {
    width: 100%;
}

.mvl-forms-editor-register-form .mvl-fe-form form .form-group-submit.mvl-form-group-submit {
    margin-bottom: 0;
}

.mvl-forms-editor-register-form .mvl-fe-form form .form-group-submit.mvl-form-group-submit input[type=submit] {
    margin: 0;
    width: 100% !important;
}

.mvl-forms-editor-register-form .mvl-fe-form form .stm-validation-message {
    width: 100%;
}

.mvl-forms-editor-register-form .mvl-fe-form form .motors-socials-head-text {
    margin: 0;
}

.stm-login-form.mvl-forms-editor-login-form form .form-group h4 {
    font-weight: 500;
    margin-bottom: 8px;
}

.stm-login-form.mvl-forms-editor-login-form form .form-group input::-moz-placeholder {
    font-size: 16px;
    font-weight: 400;
    color: var(--motors-contrast-text-alpha-color);
}

.stm-login-form.mvl-forms-editor-login-form form .form-group input::placeholder {
    font-size: 16px;
    font-weight: 400;
    color: var(--motors-contrast-text-alpha-color);
}

.mvl-contact-dealer-form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mvl-contact-dealer-form .mvl-form-inner {
    padding: 0;
}

.mvl-contact-dealer-form .single-listing-contact-form-button-wrapper {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.mvl-contact-dealer-form .single-listing-contact-form-button-wrapper .single-listing-contact-policy-label {
    margin: 0;
}

.mvl-contact-dealer-form .mvl-form-field input, .mvl-contact-dealer-form .mvl-form-field textarea {
    background-color: var(--motors-bg-color);
}

.mvl-contact-dealer-form textarea {
    min-height: 153px;
    resize: vertical;
}

.stm-loader.circle {
    position: relative;
    width: 50px;
    height: 50px;
}

.stm-loader.circle div {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid var(--motors-filter-inputs-color, #eceff3);
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

.stm-loader-inner {
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stm-sell-a-car-loader.active .stm-loader-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mvl-form-error, .mvl-form-success {
    padding: 10px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

#trade-in .mvl-form-success {
    margin-top: 50px;
}

#trade-in .stm-sell-a-car-loader.active .stm-loader-inner {
    margin-top: 50px;
}

.mvl-form-error {
    color: var(--motors-error-text-color);
    border: 1px solid var(--motors-error-text-color);
}

.mvl-form-success {
    color: var(--motors-success-text-color);
    border: 1px solid var(--motors-success-text-color);
}