.custom-icon {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;

    color: white;
    display: flex;
}

.custom-icon>span {
    width: 24px;
    height: 24px;
    background-image: url('/themes/default/images/icons/marker.svg');
    background-size: contain;
    filter: var(--icon-filter-primary);
    transition: opacity 0.3s;

}
.custom-icon>span.semitransparent {
    opacity: 0.4;
}

.leaflet-popup-tip-container {
    left: 46%;
}

.leaflet-popup-content-wrapper {
    padding: 0;
    overflow: hidden;
}

.leaflet-popup-content {
    width: 265px !important;
    margin: 0;
}

.leaflet-container a.leaflet-popup-close-button {
    display: none;
}

.interactive-map__hotel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.interactive-map__hotel>img {
    width: 100%;
}

.interactive-map__hotel>.interactive-map__hotel__content {
    width: 100%;
    padding: 0 16px 16px;
}

.interactive-map__hotel span {
    display: block;
}

.interactive-map__hotel .interactive-map__hotel__content__name {
    font-size: 16px;
}

.interactive-map__hotel a.interactive-map__hotel__content__link {
    font-weight: bold;
    margin-top: 7px;
    color: #333;
    display: flex;
    text-transform: lowercase;
}

.interactive-map__hotel__content__link:hover {
    color: #333;
}

.interactive-map__hotel-image {
    width: 50%;
    height: 150px;
    object-fit: cover;
    background-size: 30%;
    background-position: 50%;
    background-repeat: no-repeat;
}

.interactive-map__hotel .interactive-map__hotel__content__price {
    margin: 16px 0 0;
    font-size: 12px;
}

.interactive-map__hotel .interactive-map__hotel__content__price strong {
    font-weight: bold;
    font-size: 16px;
}

.interactive-map__hotel .interactive-map__hotel__content__address {
    color: var(--title-color);
    font-size: 12px;
    transition: all 0.3s;
    text-decoration: none;
    text-wrap: balance;
}

.interactive-map__hotel .interactive-map__hotel__content__address:hover {
    color: var(--button-color);
    filter: brightness(0) saturate(100%) invert(28%) sepia(67%) saturate(2539%) hue-rotate(322deg) brightness(101%) contrast(94%);
}

.interactive-map__hotel .interactive-map__hotel__content__address img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}


.interactive-map__hotel__content__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 8px;
    row-gap: 8px;
    column-gap: 8px;
    flex-direction: row;
}

.interactive-map__hotel__content__buttons a {
    cursor: pointer;
    display: inline-block;
    border: 1px solid var(--button-color);
    color: var(--title-color);
    position: relative;
    padding: 8px 5px;
    text-decoration: none;
    position: relative;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: fit-content;
}

.interactive-map__hotel__content__buttons .btn-book {
    background-color: var(--button-color);
    color: white;
    padding: 8px 5px;
}

.interactive-map__hotel__content__buttons .btn-book::after {
    height: 0;
}

@media (max-width: 992px) {
    #interactive-map {
        width: 90%;
        margin: 0 auto 60px;
        height: 350px;
    }

    .leaflet-popup-content {
        width: 240px !important;
    }

    .interactive-map__hotel {
        flex-direction: column;
        gap: 10px;
    }

    .interactive-map__hotel-image {
        width: 100%;
        height: 150px;
    }
}