/* Boton Carrito */

.creaweb-cart-float-button {
    color: #ffffff;
    border-radius: 100%;
    background-color: var(--primary-color);
    color: var(--primary-text-color-inverse);
    padding: 0px;
    position: fixed;
    bottom: 30px;
    left: 20px;
    transition: all 300ms ease 0ms;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    z-index: 99;
    border: none;
    width: 2.1em;
    height: 2.1em;
}

.creaweb-cart-float-button .badge-notify {
    position: absolute;
    top: -25px;
    right: -25px;
    background-color: var(--primary-color-opacity-90);
    color: var(--primary-text-color-inverse);
    box-shadow:2px 2px 10px rgb(0 0 0 / 30%)
}

/* Boton de cantidad de productos */

.product-quantity{
    display: flex;
    justify-content: center;
    margin-right: 0.25rem;
}

.input-number {
    width: 80px;
    padding: 0 12px;
    vertical-align: top;
    text-align: center;
    outline: none;
}

.input-number,
.input-number-decrement,
.input-number-increment {
    border: 1px solid #ccc;
    height: 40px;
    user-select: none;
}
.input-number-decrement:active,
.input-number-increment:active{
    background: #ddd
}
.input-number-decrement,
.input-number-increment {
    display: inline-block;
    width: 30px;
    line-height: 38px;
    background: #f1f1f1;
    color: #444;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

.input-number-decrement {
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.input-number-increment {
    border-left: none;
    border-radius: 0 4px 4px 0;
}

#checkout-section label {
    text-align: left;
}

.address-content.card:hover{
    box-shadow: none !important;
}

.card-header{
    background-color: transparent !important;
}
