.popup-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
}


.popup-box {
    position: relative;
    display: inline-block;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.popup-box img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 0 auto;
}


.popup-box a {
    display: block;
    text-decoration: none;
    position: relative;
}

.close-menu {
    font-weight: 800;
    font-size: 22px;
    text-align: right;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1001;
    background: #fff;
    padding: 14px;
    height: 36px;
    width:55px;
    height: 55px;
   
    line-height: 0.8;
    -webkit-border-bottom-left-radius: 50px;
-moz-border-radius-bottomleft: 50px;
border-bottom-left-radius: 50px;
}
.close-menu:hover{
    background-color: orange;
}
.popup-box a img {
    cursor: pointer;
}
