.popup-wrap.seen {
	opacity:1;
	visibility:visible;
}
.popup-wrap {
    display: block;
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    top: 0;
    z-index: 99999999;
    text-align: center;
	opacity:0;
	visibility:hidden;
	transition:all 0.2s linear;
}
.popup img {
    width: auto;
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
    max-height: 70%;
    display: block;
	max-width:90%;
	height:auto;
    top: 0;
    bottom: 0;
    cursor: pointer;
}
.popup-wrap .icon-close {
    right: 20px;
    top: 15px;
    color: var(--color2);
    position: absolute;
    cursor: pointer;
    font-size: 17px;
    background: #fff;
    font-weight: bold;
    border-radius: 2px;
    padding: 5px 8px 8px 8px;
}
.popup-wrap.down {
    width: 30%;
    height: 30%;
    bottom: 15px;
    top: auto;
    right: 15px;
    background: #120c4d6e; 
}

/* top_bar */
body.top_bar_popup { 
	transition:0.3s;
}
.popup-wrap.top_bar {
    background: transparent;
    height: 50px;
    top: 0;
}
.popup-wrap.top_bar .closer.icon-close {
    z-index: 1;
	right: 15px;
    top: 10px;
}
.popup-wrap.top_bar .popup {
    height: 100%;
}
.popup-wrap.top_bar .popup img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
}