.cursor_poiner
{
    cursor: pointer;
}

#idioma_english, #idioma_español
{
    opacity: 0;
}

.no_visible_siempre
{
    display: none;
}
.no_visible
{
    display: none;
}
@media (max-width: 840px)
{
    .no_visible
    {
        display: block;
    }
}

.img_cover_heigh
{
    height: 80vh !important;
    object-fit: cover;
    object-position: center;
}

.border_letter
{
    color: transparent;              /* Quita el relleno */
    -webkit-text-stroke: 1px #000000; /* Grosor y color del contorno */
    font-weight: 400;
    padding: 0 10px;
}

.w-85px
{
    width: 120px;
}

/* Flecha menú Hoteles siempre negra */
.barratop ul li > a .icon
{
    color: #000000;
}

/* Popup imagen promocional */
.overlay-promo
{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9998;
}

.popup-promo
{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    max-width: 90vw;
    max-height: 90vh;
}

@media (max-width: 768px)
{
    .popup-promo
    {
        width: 95vw;
        max-width: 95vw;
    }
}

.popup-promo img
{
    display: block;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.popup-promo-cerrar
{
    position: absolute;
    top: -14px;
    right: -14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}