/* CSS Document */


#content {
    position: relative;
    z-index: 1;
    transition: filter 0.5s;
}

.popup {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: rgba(0,0,0,0.5);
    width: auto;
    text-align: center;
    position: relative;
	min-width: 390px !important;
	max-width: 670px;
}

.popup-content button {
	text-decoration: none;
	border: none;
	background-color: rgba(0,0,0,0);
	max-width: 40px !important;
}

.popup-content .bannerImg {
	min-width: 390px !important;
	max-width: 650px;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
	text-decoration: none;
}
