.my_seminars_wrapper {
    display: none;
    flex-direction: column;
    position: relative;
}
.my_seminars_wrapper.visible {
    display: flex;
}
.my_seminars_wrapper .ace-row {
    display: flex;
    width: 100%;
    flex-grow: 1;
    transition: background-color ease .5s;
}
.my_seminars_wrapper .ace-row:nth-child(2n) {
    background-color: #f6f8ee;
}
.my_seminars_wrapper .ace-row:hover {
    background-color: #e0e2d9;
}
.my_seminars_wrapper .ace-row .ace-cell {
    width: 22%;
    padding: 10px;
    margin-right: 5px;
}
.my_seminars_wrapper .ace-row .ace-cell:last-child {
    margin-right: 0;
}
.my_seminars_wrapper .ace-row-header .ace-cell {
    background-color: var(--theme-color);
    color: #fff;
    text-transform: uppercase;
}
.my_seminars_wrapper .ace-cell.right-aligned {
    text-align: right;
}
.my_seminars_wrapper .ace-row-footer {
    border-top: 1px solid var(--theme-color);
    background-color: hsl(from var(--theme-color) h s l / .25);
}
.my_seminars_wrapper .ace-row .ace-cell-date {
    width: 15%;
}
.my_seminars_wrapper .ace-row .ace-cell.cell-fp {
    width: 50px;
}
.my_seminars_wrapper .ace-row .ace-cell.cell-title {
    flex-grow: 1;
}

.ace-form.ace-logged-in-user-wrapper .logged_in_user {
    display: block;
}
.ace-form.my_data {
    padding-bottom: 20px;
}

.my_seminars_wrapper .acadia_my_seminars .seminar-mobile {
    display: none;
}
.my_seminars_wrapper .acadia_my_seminars .seminar-desktop {
    display: flex;
    width: 100%;
}

/** ACADIA tabs and tab content */
.my_seminars_wrapper .section {
    transition: all ease .3s;
    display: none;
}
.my_seminars_wrapper .section.active {
    display: block;
}
.my_seminars_wrapper .acadia_buttons_wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}
.my_seminars_wrapper .acadia_buttons_wrapper .logout-button {
    position: absolute;
    right: 0;
}

/** Seminar documents */
.documents-wrapper {
    margin-top: 10px;
}
.documents-wrapper .documents_link {
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    background-color: var(--theme-color);
    cursor: pointer;
    user-select: none;
}
.documents-wrapper .documents-list {
    height: auto;
    max-height: 0;
    transition: all ease .5s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-left: 20px;
}
.documents-wrapper.active .documents-list {
    max-height: 500px;
}
.documents-wrapper .documents-list .ace-row {
    border-bottom: 1px solid #ddd;
    padding: 4px;
}
.documents-wrapper .documents-list .ace-row a {
    display: inline-block;
    cursor: pointer;
}
.documents-wrapper .documents-list img.doc-icon {
    max-width: 15px;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .my_seminars_wrapper .acadia_my_seminars .seminar-mobile {
        display: flex;
        flex-direction: row;
        width: 100%;
        flex-wrap: wrap;
        padding: 10px;
    }
    .my_seminars_wrapper .acadia_my_seminars .seminar-mobile > div.title {
        width: 25%;
    }
    .my_seminars_wrapper .acadia_my_seminars .seminar-mobile > div.value {
        width: 75%;
    }
    .my_seminars_wrapper .acadia_my_seminars .seminar-desktop {
        display: none;
    }

    .my_seminars_wrapper .ace-row-header {
        display: none;
    }

    /* .my_seminars_wrapper .ace-row {
        flex-wrap: wrap;
        gap: 2px;
    }

    .my_seminars_wrapper .ace-row .ace-cell {
        width: 100%;
    } */

    .my_seminars_wrapper .acadia_buttons_wrapper > .button-mfz {
        width: 100%;
    }
    .my_seminars_wrapper .acadia_buttons_wrapper .logout-button {
        position: relative;
    }

    .my_seminars_wrapper .section.active {
        overflow-y: auto;
        max-height: 75vh;
    }
}