/* add to cart popup start */
.cart-popup p span {
    font-weight: bold;
}

/* .cart-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
} */


.cart-popup {
    display: none;
    /* display: flex; */
    width: 100%;
    height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.cart-popup .popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 400px;
    height: 200px;
    display: flex;
    justify-content: center;
}

.cart-popup .message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cart-popup .checkmark {
    width: 50px;
    height: 50px;
    fill: black;
    margin-bottom: 10px;
}

.cart-popup .message p {
    margin: 0;
    font-size: 18px;
    color: black;
}