.favorite-tours .grid {
    display: flex;
    flex-wrap: wrap;
}
.favorite-tours .tour-details {
    width: calc(33.33% - 20px);
    margin: 10px;
    box-shadow: 0 3px 22px 0 rgb(0 0 0 / 13%);
    position: relative;
}
.favorite-tours .tour-details .details {
    padding: 20px;
}
.favorite-tours .tour-details img {
    width: 100%;
    object-fit: cover;
    height: 290px;
}
.favorite-tours .tour-details .tour-title {
    font-weight: 900;
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
    min-height: 50px;
}
.favorite-tours .tour-details .cheapest-price {
    font-weight: 700;
    font-size: 18px;
    color: #f5a623;
    margin-bottom: 1.25em;
    height: 26px;
}
.favorite-tours .short-desc {
    font-size: 14px;
    color: #747474;
    line-height: 1.3;
    margin-bottom: 1.25em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.favorite-tours .intro {
    font-size: 14px;
    color: #747474;
    line-height: 1.3;
    margin-bottom: 1.25em;
    height: 54px;
    position: relative;
    overflow: hidden;
}
.favorite-tours .intro:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: '';
    background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(255,255,255,.1)),to(white));
    background-image: linear-gradient(to bottom,rgba(255,255,255,.1),#fff);
}
.favorite-tours .tour-destination {
    display: flex;
    justify-content: space-between;
    height: 34px;
}
.favorite-tours .destination {
    width: 65%;
}
.favorite-tours .tour-destination span {
    font-size: 14px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.favorite-tours .days {
    width: 30%;
    text-align: right;
}
.favorite-tours .tour-details.mietwagen a.tours-info {
    margin-top: 61px;
}
.elementor-widget-au-single-tour-favorite #save-button .remove-property i {
    font-size: 60px;
}

@media (max-width: 990px) and (min-width: 768px) {
    .favorite-tours .tour-details {
        width: calc(50% - 20px);
    }
}

@media (max-width: 767px) {
    .favorite-tours .tour-details {
        width: 100%;
    }
    .favorite-tours .tour-details.mietwagen a.tours-info {
        margin-top: 10px;
    }
    .favorite-tours .tour-details .tour-title {
        min-height: auto;
    }
}