.ecss-loader {
    padding: 60px 0;
}

#schedule-category {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 0;
    width: 100%;
    overflow-x: auto;
}

#schedule-category-scroll {
    width: max-content;
    display: flex;
    flex-direction: row;
}

#schedule-category a {
    color: #a7a7a7;
    font-size: 16px;
    padding: 12px 16px;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    transition: 0.4s ease-in-out;
    flex: 1 1 auto;
    width: max-content;
}

#schedule-category a:hover, #schedule-category a.active {
    color: #FFF;
    border-color: #00ff5b;
}

#schedule-items .days {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 16px;
    margin: 20px 0 10px;
}

#schedule-items .days a.scheduled-day {
    padding: 14px 16px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #ccc;
    color: #000;
    text-align: center;
    position: relative;
    /*font-size: 1.286em;*/
    font-size: 16px;
    transition: 0.25s ease-in-out;
}

/*#schedule-items .days a.scheduled-day:hover {*/
/*    opacity: 1;*/
/*}*/

#schedule-items .days a.scheduled-day:hover, #schedule-items .days a.scheduled-day.active {
    background: #026764;
    border: 1px solid #026764;
    color: #fff;
}

/*#schedule-items .days a.scheduled-day.active::after {*/
/*    content: ' ';*/
/*    height: 0;*/
/*    position: absolute;*/
/*    width: 0;*/
/*    border: 8px solid transparent;*/
/*    bottom: -16px;*/
/*    left: calc(50% - 6px);*/
/*    border-top-color: #000 !important;*/
/*}*/

#schedule-items .schedule-content-day {
    background: #fff;
}

#schedule-items .schedule-content-day .schedule-class-item.has-detailed {
    cursor: pointer;
}

#schedule-items .schedule-content-day .schedule-class-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

#schedule-items .schedule-content-day .schedule-class-item .header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px;
}

#schedule-items .schedule-content-day .schedule-class-item .header .time-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

@media (max-width: 600px) {
    #schedule-items .schedule-content-day .schedule-class-item .header .time-title {
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 0;
    }
}

#schedule-items .schedule-content-day .schedule-class-item .header span.time {
    min-width: 140px;
    font-size: 14px;
    line-height: 1;
    font-weight: normal;
    color: #000;
}

#schedule-items .schedule-content-day .schedule-class-item .header h1 {
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

#schedule-items .schedule-content-day .schedule-class-item .header a.expandable i {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

#schedule-items .schedule-content-day .schedule-class-item .detail {
    display: none;
    padding: 5px 15px 15px 15px;
    font-size: 16px;
    color: #000;
    font-weight: normal;
}

#schedule-items .schedule-content-day .schedule-class-item .detail .speakers {
    margin-top: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

@media (max-width: 600px) {
    #schedule-items .schedule-content-day .schedule-class-item .detail .speakers {
        display: inline-grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

#schedule-items .schedule-content-day .schedule-class-item .detail .speakers .speaker .speaker-picture {
    width: 100%;
    height: 120px;
}

#schedule-items .schedule-content-day .schedule-class-item .detail .speakers .speaker .speaker-name {
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
}

#schedule-items .schedule-content-day .schedule-class-item .detail .speakers .speaker .speaker-role {
    font-size: 11px;
    line-height: 1.2;
    font-weight: normal;
    color: #888888;
    margin: 10px 0 0;
}

#schedule-items .schedule-content-day .schedule-class-item .detail .speakers .speaker .divider {
    height: 1px;
    background: #d7d7d7;
    width: 40px;
    margin: 10px 0;
}

#schedule-items .schedule-content-day .schedule-class-item .detail .speakers .speaker .speaker-company {
    font-size: 12px;
    line-height: 1.2;
    font-weight: lighter;
    color: #9b9b9b;
}

#schedule-items .schedule-content-day .schedule-class-item.expanded .detail {
    /*display: flex;*/
}
