.want-visit {
    width: calc(20% - 10px);
    height: 200px;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.want-visit img {
    border-radius: inherit;
}

.want-visit-wrap.want-visit-wrap--loader .want-visit {
    -webkit-animation: tableLoader 5s infinite;
    animation: tableLoader 5s infinite;
}

@keyframes tableLoader {
    0% {
        background-color: #eeeeee;
    }
    50% {
        background-color: #d9d9d9;
    }
    100% {
        background-color: #eeeeee;
    }
}

.want-visit-wrap {
    width: calc(100% + 10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    gap: 10px;
    flex-wrap: wrap;
}

.want-visit.want-visit--more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #475669;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #d0dce3;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
}

.want-visit .want-visit__add:hover {
    color: #318cc6;
    background: #ffffff;
}

.want-visit .want-visit__add {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0 15px;
    line-height: 20px;
    font-family: 'apercu_pro', sans-serif;
    position: absolute;
    border-radius: 3px;
    border: none;
    bottom: 10px;
    color: #215f86;
    left: 10px;
}


.want-visit .want-visit__hotel span {
    display: inline-block;
    vertical-align: bottom;
    max-width: calc(100% - 20px);
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.want-visit .bth__hearts-rate .bth__hearts-rate-i {
    margin: 0 2px;
    background-position: center;
}

.want-visit .bth__hearts-rate {
    padding: 0 5px 3px 5px;
    position: absolute;
    left: 10px;
    border-radius: 5px;
    top: 35px;
    background: rgba(255, 255, 255, 0.88);
}

.want-visit .want-visit__hotel {
    font-size: 10px;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.73);
    font-weight: bold;
    color: #475669;
    text-transform: uppercase;
    z-index: 1;
}

.want-visit-paginator {
    display: none;
    border: none;
    background: #eeeeee;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    color: #ff8e41;
    width: 100%;
    line-height: 40px;
    border-radius: 5px;
    font-family: inherit;
    font-weight: bold;
}

.want-visit-paginator .bth__loader-spin {
    display: inline-block !important;
}

.want-visit-paginator .bth__loader-spin i {
    margin: 0;
    font-size: 3px;
}

@media screen and (max-width: 1400px) {
    .want-visit {
        width: calc(25% - 10px);
    }
}

@media screen and (max-width: 1023px) {
    .want-visit {
        width: calc(33.3% - 10px);
    }
}

@media screen and (max-width: 767px) {
    .want-visit {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 599px) {
    .want-visit-paginator ~ * {
        display: none;
    }

    .want-visit-paginator {
        display: block;
    }
}
@media screen and (max-width: 423px) {
    .want-visit {
        width: 100%;
    }

    .want-visit-wrap {
        width: 100%;
        gap: 10px;
    }
}