.agenda--default {
    overflow: hidden;
    background: white;
    /* color: var(--c-white); */
    padding: 24px 0 40px;
}

@media screen and (min-width: 800px) {
    .agenda--default {
        padding: 120px 0;
    }
}

.agenda__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 60rem;
    margin: var(--spacer-4xl) auto var(--spacer-xl);
}

.agenda__tabs {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: var(--spacer-sm);
    overflow-x: auto;
}

.agenda__tabs__day {
    flex: 1;
    position: relative;
    text-align: center;
    padding: 20px 12px;
    border-top: 1px solid #e8e7e7;
    border-left: 1px solid #e8e7e7;
    border-bottom: 1px solid #e8e7e7;
    color: #888888;
    background-color: rgba(255, 255, 255, 1);
    user-select: none;
    transition: all var(--transition-md);
    text-transform: capitalize;
}

.agenda__tabs__day:first-child {
    border-radius: 4px 0 0 4px;
}

.agenda__tabs__day:last-child {
    border-right: 1px solid #e8e7e7;
    border-radius: 0 4px 4px 0;
}

.agenda__tabs__day.active {
    color: var(--c-primary);
    font-weight: 500;
}

.agenda__tabs__day.active:after {
    content: '';
    position: absolute;
    width: calc(100% - 12px);
    height: 2px;
    bottom: -1px;
    left: 0;
    margin: 0 6px;
    border-radius: 4px 4px 0 0;
    background: var(--c-primary);
}

.agenda__tabs__day:not(.active) {
    cursor: pointer;
}

.agenda__content {
    width: 100%;
    position: relative;
    margin-top: var(--spacer-xs);
}

.agenda__content__day {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    user-select: none;
    transition: all 200ms ease-out;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8e7e7;
    border-radius: var(--radius-lg);
}

.agenda__content__day.active {
    opacity: 1;
    height: auto;
    user-select: auto;
}

.agenda__content__session {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-left: 16px;
    margin-right: 16px;
    width: calc(100% - 32px);
    padding: 24px 0;
}

@media screen and (min-width: 768px) {
    .agenda__content__session {
        flex-direction: row;
    }
}

.agenda__content__session:not(:last-child) {
    border-bottom: 1px solid #e8e7e7;
}

.agenda__session__time {
    padding-left: 8px;
    color: #888;
}

@media screen and (min-width: 768px) {
    .agenda__session__time {
        width: 100px;
        /* padding: var(--spacer-sm) var(--spacer-xl); */
    }
}

.agenda__session__title {
    display: flex;
    align-items: center;
    padding: 8px 0 0 8px;
    color: #333333;
}

@media screen and (min-width: 768px) {
    .agenda__session__title {
        padding: 0;
    }
}