
.cart-app *
{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.cart-overlay 
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, .3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cart-wget 
{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #ff0055;
    background: gold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.cart-wget:hover
{
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0,0,0, .1);
}
.cart-num 
{
    position: absolute;
    top: 0px; left: 0px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ff0055;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-notify 
{
    margin: auto;
    position: fixed;
    top: 50%;
    left: 0; right: 0;
    z-index: -99;

    max-width: 500px;
    width: 94%;
    padding: 30px 15px;
    border-radius: 14px;
    background: #fff;
    
    box-shadow: 0 0 15px rgba(0,0,0, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .5s;
}

.cart-notify p 
{
    text-align: center;
    color: #ff0055;
    font-size: 28px;
    margin-left: 10px;

}

.notify-visible
{
    display: flex !important;
    z-index: 99;
}

.notify-show 
{
    opacity: 1;
    transform: scale(1.1);
}

.cart-popup 
{
    max-width: 800px;
    width: 94%;
    padding: 15px;
    border-radius: 14px;
    background: #fff;
    position: relative;
    box-shadow: 0 0 15px rgba(0,0,0, .1);
}

.cart-close 
{
    position: absolute;
    top: 10px; right: 10px;
    cursor: pointer;
}

.cart-title
{
    font-size: 28px !important;
    text-transform: uppercase;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.cart-empty 
{
    font-size: 24px;
    color: #ccc;
    text-align: center;
    margin: 40px 0;
}

.cart-list 
{
    max-height: 300px;
    overflow-y: auto;
}

.cart-list::-webkit-scrollbar
{
    width: 6px;
    background: transparent;
}

.cart-list::-webkit-scrollbar-thumb
{
    width: 6px;
    border-radius: 6px;
    background: #aaa;
}

.cart-row,
.cart-count
{
    display: flex;
    align-items: center;
}


.cart-row 
{
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.cart-total
{
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}

.d-fx 
{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.d-fx .p-bold 
{
    margin-right: 20px;
}

.cell 
{
    padding: 0 5px;
    width: 25%;
}

.p-img 
{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #ccc;
    object-fit: cover;
}

.cart-popup input 
{
    padding: 15px;
    border-radius: 40px;
    width: 100%;
    border: 1px solid #ccc;
    margin-right: 5px;
}

.cell input 
{
    width: 60px;
    padding: 10px;
    text-align: center;
}

.p-bold
{
    font-weight: bold;
}

.p-remove 
{
    cursor: pointer;
}

.t-center 
{
    text-align: center;
}

.t-right 
{
    text-align: right;
}

.form-body 
{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
}

.form-body label 
{
    padding-left: 10px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    color: #ff0055;
}

form .t-center 
{
    margin-top: 20px;
}

.col 
{
    padding: 10px;
    width: 50%;
}

.btn
{
    padding: 20px 35px;
    background: #ff0055;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 15px rgba(0,0,0, .4);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

.btn:hover 
{
    transform: scale(1.1);
    box-shadow: 0 2px 15px rgba(0,0,0, .6);
}

@media (max-width: 567px)
{

    .cart-notify p 
    {
        font-size: 18px;
    }

    .cart-list * 
    {
        font-size: 14px;
    }

    .cell input 
    {
        width: 50px;
    }

    .d-fx .p-bold 
    {
        margin-right: 10px;
    }

    .col 
    {
        width: 100%;
    }

}