html {
    font-size: 18px;

    --bs-popover-bg: white;
    --bs-popover-border-width: 1px;
    --bs-popover-border-color: #dee2e6;
    --bs-popover-border-radius: 0.5rem;
    --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/** Etiquetas para no mostrar en print de pantalla */
@media print {
    .no-print {
        display: none !important;
    }

    .card {
        display: none !important;
    }
}

#header{
    margin-bottom: 0.25rem;
}

.doughnut-chart-infill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 3rem;

    visibility: visible !important;
}

.badge {
    font-size: 90%;
}


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

.scroll {
    max-height: 48vh;
    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;
}

iframe.ql-video {
    width: 100% !important;
    height: 400px !important;
}

/* 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 **/

/** Eye Tracker **/
.ik-eyes-container {
    margin-bottom: 50px;
    margin-left: -27px;
}

.ik-eyes-container img {
    position: absolute;
    z-index: 2;
}

.ik-eyes {
    position: absolute;
    top: -32px;
    left: 0;
    scale: 0.2;

    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    column-gap: 20px;

    z-index: 1;
}

.ik-eye-left {
    margin-right: 110px;
}

.ik-eye {
    width: 85px;
    height: 70px;
    border-radius: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ik-pupil {
    width: 40px;
    height: 40px;
    border-radius: 101px;
    background-color: #000;
}

/** End eye Tracker **/