/* File: css/frontend.css */
.happy-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: none;
    overflow-y: auto;
    padding: 2em 0;
    backdrop-filter: blur(6px);
}
.happy-popup-close {
    box-shadow: none;
    border: none;
    height: 30px;
    width: 30px;
    border-radius: 100px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    opacity: .4;
    position: absolute;
    z-index: 2;
    top: -10px;
    right: -10px;
    cursor:pointer;
    background:white;
    color:black;
}

.happy-popup-close:hover {
    opacity:.6;
}

.happy-popup-content {
    position: relative;
    margin-left:auto;
    margin-right:auto;
    width:80%;
}