.cookie-consent-banner {
            font-size: min(1em, 1rem);
            position: fixed;
            bottom: 1.25em;
            right: 1.25em;
            max-width: 20em;
            background: #fff;
            border-radius: 2.4em;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 10000;
            padding: 1.5em 2em;
            animation: slideInRight 0.5s ease-out;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(2rem);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .cookie-consent-banner__content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 1em;
        }

        .cookie-consent-banner__text {
            font-size: 1em;
            line-height: 1.4;
            /*font-weight: 300;*/
            color: var(--base-text-color);
        }

         .cookie-consent-banner__text a {
              font-weight: 500;
         }

        .cookie-consent-banner__form {
            display: flex;
        }

        .cookie-consent-banner__button {
            display: inline-block;
            box-sizing: border-box;
            vertical-align: top;
            text-decoration: none;
            cursor: pointer;
            margin: 0;
            border: 1px solid #e6e7e8;
            padding: 8px 20px;
            min-width: 150px;
            color: #101010;
            font: 13.94px / 21px core_sans_nr45_regular, Arial, FreeSans, sans-serif;
            letter-spacing: 1.394px;
            text-align: center;
            border-radius: 2px;
            text-transform: uppercase;
            outline: none;
            transition: all .2s linear;
            padding-top: 15px;
            padding-bottom: 14px;
            border-radius: 0;
            border: none;
            color: #fff;
            background: #00aff0;
        }

        .cookie-consent-banner__button:hover {
            background-color: #005aaa;
        }

