/**
 * #MENULATERAL REDES SOCIALES MOTORNET
 */

 .menu-lateral {
     position: fixed;
     top: 20%;
     right: 0;
     width: 50px;
     background-color:rgba(51, 51, 51, 0.5);
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     height: 60%;
     padding: 20px 0; /* Agrega relleno superior e inferior para centrar el fondo */
     z-index: 999;
     border-radius: 25px; /* Establece el radio de las esquinas */
     box-shadow: 0 0 10px rgba(134, 134, 163, 0.7); /* Agrega un contorno azul como sombra */
 }


.menu-lateral a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-decoration: none;
    background-color: transparent;
    font-size: 24px;
    transition: background-color 0.3s;
}

.menu-lateral a i {
    width: 100%;
}

.fa-whatsapp {
    color: #25D366;
    position: absolute;
}

.fa-credit-card {
    color: #ffe600;
}

.fa-phone {
    color: #ffffff;
}

.fa-facebook {
    color: #1877F2;
}

.fa-instagram {
    color: #E4405F;
}

.fa-calendar {
    color: darkorange
}

.menu-lateral a:hover {
    background-color: #444;
}

/**
 * #MAQUINADEESCRIBIR
 */

.header-alert-container {
    display:  table-cell;
}

.header-alert-news {
    color: #333; /* Color del texto gris */
    font-family: Arial, sans-serif; /* Fuente Arial (o Helvetica) */
    font-size: var(--fs-9);
    text-transform: uppercase;
    background-color: rgba(245, 245, 245, 0.7);
    text-align: center; /* Centra el texto horizontalmente */
    vertical-align: middle;
    max-width: 70%;
    border-radius: 4px; /* Añade bordes redondeados */
    box-shadow: 0 0 20px 10px #808080; /* Efecto de contorno en gris metálico */

    margin: 0 auto; /* Centra horizontalmente */
}

.header-alert-news b { font-weight: var(--weight-200); }
