header{
    position: fixed;
    width: 100%;
    z-index: 100000;
    background: #474747;
}

#carrLog{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    justify-content: space-between;/*espacio al centro*/
    align-items: center;/*centrando elementos verticalmene*/
}

#loggo{
    width: 15%;
}

#loggo img{
    padding: 5px;
}

#menCom{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

#menuNue{
    /*background-color: #fff2d0;
    border-bottom: 5px solid;*/
    box-shadow: 0px 0px 3px 0;

    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    flex-direction: column;

}

#menuIzq{

}

#enlaces1{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    justify-content: space-around;
}

#enlaces2{
    display: none;
    z-index: 10000;
}

#subEnlaces{
    padding: 15px;
}

#btnMenu{
    margin: 13px;
    display: none;
}

#carrito{
    padding: 20px;
}

a{
    font-family: var(--font-main);
}

a:link, a:visited{
    font-family: var(--font-main);
    color: black;
    text-decoration: none;
}

a:hover{
    /*background: #ffe9b1;*/
    background: #7d7d7d;
    color: white;
}

a:active{
    background: gray;
}

#rePago{
    width: 100%;
    margin-top: 12px;
}

.carrito-acciones-pago{
    display: flex;
    justify-content: center;
    padding: 4px 8px 10px;
}

.carrito-btn-finalizar{
    display: inline-block;
    box-sizing: border-box;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    padding: 11px 28px;
    border: 1px solid #8c8c8c;
    border-radius: 8px;
    color: #fafafa !important;
    background: linear-gradient(180deg, #717171 0%, #555555 100%);
    box-shadow:
        0 5px 14px rgba(0, 0, 0, 0.38),
        0 1px 0 rgba(255, 255, 255, 0.14) inset,
        0 -1px 0 rgba(0, 0, 0, 0.22) inset;
    text-decoration: none !important;
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.carrito-btn-finalizar:hover{
    background: linear-gradient(180deg, #7c7c7c 0%, #5f5f5f 100%) !important;
    color: #fafafa !important;
    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.42),
        0 1px 0 rgba(255, 255, 255, 0.16) inset;
}

.carrito-btn-finalizar:active{
    background: linear-gradient(180deg, #505050 0%, #474747 100%) !important;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.45) inset;
    transform: translateY(1px);
}

#carrito-container{
    z-index: 10000;
    background: #474747;
    border: 1px groove;
    padding: 10px;
    max-height: 80vh;
    max-width: 100%;
    box-sizing: border-box;
    position: absolute;
    margin-top: -1px;
    right: 0;
    display: none;
    overflow: auto;
}

@media screen and (max-width: 800px) {
    
    table{
        font-size: 2.30vw;
    }

    #menuNue{
        /*background-color: #fff2d0;
        border-bottom: 3px solid;*/
    }

    #btnMenu{
        margin: 13px;
        display: block;
    }

    #enlaces1{
        display: none;
    }

    #enlaces2{
        background: #474747;
        border: 1px groove;
        box-sizing: border-box;
        position: absolute;
        margin-top: -1px;
        left: 0;

        display: none;
        flex-direction: column;
    }
    #loggo{
        width: 22%;
    }

}