.events.list article.event-block {
    width: 49%;
    max-width: 650px;
    overflow: hidden;
    height: 180px;
    max-height: 180px;
    display: inline-block;
    float: left;
    position: relative;
    margin-bottom: 10px;
}
.events.list article.event-block:nth-child(2n){
    float: right;
}
.events.list article.event-block .hover-overlay {
    display: block;
    height: 180px;
    width: 100%;
    position: absolute;
    z-index: 1;
    padding-left: 36%;
    background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 36%, rgba(255,255,255,1) 36%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 36%,rgba(255,255,255,1) 36%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 36%,rgba(255,255,255,1) 36%,rgba(255,255,255,1) 100%);
    transition: all ease-in-out 0.2s;
}
.events.list article.event-block:hover .hover-overlay {
    background: RGBA(96, 68, 115, 0.8);
    transition: all ease-in-out 0.2s;
}
.events.list article.event-block img.event-image {
    position: absolute;
    z-index: 0;
    height: 180px;
    width: 36%;
    transition: all ease-in-out 0.2s;
}

.events.list article.event-block .ticket-block {
    position: absolute;
    margin-top: 130px;
    margin-left: 10px;
    background: #f5c808;
    width: 180px;
    height: 40px;
    padding: 10px 5px;
    z-index: 1;
}
.events.list article.event-block .ticket-block .from {
    color: #8b6815;
    font-size: 0;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    line-height: 0;
}
.events.list article.event-block .ticket-block .price {
    color: #232020;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
}
.events.list article.event-block .buy-block{
    position: absolute;
    height: 40px;
    width: 40px;
    z-index: 1;
    margin-top: 130px;
    margin-left: 190px;
    background: #000;
}
.events.list article.event-block .buy-block a{
    background: #000000 url("../images/buttons/buy-ticket-inactive.png");
    height: 38px;
    width: 40px;
    display: block;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list article.event-block .buy-block a:hover{
    background: #000000 url("../images/buttons/buy-ticket-active.png");
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list article.event-block .age-restrict {
    position: absolute;
    margin-top: 15px;
    margin-left: 55%;
    background: #f5c808;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    padding: 8px 0;
    z-index: 1;
    text-align: center;
    font-weight: bold;
    color: #000;
    line-height: 25px;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list article.event-block:hover .age-restrict {
    display: none;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list article.event-block .hover-actions{
    display: none;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list article.event-block:hover .hover-actions{
    display: block;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list article.event-block:hover .hover-actions.view-event {
    position: absolute;
    z-index: 1;
    margin-top: 70px;
    margin-left: -31%;
    margin-right: 80px;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list article.event-block:hover .hover-actions.view-event .button { padding: 0 35px;}
.events.list article.event-block:hover .hover-actions.actions {
    position: absolute;
    height: 40px;
    width: 70px;
    z-index: 1;
    margin-top: 130px;
    margin-left: 45%;
    line-height: 55px;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list .actions .share{
    display: inline-block;
    background: url("../images/buttons/share-event-inactive.png");
    height: 40px;
    width: 24px;
    background-repeat: no-repeat;
    background-position: 50%;
    float: right;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
    cursor: pointer;
}
.events.list .actions .share:hover{
    background: url("../images/buttons/share-event-active.png");
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
    cursor: pointer;
}
.events.list .actions .save{
    display: inline-block;
    background: url("../images/buttons/save-event-inactive.png");
    height: 40px;
    width: 24px;
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list .actions .save:hover,
.events.list .actions .save.active{
    background: url("../images/buttons/save-event-active.png");
    background-repeat: no-repeat;
    background-position: 50%;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list article.event-block .event-information {
    position: absolute;
    margin-top: 5px;
    width: 350px;
    padding-left: 10px;
    z-index: 1;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list article.event-block:hover .event-information{
    background: transparent;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list article.event-block .event-information .event-name {
    color: #4e3b3b;
    font-size: 20px;
    line-height: 18px;
    font-weight: 600;
    text-transform: uppercase;
    max-height: 40px;
    width: calc(100% - 50px);
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    white-space: nowrap;
    transition: all ease .5s;
    text-overflow: ellipsis;
    word-wrap: normal;
    overflow: hidden;
}
.events.list article.event-block:hover .event-information .event-name{
    color: #ffffff;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list article.event-block .event-information .event-date{
    color: #7e7d76;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 16px;
    margin: 15px 0;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list article.event-block:hover .event-information .event-date{
    color: #ffffff;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list article.event-block .event-information .event-location{
    color: #6d5379;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 16px;
    background: url("../images/components/location-marker-list.png") no-repeat;
    padding-left: 15px;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list article.event-block .event-information .event-location a{
    color: #6d5379;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: block;
}
.events.list article.event-block:hover .event-information .event-location{
    background: url("../images/components/location-marker.png") no-repeat;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
.events.list article.event-block:hover .event-information .event-location a{
    color: #f4d107;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -ms-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}
