/* Cookie Banner: Global CSS
-----------------------------------------------------------------------------*/
.cookie-css {
    font-family: sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
}

.cookie-css h2 {
    font-size: 45px;
    font-weight: 900;
    margin: 0 0 30px 0;
}

.cookie-css a {
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

.cookie-css p {
    margin-top: 0;
}

.cookie-css input[type="submit"],
.cookie-css button {
    background: transparent;
    border: 1px solid white;
    border-radius: 2px;
    cursor: pointer;
    font-family: sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 30px;
    height: 30px;
    color: white;
    padding: 0 25px;
}

.cookie-css label {
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
}

.cookie-css input[type="checkbox"] {
    margin-right: 10px;
}

/* Cookie Banner: Bottom Bar
-----------------------------------------------------------------------------*/
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0066A1;
    color: white;
    text-align: center;
    z-index: 1000;
    line-height: 1;
}

#cookie-banner .inner {
    padding: 20px;
}

#cookie-banner p {
    display: inline-block;
    margin-bottom: 0;
}

#cookie-banner a.cookie-settings {
    margin: 0 30px;
}

/* Cookie Banner: Settings Modal
-----------------------------------------------------------------------------*/
#cookie-banner-settings {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 700px;
    width: 100%;
    height: 450px;
    background: white;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    overflow-y: scroll;
    z-index: 1002;
}

#cookie-banner-settings .description {
    margin-bottom: 40px;
}
#cookie-banner-settings .cookie-settings-footer {
	margin-bottom: 40px;
}
#cookie-banner-settings input[type="submit"] {
    background: #0066A1;
    border-color: #0066A1;
    display: block;
    margin: 0 auto 40px;
}

/* Cookie Banner: Settings Modal Overlay
-----------------------------------------------------------------------------*/
#cookie-banner-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
}

/* Responisve
-----------------------------------------------------------------------------*/
@media (max-width: 800px) {
    #cookie-banner-settings {
        padding: 20px;
    }
}
