.events.grid article.event-block {
    width: 25%;
    overflow: hidden;
    height: 320px;
    max-height: 320px;
    display: inline-block;
    float: left;
    position: relative;
}
body.secondary-pages .events.grid article.event-block {
    width: 24%;
    overflow: hidden;
    height: 320px;
    max-height: 320px;
    display: inline-block;
    float: left;
    position: relative;
    margin: 5px;
}
body.home-page .events.grid article.event-block .ticket-block {
    margin-left: 20px;
}
.events.grid article.event-block .hover-overlay {
    display: block;
    height: 320px;
    width: 100%;
    position: absolute;
    z-index: 1;
    transition: all ease-in-out 0.2s;
}
.events.grid article.event-block:hover .hover-overlay {
    background: RGBA(96, 68, 115, 0.8);
    transition: all ease-in-out 0.2s;
}
.events.grid article.event-block img.event-image {
    position: absolute;
    z-index: 0;
    height: 100%;
    min-width: 100%;
    transition: all ease-in-out 0.2s;
}
.events.grid article.event-block:hover img.event-image{
    filter: blur(5px);
    -webkit-filter: blur(5px);
    transition: all ease-in-out 0.2s;
    height: 120%;
    margin: -10%;
}
.events.grid article.event-block .ticket-block {
    position: relative;
    margin-top: 15px;
    margin-left: 10px;
    background: #f5c808;
    width: 100px;
    height: 40px;
    padding: 5px;
    z-index: 1;
    display: inline-block;
    float: left;
}
.events.grid article.event-block .ticket-block .from {
    color: #8b6815;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    line-height: 12px;
}
.events.grid article.event-block .ticket-block .price {
    color: #232020;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
}
.events.grid article.event-block .buy-block{
    position: relative;
    height: 40px;
    width: 40px;
    z-index: 1;
    margin-top: 15px;
    margin-left: 0;
    background: #000;
    display: inline-block;
    float: left;
}
.events.grid 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.grid 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.grid article.event-block .age-restrict {
    position: relative;
    margin-top: 15px;
    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;
    display: inline-block;
    float: right;
    margin-right: 10px;
    -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.grid 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.grid 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.grid 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.grid article.event-block:hover .hover-actions.view-event {
    position: relative;
    z-index: 1;
    margin: 140px auto 0;
    width: 157px;
    -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.grid article.event-block:hover .hover-actions.view-event .button { padding: 0 34px;}
.events.grid article.event-block:hover .hover-actions.actions {
    position: relative;
    height: 40px;
    width: 77px;
    z-index: 1;
    margin-top: 15px;
    line-height: 55px;
    display: inline-block;
    float: right;
    text-align: center;
    margin-right: 10px;
    -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.grid .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.grid .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.grid .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.grid .actions .save:hover,
.events.grid .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.grid article.event-block .event-information {
    position: relative;
    margin-top: 180px;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.62) 14%, rgba(0,0,0,0.85) 56%, rgba(0,0,0,0.9) 100%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.62) 14%,rgba(0,0,0,0.85) 56%,rgba(0,0,0,0.9) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%,rgba(0,0,0,0.62) 14%,rgba(0,0,0,0.85) 56%,rgba(0,0,0,0.9) 100%);
    width: 100%;
    padding-top: 10%;
    padding-left: 20px;
    z-index: 1;
    padding-bottom: 30%;
}
body.secondary-pages .events.grid article.event-block .event-information {
    padding-left: 10px;
}
.events.grid article.event-block:hover .event-information{
    background: transparent;
    margin-top: 5px;
}
.events.grid article.event-block .event-information .event-name {
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    height: 20px;
    overflow: hidden;
}
.events.grid article.event-block .event-information .event-date{
    color: #f5c808;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 16px;
    overflow: hidden;
    max-height: 20px;
}
.events.grid article.event-block .event-information .event-location{
    color: #d8d7d8;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 16px;
    background: url("../images/components/location-marker.png") no-repeat;
    padding-left: 15px;
    max-height: 16px;
    overflow: hidden;
}
.events.grid article.event-block .event-information .event-location a{
    color: #d8d7d8;
}

