#mrkv-cart-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:none;
z-index:9999;
}

#mrkv-cart-popup{
position:fixed;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:420px;
background:#fff;
padding:25px;
border-radius:10px;
display:none;
z-index:10000;
}

.mrkv-cart-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:15px;
}

.mrkv-close{
cursor:pointer;
font-size:22px;
}

.mrkv-cart-products{
max-height:300px;
overflow:auto;
margin-top:15px;
}

.mrkv-cart-buttons{
margin-top:20px;
}

.mrkv-checkout{
display:block;
background:#4caf50;
color:#fff;
text-align:center;
padding:12px;
margin-bottom:10px;
}
.mrkv-cart-info{
	text-align: center;
}
.mrkv-continue{
width:100%;
padding:10px;
}
.mrkv-cart-products .woocommerce-mini-cart__buttons{
	display: none !important;
}
.mrkv-loader {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #333;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}