.schedule_row{
    display: flex;
    width: 100%;
    flex-direction: row;
    padding: 20px 0;
    border-bottom: 1px solid #bdc3c7;
}
.schedule_row_date{
    font-size: 10px;
    text-transform: uppercase;
    width: 120px;
    min-width: 120px;
}
.schedule_row_date span{
    display: block;
    font-size: 16px;
    font-weight: bold;
}
.schedule_row_places, .schedule_row_posters{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.schedule_row_place, .schedule_row_poster{
    display: flex;
    padding: 10px 0;
}
.schedule_row_place:not(:first-child), .schedule_row_poster:not(:first-child){
    border-top: 1px solid #eeeeee;
}
.schedule_row_place:first-child, .schedule_row_poster:first-child{
    padding-top: 0;
}
.schedule_row_place:last-child, .schedule_row_poster:last-child{
    padding-bottom: 0;
}
.schedule_row_place > div, .schedule_row_poster > div{
    width: 47%;
    padding-right: 2%;
}
.schedule_row_poster .poster_link a{
    background-repeat: no-repeat;
}
.schedule_row_poster .poster_link.photoed a{
    padding-left: 80px;
    min-height: 64px;
}
.place_link span, .poster_link span{
    display: block;
    opacity: .7;
}
.place_link a, .poster_link a{
    font-size: 16px;
    display: block;
    text-decoration: none;
    padding-bottom: 3px;
}
.schedule_row_place:hover .poster_link span{
    opacity: 1;
}
.schedule_more{
marging-bottom: 10px; 
    margin: 20px 0 20px auto;
    background: #38393d;

    height: 30px;
    font-size: 11px;
    line-height: 33px;
    border-radius: 23px;
    cursor: pointer;

    text-align: center;
    text-transform: uppercase;
    color: #fff;
}
@media(max-width: 768px){
    .schedule_row_place, .schedule_row_poster{
        flex-direction: column;
    }
    .schedule_row_place>div, .schedule_row_poster>div{
        width: 100%;
        padding: 0;
    }
    .schedule_row_place .place_link, .schedule_row_poster .poster_link{
        margin-bottom: 15px;
    }
}
@media(max-width: 480px){
    .schedule_row{
        flex-direction: column;
    }
    .schedule_row_date{
        margin-bottom: 10px;
        border-bottom: 1px solid #eeeeee;
    }
}
.schedule_hidden{
    display: none;
}