.cookiebanner {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: none;
    z-index: 99999999;
    box-shadow: 0px 0px 4px 1px rgba(53, 53, 53, 0.15);
}

.cookiebanner .section {
    padding: 24px 0;
}

.cookie-modal {
    position: fixed;
    z-index: 99999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    box-shadow: 0px 0px 10px rgba(0,0,0,.8);
    display: none;
}

.cookie-modal__content {
    background-color: #fefefe;
    margin: auto;
    margin-top: 10vh;
    padding: 2%;
    border: 1px solid #888;
    width: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
    font-size: .9em;
}

.cookie__wrapper {
    display: flex;
    align-items: center;
    flex-direction: initial;
}

.cookie__title {
    padding-bottom: 5px;
}

.cookie__body {
    font-size: 15px;
    width: 70%;
    float: left;
}

.cookie__section label {
    font-size: 1rem;
}

.modal__description {
    font-size: 1rem;
}

.cookie__cta {
    margin-left: auto;
    font-size: 15px;
}

.cookie__cta a {
    /*margin: 10px;*/
}

.cookie__section + .cookie__section {
    margin-top: 20px;
}

.section--shadow {
    box-shadow: 0px 0px 8px rgba(0,0,0,.3);
}

@media screen and (max-width: 800px) {
    .cookie-modal__content {
        width: 80%;
    }
}

@media screen and (max-width: 480px) {
    .cookie-modal__content {
        margin: auto;
        margin-top: 5%;
        padding: 2%;
        border: 1px solid #888;
        width: 85%;

    }
    .cookie__wrapper {
        flex-direction: column;
    }

    .cookie__wrapper > div {
        width: 100%;
    }

    .cookie__cta {
        text-align: center;
        margin-top: 15px;
        margin-left: 0;
    }

    h2 {
        /*font-size: 1.2em;*/
    }

    .btn {
    }
}
