
/* Popup ribbon */
#popupnewsletter-ribbon {
    position: fixed;
    top: 200px;
    z-index: 898;
    cursor: pointer;
    display:block;
}

/* Popup overlay */
#popupnewsletter-overlay {
    z-index: 899;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: #000;
    -moz-opacity:0.5;
    opacity:0.5;
    filter:alpha(opacity=50);
}

/* Popup */
#popupnewsletter {
	position: absolute;
    z-index: 900;
	left: 50%;
	margin-left: -250px;
	width: 460px;
    text-align: center;
	padding: 10px;
	background: #fff;
    border: 1px solid #fafafa;
    /* Drop shadows */
    -moz-box-shadow: 3px 3px 4px #808080;
    -webkit-box-shadow: 3px 3px 4px #808080;
    box-shadow: 3px 3px 4px #808080;
}

/* Popup contents */
#popupnewsletter .close-btn {
	position: absolute;
	top: -10px;
	right: -10px;
	cursor: pointer;
}

#popupnewsletter .heading {
    text-align: center;
    /*margin: 20px 80px;*/
    font-size: 20px;
}

#popupnewsletter form {
    margin: 0 20px;
}

#popupnewsletter label {
    margin: 0 0 10px 0;
    display: block;
}

#popupnewsletter .input-box {
    float: left;
    margin: 0 1px 10px 0;
    text-align: center;
    width: 100%;
}
#popupnewsletter .input-box input{
    padding: 8px;
}

#popupnewsletter .info {
    clear: both;
    color: #808080;
    font-style: italic;
    margin: 10px 0;
}

#popupnewsletter .bottom {
    padding: 10px;
    background: #c0c0c0;
    clear: both;
    text-align: center;
}

#popupnewsletter .result {
    clear: both;
    margin: 10px 0;
    padding: 10px 20px;
    display: none;
}

#popupnewsletter .result.ok {
    background: #e9fad0;
    color: #000;
}

#popupnewsletter .result.error {
    background: #f6c4ba;
    color: #000;
}

#popupnewsletter-form .form-button{
    background: #ab1d2b;
    /* border: 1px solid #ab1d2b; */
    color: #fff;
    display: block;
    font-size: 18px;
    position: relative;
    text-transform: none;
    width: 100%;
}

#popupnewsletter-email{
    float: left;
    height: 39px;
    min-width: 200px;
    width: 100%;
}

#popupnewsletter-form .input-box .form-button{
    float: left;
    margin-top: 10px;
    min-width: 100px;
    width: 100%;
}

#popupnewsletter-form .form-button:hover{
    background-color: #f7f7f7;
    /* border: 1px solid #ab1d2b; */
    color: #ab1d2b;
}

@media (max-width: 767px) {
    #popupnewsletter {
        margin-left: -150px;
        width: 300px;
    }
}