.agenda-component {
    display: flex;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.agenda-component .columns-fix {
    padding-left: 0;
    padding-right: 0;
}

.agenda-component .agenda-content {
    margin-top: 37px;
    margin-bottom: 30px;
    font-family: "Lato", sans-serif;
}

.agenda-component .agenda-entry {
    display: flex;
    width: 100%;
}

.agenda-component .agenda-content-left {
    max-width: 534px;
    margin-left: auto;
}

.agenda-component .agenda-content-right {
    max-width: 534px;
    margin-right: auto;
}

.agenda-component .agenda-title {
    font-size: 32px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: white;
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.agenda-component .agenda-entry-time {
    font-weight: bold;
    width: 30%;
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.agenda-component .agenda-entry-description {
    display: flex;
    align-items: center;
    width: 80%;
    text-align: left;
}

.agenda-component .agenda-entry-description--half {
    width: 40%;
}

.agenda-component .agenda-entry-description--half.column-1 {
    padding-right: 15px;
}

.agenda-component .agenda-entry-description--half.column-2 {
    padding-left: 15px;
    border-left: 1px solid #6c2153;
}

.agenda-component .agenda-entry-line {
    height: 1px;
    width: 100%;
    border-radius: 1px;
    background-color: #6c2153;
    margin-top: 15px;
    margin-bottom: 15px;
}

.agenda-component .agenda-button {
    color: white;
    background-color: black;
    width: 245px;
    margin-bottom: 10px;
}

.agenda-component .agenda-button:hover {
    background-color: #2f2f2f;
}

.agenda-component .agenda-image {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.agenda-component .agenda-tabs {

}

.agenda-component .agenda-tabs ul.tabs {
    list-style: none;
}

.agenda-component .agenda-tabs ul.tabs li {
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: solid 2px #fff;
    font-family: Roboto, sans-serif;
    font-weight: bold;
    font-size: 14px;
    height: 45px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-left: 0;
    transition: all .3s ease-in-out;
    width: calc(50% - 7px);
}

.agenda-component .agenda-tabs ul.tabs li:first-child {
    margin-right: 10px;
}

.agenda-component .agenda-tabs ul.tabs li.current {
    background: #fff;
    color: #812562;
}

.agenda-component .agenda-tabs .tab-content {
    display: none;
    padding: 15px;
}

.agenda-component .agenda-tabs .tab-content .roundtable-title {
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.agenda-component .agenda-tabs .tab-content .roundtable-title.column-2 {
    padding-left: 0;
    border-left: 1px solid #6c2153;
}

.agenda-component .agenda-tabs .tab-content.current {
    display: flex;
    justify-content: start;
    align-items: stretch;
    margin: 0 0;
    flex-wrap: wrap;
}

.agenda-component .agenda-tabs .tab-hover:hover {
    color: #812562;
    background-color: white;
}

.agenda-component .swiper-container-custom-agenda-one {
    width: 100%;
    height: 100%;
}

.agenda-component .swiper-container-custom-agenda-two {
    width: 100%;
    height: 0;
}

.agenda-component .swiper-slide {
    background-position: center;
    background-size: cover;
}

.agenda-component .swiper-pagination-agenda {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s opacity;
    -o-transition: .3s opacity;
    transition: .3s opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.agenda-component .swiper-button-next {
    background-image: none !important;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.agenda-component .swiper-button-prev {
    background-image: none !important;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.agenda-component .swiper-button-prev:after {
    font-family: 'Font Awesome\ 5 Free';
    content: '\f104';
    font-weight: 900;
}

.agenda-component .swiper-button-next:after {
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;
    content: '\f105';
}

/* Tooltip container */
.agenda-component .tooltip {
    position: relative;
}

.agenda-component .tooltip:hover {
    cursor: pointer;
}

/* Tooltip text */
.agenda-component .tooltip .tooltiptext {
    visibility: hidden;
    opacity: 0;
    width: 450px;
    background-color: white;
    color: black;
    text-align: left;
    padding: 10px;
    border: solid 1px;
    top: 100%;
    position: absolute;
    z-index: 10;
}

.tooltiptext-open span {
    display: inherit;
}

.agenda-component .tooltip .tooltiptext-open {
    visibility: visible;
    opacity: 1;
}

.agenda-component .tooltip .tooltiptext-left {
    margin-left: -100px;
}

.agenda-component .tooltip .tooltiptext-right {
    margin-left: -270px;
}

@media (min-width: 500px) {
    .agenda-component .entry-hidden-desktop {
        display: none;
    }
}

@media (max-width: 767px) {
    .agenda-component .agenda-block {
        width: 100%;
        text-align: center !important;
    }

    .agenda-component .columns-fix {
        width: 100%;
    }
    
    .agenda-component .agenda-content-right {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
    .agenda-component {
        margin-left: -10px;
        margin-right: -10px;
    }

    .agenda-component .agenda-entry-time {
        width: 100%;
    }

    .agenda-component .agenda-entry-description {
        width: 100%;
        margin-bottom: 15px;
    }

    .agenda-component .agenda-title {
        text-align: center !important;
        flex-direction: column;
    }

    .agenda-component .agenda-button-position {
        text-align: center !important;
        margin-top: 25px;
    }

    .agenda-component .agenda-entry {
        display: unset;
        text-align: left;
    }

    .agenda-component .entry-hidden-mobile {
        display: none;
    }

    .agenda-component .agenda-entry-line {
        margin-top: 0;
    }

    .agenda-component .tooltip .tooltiptext {
        width: 300px;
    }

    .agenda-component .tooltip .tooltiptext-left {
        margin-left: 0;
    }

    .agenda-component .tooltip .tooltiptext-right {
        margin-left: 0;
    }

    .agenda-component .agenda-entry-description--half.column-2 {
        padding-left: 0;
        border-left: none
    }
}