  .agenda-container {
    margin-bottom: 15px;
}
.agenda_card {
    background: #F3FEDB;
    display: flex;
    height: 252px;
    padding: 5px;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #C4D980;
    box-shadow: none;
    border-radius: 15px;
}
.agenda_card.reverse {
    flex-direction: row-reverse;
}
.img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 370px;
    height: 252px;
    padding: 0px 15px 0px 15px;
}
.agenda_card img {
    height: 210px !important;
    width: 100%;
    object-fit: cover;
}
.body-container {
    display: flex;
    flex-direction: column;
    width: 717px;
}

.agenda_card {
opacity: 0;
transform: translateY(50px);
}


.agenda_card.animate {
animation: fadeInUp 0.8s ease-out forwards;
}


.agenda_card.animate:nth-of-type(1) { animation-delay: 0s; }
.agenda_card.animate:nth-of-type(2) { animation-delay: 0.2s; }
.agenda_card.animate:nth-of-type(3) { animation-delay: 0.4s; }
.agenda_card.animate:nth-of-type(4) { animation-delay: 0.6s; }
.agenda_card.animate:nth-of-type(5) { animation-delay: 0.8s; }
.agenda_card.animate:nth-of-type(6) { animation-delay: 0.1s; }

.agenda_card {
    padding: 0;
}

.img-container {
    width: 370px;
    height: 100%;
    margin: 0 30px 0 0;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    align-items: inherit;
    justify-content: inherit;
    padding: 0px;
    display: initial;
}

.agenda_card img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    padding: 0;
    margin: 0;
}


.agenda_card.reverse {
    padding: 0;
    display: flex;
}

.agenda_card.reverse .img-container {
    width: 370px;
    height: 100%;
    margin: 0 0 0 0;
    border-radius: 0 12px 12px 0;
    overflow: hidden;
    align-items: inherit;
    justify-content: inherit;
    padding: 0px;
    display: initial;
}

.agenda_card.reverse img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    padding: 0;
    margin: 0;
}
.agenda_card.two {
    background: #F3FEDB;
    display: flex;
    height: 252px;
    /* padding: 5px; */
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #C4D980;
    box-shadow: none;
    border-radius: 15px;
    opacity: 1 !important;
}
.fc-toolbar.fc-header-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
/* .fc .fc-bg-event{
    opacity: 1;
} */
.fc-dayGridMonth-view.fc-view.fc-daygrid a {
    color: #655116;
}
.fc-event.dia-con-agenda{
    background-color: #65511699 !important;
    opacity: .9 !important;
    cursor: pointer;
}
.fc-daygrid-day-top.dia-con-agenda a{
    color : #fff !important;
    cursor: pointer;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}