.event-grid-item {
    display: block;
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    transition: all 200ms ease-in-out;

    &:hover {
        text-decoration: none;
        transition: all 200ms ease-in-out;


        .card {
            -webkit-box-shadow: 0 2px 2px #d8e2f3;
            box-shadow: 0 2px 2px #d8e2f3;
            transition: all 200ms ease-in-out;
        }
    }
}

.event-day {
    font-size: 30px;
    font-weight: bold;
    margin-right: 15px;
    margin-left: 15px;
    color: $primary;
    line-height: 50px;
}

.event-month {
    display: block;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    color: $gray-9;
}

.event-list-thumbnail {
    margin: 0;
    margin-right: 30px;
}

.event-time {
    display: block;
    color: $gray-9;
}


.event-body {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background-position: center;
    background-size: cover;
    min-height: 240px;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
}

.z-index-top {
    z-index: 99;
}

.event-bg-overflow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
}

.event-country-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    z-index: 5;
}

.flag-icon-xl {
    transform: scale(1.5);
    margin-right: 5px;
    position: relative;
    top: -4px;

}

.flag-icon-xxl {
    transform: scale(1.5);
    margin-right: 5px;

}

.event-location {
    color: #fff;
    font-size: 14px;
    background: rgb(3 169 244 / 62%);
    padding: 3px 5px;
    z-index: 5;
    color: #fff;
    border-radius: 5px;
}

