body {
    position: relative;
}
.promotion_popup_background {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    /*background-color: rgba( 30, 30, 30, 0.5);*/
    position: absolute;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.promotion_popup_window {
    box-sizing: border-box;
    box-shadow: 6px 5px 15px 0 rgba(0, 0, 0, 0.3);
    width: 480px;
    min-width: 300px;
    /*height: calc(480px + 40px);*/
    z-index: 2500;
    height: calc(218px + 40px);
    background-color: #fff;
}
.promotion_popup_window > p {
    padding: 32px;
}
.promotion_popup_body {
    box-sizing: border-box;
    width: 100%;
    height: fit-content;
    cursor: pointer;
    background-color: #fff;
}
.promotion_popup_footer {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
}

.promotion_popup_img {
    width: 100%;
    aspect-ratio: 1 / 1;
}
.promotion_popup_close_btn {
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 300;
    color: #222;
    background-color: #eaeaea;
    text-align: center;
    outline: none;
    cursor: pointer;
}