button {
    padding: 5px 10px;
    color: #fff;
    background: #ff0000;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
}

.inner-modal {
    background: #fff;
    padding: 5px;
    max-width: 300px;
    margin: 15% auto 0 auto;
    position: relative;
    border-bottom: 5px solid #ff0000;
}

#close-modal {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #999;
    font-family: 'arial', sans-serif;
    font-size: 14px;
    cursor: pointer;
    background: #f0f0f0;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
}
    #close-modal:hover {
        background: #ddd;
    }

.input-message {
    font-size: 12px;
    height: 14px;
 }
.error {
    color: red;
}
.success {
    color: green;
}

label {
    color: #999;
}
input {
    margin: 0 0 1px 0;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    background: #f0f0f0;
    font-size: 14px;
    padding: 5px 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
input[type="checkbox"] {
    width: 25px;
    border: none;
}
.acceptance {
    padding: 5px 0;
}
.dataprivacy-message {
    display: block;
}
input[type="submit"] {
    margin: 0 0 5px 0;
    padding: 10px;
    border:  1px solid #ff0000;
    color: #fff;
    background: #ff0000;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
    input[type="submit"]:hover {
        background: #333;
        border: 1px solid #333;
    }
table {
    width: 100%;
}
.notices {
    font-style: italic;
    font-size: 14px;
    color: #575757;
}

/* =CookieCuttr
-------------------------------------------------------------- */

.cc-cookies {
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 20px;
    max-width: 400px;
    font-size: 14px;
    line-height: 1.4;
    background: #fff;
    z-index: 9;
    -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
}
.cc-cookies .cc-cookie-title {
    margin: 0 0 10px 0;
    font-weight: bold;
}
.cc-cookies .cc-cookie-content {
    margin: 0 0 10px 0;
    font-size: 14px;
}
.cc-cookie-accept {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    padding: 6px 20px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    background: green;
    border: 3px solid green;
}
.cc-cookie-accept:hover {
    color: #fff;
    opacity: 0.9;
}
.cc-cookie-decline {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    color: #999;
    padding: 6px 20px;
    text-decoration: none;
    border: 3px solid #f0f0f0;
}
.cc-cookie-decline:hover {
    color: inherit;
    border: 3px solid #ddd;
}


@media only screen and (min-width: 600px) {
    body {
        font-size: 16px;
    }
    .inner-modal {
        padding: 25px;
        max-width: 400px;
    }
    input {
        font-size: 16px;
    }
}

@media only screen and (min-width: 900px){

    /* CookieCuttr */
    .cc-cookies {
        position: fixed;
        left: 50px;
        bottom: 50px;
    }
}