#subscribepopup {
    -webkit-background-clip: padding;
    background-clip: padding-box;
    background-color: #ffffff;
    text-align: center;
    box-shadow: 0px 4px 38px rgba(0, 0, 0, 0.4);
}

.subscribepopup {
    position: fixed;
    width: 360px;
    margin-left: -180px; /* LET OP: margin-left = helft van width */
    height: 350px;
    margin-top: -175px; /* LET OP: margin-top = helft van height */ 
    left: 50%;
    top: 50%;
    display: none;
    z-index: 99999;
    box-sizing: border-box;
    padding: 10px 20px;
}

#subscribepopup .close-bar {
    text-align: right;
    margin-right: -8px;
    font-size: 24px;
    line-height: 24px;
} 

#subscribepopup .close-bar a {
    text-decoration: none;
    font-weight: 300;
    color: #595B55;
}  

#subscribepopup .close-bar a:hover {
    color:#EF594F;
}  

#subscribepopup .title-bar {
    padding: 10px 20px 10px 20px;
    margin-bottom: 12px;
}

#subscribepopup .title-bar .title {
    color: #595B55;
    font-size: 22px;
    line-height: 24px;
    font-weight: normal;
    text-transform: uppercase;
    font-family: 'novecento_wide_bookbold';
} 

#subscribepopup .inner {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    position: relative;
    z-index: 100;
}

#subscribepopup .inner .text {
    margin-bottom: 24px;
    display: block;
}

#subscribepopup .inner #subscribe-field, .subscribe-field {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 10px;
    clear: both;
    height: 42px;
    border: none;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    border: 1px solid #9B9B9B;
    color: #595B55;
    box-sizing: border-box;
    margin: 8px auto 14px;
    box-shadow: none;
    padding: 0;
}

#subscribepopup .inner #subscribe-button {
    width: 100%;
    border: none;
    font-size: 14px;
    text-align: center;
    height: 43px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;	
    -webkit-appearance: none;
    transition: all .3s ease-out;
    background: #F1584A;
    color: #FFF;
    border-radius: 0;	
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

#subscribepopup .inner form p {
    margin-bottom: 0;
    font-weight: 600;
}

#subscribepopup #closer {
    margin-top: 50px;
    font-size: 11px;
    padding-top: 15px;
    text-align: right;
    border-top: 1px solid #aaaaaa;
    position: relative;
}

#subscribepopup .inner #closer a, 
#subscribepopup .inner #closer a:visited {
    color: #999999;
    text-decoration: none;
}

#subscribepopup .inner #closer img {
    position: absolute;
    top: -172px;
    right: 0px;
    z-index: -1;
}

@media only screen and (max-width: 375px) {
    .subscribepopup {
        position: fixed;
        width: 300px;
        margin-left: -150px;
        height: 390px;
        margin-top: -195px;
        left: 50%;
        top: 50%;
        z-index: 99999;
        box-sizing: border-box;
        padding: 10px 20px;
    }
}