/****************************************************************************
 * Spielplan Item
 ****************************************************************************/
.spielplan_item .item_image .data_ratio {
    border-radius: 50%;
}
.spielplan_item .item_image .data_ratio:after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background-color: rgba(255,204,0,0);
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
.spielplan_item .item_image:hover .data_ratio:after {
    background-color: rgba(255,204,0,0.8);
}

.spielplan_item .item_content h3 {
    margin: 0;
}
.spielplan_item .item_content p:last-child {
    margin: 0;
}

.spielplan_item .item_content a {
    color: inherit;
    text-decoration: none;
}


.spielplan_item .location {
    position: relative;
    display: block;
    padding-left: 2rem;
}
.spielplan_item .location:before {
    content: ''; position: absolute;
    left: 0; top: 55%; height: 1.5rem;
    width: 1.5rem; background: url(../img/winterfest-icon-location.svg) no-repeat;
    background-size: contain;
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
}


@media screen and (min-width:40em){
    /*.spielplan_item .item_content {
        padding-top: 3rem;
    }*/
}

/****************************************************************************
 * Filter
 ****************************************************************************/
.spielplan_filter_wrapper form .button {
    margin: 0;
}