.page {
    background-color: white;
}
html {
  font-size: 40px;
    
}

h1,h2,h3,h4 {
    margin: 0;
}

h1 {
    font-size: 100px;
}
h2 {
    font-size: 80px;
}
h3 {
    font-size: 60px;
}
h4 {
    font-size: 50px;
}
p {
    font-size: 40px;
}

::-webkit-scrollbar {
    display: none;
}

.stepper-button-plus-finalizar:before {
    height:20px;
    width: 5px;
}

.stepper-button-minus-finalizar:after, .stepper-button-plus-finalizar:after {
    width:20px;
    height: 5px;
}

.stepper-button-plus-finalizar:before {
    height:20px;
    width: 5px;
}

.stepper-button-minus-finalizar:after, .stepper-button-plus-finalizar:after {
    width:20px;
    height: 5px;
}

.stepper-button-plus:before {
    height:30px;
    width: 7px;
}

.stepper-button-minus:after, .stepper-button-plus:after {
    width:30px;
    height: 7px;
}


label.item-checkbox>.chck-modi {
    height: 1.8em;
    width: 1.8em;
}

.radio .chck-modi {
    height: 1.8em;
    width: 1.8em;
}

#checkbox-monedero {
    height: 1.8em;
    width: 1.8em;
}

label.checkbox input[type=checkbox]:checked~#checkbox-monedero:after, 
label.checkbox input[type=checkbox]:not(:checked)~#checkbox-monedero:after
{
    font-size: 2em;
    top: 22px;
    left: 17px;
}


    
label.item-checkbox input[type=checkbox]:checked~.chck-modi:after, label.item-checkbox input[type=checkbox]:not(:checked)~.chck-modi:after
{
    font-size: 2em;
    top: 22px;
    left: 17px;
}

input[type=radio]:checked~.icon-radio:after{
    height: 50px;
    width: 75px;
    font-size: 2em;
    background-color: #f35605;
    color:white;
    padding-top: 25px;
    border-radius: 50%;
}

/* texto scroll horizontal */
.marquee {
    height: 90px;
    margin-top: 20px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    width: 100%

}          
.marquee DIV {
    position: absolute;
    /*width: 100%;*/
    /*height: 100%;*/
    margin: 0;

    /*line-height: 50px;*/
    text-align: center;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: scroll-left 10s linear infinite;
    -webkit-animation: scroll-left 10s linear infinite;
    animation: scroll-left 8s linear infinite;
}


@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
}
@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}
@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

}


.scroll {
  position: relative;
  width: 100%;
  overflow: hidden;
  
}

.m-scroll {
    /*overflow: hidden;*/
    height: 100%;
    white-space: nowrap;
    text-align: center;
    transform: translateX(100%);

    animation: scroll-left 8s linear infinite;

}

span.onsale {
    width: 800px;
    height: 800px;
    background: url(../img/promoES.png) no-repeat;
    position: absolute;     
    background-size: contain;
       
    left: 0;
    top: 0;
    /*z-index: 9999;*/
    
}
span.onsale-top {
    width: 800px;
    height: 800px;
    background: url(../img/promoES.png) no-repeat;
    position: absolute;     
    background-size: contain;
       
    left: 0;
    top: 0;
    /*z-index: 9999;*/
    
}
/*teclado en pantalla*/
.teclaboard {
    width: 90%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filaTecla {
    display: flex;
    justify-content: space-between;
}

.tecla {
    flex: 1;
    margin: 5px;
    padding: 15px;
    font-size: 1.5rem;
    text-align: center;
    background-color: #00495e;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    user-select: none;
}
.teclaEspecial {
    background-color: #f35605;
}

.tecla:active {
    opacity: 80%;
}

.teclaEspecial:active {
    opacity: 80%;
}

.tecla.wide {
    flex: 2; /* Double the width */
}

#tecladovirtual {
    margin-top: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#displaynombrecliente {
    font-size: 2rem;
    margin-bottom: 1rem;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    width: 70%;
    text-align: center;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    height: 60px;
    line-height: 60px;
}