
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');
.btn-qty-carrinho {
    font-size: .7rem;
    height: 20px;
    padding: 0;
    width: 20px;
    font-weight: 600;
    border-radius: 6px;
}
.btn-sem-estoque::after {
    content: 'x';
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    border-radius: 50px;
    width: 12px;
    height: 12px;
    line-height: 12px;
    color: white;
}
.frete-item{
    cursor: pointer;
}
.btn-remove-item {
    position: absolute;
    top: -3px;
    left: -3px;
    background-color: var(--bs-danger);
    color: white !important;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border-radius: 100px;
}

