body {
    min-width: 100vw;
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    position: relative;
    background-color: #f0f0f0;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
}

.pantalla {
    z-index: 10;
    display: none;
    background-color: #f0f0f0;
    width: 100vw;
    height: 100vh;
    position: absolute;
}

#pantalla-configurador {
    z-index: 1;
    display: block
}

.etiqueta {
    position: absolute;
    width: auto;
    height: 30px;
    background-color: #FFF;
    color: #000;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 400;
    z-index: 3;
    padding: 0rem 2rem;
    border-radius: 20px;
    border: 1px solid #DDD;
    white-space: nowrap;
}

.etiqueta-derecha {
    top: 5px;
    left: 60px;
}

.etiqueta-arriba {
    bottom: 45px;
    /* width: 120px; */
    /* Central horizontalmente */
    left: calc(50% - 80px);
}


#logo img {
    width: 160px;
    max-width: 9vw;
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 100;

}

#menu {
    width: 20vw;
    height: 100vh;
    border-left: 1px solid #DDD;
    background-color: #f0f0f0;
    position: absolute;
    top: 0px;
    right: -20vw;
    z-index: 150;
    transition: right 0.5s; /* Animación */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

    #menu-top {
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        border-bottom: 0px solid #000;
        padding: 0rem 1rem;
        font-weight: 600;
    }

    #menu-top button {
        width: 30px;
        height: 30px;
        padding: 0px;
        border: 0px;
        background-color: transparent;
        cursor: pointer;
        margin-left: auto;
    }

    .menu-item {
        width: 100%;
        height: 50px;
        background-color: #f0f0f0;
        border: 0px;
        border-bottom: 0px solid #AAA;
        padding: 0rem 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 500;
        font-size: 1.2rem;
        cursor: pointer;
        text-align: center;
    }

    .menu-item img {
        width: 13px;
        height: 13px;
        margin-right: 1rem;
    }


header {
    width: 100vw;
    height: 10vh;
    background-color: #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0rem 2rem;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 10;
}

    #logo {
        width: auto;
        height: 35px;
    }

    #btn-menu {
        width: 50px;
        height: 50px;
        background-color: transparent;
        border: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        #btn-menu img {
            width: 40px;
            height: 40px;
        }

    #btn-login {
        width: auto;
        height: 50px;
        background-color: transparent;
        border: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        color: #FFF;
    }

        #btn-login img {
            width: 20px;
            height: 20px;
        }

        #btn-login:hover {
            text-decoration: underline;
        }

#btn-back {
    width: 40px;
    height: 40px;
    padding: 0px;
    border: 1px solid #DDD;
    position: absolute;
    top: 23vh;
    left: 2.5rem;
    background-color: transparent;
    cursor: pointer;
    z-index: 100;
    border-radius: 50%;
    display: none;
}

#resumen {
    min-width: 340px;
    width: 13vw;
    max-width: 13vw;
    height: auto;
    min-height: 300px;
    border: 1px solid #17243D;
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    z-index: 3;
    padding: 1rem 1rem 4.4rem 1rem;
    background-color: #FFF;
    display: none;
}

#resumen-total {
    position: absolute;
    bottom: 2rem;
    right: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

#resumen-cerrar {
    position: absolute;
    bottom: 0.5rem;
    right: 0rem;
    text-align: center;
    width: 100%;
}

#resumen-cerrar button {
    border: 0px;
    background-color: transparent;
    cursor: pointer;
    color: #888;
}

#resumen-cerrar button:hover {
    text-decoration: underline;
}

#precio {
    position: absolute;
    bottom: 0vh;
    left: 0rem;
    font-size: 2rem;
    font-weight: 600;
    width: 10vw;
    max-width: 10vw;
    text-align: center;
    padding-bottom: 1rem;
    z-index: 3;
}

#desglose {
    position: absolute;
    bottom: 3vh;
    left: 9vw;
    font-size: 0.9rem;
    font-weight: 400;
    width: 10vw;
    max-width: 10vw;
    text-align: center;
    z-index: 3;
    cursor: pointer;
}

#desglose:hover {
    text-decoration: underline;
}

.canvas-div {
    position: absolute;
    top: 10vh;
    left: 2rem;
    width: calc(70vw - 4rem);
    height: 80vh;
    background-color: transparent;
    border: 0px solid #AAA;
    opacity: 1;
    z-index: 1;
    /*transition: width 0.5s;  Animación */
}

.canvas-max {
    position: absolute;
    top: 0vh;
    left: 0rem;
    width: 100dvw;
    height: 100vh;
    z-index: 15;
}

/* #controles {
    position: absolute;
    bottom: 3vh;
    left: 2rem;
    min-width: 200px;
    width: auto;
    height: 5vh;
    display: flex;
    background-color: transparent;
    justify-content: center;
    align-items: center;
    gap: 0rem;
    transition: width 0.5s;
    z-index: 2;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

    #controles button {
        width: 60px;
        height: 60px;
        padding: 0px;
        border: 1px solid #000;
        background-color: transparent;
        cursor: pointer;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    #controles > img {
        height: 50px;
    }

    #controles button > div {
        font-size: 0.7rem;
        font-weight: 400;
    } */


#panel-derecha {
    width: calc(30vw - 2rem);
    height: 80vh;
    position: absolute;
    top: 10vh;
    right: 2rem;
    background-color: #f0f0f0;
    z-index: 2;
    overflow: hidden;
    transition: right 0.5s; /* Animación */
    overflow-y: auto;
    border: 1px solid #273583;
    padding: 0.6rem;
}

#panel-derecha-secciones-cont {
    width: 100%;
    height: 80vh;
    max-height: 80vh;
    
}

#panel-derecha-abajo {
    width: 100%;
    height: 50px;
    background-color: #f0f0f0;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

    #btn-finalizar {
        width: auto;
        height: 50px;
        background-color: #000;
        color: #fff;
        border: 0px;
        font-size: 1rem;
        cursor: pointer;
        text-align: left;
        padding: 0rem 1.3rem;
        position: absolute;
        right: 2rem;
        bottom: 1rem;
    }

    #btn-finalizar:disabled {
        opacity: 0.2;
        cursor: not-allowed;
    }

    #btn-finalizar-mobile {
        display: none;
    }

/* Cada apartado del panel derecha */
.panel-seccion {
    width: 100%;
}
    /* Titulo de cada apartado, al hacer clic despliega/oculta */
    .panel-seccion-titulo {
        width: 100%;
        height: 26px;
        background-color: transparent;
        color: #273583;
        font-size: 0.9rem;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        border: 0px solid #FFF;
        padding: 0rem;
        border-bottom: 1px solid #273583;
        font-weight: 600;
        margin-bottom: 0.6rem;
    }

        .panel-seccion-titulo span {
            font-size: 0.9rem;
            font-weight: 500;
        }

        .panel-seccion-titulo img {
            width: 20px;
            height: 20px;
            margin-left: auto;
            transition: transform 0.4s; /* Animación */
        }

    .panel-seccion-titulo-activa {
        /* background-color: #000 !important; */
        /* color: #FFF !important; */
    }

    /* Contenido de cada apartado cuando se ha desplegado */
    .panel-seccion-content {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        column-gap: 2%;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        height: auto;
        transition: height 0.4s;
        overflow-y: hidden;
        /* scrollbar-width: none; */
        padding: 0rem;
        margin-bottom: 0.2rem;
    }

    .panel-seccion-content-interior {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
        height: auto;
        padding: 1rem;
    }

    /* .panel-seccion-content::-webkit-scrollbar {
        display: none;
    } */

    .panel-seccion-content-activa {
        /* display: flex !important; */
        /* padding: 0.8rem 0.5rem;
        height: calc(80vh - 350px) !important;
        overflow-y: auto; */
    }

    /* Oculta el fondo de la barra de scroll */
    .panel-seccion-content-activa::-webkit-scrollbar {
        width: 12px; /* Ancho de la barra de scroll */
        background-color: transparent; /* Fondo transparente */
    }
    
    /* Cambia el color de la barra de scroll */
    .panel-seccion-content-activa::-webkit-scrollbar-thumb {
        background-color: #888; /* Color del thumb (la parte que se mueve) */
        border-radius: 8px; /* Bordes redondeados */
    }
    
    /* Opcional: Cambia el color cuando el thumb esté en hover */
    .panel-seccion-content-activa::-webkit-scrollbar-thumb:hover {
        background-color: #000;
    }
    
    /* Para Firefox (scrollbar-color y scrollbar-width son propiedades nativas) */
    .panel-seccion-content-activa {
        scrollbar-color: #888 transparent; /* Color del thumb y el fondo */
        scrollbar-width: thin; /* Ancho de la barra de scroll */
    }
  

        /* Cada item dentro del apartado */
        .panel-item-cont {
            width: 31%;
            height: 150px;
            background-color: transparent;
            color: #000;
            border: 0px;
            border-radius: 0px;
            font-size: 0.9rem;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            cursor: pointer;
            margin-bottom: 1rem;
        }

        .panel-item-with-options {
            width: 100%;
            height: 150px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            cursor: pointer;
            background-color: transparent;
            color: #000;
            border: 0px;
        }

        .panel-item {
            width: 32%;
            height: auto;
            background-color: transparent;
            color: #273583;
            border: 0px;
            border-radius: 0px;
            font-size: 0.8rem;
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 0.3rem;
            cursor: pointer;
            margin-bottom: 1rem;
        }


        .panel-item:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .panel-item-active {
            border: 1px solid #000;
        }


        /* Retoque de bordes */

            .panel-item div {
                display: flex;
                justify-content: flex-start;
                align-items: flex-start;
                flex-direction: column;
            }

            .panel-item input {
                margin: 2px 0px 0px 0px;
                padding: 0rem;
                width: 12px;
                height: 12px;
                background-color: transparent;
                appearance: none; /* Elimina el estilo predeterminado del navegador */
                -webkit-appearance: none;
                -moz-appearance: none;
                border: 1px solid #273583; /* Borde inicial */
                background-color: transparent;
                border-radius: 50%; /* Forma circular */
                outline: none;
                cursor: pointer;
                margin: 0; /* Quita márgenes */
                padding: 0; /* Quita cualquier padding */
            }

            .panel-item input:checked  {
                background-color: #273583;
            }

            .panel-item img, .panel-item-with-options img {
                height: 40px;
                object-fit: cover;
                width: 40px;
                border: 1px solid #273583;
                margin-top: 5px;
            }

            .panel-item label, .panel-item-with-options label {
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                cursor: pointer;
            }

            .panel-item-opciones {
                display: none;
                width: 100%;
                justify-content: center;
                align-items: center;
                gap: 10px;
            }

            .panel-item-opcion {
                font-size: 0.8rem;
                padding: 0px;
                background-color: #f0f0f0;
                border: 0px;
            }

            #destinoLuminarias {
                background-color: #FFF;
                border: 1px solid #dddddd;
                padding: 0.5rem 0.3rem 0.3rem 0.3rem;
            }

            .luminaria {
                padding: 0px;
                background-color: transparent;
                border: 0px;
                transition: background-color 0.3s ease-in;
                border: 0px;
                width: 31%;
            }

            .luminaria img {
                width: 40px;
                height: 40px;
                border: 1px solid #273583;
            }

            .luminaria div {
                width: 100%;
                font-size: 0.75rem;
                color: #273583;
                margin-top: 0.3rem;
            }

            .luminaria:hover img {
                /* background-color: #FFF; */
                outline: 1px solid #273583;
            }
        
.modal-back-promo {
    background-color: #00000097;
    color: #FFF;
    padding: 1rem;
    border-radius: 0px;
    text-align: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 5000;
}

.modal-front-promo {
    background-color: #FFF;
    padding: 0.3rem;
    border-radius: 5px;
    text-align: center;
    width: 90vw;
    max-width: 900px;
}

.modal-front-promo img {
    max-width: 100%;
    max-height: auto;
    border: 1px solid #EEE;
}

.modal-front-promo-close {
    width: 100%;
    height: 50px;
    background-color: #000;
    color: #FFF;
    border: 1px solid #FFF;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 0.3rem;
}


/* MIS DISEÑOS */

#pantalla-disenos-cont {
    width: 90vw;
    position: absolute;
    top: 0px;
    right: 0px;
    padding-top: 12vh;
    padding-right: 2rem;
}

#proyectos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    grid-auto-rows: auto;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    width: 96vw;
    height: auto;
    max-height: 88vh;
    overflow-y: auto;   
    padding-bottom: 8rem;
    position: absolute;
    top: 11dvh;
    left: 2vw;
}

.proyecto {
    display: block;
    background-color: transparent;
    border: 1px solid #6774b9;
}

.proyecto-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px 5px 0px 0px;
    aspect-ratio: 16/9;
}

@media screen and (max-width: 767px) {
    #pantalla-disenos-cont {
        width: 100vw;
        position: absolute;
        top: 0px;
        right: 0px;
        padding-top: 0vh;
        height: 95vh;
        max-height: 95vh;
        padding: 1rem;
        overflow-y: hidden;
    }

    #proyectos {
        padding-bottom: 5vh;
    }

    #btn-menu {
        width: 100vw;
        position: absolute;
        bottom: 0px;
        right: 0px;
        height: 5vh;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0rem 1rem;
        border-top: 1px solid #BBB;
    }
}


/* FINALIZAR */
#finalizar-izquierda {
    width: 40vw;
    position: absolute;
    left: 10vw;
    top: 15vh;
    height: 80vh;
    border-right: 2px solid #bcbec0;
    padding: 0rem 5rem 1rem 1rem;
}

#finalizar-derecha {
    width: 50vw;
    position: absolute;
    right: 0vw;
    top: 15vh;
    height: 80vh;
    max-height: 80dvh;
    overflow-y: auto;
    padding: 0rem 3rem 1rem 5rem;
}

#imagen-main {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    border: 1px solid #DDD;
}

#imagen-galeria {
    width: 100%;
    height: 20vh;
    margin-top: 1rem;
}

#imagen-galeria button {
    width: 120px;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    outline: 1px solid #DDD;
    padding: 0rem;
    background-color: #e1e4e6;
    border: 0px;
}

#imagen-galeria button img {
    width: 100%;
}

#imagen-galeria button:hover {
    outline: 1px solid #bcbec0;
}

#precio-finalizar {
    top: auto;
    left: auto;
    height: auto;
    position: relative;
    bottom: auto;
    text-align: right;
    width: 100%;
    max-width: 100%;
    font-size: 2rem;
    font-weight: 600;
}

#seccion-guardar {
    width: 100%;
    border-top: 1px solid #bcbec0;
    margin-top: 5vh;
}

#seccion-descargar {
    width: 100%;
    border-top: 1px solid #bcbec0;
    margin-top: 4vh;
}

.input-finalizar {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 25px;
    padding: 0 1rem;
    background-color: #FFF;
}

.descargas {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 2rem;
    gap: 2rem;
}

.descargas button {
    width: 120px;
    height: 195px;
    border: 0px;
    padding: 0px;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.descargas button div {
    width: 120px;
    height: 170px;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.descargas button span {
    
}

@media screen and (max-width: 1100px) {
    #finalizar-izquierda {
        padding: 0rem 2rem 1rem 1rem;
    }

    #imagen-galeria {
        flex-wrap: nowrap;
    }

    #imagen-galeria button {
        width: 23%;
        height: auto;
        aspect-ratio: 1/1;
    }


}

@media screen and (max-width: 767px) {
    #logo {
        width: 100vw;
        position: absolute;
        top: 0px;
        left: 0px;
        height: 10vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #logo img {
        position: relative;
        display: block;
        height: auto;
        object-fit:contain;
        width: 150px;
        max-width: 150px;
        top: auto;
        left: auto;
    }

    #btn-menu {
        width: 100vw;
        position: absolute;
        bottom: 0px;
        right: 0px;
        height: 5vh;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0rem 1rem;
        border-top: 1px solid #BBB;
    }

    #finalizar-izquierda {
        width: 100vw;
        position: absolute;
        left: 0vw;
        top: 12vh;
        height: 40vh;
        border-right: 0px solid #bcbec0;
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    #finalizar-derecha {
        width: 100vw;
        position: absolute;
        right: 0vw;
        top: 50vh;
        height: 50vh;
        padding: 1rem;
        overflow-y: auto;
        
    }

    #imagen-main {
        width: auto;
        height: 20vh;
        object-fit: contain;
        aspect-ratio: 1.5/1;
    }

    #imagen-galeria {
        width: 100%;
        max-width: 100%;
        height: 10vh;
        margin-top: 0.5rem;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 1%;
    }

    #imagen-galeria img {
        width: 23%;
        height: 10vh;
        object-fit: cover;
        cursor: pointer;
    }

    #imagen-galeria img:hover {
        outline: 1px solid #bcbec0;
    }

    #precio-finalizar {
        top: auto;
        left: 20vw;
        width: auto;
        bottom: 0px;
        height: 5vh;
        z-index: 4;
    }

    #seccion-guardar {
        width: 100%;
        border-top: 1px solid #bcbec0;
        margin-top: 0vh;
    }

    #seccion-descargar {
        width: 100%;
        border-top: 1px solid #bcbec0;
        margin-top: 5vh;
        padding-bottom: 3rem;
    }

    input {
        width: 100%;
        height: 45px;
        border: none;
        border-radius: 25px;
        padding: 0 1rem;
        background-color: #FFF;
    }

    .descargas {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        margin-top: 2rem;
        gap: 2rem;
    }

    .descargas button {
        width: 120px;
        height: 195px;
        border: 0px;
        padding: 0px;
        background-color: transparent;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
        cursor: pointer;
    }

    .descargas button div {
        width: 120px;
        height: 170px;
        background-color: #FFF;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .descargas button span {
        
    }
}


/* PERFIL */
#contenido-perfil {
    width: 90vw;
    max-width: 1100px;
    position: absolute;
    top: 0px;
    left: 10vw;
    height: auto;
    padding-top: 16vh;
    padding-right: 5vw;
    /* overflow-y: auto; */
}

@media screen and (max-width: 767px) {

    /* body {
        min-width: 100vw;
        width: 100vw;
        max-width: 100vw;
        min-height: 100vh;
        height: 100vh;
        max-height: 100vh;
        position: relative;
        background-color: #ececec;
        font-size: 16px;
        overflow: hidden;
    } */

    #contenido-perfil {
        width: 100vw;
        
        position: absolute;
        top: 10vh;
        right: 0px;
        height: 85vh;
        padding: 1rem;
        padding-right: 1rem;
        overflow-y: auto;
    }


    /* #logo {
        width: 100vw;
        position: absolute;
        top: 0px;
        left: 0px;
        height: 10vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #logo img {
        position: relative;
        display: block;
        height: auto;
        object-fit:contain;
        width: 150px;
        max-width: 150px;
        top: auto;
        left: auto;
    } */

    /* #btn-menu {
        width: 100vw;
        position: absolute;
        bottom: 0px;
        right: 0px;
        height: 5vh;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0rem 1rem;
        border-top: 1px solid #BBB;
    } */

    .w-23 {
        width: 49%;
    }
}

.input-div {
    margin-top: 2rem;
    /* width: 48%; */
}

.input-div label {
    color: #000;
    font-size: 1.1rem;
}

.input-div input {
    width: 100%;
    background-color: #FFF;
    border: 1px solid #EEE;
    border-radius: 5px;
    margin-top: 0.5rem;
    font-size: 1rem;
    padding: 0.8rem;
}

.input-div textarea {
    width: 100%;
    background-color: #FFF;
    border: 1px solid #EEE;
    border-radius: 5px;
    margin-top: 0.5rem;
    font-size: 1rem;
    padding: 0.8rem;
}

.h2-perfil {
    font-size: 1.5rem;
}

.numero {
    font-size: 2rem;
    font-weight: 600;
    padding: 2rem;
}

.btn-main-perfil {
    background-color: #6cb64b;
}




    #modal-modelos {
        min-width: 100vw;
        width: 100vw;
        max-width: 100vw;
        min-height: 100vh;
        height: 100vh;
        max-height: 100vh;
        position: relative;
        /* background-color: #c9c8c4; */
        background: linear-gradient(135deg, #c0c4c0, #c6c7c4, #cdcbc7);

        color: #FFF;
        font-size: 16px;
        font-family: 'DM Sans', sans-serif;
        z-index: 25;
        position: absolute;
        top: 0vh;
        padding: 2rem;
    }

    .modal-modelos-cont {
        position: absolute;
        top: 15dvh;
    }

    .modal-modelos-modelo {
        width: fit-content;
        background-color: transparent;
        border: 0px;
        cursor: pointer;
    }

    .modal-modelos-modelo img {
        width: 100%;
        height: 58dvh;
        object-fit: cover;
        max-height: 58dvh;
        aspect-ratio: 9/13;
    }

    .modal-modelos-modelo div {
        width: 100%; 
        text-align: center;
        font-weight: 400;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #FFF;
    }

    .modal-modelos-modelo:hover img {
        outline: 2px solid #FFF;
    }

    .modal-modelos-text {
        width: 100vw;
        height: 12dvh;
        position: absolute;
        bottom: 0px;
        left: 0px;
        font-size: 4.5vw;
        font-weight: 700;
        text-align: center;
        border-top: 0px solid #FFF;
        /* display: flex;
        justify-content: center;
        align-items: center; */
        /* flex-wrap: nowrap; */
        white-space: nowrap;
    }

    #modal-finalizar {
        display: none;
        width: 100vw;
        height: 100vh;
        position: fixed;
        background-color: #f0f0f0;
        color: #000;
        top: 0;
        left: 0;
        z-index: 100;
    }

    #modal-proyectos {
        display: none;
        width: 100vw;
        height: 100vh;
        position: fixed;
        background-color: #f0f0f0;
        color: #000;
        top: 0;
        left: 0;
        z-index: 100;
    }

.btn-configurarLuminaria {
    width: 100%;
    height: 40px;
    background-color: #FFF;
    color: #666;
    border: 1px solid #DDD;
    font-size: 1rem;
    cursor: pointer;
    text-align: left;
    padding: 0rem 1rem;
    margin-top: 0.5rem;
}

.btn-configurarLuminaria-active {
    border: 1px solid #273583;
    color: #273583;
}

#finalizar-img {
    width: 50vw;
    height: 60dvh;
    position: absolute;
    left: 2vw;
    top: 12dvh;
}

#finalizar-img-btns {
    width: 50vw;
    height: 10dvh;
    position: absolute;
    left: 2vw;
    top: 72dvh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
}

#finalizar-precio {
    font-size: 1.2rem;
}



#finalizar-volver {
    position: absolute;
    right: 2vw;
    top: 2dvh;
    background-color: transparent;
    border: 0px;
    z-index: 11;
}

    #finalizar-volver img {
        width: 30px;
        height: 30px;
    }

#finalizar-formhubspot {
    width: 40vw;
    position: absolute;
    right: 2vw;
    top: 23dvh;
}

#finalizar-formhubspot-cont {
    padding: 1rem;
    border: 1px solid #273583;
    max-width: 530px;
    overflow-y: auto;
    max-height: calc(90dvh - 100px);
}

#finalizar-guardar {
    width: 40vw;
    position: absolute;
    right: 2vw;
    top: 12dvh;
    max-height: 60px;
}

#modal-finalizar input, #modal-finalizar select, #modal-finalizar textarea {
    height: 35px;
    padding: 6px;
    border: 0px solid #FFF;
    border-radius: 0px;
    margin-top: 5px;
    font-family: 'DM Sans', sans-serif;
    width: 100%;
}

#modal-finalizar textarea {
    height: 80px;
}

#modal-finalizar input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0px;
}

#modal-finalizar input[type="submit"]{
    display: block;
    padding: 1rem 2rem;
    border-radius: 0px;
    border: 0px;
    cursor: pointer;
    width: auto;
    height: 50px;
    background-color: #000;
    color: #FFF;
    font-size: 1rem;
} 


#modal-finalizar label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    margin-top: 10px;
}

#modal-finalizar fieldset {
    margin-top: 10px;
}

.inputs-list {
    list-style: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

.hs-form-booleancheckbox-display {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0rem;
    text-transform: none;
    
}


#btnAyuda1 {
    width: 30px;
    height: 30px;
    position: fixed;
    top: 4dvh;
    right: calc(32vw + 0.1rem);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background-color: transparent;
    border: 0px;
}

    #btnAyuda1 img {
        width: 20px;
        height: 20px;
    }
    
#btnAyuda2 {
    width: 30px;
    height: 30px;
    margin-top: 0.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background-color: transparent;
    border: 0px;
}

    #btnAyuda2 img {
        width: 20px;
        height: 20px;
    }

    /* carril */
    #btnAyuda3 {
        width: 25px;
        height: 25px;
        position: absolute;
        top: 0px;
        right: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
        background-color: transparent;
        border: 0px;
    }
    
        #btnAyuda3 img {
            width: 16px;
            height: 16px;
        }

         /* luminaria */
    #btnAyuda4 {
        width: 25px;
        height: 25px;
        position: absolute;
        top: 0px;
        right: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
        background-color: transparent;
        border: 0px;
    }
    
        #btnAyuda4 img {
            width: 16px;
            height: 16px;
        }

	.compartir-enlace {
		width: 100%;
		height: 40px;
		padding: 0.3rem;
		font-family: 'Roboto', sans-serif;
		color: #555;
	}

	.compartir-btn {
		width: 40px;
		height: 40px;
		border: 1px solid #273583;
		background-color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.compartir-btn:hover {
		background-color: #fff;
	}

	