/* Version: 16-06-2026-18-00 */
#portfolio_page #agenda-list .agenda-item {
    background: var(--portfolios-theme-bg-main, #272727) !important;
}

.agenda-item {
    display: flex;
	margin-bottom: 25px;
	padding: 25px;
    transition: 0.2s linear;
    position: relative;
    font-family: var(--portfolios-font-name), var(--portfolios-font-stack, sans-serif);
    color: var(--portfolios-text-main-color, inherit);
}

.card-list .agenda-item {
    padding: 0px 0px 15px 0px;
}

.agenda-item:last-child {
    margin-bottom: 0px;
}

.agenda-item .date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 150px;
    min-height: 150px;
    margin-right: 35px;
    padding: 20px;
    transition: 0.2s linear;
}

@media screen and (max-width: 1080px) {

    .agenda-item .date {
        min-width: 100px;
        min-height: 100px;
    }

}

@media screen and (max-width: 500px) {

    .agenda-item {
        flex-direction: column;
    }

    .agenda-item .date {
        margin: 0px 0px 20px 0px;
        text-align: left;
        align-items: flex-start;
    }
}

.agenda-item .date .date-day {
    font-weight: bold;
}

.agenda-item .date .date-month {
    font-weight: bold;
}

#portfolio_page .agenda-item .date,
#portfolio_page .agenda-item .date p {
    color: #fff;
}

#portfolio_page .agenda-item ul li:not(.date),
#portfolio_page .agenda-item ul li:not(.date) span {
    font-family: inherit;
    font-size: 1em;
    line-height: calc(1em + 10px);
    color: var(--portfolios-text-main-color, inherit);
}

#portfolio_page .agenda-item ul li:not(.date) :is(h2, h3) {
    font-size: var(--portfolios-heading-secondary-size) !important;
    line-height: calc(var(--portfolios-heading-secondary-size) + 10px) !important;
    font-weight: bold !important;
    color: var(--portfolios-heading-secondary-color, var(--portfolios-text-main-color, inherit)) !important;
    margin: 0;
    padding: 0;
    text-align: left;
}

#portfolio_page .agenda-item ul li:not(.date) :is(h2, h3) :is(a, span, p, strong, em, b, i, small) {
    color: inherit !important;
}

.agenda-item h2,
.agenda-item h3 {
    margin: 0px;
    padding: 0px;
    text-align: left;
}

.agenda-item .agenda-item-description {
    font-weight: bold;
    margin-bottom: 30px;
}

.agenda-item ul li:not(.date) {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    font-weight: normal;
}

.agenda-item ul li svg {
    width: 25px;
    margin-right: 15px;
    flex-shrink: 0;
}

.agenda-item ul li:not(.date) p {
    margin: 0px;
    font-size: 1em;
    line-height: calc(1em + 10px);
}

.agenda-item .agenda-item-open {
    position: absolute;
    right: 35px;
    bottom: 35px;
  
}

.agenda-item .agenda-item-open svg {
    width: 25px;
    transition: 0.2s linear;
}

@media screen and (max-width: 500px) {

    .agenda-item .agenda-item-open svg {
        margin-right: 10px;
    }

}

.agenda-item:hover .agenda-item-open svg {
    opacity: 0.6;
}

body.portfolio-editor #webpage-simulation #portfolio_page.portfolio-font .agenda-item {
    font-family: var(--portfolios-font-name), var(--portfolios-font-stack, sans-serif) !important;
    color: var(--portfolios-text-main-color, inherit) !important;
}

body.portfolio-editor #webpage-simulation #portfolio_page.portfolio-font .agenda-item ul li:not(.date),
body.portfolio-editor #webpage-simulation #portfolio_page.portfolio-font .agenda-item ul li:not(.date) span {
    font-family: inherit !important;
    font-size: 1em !important;
    line-height: calc(1em + 10px) !important;
    color: var(--portfolios-text-main-color, inherit) !important;
}

body.portfolio-editor #webpage-simulation #portfolio_page.portfolio-font .agenda-item ul li:not(.date) :is(h2, h3) {
    font-size: var(--portfolios-heading-secondary-size) !important;
    line-height: calc(var(--portfolios-heading-secondary-size) + 10px) !important;
    font-weight: bold !important;
    color: var(--portfolios-heading-secondary-color, var(--portfolios-text-main-color, inherit)) !important;
}