.shopping_cart {
    color: white;
    text-decoration: none;
    padding: 10px 5px;
    position: relative;
    display: inline-block;
}

.shopping_cart .badge {
    width: 13px;
    height: 13px;
    position: absolute;
    top: 5px;
    right: 2px;
    border-radius: 50%;
    background: #cc1427;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
}

.cart-pay-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    font-size: xx-large;
    font-weight: bold;
    line-height: 40px;
}

.cart-pay-button {
    display: inline-block;
    padding: 0.15em 1.2em;
    margin: 1em 0.3em;
    border-radius: 0.12em;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 300;
    color: #ffffff;
    background-color: #5fb5aa;
    text-align: center;
    font-size: 20px;
    min-width: 200px;
    transition: all 0.15s;
    border: none;
}

.cart-pay-button:hover {
    color: #ffffff;
    cursor: pointer;
    background-color: #f5a442;
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
}