.cookie-notice-base {
    background: #00205B;
    color: #fff;
    padding: 45px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999999999999999999999999;
    transform: translate3d(0, 100%, 0);
    transition: all .25s cubic-bezier(0.25, 0.1, 0.25, 1);
    width: 100%;
}
.cookie-notice-base.slide-in {
    transform: translate3d(0, 0, 0);
}
.cookie-notice-base.slide-out {
    transform: translate3d(0, 100%, 0)
}
.cookie-notice-base .cookie-notice-content {
    position: relative;
    padding-right: 60px;
    z-index: 1;
}
.cookie-notice-base .cookie-notice-content .svg-icon {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}
.cookie-notice-base .cookie-notice-content .svg-icon svg {
    color: #fff;
    fill: #fff;
    width: 30px;
    height: 30px;
}