/* ///// POPUP ///// */

#ac-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: 10005;
}
#popup {
    background: none repeat scroll 0 0 #FFFFFF;
	border-radius: 0!important;
    -moz-border-radius: 18px;
    -webkit-border-radius: 18px;
    height: auto;
    position: relative;
    width: 597px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
    margin: 2%;
}

#popup img {
    max-width: 200px;
}

#popup h4 {
    font-size: 2em;
    line-height: 2;
}

@media screen and (max-width : 400px)  {
	#popup {
		background: #FFFFFF;
		-moz-border-radius: 18px;
		-webkit-border-radius: 18px;
		height: auto;
		position: relative;
		width: 597px;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 5%;
		margin: 2%;
	}
	
	#popup center
	{
		height: 450px;
		overflow: scroll;
	}
}