ul li a.evento {
    background-color: #eaebed;
    margin: 0px 0px 5px 0px;
    padding: 0;
    border-radius: 3px;
    position: relative;
    -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.75);
    height: 100px;
}

.date-event {
    text-align: center;
    align-self: center !important;
    align-items: center;
    display: inline-grid !important;
    height: inherit;
    width: 25%;
    font-size: 15px;
    font-weight: bold;
    background: url(../images/event.png) #2b4868 center;
    background-repeat: no-repeat;
    color: #ffffff;
    border-radius: 3px 0px 0px 3px;
    padding: 5px;
}

a:hover .date-event {
    background: url(../images/event.png) #336699 center;
    background-repeat: no-repeat;
}

.center-horizontal {
    width: 75%;
    align-self: center;
    float: right;
    padding: 5px;
}

a:hover .center-horizontal {
    color: #2b4868;
}

.todos-eventos {
    background-color: #2b4868;
    padding: 10px;
    color: #FFF;
    display: block;
    z-index: 100;
}

.eventos-mes {
    background-color: #2b4868;
    padding: 10px;
    color: #FFFFFF;
    border-left: 1px solid white;
    width: 100%;
}

.filter-event {
    margin-bottom: 0px !important;
}

ul li a.evento {
    display: inline-flex;
    width: 99.5%;
    background-color: #eaebed;
    margin: 0px 0px 5px 0px;
    padding: 0;
    border-radius: 3px;
    position: relative;
    -webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.75);
}

ul li a.evento:hover {
    background-color: #c6c8ce;
    box-shadow: 0px 0px 2px 1px #2b4868;
}


.evento-container{
    display: block;
}

.evento-img{
    width: auto;
    display: inline-block;
}

.img-center{
    width:100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.md-float-right{
    order: 1;
}
    
@media screen and (min-width: 768px) {
    .evento-container{
        display: flex;
        flex-direction: row;
    }
    .evento-img{
        width: auto;
        display: inline-block;
        justify-content: center;
    }
    .img-center{
        width:65%;
    }
    .evento-img img{
        width: 100%;
        height: auto;
        max-height: 240px;
        padding-right: 20px;
    }
    .evento-data{
        width: 35%;
    }
    .md-float-right{
        order: 2;
    } 
}



