html {
    font-size: 18px;
}

#softAlertsZone {    
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
}

.scroll {
    max-height: 50vh;    
    overflow-y: auto;
}

/* Ch4rly */
.chat-container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.chat-header {
    background-color: #075e54;
    color: white;
    padding: 10px;
    text-align: center;
}

.chat-body {
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    max-width: 70%;
    display: inline-block;
}

.message.sent {
    background-color: #dcf8c6;
    align-self: flex-end;
    text-align: right;
}

.message.received {
    background-color: #fff;
    border: 1px solid #ddd;
    align-self: flex-start;
}

.chat-footer {
    padding: 10px;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
}

.chat-footer input {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 5px;
}

.chat-footer button {
    margin-left: 10px;
    background-color: #25d366;
    border: none;
    padding: 8px 12px;
    color: white;
    border-radius: 5px;
}

/* Ch4rly FIN*/


p {
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.ik-fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-white);
    z-index: 10000;
}

#ik-blackout {
    display: none;
    position: absolute;
    background-color: white;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.ik-mainmap-area-modal {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    overflow: hidden;
    z-index: 1044;
}

#ik-waiting {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 10000;
}

#ik-waiting div {
    margin-top: 50vh;
}

#ik-invisible-modal {
    background-color: rgba(255, 255, 255, 0);
    z-index: 20000;
    /* valor alto para ser el superior*/
}


/** ANIMACIONES **/
@-webkit-keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0.5;
    }
}

@keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0.5;
    }
}

.flash {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flash;
    animation-iteration-count: infinite;

    animation-name: flash;
}

.flash-it-5 {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flash;
    animation-iteration-count: 5;

    animation-name: flash;
}

@-webkit-keyframes appear {
    0% {
        opacity: 0;
    }

    50%,
    100% {
        opacity: 1;
    }
}

@keyframes appear {

    0% {
        opacity: 0;
    }

    50%,
    100% {
        opacity: 1;
    }
}

.appear {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: appear;
    animation-iteration-count: 1;

    animation-name: appear;
}

.opacity-0 {
    opacity: 0;
}

/**END ANIMACIONES **/