:root {
    --omm-blue: #006CA5;
    --omm-blue-hover: #0389C5;
    --omm-dark: #012130;
    --omm-muted: #5f6b70;
    --omm-border: #DBDBDB;
    --omm-bg: #ffffff;
    --omm-soft: rgba(0, 108, 165, 0.05);
    --omm-logo-secondary: #353435;
    --omm-radius: 16px;

}

.omm-application-form,
.omm-application-form * {
    box-sizing: border-box;
}

.site-main:has(.omm-application-form),
body:not([class*="elementor-page-"]) .site-main:has(.omm-application-form),
.elementor-widget-container:has(.omm-application-form),
.elementor-shortcode:has(.omm-application-form) {
    width: 100% !important;
    max-width: none !important;
}

html:has(.omm-application-form) {
    overflow: visible !important;
}

body:has(.omm-application-form) {
    overflow-x: hidden !important;
    overflow-y: visible !important;
}

@media (max-width: 575px) {
    body:not([class*="elementor-page-"]) .site-main:has(.omm-application-form) {
        padding-inline-start: 0 !important;
        padding-inline-end: 0 !important;
    }
}

.omm-application-form {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 360px;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    color: var(--omm-dark);
    font-size: 16px;
}

.omm-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.omm-form-intro {
    margin-bottom: 42px;
}

.omm-form-intro span,
.omm-step-header span,
.omm-profile-card > span {
    color: var(--omm-blue);
    font-weight: 700;
    font-size: 16px;
}

.omm-form-intro h1 {
    font-size: 40px!important;
    line-height: 1.1;
    margin: 10px 0 16px!important;
    color: var(--omm-dark);
    font-weight: 500!important;
}

.omm-form-intro p,
.omm-step-header p {
    color: var(--omm-muted);
    font-size: 16px;
    margin: 0;
}


.omm-section {
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid #DBDBDB;
}


.omm-step-header {
    margin-bottom: 26px;
}

.omm-step-header h2 {
    font-size: 32px;
    line-height: 1.15;
    margin: 8px 0 10px;
    color: var(--omm-dark);
}

.omm-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.omm-choice-card {
    display: block;
    cursor: pointer;
}

.omm-choice-card input,
.omm-pill input,
.omm-area-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.omm-choice-card > div {
    padding: 32px;
    border: 1px solid var(--omm-border);
    border-radius: var(--omm-radius);
    background: #fff;
    transition: 0.2s ease;
}

.omm-choice-card:hover > div {
    border-color: rgba(0, 108, 165, 0.45);
    transform: translateY(-2px);
}

.omm-choice-card input:checked + div {
    border-color: var(--omm-blue);
    background: var(--omm-soft);
}

.omm-choice-card strong {
    display: inline-block;
    color: var(--omm-blue);
    font-size: 16px;
    margin-bottom: 12px;
}

.omm-choice-card h3 {
    margin: 0 0 14px;
    font-size: 20px;
    color: var(--omm-dark);
    font-weight: 600;
}

.omm-choice-card p {
    color: var(--omm-muted);
    margin: 0 0 18px;
    line-height: 1.5;
}

.omm-choice-card span {
    font-weight: 700;
    color: var(--omm-blue);
    font-size: 24px;
}

.omm-choice-card .omm-level-label {
    display: block;
    color: var(--omm-muted);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.omm-choice-card .omm-level-number {
    display: block;
    color: var(--omm-dark);
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 24px;
}

.omm-small-card > div {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.omm-small-card h3 {
    margin: 0 0 14px;
}

.omm-small-card p {
    margin: 0;
}

.omm-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.omm-pill span {
    display: inline-flex;
    align-items: center;
    padding: 14px 18px;
    border: 1px solid var(--omm-border);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s ease;
}

.omm-pill:hover span {
    border-color: rgba(0, 108, 165, 0.45);
}

.omm-pill input:checked + span {
    border-color: var(--omm-blue);
    background: var(--omm-soft);
    color: var(--omm-blue);
}

.omm-area-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.omm-area-card {
    border: 1px solid var(--omm-border);
    border-radius: var(--omm-radius);
    background: #fff;
    padding: 32px;
    transition: 0.2s ease;
    padding-bottom: 40px;
}

.omm-area-card:hover {
    border-color: rgba(0, 108, 165, 0.45);
    transform: translateY(-2px);
}

.omm-area-card-head {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.omm-area-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 50px;
    background: var(--omm-blue);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.omm-area-card h3 {
    margin: 0;
    color: var(--omm-dark);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.omm-area-options {
    display: grid;
    gap: 24px;
}

.omm-area-option {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    cursor: pointer;
    color: var(--omm-blue);
    font-weight: 700;
}

.omm-area-option::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid #d4d8dd;
    border-radius: 4px;
    background: #fff;
    box-sizing: border-box;
    transition: 0.15s ease;
}

.omm-area-option:has(input:checked)::before {
    border-color: var(--omm-blue);
    background: var(--omm-blue);
    box-shadow: inset 0 0 0 3px #fff;
}

.omm-note {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    padding: 28px 32px;
    border-radius: 16px;
    background: var(--omm-soft);
    color: var(--omm-muted);
    border: 0;
}

.omm-note-icon {
    color: var(--omm-blue);
    font-size: 42px;
    line-height: 1;
}

.omm-note-content strong {
    display: block;
    color: var(--omm-dark);
    font-size: 16px;
    margin-bottom: 8px;
}

.omm-note-content p {
    margin: 0;
    color: var(--omm-muted);
    font-size: 16px;
    line-height: 1.5;
}

.omm-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}


.omm-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.omm-field > span {
    color: var(--omm-dark);
    font-size: 16px;
    font-weight: 600;
}

.omm-field-full {
    grid-column: 1 / -1;
}

.omm-reference-list {
    grid-column: 1 / -1;
    display: grid;
    gap: 24px;
}


.omm-reference-item {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.omm-reference-head {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.omm-reference-head > span {
    color: var(--omm-dark);
    font-size: 16px;
    font-weight: 600;
}

.omm-reference-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.omm-application-form .omm-remove-reference[type="button"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    padding: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    background-color: transparent;
    background-color: transparent;
    border: 1.5px solid #D4D4D4;
    border-radius: 999px;
    color: var(--omm-border);
    font-size: 14px;
    font-weight: 400;
    line-height: 0;
    cursor: pointer;
    transition: all .2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.omm-application-form .omm-remove-reference[type="button"]:hover {
    background: transparent;
    background-color: transparent;
    border-color: #c62828;
    color: #c62828;
    font-weight: 400;
    text-decoration: none;
}

.omm-application-form .omm-add-reference[type="button"] {
    grid-column: 1 / -1;
    width: 100%;
    background: transparent;
    background-color: transparent;
    border: 1.5px dashed var(--omm-border);
    border-radius: var(--omm-radius);
    color: var(--omm-blue);
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
    user-select: none;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
}

.omm-application-form .omm-add-reference[type="button"]:hover {
    background: #f2f8fa;
    background-color: #f2f8fa;
    color: var(--omm-blue);
    border: 1.5px dashed rgba(0, 108, 165, 0.5);
    font-weight: 600;
    text-decoration: none;
}

.omm-application-form .omm-add-reference.is-hidden {
    display: none;
}

.omm-application-form .omm-fields input,
.omm-application-form .omm-fields textarea {
    width: 100%;
    border: 1px solid var(--omm-border);
    border-radius: var(--omm-radius);
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.4;
    background: #fff;
    color: var(--omm-dark);
    box-shadow: none;
    outline: none;
}

.omm-application-form .omm-fields input:focus,
.omm-application-form .omm-fields textarea:focus {
    border-color: var(--omm-blue);
    box-shadow: none;
    outline: none;
}

.omm-application-form .omm-fields input::placeholder,
.omm-application-form .omm-fields textarea::placeholder {
    color: var(--omm-muted);
    opacity: 1;
}

.omm-application-form input[type="date"],
.omm-application-form input[type="email"],
.omm-application-form input[type="tel"],
.omm-application-form input[type="text"],
.omm-application-form textarea {
    border: 1px solid var(--omm-border);
    border-radius: var(--omm-radius);
    padding: 14px 16px;
    font-size: 16px;
}

.omm-upload,
.omm-privacy {
    grid-column: 1 / -1;
}

.omm-fields textarea {
    min-height: 130px;
    resize: vertical;
}

.omm-upload {
    display: block;
    position: relative;
    cursor: pointer;
}

.omm-upload input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.omm-upload-title {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--omm-dark);
}

.omm-upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 150px;
    border: 1.5px dashed rgba(0, 108, 165, 0.5);
    background: var(--omm-soft);
    border-radius: var(--omm-radius);
    padding: 28px;
    text-align: center;
    transition: 0.2s ease;
}

.omm-upload:hover .omm-upload-box,
.omm-upload.is-dragover .omm-upload-box {
    border-color: var(--omm-blue);
    background: rgba(0, 108, 165, 0.08);
    transform: translateY(-1px);
}

.omm-upload-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #fff;
    color: var(--omm-blue);
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0, 108, 165, 0.12);
}

.omm-upload-box strong {
    display: block;
    color: var(--omm-dark);
    font-size: 16px;
}

.omm-upload-box small {
    display: block;
    color: var(--omm-muted);
    font-size: 14px;
}


.omm-upload.is-upload-success .omm-upload-box {
    animation: ommUploadSuccess 0.9s ease;
}

.omm-upload-list {
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
    margin-top: -12px;
}

.omm-upload-list:empty {
    display: none;
}

.omm-upload-file {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) 160px 28px;
    gap: 16px;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid var(--omm-border);
    border-radius: var(--omm-radius);
    background: #fff;
    transition: 0.2s ease;
}

.omm-upload-file.is-loading {
    border-color: rgba(0, 108, 165, 0.12);
    background: rgba(0, 108, 165, 0.05);
}

.omm-upload-file.is-complete {
    grid-template-columns: 32px minmax(0, 1fr) 28px;
    border-color: var(--omm-border);
    background: #fff;
}

.omm-upload-file.is-complete .omm-upload-file-remove {
    grid-column: 3;
}

.omm-upload-file::before {
    content: "";
    width: 28px;
    height: 34px;
    display: block;
    background-color: var(--omm-blue);
    opacity: 0.9;
    mask: linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0);
    border-radius: 4px;
}

.omm-upload-file-main {
    min-width: 0;
}

.omm-upload-file-main strong {
    display: block;
    color: var(--omm-dark);
    font-size: 16px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.omm-upload-file-main small {
    display: block;
    color: var(--omm-muted);
    font-size: 14px;
}

.omm-upload-file-progress {
    height: 6px;
    border-radius: 999px;
    background: rgba(0, 108, 165, 0.12);
    overflow: hidden;
}

.omm-upload-file-progress span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: var(--omm-blue);
}

.omm-upload-file.is-loading .omm-upload-file-progress span {
    animation: ommUploadProgress 0.7s ease forwards;
}

.omm-upload-file.is-complete .omm-upload-file-progress {
    display: none;
}

.omm-application-form .omm-upload-file-remove[type="button"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    background-color: transparent;
    border: 1.5px solid var(--omm-border);
    border-radius: 999px;
    color: var(--omm-border);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    transition: all .2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.omm-application-form .omm-upload-file-remove[type="button"]:disabled {
    opacity: 0;
    pointer-events: none;
}

.omm-application-form .omm-upload-file-remove[type="button"]:hover {
    background: transparent;
    background-color: transparent;
    border-color: #c62828;
    color: #c62828;
    text-decoration: none;
}

@keyframes ommUploadProgress {
    from {
        transform: scaleX(0);
        transform-origin: left center;
    }

    to {
        transform: scaleX(1);
        transform-origin: left center;
    }
}

@keyframes ommUploadSuccess {
    0% {
        transform: scale(1);
    }

    35% {
        transform: scale(1.015);
    }

    100% {
        transform: scale(1);
    }
}

.omm-privacy {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 16px;
    align-items: flex-start;
    color: var(--omm-muted);
    line-height: 1.5;
    cursor: pointer;
}

.omm-privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 3px 0 0;
    padding: 0;
    border-radius: 4px;
    accent-color: var(--omm-blue);
}

.omm-privacy span {
    display: block;
}

.omm-privacy a {
    color: var(--omm-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.omm-privacy a:hover {
    color: var(--omm-blue-hover);
}

.omm-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.omm-application-form .omm-btn[type="submit"] {
    background-color: var(--omm-blue)!important;
    border: 1px solid var(--omm-blue)!important;
    border-radius: 12px!important;
    color: #fff!important;
    display: inline-block;
    font-size: 1rem!important;
    font-weight: 400!important;
    padding: 12px 24px!important;
    text-align: center!important;
    transition: all .3s!important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer!important;
}

.omm-application-form .omm-btn[type="submit"]:disabled,
.omm-application-form .omm-btn[type="submit"].is-disabled {
    background-color: rgba(0, 108, 165, 0.08);
    border-color: rgba(0, 108, 165, 0.08);
    color: var(--omm-muted);
    cursor: not-allowed;
    pointer-events: none;
}

.omm-application-form .omm-btn[type="submit"]:hover {
    background-color: var(--omm-blue-hover);
    border-color: var(--omm-blue-hover);
    color: #fff;
    text-decoration: none;
}

.omm-btn-secondary {
    background: #eef2f7;
    color: var(--omm-dark);
}


.omm-profile {
    align-self: start;
    position: sticky;
    top: 214px;
    padding-top: 0px;
}

.omm-profile-card {
    border: 1px solid var(--omm-border);
    border-radius: var(--omm-radius);
    background: #fff;
    padding: 28px;
}
.omm-profile-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 8px 0 28px;
}

.omm-profile-row {
    border-top: 1px solid var(--omm-border);
    padding: 18px 0;
    margin: 0 -28px;
    padding-left: 28px;
    padding-right: 28px;
}

.omm-profile-row small {
    display: block;
    color: var(--omm-muted);
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 400;
}

.omm-profile-row strong {
    display: block;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
}

.omm-profile-row [data-summary="areas"] {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 600;
    color: var(--omm-dark);
}

.omm-profile-row li {
    position: relative;
    margin: 6px 0;
    padding-left: 18px;
    font-weight: 600;
}

.omm-profile-row ul {
    margin: 8px 0 0;
    padding-left: 0;
    list-style: none;
}

.omm-profile-row li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 7px;
    height: 7px;
    background: var(--omm-blue);
    border-radius: 999px;
    transform: translateY(-50%);
}

.omm-profile-salary {
    color: var(--omm-blue);
    font-size: 24px;
    font-weight: 600;
}

.omm-profile-progress li {
    color: var(--omm-dark);
    font-weight: 600;
}

.omm-progress-open {
    color: var(--omm-muted);
    font-weight: 400;
}

.omm-profile-progress li.is-complete {
    color: var(--omm-dark);
}


.omm-profile-progress li.is-complete::after {
    content: "✓";
    margin-left: 8px;
    color: var(--omm-blue);
    font-weight: 700;
}

.omm-profile-progress li:not(.is-complete)::after {
    content: none;
}

.omm-profile-cta {
    padding-top: 24px;
    padding-bottom: 0px;
}

.omm-profile-cta .omm-btn[type="submit"] {
    width: 100%;
}

.omm-form-message {
    margin-top: 18px;
    font-weight: 700;
}


.omm-application-form:has([data-success-message]:not([hidden])) {
    grid-template-columns: 1fr;
}

.omm-success {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
    padding: 40px;
    border: 1px solid var(--omm-border);
    border-radius: var(--omm-radius);
    background: var(--omm-soft);
    max-width: 792px;
    margin: 0 auto;
}

.omm-success[hidden] {
    display: none;
}

.omm-success-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--omm-blue);
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.omm-success-content > span {
    display: block;
    color: var(--omm-blue);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.omm-success-content h2 {
    margin: 0 0 18px;
    color: var(--omm-dark);
    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
}

.omm-success-content p {
    max-width: 820px;
    margin: 0 auto;
    color: var(--omm-muted);
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 1199px) {
    .omm-application-form {
        grid-template-columns: 1fr;
        max-width: 816px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .omm-profile {
        display: none;
    }
}


@media (max-width: 600px) {
    .omm-card-grid,
    .omm-area-grid,
    .omm-fields {
        grid-template-columns: 1fr;
    }

    .omm-reference-item {
        grid-template-columns: 1fr;
    }

    .omm-reference-head {
        grid-column: 1;
    }

    .omm-upload-file {
        grid-template-columns: 32px minmax(0, 1fr) 28px;
        border-radius: var(--omm-radius);
    }

    .omm-upload-file.is-complete {
        grid-template-columns: 32px minmax(0, 1fr) 28px;
    }

    .omm-upload-file-progress {
        grid-column: 2 / -1;
        order: 3;
    }
}

@media (max-width: 480px) {
    .omm-form-intro h1 {
        font-size: 32px;
        font-weight: 600;
    }

    .omm-step-header h2 {
        font-size: 28px;
    }

    .omm-choice-card > div,
    .omm-area-card {
        padding: 20px;
    }

    .omm-area-card-head,
    .omm-note {
        grid-template-columns: 1fr;
    }

    .omm-note {
        padding: 20px;
    }

    .omm-upload-box {
        padding: 20px;
    }

    .omm-upload-file {
        grid-template-columns: 28px minmax(0, 1fr) 24px;
        gap: 12px;
        padding: 10px 12px;
    }

    .omm-upload-file.is-complete {
        grid-template-columns: 28px minmax(0, 1fr) 24px;
    }

    .omm-upload-file::before {
        width: 24px;
        height: 30px;
    }

    .omm-upload-file-progress {
        grid-column: 2 / -1;
    }

    .omm-success {
        padding: 36px 20px;
    }

    .omm-success-icon {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }

    .omm-success-content h2 {
        font-size: 32px;
    }

    .omm-success-content p {
        font-size: 16px;
    }
}

