.cookieConsentWrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.cookieConsentPopup {
    background-color: #e4e4e4;
    border: solid 1px #e4e4e4;
    text-align: center;
    display: none;
}
.cookieConsentPopup:after {
    content: '';
    display: block;
    clear: both;
}

.cookieConsentButton, .cookieConsentClose {
    cursor: pointer;
}
.cookieConsentInfo {
    margin: 10px 0;
    position: relative;
}
.cookieConsentText {
    display: block;
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0 30px 5px;
}
.cookieConsentText a {
    color: #1979c3;
    text-decoration: none;
}
.cookieConsentText a:hover {
    color: #006bb4;
    text-decoration: underline;
}
.cookieConsentButtons {
    font-weight: bold;
    margin: 10px 30px 10px;
    text-align: center;
}
.cookieConsentButtons a {
    display: block;
    margin-right: 0;
    padding: 19px 14px;
    pointer-events: auto;
    text-align: center;
    text-decoration: none;
}
.cookieConsentButtons a:after {
    display: none;
}
.cookieConsentButtons a:hover {
    padding: 19px 28px;
}
.cookieConsentButtons .cookieConsentAllow {
    background: #323231;
    color: white;
    margin-bottom: 10px;
}
.cookieConsentButtons .cookieConsentLearnMore,
.cookieConsentButtons .cookieConsentReject {
    color: #fff;
}

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

    .cookieConsentButtons .cookieConsentAllow {
        margin-bottom: 0;
    }
    .cookieConsentButtons .cookieConsentAllow,
    .cookieConsentButtons .cookieConsentReject {
        display: inline-block;
    }
    .cookieConsentButtons .cookieConsentAllow div,
    .cookieConsentButtons .cookieConsentReject div {
        width: 160px;
    }
}
@media only screen and (min-width: 1024px) {
    .cookieConsentInfo {
        text-align: left;
        width: 40%;
        float: left;
    }
    .cookieConsentInfo .cookieConsentClose {
        position: static;
        margin-left: 1em;
    }
    .cookieConsentText {
        margin: 0 0 5px 30px;
    }
    .cookieConsentButtons {
        float: right;
        text-align: right;
    }
    .cookieConsentButtons a {
        display: block;
    }
}
@media only screen and (min-width: 1200px) {
    .cookieConsentButtons a {
        display: inline-block;
    }
    .cookieConsentButtons > a {
        margin-right: 20px;
    }
    .cookieConsentButtons > a:not(:hover) {
        margin-right: 40px;
    }
    .cookieConsentButtons > a:hover {
        margin-right: 26px;
    }
}
@media only screen and (min-width: 1900px) {
    .cookieConsentInfo {
        width: 50%;
    }
}
