/* Popup backdrop */
.merineo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.9);
    z-index: 10000;
    display: none;
}

.merineo-added-product-name {
    font-weight: 700;
}

/* Popup box */
.merineo-modal-content {
    background: #fff;
    margin: 0;
    padding: 20px;
    border-radius: 5px;
    width: 500px;
    max-width: 90%;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Close icon */
.merineo-modal-close {
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: -15px;
    right: -15px;
    line-height: 1;
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: #fff;
    width: 30px;
    height: 30px;
}

/* Buttons container */
.merineo-modal-buttons {
    margin-top: 45px;
    display: flex;
    justify-content: space-between;
}
/* buttons */
.merineo-modal-buttons button {
    border: none;
    display: block;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    background-color: var(--wp--preset--color--primary);
    color: #fff;
}

.merineo-modal-buttons .button.alt {
    background-color: var(--wp--preset--color--secondary);
    color: var(--wp--preset--color--text-color);
}