#attention-popup{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999999;
}

.attention-popup-inner{
    position:relative;
    display:inline-block;
}

.attention-popup-image{
    width:min(460px,90vw);
    max-width:460px;
    height:auto;
    display:block;
}

.attention-popup-close{
    position:absolute;
    top:-14px;
    right:-14px;
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#000;
    color:#fff;
    font-size:24px;
    line-height:38px;
    text-align:center;
    cursor:pointer;
}

.attention-popup-close:hover{
    background:#333;
}

@media (max-width:600px){

.attention-popup-image{
    width:90vw;
    max-width:90vw;
}

.attention-popup-close{
    width:34px;
    height:34px;
    line-height:34px;
    font-size:20px;
    top:-12px;
    right:-12px;
}

}
