.event_filer_panel_wrap{
    display: flex;
}
.event_filer_panel {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}
.event_filer_panel input{
    display: none;
}
.event_filer_panel input+label{
    display: block;
    padding: 8px 20px;
    line-height: 1.2;
    cursor: pointer;
    margin: 0;
}
.topic_filter{
    border-right: 1px solid #ccc;
}
.event_filer_panel .topic_filter:last-child{
    border: none;
}
.event_filer_panel input:checked+label{
    background-color: #4460EF;
    color:#fff;
}

.event_item_wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-gap: 40px 24px;
    position: relative;
}
.event-item .link_overlay{
    position: absolute;
    display: block;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    opacity: 0 !important;
}
.event-item{
    position: relative;   
    background: rgb(255 255 255 / 59%);
    backdrop-filter: blur(3px);
    border-radius: 12px;
	transition:.2s;
}
.event-item:hover{
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, .15);
}
.event-item .featured{
    position: relative;
    padding-bottom: 56.2%;
    border-radius: 12px;
    overflow: hidden;
}
.event-item .featured img{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	transition:.3s linear;
}
.event-item:hover .featured img{
	transform:scale(1.1);
}
.event-date {
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
}
.e_d {
    font-size: 16px;
    color: #888;
}
.e_n {
    font-weight: bold;
    font-size: 30px;
}
.e_d {
    font-size: 18px;
    color: #888;
}
.event_d_t {
    flex-basis: calc(100% - 50px);
    width: calc(100% - 50px);
}

.event-title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 6px;
    letter-spacing: -0.02em;
}
.event_filer_panel_wrap {
    margin-bottom: 40px;
}

.page-numbers, .page-numbers:hover {
    background: #4460ef;
    padding: 10px 10px;
    display: block;
    line-height: 1;
    color: #fff;
    margin: 0 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 40px;
    justify-content: center;
    border-radius: 8px;
}
.page-numbers.current, .page-numbers.current:hover{
    background-color: #ccc;
    color:#000;
}
.blog_paginate_wrap.ajax_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:40px
}

.ajax_loader .circle{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}
.ajax_loader .circle svg{
    margin: auto;
    animation: spin 2s linear infinite;
}
.event_content {
    display: flex;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 10px 0;
}
.event-time {
    font-size: 16px;
    line-height: 1;
}
.no-event-fount {
    text-align: center;
    font-size: 24px;
}
.event-short-details {
    line-height: 1.2;
    margin-top: 8px;
    font-size: 16px;
}
.e_m {
    font-weight: bold;
    font-size: 16px;
}
@keyframes spin{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

@media (max-width: 600px){
    .event_item_wrapper{
        grid-template-columns: 1fr;
    }
}