/*
==========================================================
UET Commerce Mini Cart
==========================================================
*/


.uet-mini-cart-overlay {

    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,.65);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:900;

}



.uet-mini-cart-overlay.active {

    opacity:1;

    visibility:visible;

}



.uet-mini-cart {

    position:fixed;

    top:0;

    right:-420px;

    width:380px;

    height:100vh;

    background:#11151f;

    z-index:1000;

    transition:.35s ease;

    display:flex;

    flex-direction:column;

}



.uet-mini-cart.active {

    right:0;

}



.uet-mini-cart-header {

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px;

    border-bottom:

    1px solid rgba(255,255,255,.08);

}



.uet-mini-cart-header h2 {

    color:white;

}



.uet-mini-cart-close {

    background:none;

    border:none;

    color:white;

    font-size:22px;

    cursor:pointer;

}



.uet-mini-cart-items {

    flex:1;

    overflow:auto;

    padding:20px;

}



.uet-mini-cart-item {

    display:flex;

    gap:15px;

    margin-bottom:20px;

}



.uet-mini-cart-image img {

    width:60px;

    height:60px;

    object-fit:cover;

}



.uet-mini-cart-details h4 {

    color:white;

    margin:0 0 5px;

}



.uet-mini-cart-details span {

    color:#00aeef;

}



.uet-cart-empty {

    color:#b8c0d0;

    text-align:center;

    padding:40px 0;

}



.uet-mini-cart-footer {

    padding:25px;

    border-top:

    1px solid rgba(255,255,255,.08);

}



.uet-mini-cart-total {

    display:flex;

    justify-content:space-between;

    color:white;

    margin-bottom:20px;

}



.uet-checkout-button {

    display:block;

    text-align:center;

    padding:15px;

    border-radius:15px;

    background:

    linear-gradient(
        90deg,
        #00aeef,
        #ff4fd8
    );

    color:white;

    text-decoration:none;

    font-weight:700;

}