.main-container {
    display: flex;
    gap: 0;
}

.progress-container {
    width: 100%;
    background-color: #f0f0f0;
    margin-bottom: 40px;
    border: 1px solid #777;
}

.progress-bar {
    height: 30px;
    background-color: #95a5a6;
    position: relative;
}

.progress-text {
    position: absolute;
    right: 50%;
    top: 0;
    line-height: 30px;
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.steps-container {
    width: 300px;
    flex-shrink: 0;
}

.content-container {
    flex-grow: 1;
    /*background-color: #f5f5f5;*/
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    /*padding: 20px;*/
    /*border-radius: 0px;*/
    /*min-height: 400px;*/
}

.step {
    display: flex;
    align-items: center;
    padding: 12px;
    margin: 2px 0;
    background-color: #e0e0e0;
    position: relative;
    text-decoration: none;
    color: inherit;
    font-size: 16px;
    cursor: pointer !important;
}

a.step {
    cursor: pointer !important;
}

/*.step.locked {*/
/*    cursor: not-allowed;*/
/*}*/

.step:first-child {
    margin-top: 0;
}

.step:hover {
    background-color: #d0d0d0;
    color: black;
    cursor: pointer !important;
}

.step.completed {
    background-color: #f5f5f5;
}

.step.current {
    background-color: #95a5a6;
    color: white;
    font-weight: bold;
}

.step.current::before {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 20px solid #95a5a6;
    cursor: pointer !important;
}

.icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    cursor: pointer !important;
}

.completed .icon {
    /*background-color: #27ae60;*/
    /*color: white;*/
}

.current .icon {
    /*background-color: white;*/
    /*color: #95a5a6;*/
}

.locked .icon {
    /*background-color: #bdc3c7;*/
    /*color: white;*/
}

/*.locked*/
.icon::before {
    content: '\f111';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: grey;
}

.current .icon::before {
    content: '\f111';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
}

.done .icon::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #00a32a;
}

.icon.group-title::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: grey;
    margin-right: 10px
}

.resources-title {
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.resource-link {
    display: block;
    padding: 12px;
    background-color: #e0e0e0;
    margin: 2px 0;
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.resource-link:hover {
    background-color: #d0d0d0;
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.btn-save {
    background-color: #358389;
    color: white;
    margin: 10px;
    align-self: end;
}

.btn-save:hover {
    background-color: #247278;
    color: white;
}


.iframe-form {
    height: auto;
    width: 100%;
    border: none;
    margin-bottom: 0 !important;
    transition: all 0.5s ease;
}


/* MENU */

.content-container .tab-content {
    display: none;
    flex-direction: column;
}

.content-container .tab-content.active {
    display: flex;
}


#application-form {
    /* background-color: #ddd; */
}

.submenu.hidden {
    display: none;
}

.submenu .step {
    padding-left: 35px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
}

.form-completed {
    margin:40px;
}

.steps-dropdown {
    display: none;
}
@media (max-width: 799px) {
    .application-process .application-header {
        font-size: 1rem;
        line-height: 1.3;
    }

    .application-process .steps-container>*:not(.steps-dropdown) {
        display: none
    }

    .application-process .main-container {
        flex-direction: column;
    }

    .application-process .iframe-form {
        margin: 0 -30px;
        width: auto;
        padding:5px;
    }

    .steps-container .step.current::before {
        display:none;
    }

    .steps-dropdown {
        display:block;
        width: 100%;
        margin-bottom: 20px;
    }
    .form-completed {
        margin:20px 0 0;
    }
}


.profile-warning {
    background-color: #ffe0af;
    border: 1px solid #ffae42;
    padding: 6px 12px;
    border-radius: 6px;
}


.start-new-application-notice,
.start-new-application-form {
    text-align: center;
}