.schedule {
    display: flex;
    flex-direction: column;
    color: #000000;
    position: relative;
    row-gap: 2rem;
    max-height: 0;
    overflow-y: hidden;
    transition: max-height .3s ease;
}

.schedule-timeline {
    position: absolute;
    top: 0;
    left: 185px;
    width: 2px;
    height: 100%;
    background: #FF5D20;
    display: none;
}

.schedule p {
    padding: 0;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
    align-items: flex-start;
    border-top: 2px solid #D9D9D9;
    border-bottom: 2px solid #D9D9D9;
}

.bold-text {
    font-weight: bold !important;
}

.section-header {
    color: #000000;
    font-size: 2.25rem;
    font-weight: 500;
    font-family: 'KoHo', sans-serif;
    text-transform: uppercase;
}

.align-text-right {
    text-align: right;
}

.margin-top-bottom-4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.align-self-end {
    align-self: flex-end;
}
.small-text {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 25px;
    color: #000000;
}

.small-header {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: .25rem;
}

.body-text {
    font-weight: 400;
    font-size: 1rem;
    line-height: 25px;
    color: #000000;
}

.schedule-time {
    display: flex;
    flex-direction: column;
    min-width: 185px;
    position: relative;
}

.schedule-frame {
    width: 100%;
    height: 90%;
}

.schedule-info {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
    padding-top: 1rem;
}

.schedule-info:has(> img) {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 1rem;
}

.schedule-info:has(> img):has(> :nth-child(3)) {
    flex-direction: column;
    row-gap: 1rem;
    justify-content: unset;
    align-items: unset;
}


.topic-container {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    max-height: calc(1rem + 57px);
    overflow-y: hidden;
    transition: max-height 0.3s ease;
}

.topic-bar {
    background: #FF5D20;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    color: #ffffff;
    height: 57px;
    cursor: pointer;
}

.topic-bar:hover {
    background: #333333;
}

.session-chair {
    padding: 1rem 0 !important;
}

.chevron::before {
	border-style: solid;
	border-width: 0.2rem 0.2rem 0 0;
	content: '';
	display: inline-block;
	height: .8rem;
	left: 0.15rem;
	position: relative;
	top: 0.2rem;
	transform: rotate(135deg);
	vertical-align: top;
	width: .8rem;
}

.extended .chevron::before {
   	transform: rotate(-45deg);
    vertical-align: unset;
}

.chevron {
    padding-right: 1rem;
}

.topic-container .topic:nth-child(odd) {
    background: #F5F5F5;
}

.topic-container .topic:last-child {
    border-bottom: 1px solid #D9D9D9;
}

.topic {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 1rem;
    color: #000000;
    padding: 2rem;
    border-right: 1px solid #D9D9D9;
    border-left: 1px solid #D9D9D9;
    row-gap: 2rem;

}

.topic-header {
    flex: 1;
}

.topic-text {
    padding-right: unset;
    padding-top: 1rem;
}

.topic-text p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 25px;
    color: #000000;
}

.topic-speaker-text-container {
    max-width: 50%;
}

.topic-speaker-img {
     border-radius: 50%;
    width: 5rem;
    height: 5rem;
    object-fit: cover;
    object-position: center;
}

.topic-speakers {
    display: flex;
    column-gap: 1rem;
    row-gap: 2rem;
    flex-direction: column;
    width: auto;
}

.topic-speaker {
    display: flex;
    /* row-gap: 1rem;
    flex-direction: column; */ 
            column-gap: 1rem;
        row-gap: 0;
        align-items: center;
        flex-direction: row;
}

.topic-toggle {
    color: #ffffff;
}

.themes-controls {
    display: flex;
    justify-content: space-between;
    align-self: center;
    width: 100%;
}

.theme-button-disabled {
    color: #ffb094 !important;
    cursor: not-allowed !important;
}

.theme-button {
    cursor: pointer;
}

.theme-button:hover, .theme-button:focus {
    color: #333333;
}

@media only screen and (min-width: 960px) {

    .themes-controls {
        padding-left: 185px
    }
    .schedule {
        row-gap: unset;
    }
    .schedule-timeline {
        display: unset;
    }

    .schedule-time::before {
        content: '';
        position: absolute;
        top: 50%;
        right: -10px;
        width: 20px;
        height: 20px;
        background-color: #ffffff;
        border: 3px solid #FF5D20;
        border-radius: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }

    .schedule-item {
        padding-top: 0;
        padding-bottom: 1rem;
        flex-direction: row;
        align-items: unset;
        border: 0;
    }

    .schedule-item:last-child {
        padding-bottom: 0;
    }

    .schedule-frame {
        border-top: 2px solid #D9D9D9;
        border-bottom: 2px solid #D9D9D9;
    }

    .schedule-info {
        padding: 2rem;
    }

    .schedule-time {
        justify-content: center;
        text-align: center;
    }

    /* .topic {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        column-gap: 1rem;
        row-gap: 0;
    } */


}

@media screen and (min-width: 560px) {
    .topic-speaker {
        column-gap: 1rem;
        row-gap: 0;
        align-items: center;
        flex-direction: row;
    }

}