﻿.carousel-item {
    min-height: 200px;
    max-height: 550px;
}

.cardb {
    height: 500px !important
}

.cards {
    height: 240px !important
}

.alturaViewer {
    height: 350px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}
.comparte {
    font-size:1.5rem
}

.icono2 {
    height: 18px;
}

.icono {
    height: 20px;
}

.icono-xl {
    height: 30px;
}

.comparte.show {
    border: 1px solid #a8bed6;
}

.thumb {
    height: 8rem !important;
}
.btn-whatsapp {
    border:0;
    padding:0;
    margin: 0 5px;
    background-color:transparent;
}
@media (min-width: 550px) and (max-width: 767px) {
    .thumb {
        height: 10rem !important;
    }
}

@media (min-width: 1000px) {
    .thumb {
        height: 12rem !important;
    }
}

.fotoBKG {
    background-position: center;
    background-size: cover;
}

ul li, ol li, dt li {
    margin-bottom: .25rem;
}

.map {
    z-index: 99;
}

.chat-bubble {
    padding: 6px 8px;
    border-radius: 18px;
    margin-bottom: 8px;
    position: relative;
}

.chat-user {
    background-color: #D9FDD3;
    color: #0f5132;
    align-self: flex-end;
    border-bottom-right-radius: 0;
    font-weight: 400;
}

.chat-ia {
    background-color: #cfe3f5;
    color: #41464b;
    align-self: flex-start;
    border-bottom-left-radius: 0;
    font-weight: 500;
}

.chat-container-flex {
    display: flex;
    flex-direction: column;
}

.bubble-wrapper-user {
    display: flex;
    justify-content: flex-end;
}

.bubble-wrapper-ia {
    display: flex;
    justify-content: flex-start;
}

.chat-bubble em {
    color: #666;
    font-style: italic;
    animation: parpadeo 1.5s infinite ease-in-out;
}

@keyframes parpadeo {
    0%, 100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.bg-chat {
    background-image: url(/v25/fondo.jpg);
    background-position: top left;
}

.chat-bubble-fin {
    background-color: #ffe9e9;
    border: 2px dashed #ff4e4e;
    color: #a30000;
    font-weight: bold;
    padding: 12px;
    margin: 10px;
    border-radius: 8px;
    text-align: center;
}

.chat-escribiendo {
    background-color: #dce2f6;
    color: #666;
    border-radius: 18px;
    padding: 10px 14px;
    font-style: italic;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

    .chat-escribiendo .dot {
        height: 6px;
        width: 6px;
        background-color: #999;
        border-radius: 50%;
        animation: aparecerDot 1.2s infinite;
        opacity: 0;
    }

        .chat-escribiendo .dot:nth-child(1) {
            animation-delay: 0s;
        }

        .chat-escribiendo .dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .chat-escribiendo .dot:nth-child(3) {
            animation-delay: 0.4s;
        }

@keyframes aparecerDot {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

