#list-builder {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    filter: alpha(opacity=80);
	opacity: 0.8;
    display: none;
}

#popup-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #911e26;
    color: #FFFFFF;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    border: 10px solid #FFFFFF;
    display: none;
	z-index:1000;
}

#popup-box h1:before{border:none;}

#popup-close {
    position: absolute;
    top: 5px;
    right: -18px;
    cursor: pointer;
    width: 40px;
    font-family: arial;
    font-size: 20px;
}

#popup-box h1 {
    margin: 0;
}

#popup-box form {
    margin-bottom: 0px;
}

#popup-box input {
    padding:6px;
    border: none;
    width:100%;
    margin-bottom: 15px;
    color: #666
}
#popup-box select {
    padding:6px;
    border:none;
    width:100%;
    margin-bottom: 0px;
    color: #666
}
#popup-box .subscribe {
padding: 10px 30px;
    border: 1px solid #000;
    background: #000;
    float: right;
    text-transform: uppercase;
	color:#fff;

}
#popup-box-content h3 {margin:0;padding:0 0 15px; text-transform: uppercase;}

