.filterblock {
    padding: 0.6em 0 0.2em 0;
    color: var(--gold);
    background: #fff;
    display: flex;
    flex-wrap: wrap;

}
input[type="checkbox"],input[type="radio"] {
    display: none;
}
.filter_point{
    background-color: #ffffff;
    padding: 1px 10px ;
    border: 1px solid var(--lgray);
    border-radius: 6px;
    margin: 0 15px 10px 0;
    font-size: 16px;
    cursor: pointer;
    transition: .3s;
    user-select: none;
}
.filter_point:hover{
    background-color:var(--lgray);
}

.filter_point.avail {
    background-color:var(--red);
    color: #ffffff;
    border-color: var(--red);
    font-size: 20px;
}
.filter_point.avail:hover{
    background-color: #ffffff;
    color: var(--red);
    border: 1px solid var(--lgray);
}
.filter_point.avail .fa-arrow-right{
    transition: .6s;
}
.filter_point.avail:hover .fa-arrow-right{
    padding-left: 15px;
}

.filter_point.checked{
    background-color: var(--red);
    border-color: var(--red);
    color: #ffffff;
}

.excurs {
    box-shadow: 0px 4px 8px 0px #00000022;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.4s;
}

.tour_map{
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all.7s;
}

.excurs:hover {
    box-shadow: 0px 6px 16px 2px #00000030;
}

.excurs:hover .tour_map{
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 0 100px #000000);
}
.excurs:hover .excurs-title{
    top: 60%;
    opacity: 0;
}

.excurs:hover .excurs-img::after{
    opacity: 0;
}

.excurs-text {
    font-size: 16px;
    line-height: 26px
}
/* 
.discount {
    background: url("/images/off.svg");
    background-repeat: no-repeat;
    color: white;
    padding-left: 7px;
    font-weight: 500;
}
 */
.excurs-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    z-index: 0;
}

.excurs-img::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;bottom: 0;right: 0;left: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1),
                    rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    transition: .4s;
}
.excurs-title{
    color: #ffffff;
    text-align: center;
    padding: 10px 5px 5px;
    position: absolute;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    width: 90%;
    margin-left: 5%;
    transition: 0.5s;
}

.bestseller {
    /*  background-image: url("/images/front/bests.svg"); */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 100% 0;
    width: 151px;
    height: 100px;
    top: -24px;
    right: -5px;
    z-index: 3;
}
.garant {
    background-image: url("/images/front/garant.svg");
    right: 2px;
}

.pagination {
    justify-content: center;
}

.page-item.active .page-link {
    background-color: var(--gray);
    border-color: var(--gray);
}
.pagination .page-item {
    cursor: pointer;
}
.event_dates{
    position: absolute;
    background-color: #2a2926a0;
    color: #f7f5ee;
    top: 15px;
    left: 16px;
    padding: 17px 14px 8px 21px;
    border-bottom-right-radius: 9px;
}
.event_point{
    position: absolute;
    background-color: #ffffffe6;
    bottom: 20px;
    left: 0;
    padding: 7px 13px 2px 20px;
    border-radius:0 20px 20px 0;
}
.event_item img.event_img{
    height: max(30vw, 240px);
    max-height: min(70vh, 240px);
    width: 100%;
    object-fit: cover;
}
img.event_marker{
    height: 32px;
    padding-right: 4px;
    padding-bottom: 5px;
}
.event_item:hover{
    box-shadow:0 3px 10px #dadada;
}

@media (max-width: 768px) {
    .bestseller {
        height: 80px;
        right: 5px;
    }
/*     #book_this{
        padding:0.3em 1em;
    } */
    .excurs-text {
        font-size: 13px;
        line-height: 22px
    }

    .excurs .white_btn {
        margin: auto;
    }
    .excurs-img img {
        height: 200px;
    }

    .excurs_rating {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

/*     .excurs{
        grid-gap: 4px;
    }
     */
    .excurs-title{
        font-size: 1.4rem;
        padding-top: 1rem;
    }
}

@media (max-width: 576px) {


    .excurs_rating, .excurs_price, .excurs_price h4 {
        font-size: .875rem;
        margin-bottom: 0;
    }
}