﻿html {
    box-sizing: border-box;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    border: none !important;
    width: 100%;
    min-height: 100%;
    position: relative;
}

body {
    border: none !important;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
#mainNav {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
}
#wrapper {
    width: 100%;
    height: 100%;
    max-width: 650px;
    padding-top: 80px;
    padding-bottom: 50px;
}
footer {
    position: absolute;
    width: 100%;
    bottom: 0;
}
.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}


#FrameDecoderJS {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border: none;
}

.foto {
    display: flex;
    justify-content: center;
}

.contenedor {
    display: flex;
    align-items: center;
    border: 3px solid #de5c9a57;
    height: auto;
    width: 100%;
    border-radius: 50px 10px 10px 50px;
}

.contenedorError {
    display: flex;
    align-items: center;
    border: 3px solid #ff0000;
    height: auto;
    width: 100%;
    border-radius: 50px 10px 10px 50px;
}

.imagen {
    position: relative;
    width: 100px; /* ajusta el tamaño de la imagen según tu necesidad */
}

.imagen img {
    width: 100%;
    border-radius: 50%; /* para hacer la imagen redonda */
    min-width: 100px;
}

.porcentaje {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: white;
    border-radius: 50%;
    background-color: rgb(0 0 0 / 18%)
}
.porcentajeError {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: #ff0000;
    border-radius: 50%;
    background-color: rgb(0 0 0 / 18%)
}

.descripcion {
    font-size: 16px;
    margin-left: 20px;
    color: #707070;
}
.descripcionError {
    font-size: 16px;
    margin-left: 20px;
    color: #ff0000;
}

/***** SCROLL ******/

.scroll-theme::-webkit-scrollbar {
    -webkit-appearance: none;
}

.scroll-theme::-webkit-scrollbar:vertical {
    width:10px;
}

.scroll-theme::-webkit-scrollbar-button:increment,.scroll-theme::-webkit-scrollbar-button {
    display: none;
} 

.scroll-theme::-webkit-scrollbar:horizontal {
    height: 10px;
}

.scroll-theme::-webkit-scrollbar-thumb {
    background-color: #797979;
    border-radius: 20px;
    border: 2px solid #f1f2f3;
}

.scroll-theme::-webkit-scrollbar-track {
    border-radius: 10px;  
}

/****** LOADING ***********/
#section-preloader {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: url('../img/background.png');
    background-repeat: no-repeat;
    z-index: 99999999;
}