.invexum-projectreeks-info {
    display: none;

    &.active {
        display: flex;
    }
}

.invexum-projectreeks-info,
.invexum-project {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 1.3s cubic-bezier(.19, 1, .22, 1);

    &.active--animate-in {
        opacity: 1;
        transform: translateY(0);
    }
}

.invexum-projecten:not(.invexum-projecten--single-reeks) {
    .invexum-project {
        &:not(.active--animate-in) {
            .cpx-loading-bar__progress {
                width: 0 !important;
            }
        }
    }
}

.invexum-projecten--single-reeks {
    .invexum-project {
        opacity: 1;
        display: flex;
        transform: translateY(0);
    }
}

.invexum-project {
    display: none;

    &.active {
        display: flex;
    }
}

.invexum-projecten__projectreeksen {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    user-select: none;

    display: none !important;
    /* Request by Michael 09-06-2026 */

    .invexum-projectreeks {
        font-family: var(--e-global-typography-5d956c9-font-family), Sans-serif;
        font-weight: var(--e-global-typography-5d956c9-font-weight);
        text-transform: var(--e-global-typography-5d956c9-text-transform);
        letter-spacing: var(--e-global-typography-5d956c9-letter-spacing);
        font-size: 13px;
        position: relative;

        display: flex;
        flex-direction: row;
        align-items: center;

        transition: all .7s cubic-bezier(.19, 1, .22, 1);

        color: rgba(21, 21, 21, .7);

        &:before {
            content: '';
            display: inline-block;
            width: 0%;
            height: 2px;
            background-color: var(--e-global-color-primary);
            /* bottom: 0; */
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            position: absolute;
            transition: all .7s cubic-bezier(.19, 1, .22, 1);
        }

        /* &:after {
            content: '';
            display: inline-block;
            width: 2px;
            height: 0px;
            background-color: var(--e-global-color-primary);
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            position: absolute;
            transition: all .7s cubic-bezier(.19, 1, .22, 1);
            transition-delay: .5s;
        } */

        &:hover,
        &:focus {
            cursor: pointer;
            font-size: 16px;
        }

        &.active {
            color: rgba(21, 21, 21, 1);
            font-size: 20px;
            letter-spacing: 3px;

            &:before {
                width: 100%;
            }

            &:after {
                height: 20px;
            }
        }
    }
}

.invexum-projecten__projectreeks-info {
    margin-bottom: 50px;
}

.invexum-projectreeks-info {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px 10px;

    .invexum-projectreeks-info__block {
        width: 300px;
    }

    .invexum-projectreeks-info__title {
        font-family: var(--e-global-typography-c4e821a-font-family), Sans-serif;
        font-size: var(--e-global-typography-c4e821a-font-size);
        text-transform: var(--e-global-typography-c4e821a-text-transform);
        line-height: var(--e-global-typography-c4e821a-line-height);
        font-weight: 500;
    }
}

.invexum-projectreeks-dot {
    display: inline-block;
    width: 5px;
    /* Set the size of the dot */
    height: 5px;
    /* Set the size of the dot */
    background-color: var(--e-global-color-primary);
    /* Set the color of the dot */
    border-radius: 50%;
    /* Make it circular */
}

.invexum-projecten__projects {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 50px;
}

.invexum-project {
    position: relative;
    flex-direction: column;
    width: 100%;
    background-color: var(--e-global-color-accent);
    transition-delay: 200ms;

    &:nth-child(2) {
        transition-delay: 250ms;
    }

    &:nth-child(3) {
        transition-delay: 300ms;
    }

    &:nth-child(4) {
        transition-delay: 350ms;
    }

    &:nth-child(5) {
        transition-delay: 400ms;
    }

    &:nth-child(6) {
        transition-delay: 450ms;
    }

    &:nth-child(7) {
        transition-delay: 500ms;
    }

    &:nth-child(8) {
        transition-delay: 550ms;
    }

    &:nth-child(9) {
        transition-delay: 600ms;
    }

    &.invexum-project--just-stats {}
}

.invexum-project__title {
    text-align: center;
    font-family: var(--e-global-typography-a9d6b76-font-family), Sans-serif;
    font-size: var(--e-global-typography-a9d6b76-font-size);
    font-weight: var(--e-global-typography-a9d6b76-font-weight);
    padding: 5px;
    min-height: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-wrap: balance;
}

.invexum-project__flags {
    position: absolute;
    right: 10px;
    top: 10px;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;

    img {
        height: 25px;
        width: auto;
    }
}

.invexum-project__image {
    width: 100%;
    margin-bottom: 10px;

    img {
        aspect-ratio: 16 / 9;
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }
}

.invexum-project__info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    padding-bottom: 25px;
}

.invexum-project__info__item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 24px;

    img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }

    &.invexum-project__info__item--percentage {
        flex-direction: column;
        gap: 2px;
    }
}

.invexum-project__cta {
    margin-top: auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.invexum-project__button {
    background-color: #02010100;
    font-family: var(--e-global-typography-505bce6-font-family), Sans-serif;
    font-size: var(--e-global-typography-505bce6-font-size);
    font-weight: var(--e-global-typography-505bce6-font-weight);
    border-style: none;
    border-radius: 0px 0px 0px 0px;
    padding: 10px 0px 10px 0px;
    fill: var(--e-global-color-secondary);
    color: var(--e-global-color-text) !important;
    box-shadow: none;
    text-decoration: none;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    line-height: 1;
    text-align: center;
    transition: all .3s ease-in-out;

    img {
        transition: all .3s ease-in-out;
    }

    &:hover,
    &:focus {
        color: var(--e-global-color-primary) !important;

        img {
            transform: translateX(5px);
        }
    }
}


@media screen and (min-width: 768px) {
    .invexum-project:not(.invexum-project--just-stats) {
        width: calc(50% - 25px);
    }

    .invexum-project__info__item {
        width: calc(50% - 5px);
    }
}

@media screen and (min-width: 1024px) {
    .invexum-project:not(.invexum-project--just-stats) {
        width: calc(33% - 33.33px);
    }
}

@media screen and (max-width: 768px) {
    .invexum-projecten__projectreeksen {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }

    .invexum-projectreeks-info {
        flex-direction: column;

        .invexum-projectreeks-info__block {
            width: 100%;

            * {
                text-align: center;
            }
        }
    }

    .invexum-projectreeks-dot {
        display: none;
    }

    .invexum-projectreeks {
        &.active:after {
            height: 12px;
        }
    }
}

/* Seperate projectreeksen widget */
.invexum-projectreeksen {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 50px;

    .invexum-projectreeks {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0px;
        transition: all 0.3s ease-in-out;
        background-color: #fff;
        width: calc(50% - 25px);
    }

    .invexum-projectreeks__image {
        line-height: 0;
        aspect-ratio: 16 / 9;
        background-color: var(--e-global-color-75db37d);
        width: 100%;
        height: auto;

        img {
            aspect-ratio: 16 / 9;
            object-fit: cover;
            object-position: center;
            width: 100%;
            height: 100%;
        }
    }

    .invexum-projectreeks__title {
        color: #fff;
        margin-top: -42px;
        margin-bottom: 20px;
        text-transform: uppercase;
        font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
        font-size: var(--e-global-typography-secondary-font-size);
        font-weight: var(--e-global-typography-secondary-font-weight);
        line-height: var(--e-global-typography-secondary-line-height);
    }

    .invexum-projectreeks__cta {
        margin-top: auto;
    }

    .invexum-projectreeks__button {
        background-color: #02010100;
        font-family: var(--e-global-typography-505bce6-font-family), Sans-serif;
        font-size: var(--e-global-typography-505bce6-font-size);
        font-weight: var(--e-global-typography-505bce6-font-weight);
        border-style: none;
        border-radius: 0px 0px 0px 0px;
        padding: 10px 0px 10px 0px;
        fill: var(--e-global-color-secondary);
        color: var(--e-global-color-text) !important;
        box-shadow: none;
        text-decoration: none;
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        line-height: 1;
        text-align: center;
        transition: all .3s ease-in-out;

        img {
            transition: all .3s ease-in-out;
        }

        &:hover,
        &:focus {
            color: var(--e-global-color-primary) !important;

            img {
                transform: translateX(5px);
            }
        }
    }

    .invexum-projectreeks__content {
        width: 100%;
        padding: 20px;
        padding-bottom: 40px;
        padding-top: 0;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .invexum-projectreeks__investment {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;

        strong {
            font-family: var(--e-global-typography-c4e821a-font-family), Sans-serif;
            font-size: var(--e-global-typography-c4e821a-font-size);
            text-transform: var(--e-global-typography-c4e821a-text-transform);
            line-height: var(--e-global-typography-c4e821a-line-height);
            font-weight: 500;
        }

        span {}
    }

    .invexum-projectreeks__progress {
        margin-bottom: 20px;
    }

    .invexum-projectreeks__title,
    .invexum-projectreeks__investment,
    .invexum-projectreeks__progress,
    .invexum-projectreeks__cta {
        text-align: center;
    }
}

@media screen and (max-width: 1024px) {
    .invexum-projectreeksen {
        .invexum-projectreeks__title {
            margin-top: -36px;
        }
    }
}

@media screen and (max-width: 768px) {
    .invexum-projectreeksen {
        flex-direction: column;
        gap: 30px;

        .invexum-projectreeks__title {
            margin-top: -28px;
        }

        .invexum-projectreeks {
            width: 100%;
        }
    }
}

.invexum-projectinfo__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px 10px;
}

@media screen and (max-width: 768px) {
    .invexum-projectinfo__item {
        flex-direction: column;
        gap: 5px;
    }
}

.invexum-projectinfo__block {
    width: 300px;
}

@media screen and (max-width: 768px) {
    .invexum-projectinfo__block {
        width: 100%;
    }
}

.invexum-projectinfo__label {
    font-family: var(--e-global-typography-c4e821a-font-family), Sans-serif;
    font-size: var(--e-global-typography-c4e821a-font-size);
    text-transform: var(--e-global-typography-c4e821a-text-transform);
    line-height: var(--e-global-typography-c4e821a-line-height);
    font-weight: 500;
}

.invexum-projectinfo__value {
    color: var(--e-global-color-text);
}