.cookie-notice-container,
.cookie-notice-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@-webkit-keyframes cookieNoticeContainerEnter {
    from {
        background-color: rgba(0, 0, 0, 0);
    }
    to {
        background-color: rgba(0, 0, 0, .4);
    }
}

@keyframes cookieNoticeContainerEnter {
    from {
        background-color: rgba(0, 0, 0, 0);
    }
    to {
        background-color: rgba(0, 0, 0, .4);
    }
}

.cookie-notice-portal {
    position: static !important;
  }

.cookie-notice-container {
    position: fixed;
    left: 0; top: 0; right: 0; bottom: 0;

    z-index: 9999;

    margin: 0;
    padding: 20px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;

    -webkit-box-pack: center;

    -ms-flex-pack: center;

    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    background-color: rgba(0, 0, 0, .4);
    color: #2c2d30;

    -webkit-animation: cookieNoticeContainerEnter .5s ease;

    animation: cookieNoticeContainerEnter .5s ease;
}

@-webkit-keyframes cookieNoticeEnter {
    from {
        -webkit-transform: translateY(-100vh);
        transform: translateY(-100vh);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes cookieNoticeEnter {
    from {
        -webkit-transform: translateY(-100vh);
        transform: translateY(-100vh);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.cookie-notice {
    display: block;
    width: 100%;

    max-width: 580px;
    max-height: calc(100vh - 40px);

    overflow-y: auto;

    background-color: #ffffff;

    border-radius: 8px;

    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, .35);

    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);

    -webkit-animation: cookieNoticeEnter .5s ease;

    animation: cookieNoticeEnter .5s ease;
}

.cookie-notice__content {
    padding: 25px 30px;
}

.cookie-notice__footer {
    padding: 20px 30px;
}

.cookie-notice__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;

    -webkit-box-pack: end;

    -ms-flex-pack: end;

    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    border-top: 1px solid #e8e8e8;
}

.cookie-notice__footer > * + * {
    margin-left: 20px;
}

.cookie-notice__title,
.cookie-notice__subtitle {
    line-height: 1;
}

.cookie-notice__title {
    font-size: 24px;
}

.cookie-notice__subtitle {
    margin-top: 20px;

    font-size: 16px;
}

.cookie-notice__description {
    margin-top: 20px;

    font-size: 16px;
    line-height: 1.5;
}

.cookie-notice__description a {
    text-decoration: underline;
}
