/* Establecemos el height igual para todos los input del checkout */ 
.wc-block-components-form .wc-block-components-text-input{
    height: 3.125em;
}

/* Aseguramos que los input hereden el height del contenedor padre */
.wc-block-components-form .wc-block-components-text-input > input{
    height: 100% !important;
}

/* Estilos específicos para el input de tipo date */
.wc-block-components-text-input input[type=date], .wc-block-components-text-input input[type=password] {
    background-color: #fff;
    border: 1px solid hsla(0, 0%, 7%, .8);
    border-radius: 4px;
    box-sizing: border-box;
    color: #2b2d2f;
    font-family: inherit;
    font-size: 1em;
    height: 100%;
    line-height: 1em;
    margin: 0;
    min-height: 0;
    padding: 1em .5em;
    width: 100%;
}

/* Ocultamos el texto del placeholder en los navegadores Webkit */
input[type=date]:required:invalid::-webkit-datetime-edit {
    color: transparent;
}
input[type=date]:focus::-webkit-datetime-edit {
    color: black !important;
}

/* Estilos para el checkbox Notex*/
.wc-block-components-checkbox .wc-block-components-checkbox__mark {
    margin-left: 0.4875em;
    margin-top: 0.2625em;
}

.wc-block-cart-item__prices {
    display: none;
}
