.schedule_header {
    display: flex;
}

.schedule_header > * {
    width: 100%;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    border-bottom: 2px solid;
}

.left_block {
    color: #D6001C;
}

.right_block {
    color: #007367;
}

.schedule_item {
    width: 50%;
    background: #fff;
    margin: 10px 0;
    padding: 30px;
    border-radius: 7px;
    position: relative;
}

.schedule_item.item_left {}

.schedule_item.item_right {
    margin-left: 50%;
}

.schedule_body {
    margin: 20px 0;
}

.schedule {
    margin: 30px 0 80px;
}

span.number {
    position: absolute;
    width: 34px;
    height: 34px;
    top: 50%;
    right: -17px;
    margin-top: -17px;
    text-align: center;
    color: #fff;
    background: #D6001C;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 500;
}

.item_right span.number {
    left: -17px;
    background: #007367;
}

span.date {
    padding: 3px 13px;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid;
    border-radius: 18px;
    color: #d6001c;
}

.schedule_text p {
    margin: 20px 0 0;
    font-size: 20px;
}

.item_right span.date {
    color: #007367;
}