#popup-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,.6);
z-index: 1001;
}
#popup{
width: 765px;
height: auto;
margin:auto;
position: relative;
top: 30%;
}
.input {
    background-color: #CE2127;
    position: absolute;
	font-size:15px;
	font-weight:bold;
	color: #fff;
	width:33px;
	height:33px;
    top: -24px;
    right: 0%;
    border: 0 ;
    cursor: pointer;
	border-radius: 18px;
    transition: background-color 0.3s linear; 
   -moz-transition: background-color 0.3s linear;  
   -webkit-transition: background-color 0.3s linear; 
   -ms-transition: background-color 0.3s linear; 
} 

.input:hover {
   background-color: #9e171c;
   }
  
@media all and (max-width:767px) {
#popup{
max-width: 70%;
}
#popup img {
width: 100%;
}
.input {
	width:25px;
	height:25px;
    top: -24px;
}
}
@media all and (max-width:650px) {
.input {
	width:20px;
	height:20px;
}
}