html.disable-scroll {
    overflow-y: hidden;
}

.cookie-container {
    z-index: 9999;
    position: fixed;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(0,0,0,.5);
    top: 0;
    left: 0;
    display: none;
    overflow-x: auto;
}

.cookie-banner {
    z-index: 1000;
    position: relative;
    top: calc(40% - 182px);
    max-width: 600px;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    background-color: #fff;
    padding: 2.5rem 3rem 4rem;
    margin: 0 auto;
    height: auto;
}



.cookie-container .back {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.cookie-banner input {
    background: white;
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid #979798;
    box-sizing: border-box;
    padding: 0.7em 1.4em;
    font-size: 16px;
}

.cookie-banner input[type="email"], .cookie-banner input[type="text"] {
    padding: 0.7em;
    width: 100%;
    max-width: 300px;
}

.cookie-banner input[type="checkbox"]{
    margin-bottom: 5px;
    margin-right: 5px;
}

.cookie-banner p{
    font-size: 16px;
    line-height: 1.6;
}

.cookie-banner h2 {
    padding-top: 1rem;
    font-weight: 300;
    line-height: 1.05em;
    margin: 0;
    font-size: 3em;
    text-transform: uppercase;
    color: #bdbf3d;
}

.cookie-banner input[type="text"] {
    margin-bottom: 10px;
}

.cookie-banner label {
    display: block;
    margin-bottom: 5px;
}

.cookie-banner input[type="submit"] {
    margin-top: 10px;
    background: white;
    color: #bdbf3d !important;
    border: 2px solid #bdbf3d;
    transition: 0.5s all;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.cookie-banner input[type="submit"]:hover {
    background: #bdbf3d;
    color: white !important;
}

.cookie-banner button.close {
    padding: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #979798;
    font-size: 2rem;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media screen and (max-width: 600px) {
    .cookie-banner {
        padding: 1.5rem 2rem 3rem;
        top: calc(25% - 150px);
    }

    .cookie-banner p{
        font-size: 14px;
        line-height: 1.6;
    }

    .cookie-banner h2 {
        font-weight: 300;
        line-height: 1.05em;
        margin: 0;
        font-size: 2.5em;
        text-transform: uppercase;
        color: #bdbf3d;
    }

    .cookie-banner input {
        font-size: 14px;
    }
}

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

.cookie-banner input[type="email"] {
    margin-bottom: 20px;
}

.flex {
    display: flex;
    align-items: center;
}