.carrinho-alert-background{
    width: 100vw;
    height: 100vh;
    background-color: #0000008a;
    z-index: 998;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
.carrinho-alert{
    width: 50vw;
    height: 0;
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: var(--branco);
    border: 1px solid black;
    position: absolute;
    left: calc(50% - 25vw);
    top: calc(50% - 40vh);
    padding: 10px;
    transition: all .8s ease;
    overflow: auto;
    z-index: 999;
}
.carrinho-alert__confere{
    box-shadow: 1px 1px 8px 3px var(--shadow);
    background-size: cover;
    background-image: url('../img/ramens/ramen_6.png');
    background-repeat: no-repeat;
    display: inline-block;
    padding: 20%;
    flex-shrink: 2;
    max-width: 40%;
    max-height: 40%;
    margin-bottom: 10vh;
    border-radius: 50%;
    animation: bong 1s;
}
.carrinho-alert__botao{
    display: inline;
    padding: 12px;
    background-color: var(--botao-base);
    border: 2px solid var(--preto);
    color: var(--branco);
    border-radius: 15px;
    font-size: 1.15rem;
    margin: 5px;
    flex-shrink: 2;
}
.carrinho-alert__texto{
    display: block;
    text-align: center;
    width:99%;
}
.carrinho-alert__quantidade{
    display: block;
    width: 100%;
    margin: 8px 0px;
    text-align: center;
    font-size: 1.75rem;
}
.carrinho-alert__quantidade #quantidade_ramens{
    width: 40px;
    height: 1.75rem;
}

@keyframes bong{
    0%{
        transform: scale(0.4);
    }
    100%{
        transform: scale(1);
    }
}