#list-builder {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    filter: alpha(opacity=80);
	opacity: 0.2;
    display: none;
	z-index:999999999;
}

#popup-box {
    position: fixed;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    color: #FFFFFF;
    width: 90%;
    max-width: 800px;
    padding: 10px;
    border: 10px solid #1a6acb;
    display: none;
	z-index:999999999;
}

#popup-close {
    position: absolute;
    top: -25px;
    right: -25px;
    cursor: pointer;
    width: 29px;
}

#popup-box h1 {
    margin: 0;
	text-align:center;
	border-bottom:solid 1px #f5f5f5;
	padding-bottom:13px;
}
#popup-box h2 {
    margin: 0;
	text-align:center;
	color:#000;
	margin-top:10px;
}
#popup-box p {
	text-align:center;
	color:#000;
	margin-top:10px;
}

#popup-box form {
    margin-bottom: 0px;
}

#popup-box input {
    padding: 8px;
    border: 2px solid #dddddd;
    width: 100%;
	margin-bottom:14px;
}

#popup-box button {
    padding: 10px;
	background:#1a6acb;
	color:#fff;
}