#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;
}

.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;
}

.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 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}

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

.agenda-item ul li p {
    margin: 0px;
}

.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;
}