body {
    overflow: hidden;
    background-color: #e9e9e9;
    /* No permitir al usuario seleccionar texto al arrastrar */
    user-select: none;
}


.modalBackResumen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    background-image: url('/images/fondo-resumen.png');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    background-blend-mode: darken;
    z-index: 2500;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.modalBackResumen > div {
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    color: #fff;
}

.form-element input {
    background-color: #2F3032;
    border: 1px solid #393A3C;
    color: #fff;
    width: 100%;
    height: 40px;
    padding: 0.4rem;
    margin-top: 0.5rem;
    border-radius: 3px;
}

.form-element input::placeholder {
    color: #616161;
}

.desgloseTitulo {
    font-size: 1rem;
}

.desgloseDato {
    color: #a5a5a5;
    padding-left: 0.5rem;
    margin-top: 0.4rem;
    font-size: 0.9rem;
}


#configurador {
    width: 100dvw;
    height: 100dvh;
    position: relative;
    z-index: 1;
}



#aside {
    width: 25%;
    height: 100%;
    min-height: 100dvh;
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    background-image: url('/images/fondo-aside.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-blend-mode: darken;
    /* padding: 0.8rem 0.8rem 3rem 0.8rem;
    overflow-y: auto; */
}

.asideBloque {
    width: 100%;
    padding: 1.4rem;
    background-color: #ffffff20;
}

/* #canvas {
    position: absolute;
    top: 100px;
    left: 0;
    width: 75%;
    min-width: 75%;
    max-width: 75%;
    min-height: calc(100dvh - 200px);

    background-color: #d6d6d6;
} */

.btn-element {
    background-color: transparent;
    border: 0;
    padding: 5px;
    font-size: 0.6rem;
    color: #fff;
    font-weight: 100;
    border-radius: 10px;
    opacity: 1;
    transition: opacity 0.4s ease-in-out, font-weight 0.4s ease-in-out, outline 0.5s ease-in-out;
}
.btn-element img {
    width: 100%;
    max-width: fit-content;
    pointer-events: none;
}
.btn-element span {
    pointer-events: none;
    display: block;
    width: 100%;
    text-align: center;
}
.btn-element-active {
    outline: 1px solid #fff;
    font-weight: 500;
}

.opacity05 {
    opacity: 0.5;
}

.caractCont {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.btn-caracteristica {
    background-color: #2B2B2B;
    color: #909090;
    border: 0;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 100;
    border-radius: 40px;
    transition: color 0.4s ease-in-out, font-weight 0.4s ease-in-out, outline 0.5s ease-in-out, background-color 0.4s ease-in-out;
}
.btn-caracteristica span {
    width: auto;
    pointer-events: none;
}

.btn-caracteristica-active {
    color: #fff;
    font-weight: 500;
    outline: 1px solid #fff;
    background-color: transparent;
}



.slider-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #aaa;
    font-size: 10px;
    font-weight: 100;
    padding-bottom: 20px;
}

.slider {
    position: relative;
    width: 100%;
}


.slider-input {
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
    width: 100%;
    background: transparent;
    position: absolute;
    pointer-events: none; 
    height: 20px;
    top: -10px;
    padding: 0;
    margin: 0;
    outline: none;
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 15px;
    width: 15px;
    background-color: #484848;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
    outline: none;
}

.slider-input::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: #484848;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0;
    outline: none;
}

.slider-track {
    position: absolute;
    height: 2px;
    background-color: #fff;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    transform: translateY(-50%);
    padding: 0 5px;
}

.slider-track-background {
    position: absolute;
    height: 2px;
    background-color: #818181;
    top: 1px;
    left: 5px;
    right: 0;
    z-index: 0;
    transform: translateY(-50%);
}


.slider-values {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 10px auto 0;
    font-weight: 400;
    color: #fff;
    font-size: 12px;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-values span {
    position: absolute;
    top: 5px; 
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
}

.avisoVacio {
    font-size: 0.8rem;
    font-weight: 100;
    color: #fff;
    margin-top: 10px;
}


.paso {
    height: 100%;
    min-height: 100%;
    padding: 1rem 1rem 90px 1rem;
    overflow-y: auto;
    position: relative;
}

/* Estilos para navegadores WebKit (Chrome, Safari, Edge) */
.paso::-webkit-scrollbar {
    width: 12px; /* Ancho de la barra de desplazamiento */
}

.paso::-webkit-scrollbar-track {
    background: transparent; /* Fondo transparente para el track */
}

.paso::-webkit-scrollbar-thumb {
    background-color: #353535; /* Color de la barra */
    border-radius: 6px; /* Esquinas redondeadas */
    border: 3px solid transparent; /* Margen alrededor del thumb para más espacio */
    background-clip: padding-box; /* Para evitar que el borde transparente tape el color */
}

/* Para Firefox */
.paso {
    scrollbar-width: thin; /* Establece el ancho de la barra de desplazamiento */
    scrollbar-color: #353535 transparent; /* Color de la barra y del fondo (track) */
}


.changePaso img, .changePaso span {
    pointer-events: none;
}


.btn-color {
    background-color: transparent;
    border: 0;
    color: #fff;
    font-weight: 100;
    padding: 5px;
    margin-top: 1rem;
    text-align: left;
    font-size: 0.8rem;
    border-radius: 10px;
    opacity: 1;
    transition: opacity 0.4s ease-in-out, font-weight 0.4s ease-in-out, outline 0.5s ease-in-out;
}
.btn-color > div {
    pointer-events: none;
}
.btn-color > div:first-child {
    width: 16px !important;
    height: 16px !important;
    border-radius: 50%;
    aspect-ratio: 1/1;
}

.btn-color-active {
    outline: 1px solid #fff;
    font-weight: 500;
}

.btn-volver {
    background-color: transparent;
    border: 0;
    padding: 0;
    color: #fff;
    font-weight: 100;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 0.8rem;
}
.btn-volver img {
    width: 18px;
    height: 18px;
    margin-right: 0.5rem;
}

.contBotones {
    position: fixed;
    bottom: 0;
    right: 0rem;
    padding: 1rem;
    width: 25vw;
}


.controles {
    position: absolute;
    bottom: 0vh;
    left: 2rem;
    z-index: 20;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    height: 10vh;
    /* padding-top: 0.5dvh; */
    width: calc(70vw - 4rem);
    gap: 0.5rem;
    background-color: #f0f0f0;
}

.controlesCont {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #f0f0f0;
    padding: 1.3dvh 0rem 1vh 0rem;
    gap: 1rem;
}

#control-color {
    height: 45px;
    width: 45px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(210, 210, 255);
    border-radius: 50%;
}
    #control-color input {
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 1;
        opacity: 0;
    }

    #control-color label {
        background-color: #808080;
        border: 1px solid #CCC;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-weight: 500;
        position: relative;
        height: 45px;
        width: 45px;
        border-radius: 50%;
        padding-block: 0px;
        padding-inline: 0px;
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 2;
    }

.controlesCont button {
    background-color: #FFF;
    border: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    position: relative;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid #eee;
}



.controlesCont button:active {
    border: 1px solid #273583 !important;
}

.controlesContButtonActive {
    border: 1px solid #273583 !important;
}

.controlesCont button img {
    width: 17px;
    max-width: 17px;
    /* margin-bottom: 8px; */
    pointer-events: none;
    object-fit: contain;
}

.controlesCont button span,.controlesCont div span {
    display: none;
    width: fit-content;
    text-align: center;
    font-size: 0.65rem;
    line-height: 0.9rem;
    color: #000;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    bottom: -1.4rem;
    transform: translateX(-50%);
    padding: 5px;
    border-radius: 5px;
}

.controlesCont button:hover span {
    display: block;
}

.controlesCont div:hover span {
    display: block;
}

/* #projectName {
    position: absolute;
    bottom: 2rem;
    right: 35vw;
    z-index: 22;
} */