.card-labels-container {
    position: absolute;
    top: 12px;
    left: -8px;
    z-index: 1;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.card-labels-container.mobile {
    left: 0;
}
.card-label {
    position: relative;
    display: flex;
    align-items: center;
    align-self: flex-start;
    padding: 8px;
    border-radius: 8px 8px 8px 0;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    color: white;
    margin-bottom: 8px;
    width: auto;
}

.card-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 0;
    border-top: 8px solid currentColor;
}

.card-label.guests-choice {
    background: #9FE870;
    color: #163300;
}

.card-label.guests-choice::after {
    border-top-color: #3B840C;
}

.card-label.luxury-option {
    background: #FFD7EF;
    color: #320707;
}

.card-label.luxury-option::after {
    border-top-color: #AF879F;
}

.card-label.high-demand {
    background: #FFEB69;
    color: #3A341C;
}

.card-label.high-demand::after {
    border-top-color: #9B8705;
}

.card-label.recently-booked {
    background: #A0E1E1;
    color: #163300;
}

.card-label.recently-booked::after {
    border-top-color: #468787;
}

.card-label.sale-label {
    background: #FF2D55;
    color: white;
}

.card-label.sale-label::after {
    border-top-color: #C30019;
}

.card-label img {
    width: 15px;
    height: auto;
    margin-right: 4px;
    flex-shrink: 0;
    vertical-align: middle;
}

.fp-search-card {
    position: relative;
    overflow: visible;
}