.week-days {
    display: flex;
    justify-content: center;
    gap: 23px;
    overflow: auto;
    justify-content: flex-start;
    padding-bottom: 12px;
}
.week-days .weekday-link {
    flex: 1 0 120px;
    text-align: center;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9285em;
}
.week-days .weekday-link span {
    display: block;
    width: 100%;
    padding: 15px 0px;
    border-radius: 8px;
}
.week-days .weekday-link.current {
    background-color: transparent;
}
.day-schedule {
    margin-top: 20px;
}

.day-schedule .empty-block {
    padding: 72px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-align: center;
}

.day-schedule .schedule-list .schedule {
    display: flex;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    justify-content: space-between;
    padding-bottom: 20px;
}

.day-schedule .schedule-list .schedule + .schedule {
    margin-top: 20px;
}

.day-schedule .schedule-list .schedule .schedule-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.day-schedule .schedule-list .schedule .schedule-time-value {
    display: inline-block;
    text-align: center;
    font-size: 0.9285em;
    opacity: 0.75;
}
.day-schedule .schedule-list .schedule .schedule-time-value-large {
    visibility: hidden;
    line-height: 0px;
}
.day-schedule .schedule-list .schedule .program-name {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 1.15em;
    font-weight: 500;
}

.day-schedule .schedule-list .schedule .schedule-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.day-schedule .schedule-list .schedule .broadcaster {
    display: flex;
    width: 280px;
    white-space: nowrap;
    gap: 20px;
    align-items: center;
}
.day-schedule .schedule-list .schedule .broadcaster .broadcaster-label {
    font-size: 0.9285em;
    opacity: 0.75;
}

.day-schedule .schedule-list .schedule .broadcaster .broadcaster-photo {
    width: 40px;
    flex-shrink: 0;
    position: relative;
}

.day-schedule .schedule-list .schedule.playing-now .broadcaster .broadcaster-photo .wave1 {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    border-width: 1px;
    border-style: solid;
    border-radius: 100%;
    animation-name: wave;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    box-sizing: content-box;
}

.day-schedule .schedule-list .schedule.playing-now .broadcaster .broadcaster-photo .wave2 {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: transparent;
    border-width: 1px;
    border-style: solid;
    border-radius: 100%;
    animation-name: wave2;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 0.4s;
}

.day-schedule .schedule-list .schedule .broadcaster .broadcaster-photo img {
    border-radius: 100%;
}

.day-schedule .schedule-list .schedule .broadcaster .broadcaster-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 4px;
}

.day-schedule .schedule-list .schedule .broadcaster .broadcaster-info .broadcaster-name {
    font-weight: 500;
    font-size: 1.14285em;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0;
}

.day-schedule .schedule-list .schedule:not(.playing-now) .schedule-info .schedule-time .tag-playing-now {
    display: none;
}

.day-schedule .schedule-list .schedule .schedule-info .schedule-time .tag-playing-now {
    padding: 1px 5px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.7142em;
    border-radius: 1000px;
}

.schedule-time .schedule-time-value .before-icon {
    margin-right: 2px;
}

.schedule-time .schedule-time-value .after-icon {
    margin-left: 2px;
}

@media screen and (max-width: 550px) {
    .day-schedule .schedule-list .schedule .program-name {
        padding-right: 0px;
    }

    .day-schedule .schedule-list .schedule .broadcaster .broadcaster-photo {
        display: none;
    }

    .day-schedule .schedule-list .schedule {
        flex-direction: column;
        gap: 12px;
    }

    .day-schedule .schedule-list .schedule .broadcaster .broadcaster-info .broadcaster-name {
        font-size: 1em;
    }
}

@media screen and (max-width: 300px) {
    .week-days .weekday-link {
        flex: 100%;
        margin: 3px 0px;
    }
}
