/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/
 
:root {
    --bg-color: #f8f6f7;
    --font-color: #5b5b5b;
    --shell-yellow: #fbce07;
                --shell-red: #e21717;
                --hover-color: #595959;
}
 
*, *::before, *::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
 
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    font-family: Futura, Verdana, Arial, Sans-serif;                                
}
 
a {
    color: var(--font-color);
    font-weight: bold;
}
 
.wrapper {
    max-width:  768px;
    margin: 2rem auto;
                padding: 0 2rem;
}
 
.headers {
    text-align: center;
}
 
h1 {
    text-transform: uppercase;
    color:var(--font-color);
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 7px;
    border-bottom: 4px solid var(--shell-yellow);
    display: inline-block;
}
 
 
h2 {
    color:var(--font-color);
    font-size: 14px;
                font-weight: normal;
}
 
p {
    color:var(--font-color);
    font-size: 12px;
    line-height: 1.8;
    font-weight: normal;
    margin: 1rem;
    text-align: center;
}
 
.grid {
    margin: 2rem 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
                grid-row-gap: 10px;
}
 
label {
    color: var(--font-color);
    font-size: 12px;
    text-align: left;
}
 
input {
    border: 1px solid var(--font-color);
    margin-top: .7rem;
    padding: .7rem .5rem;
    width: 100%;
    color: var(--font-color);
}
 
input:hover, 
input:focus {
    outline: none;
    border: 1px solid transparent; 
    -webkit-box-shadow: 0px 0px 5px 3px rgba(251,206,7,0.25);
    box-shadow: 0px 0px 5px 3px rgba(251,206,7,0.5);
}
 
input[type=submit] {
    background-color: var(--shell-yellow);
    color: var(--font-color);
    font-weight: bold;
    font-size: 14px;
    display: block;
    margin: 2rem auto 0 auto;
    padding: 1.5rem;
    width: 100%;
    border: 1px solid transparent;
    -webkit-transition: background-color .15s ease-in, color .15s ease-in;
    -o-transition: background-color .15s ease-in, color .15s ease-in;
    transition: background-color .15s ease-in, color .15s ease-in;
    cursor: pointer;
}
 
input[type=submit]:hover,
input[type=submit]:focus {
    background-color: var(--hover-color);
    color: var(--shell-yellow);
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
 
.main_errorMessage {
    font-size: 14px;
    font-weight: bold;
}
 
.privacy {
                text-align: center;
}
 
.privacy,
.marketing {
    position: relative;
}
 
.privacy_statement {
                width: 200px;
                display: block;
                margin: 0 auto;
}
 
.privacy_statement a {
text-decoration: none;
}
 
.privacy_statement a:focus {
                outline: none;
                border-bottom: 2px solid var(--shell-red);
                padding-bottom: 3px;
}
 
.privacy_statement::after {
    content: '';
                margin-top: 3px;
    display: block;
                border-bottom:  2px solid var(--shell-red);
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);  
    -webkit-transition: -webkit-transform .2s ease-in-out;  
    transition: -webkit-transform .2s ease-in-out;  
    -o-transition: transform .2s ease-in-out;  
    transition: transform .2s ease-in-out;  
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}
                
.privacy_statement:hover::after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
}
 
.privacy p {
    text-align: center;
}
 
.mandatory {
                color: var(--shell-red);
}
                                
.error_message {
    text-align: left;
    font-size: 10px;
    margin-left: 0;
    margin-top: .7rem;
    color: var(--shell-red);
}
 
.error_hide {
    display: none;
}
 
.error_border {
    border: 1px solid transparent;
    -webkit-box-shadow: 0px 0px 5px 3px rgba(221,29,21,0.5 );
    box-shadow: 0px 0px 5px 3px rgba(221,29,21,0.5);
}
 
 
@media only screen and (max-width: 600px) {
 
.grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    }
 
input {
    margin: .7rem 0 .7rem;
    }
 
input[type=submit] {
    text-align: center;
    text-align: -webkit-center;
    }
                
.privacy {
    text-align: center;
    }
}
