/* Schedule */

.wn-schedule-wrap {
    margin: 10px 0;
}

.wn-schedule-box {
    position: relative;
    text-align: center;
    padding: 80px 0 40px;
}

.wn-schedule-box:before {
    content: "";
    background: rgba(137, 207, 235, 0.4);
    position: absolute;
    left: 50%;
    top: 50px;
    bottom: 50px;
    width: 4px;
    margin-left: -2px;
}

.wn-schedule-date {
    display: inline-block;
    padding: 17px 30px;
    line-height: 16px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
    color: #fff;
    background: #89cfeb;
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
}

.wn-schedule-date.w-s-date-end {
    bottom: 0;
    top: auto;
}

.wn-schedule-event {
    position: relative;
    margin: 35px 0;
    clear: both;
    min-height: 110px;
}

.wn-schedule-event:after {
    clear: both;
    display: table;
    content: "";
}

.wn-schedule-event:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 50%;
    margin-left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #89cfeb;
    box-shadow: 0 0 0 4px rgba(137, 207, 235, 0.4);
}

.wn-schedule-time,
.wn-schedule-content {
    position: relative;
    width: 50%;
    float: left;
    text-align: right;
    font-size: 22px;
    color: #999;
    overflow: hidden;
    padding-right: 25px;
    font-weight: 200;
}

.wn-schedule-time {
    margin-top: -4px;
}

.wn-schedule-content {
    text-align: left;
    padding-right: 0;
    padding-left: 60px;
    font-size: 16px;
    font-weight: 300;
}

.wn-schedule-content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 50px;
    height: 1px;
    background: rgba(137, 207, 235, 0.4);
}

.wn-schedule-content:after {
    content: "";
    display: table;
    clear: both;
}

.wn-schedule-title {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #444;
}

.wn-schedule-presenter {
    float: left;
    font-size: 16px;
    font-weight: 300;
    padding-right: 30px;
    line-height: 30px;
    height: 30px;
}

.wn-schedule-presenter img {
    border-radius: 50%;
    float: left;
    margin-right: 10px;
    height: auto;
    box-shadow: 0 3px 17px -6px rgba(0, 0, 0, .16);
}

.wn-schedule-location {
    float: left;
    position: relative;
    line-height: 30px;
    height: 30px;
}

.wn-schedule-location:before,
.wn-schedule-time:before {
    font-family: 'simple-line-icons';
    content: "\e096";
    margin-right: 5px;
    font-size: 14px;
    color: #888;
}

.wn-schedule-time:before {
    content: "\e081";
}

.w-s-darkbg .wn-schedule-time,
.w-s-darkbg .wn-schedule-content {
    color: rgba(255, 255, 255, 0.5);
}

.w-s-darkbg .wn-schedule-title {
    color: #fff;
}

.w-s-darkbg .wn-schedule-location:before,
.w-s-darkbg .wn-schedule-time:before {
    color: rgba(137, 207, 235, 0.4);
}

.w-s-darkbg .wn-schedule-date {
    background: rgba(137, 207, 235, 0.4);
}

@media (max-width: 640px) {
    .wn-schedule-title {
        font-size: 17px;
    }

    .wn-schedule-presenter,
    .wn-schedule-location {
        width: 100%;
        float: none;
        padding-left: 0;
        padding-top: 5px;
        font-size: 13px;
    }

    .wn-schedule-time {
        font-size: 14px;
    }

    .wn-schedule-date {
        padding: 17px;
        letter-spacing: 0;
        font-size: 12px;
    }

    .wn-schedule-content {
        padding-left: 20px;
    }

    .wn-schedule-content:before {
        width: 18px;
    }

    .wn-schedule-location:before,
    .wn-schedule-time:before {
        font-size: 10px;
    }
}