
.overlay-bg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
    cursor: pointer;
    z-index: 1000; /* high z-index */
    background: #000; /* fallback */
    background: rgba(0,0,0,0.75);
}

.overlay-content {
        background: #fff;
        padding: 1%;
        width: 40%;
        position: relative;
        top: 15%;
        left: 50%;
        margin: 0 0 0 -20%; /* add negative left margin for half the width to center the div */
        cursor: default;
        border-radius: 4px;
        box-shadow: 0 0 5px rgba(0,0,0,0.9);
}
 
.close-btn, .submit-btn{
	cursor: pointer;
    border: 0px solid #333;
    padding: 1% 2%;
    background: #6AA84F;
    border-radius: 4px;
	/*box-shadow: 0 0 4px rgba(0,0,0,0.3);*/
	position: absolute;
	bottom: 15px;
	color: white;
	width: 100px;
}

.close-btn{
	left: 130px;
}

.close-btn.left{
	left: 15px !important;
}

.overlay_reset_username{
    border: solid #6AA84F 1px;
    height: 16px;
    width: 100%;
}

.submit-btn{
}

.close-btn:hover, .submit-btn:hover {
	background: #5AA84F; 
}



/**************/
/* PHONE MODE */
/**************/


@media (max-width: 767px) {

.overlay-content {
        width: 80%;
	left: 30%
}

}
