@charset "utf-8";

.menu li img {
    width: 85px;
    height: auto;
}
.eje a img {
    width: 200px;
}
    .oxti {
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-weight: 800; 
        line-height: 73px;
        font-size: 64px;
        color: #0D284A;
    }
   .cami {
    display: flex;
    justify-content: center;  
    align-items: center;      
    height: 100%;             
    width: 100%;
}

.cami img {
    max-width: 100%;          
    height: auto;            
}
    .colores {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 20px; 
}
.color-item {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    margin: 10px; 
}
    .color-option {
        display: inline-block;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin: 0 10px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s ease; 
    }
    .color-option:hover {
        border: 2px solid #333;
    }
    /* Clase para hacer que el círculo seleccionado sea más pequeño */
    .color-option.active {
        width: 40px;
        height: 40px;
        border: 2px solid #333; 
    }
    .logo-container {
    position: absolute;
    top: 100px; 
    left: 100px;
    width: 100px;
    height: 100px;
    cursor: move;
}

    .logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
   
   
}
input[type="file"]{
    display: block;
    padding-left: 35px;
    margin-top: 15px;
    margin-bottom: 15px;
    width: 496px;
    text-decoration: none;
    height: 54px;
}
.conlog {
    display: flex;
    flex-direction: column;  
    justify-content: center;
    align-items: center;     
    text-align: center;      
    margin: 0 auto;          
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;           
}
	
.salir {
    display: flex;
    justify-content: center; 
    align-items: center;    
    padding-top: 20px;              
    padding-bottom: 20px;
}

a {
    text-decoration: none; 
}

.bot {
    background-color: #0D284A;  
    color: white;               
    cursor: pointer;            
    text-align: center;        
    width: 290px;               
    height: 59px;               
    border-radius: 30px;        
    display: flex;
    justify-content: center;    
    align-items: center;        
}

.bot:hover {
    background-color: #003366;  
}
a .bot h3 {
    font-family: Arial, sans-serif;
    font-size: 36px;
}
/* CSS Document */
.color-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    margin: 5px;
    cursor: pointer;
}

.color-btn:focus {
    outline: 2px solid #000;
}
.contenedor-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    font-family: Arial, sans-serif;
    padding-top: 20px;
}

/* Estilo general para el control deslizante */
input[type="range"] {
    -webkit-appearance: none;  
    width: 34%;              
    height: 20px;              
    background: #ddd;          
    border-radius: 5px;        
    outline: none;             
}
.conlog label {
    padding-bottom: 20px;
    padding-top: 20px;
    font-size: 20px;
	font-family: Arial, sans-serif;
}


/* Estilo del "thumb" (el botón que arrastras) */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; 
    appearance: none;
    width: 25px;              
    height: 25px;             
    background: #0D284A;      
    cursor: pointer;          
    border-radius: 50%;       
}

input[type="range"]::-moz-range-thumb {
    width: 25px;             
    height: 25px;            
    background: #0D284A;      
    cursor: pointer;
    border-radius: 50%;      
}

/* Para pantallas pequeñas (móviles) */
@media (max-width: 768px) {
    input[type="range"] {
        height: 20px; 
    }
    
    input[type="range"]::-webkit-slider-thumb {
        width: 35px;  
        height: 35px;
    }
    
    input[type="range"]::-moz-range-thumb {
        width: 35px;  
        height: 35px;
    }
}

