.flexbox_popupadvertisement {
    display: flex;
    max-width: 2200px;
    min-width: 1400px;
    padding-right:20px;
    position: fixed;
    left:50%;
    top:50%;
    width:100%;
    transform: translate(-50%, -50%);
    justify-content: center;
	z-index:10001;
}

.popup_window.popup_advertisement {
    display: none;
}

.popup_window.popup_advertisement.active {
    display: block;
    max-width: 400px;
    margin-left:20px;
    position: relative;
}

.popup_window.popup_advertisement .adv_banner {
    display: block;
    max-width: 100%;
}

.popup_window.popup_advertisement .adv_banner img {
	width:100% !important;
}

.popup_window.popup_advertisement > .bottom {
    display: flex;
    margin-top:1px;
}

.popup_window.popup_advertisement > .bottom > .btn_today_noshow {
    display: flex;
    background:#0d1d32;
    height:50px;
    line-height:50px;
    font-size:14px;
    flex-grow: 1;
    cursor:pointer;
}

.popup_window.popup_advertisement > .bottom > .btn_today_noshow > .check {
    display:block;
    margin:17px;
    background:#29324b;
    border:5px;
    color:#29324b;
    line-height:16px;
    margin-right:10px;
    text-align: center;
    font-size:12px;
    width:16px;
    flex-shrink: 0;
    border-radius:5px;
    transition: all 200ms;
}

.popup_window.popup_advertisement > .bottom > .btn_today_noshow.active > .check {
    background:#070a0f;
    color:#ef7c00;
    transition: all 200ms;
}

.popup_window.popup_advertisement > .bottom > .btn_today_noshow > .label {
    color:#888888;
    transition: all 200ms;
}

.popup_window.popup_advertisement > .bottom > .btn_today_noshow.active > .label {
    color:#efefef;
    transition: all 200ms;
}


.popup_window.popup_advertisement > .bottom > .btn_close {
    color:#cccccc;
    width:60px;
    flex-shrink: 0;
    background:#07172d;
    font-size:14px;
    line-height:50px;
    text-align: center;
    margin-left:1px;
    cursor:pointer;    
    transition: all 300ms;
}


.popup_window.popup_advertisement > .bottom > .btn_close:hover {
    background:#29324b;
    color:#ffffff;
    transition: all 300ms;
}


