        .cookie-compliance-modal {
            position: fixed;
            width: 100vw;
            height: 100vh;
            top: 0;
            left: 0;
            z-index: 12001;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #636b6f;
            font-weight: 200;
            line-height: 1.5;
        }

        .cookie-compliance-modal::before {
            content: '';
            background-color: #6b7280;
            opacity: .75;
            width: 100vw;
            height: 100vh;
            display: block;
            position: absolute;
            z-index: 12001;
        }

        .cc-modal {
            background: #fff;
            border-radius: .5rem;
            max-width: 32rem;
            position: relative;
            z-index: 12001;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            color: #161e2e;
            max-height: 85vh;
            overflow: auto;
        }

        .cc-modal-content {
            padding: 1.5rem 1.5rem 1rem;
			background-color: #000;
        }

        .cc-modal-title {
            margin: 0;
            font-size: 1.125rem;
			color: #fff;
        }

        .cc-modal-text {
            margin-top: .5rem;
			color: #fff;
        }

        .cc-modal-footer {
            padding: .75rem 1.5rem;
            background-color: #000;
        }

        .cc-modal-button{
            text-align: center;
            padding: .5rem 1rem;
            cursor: pointer;
            background: rgba(107, 114, 128, 0.5);
            border-radius: .5rem;
            font-size: .875rem;
            line-height: 1.25rem;
			color: #fff;
			border: none;
        }

        .accept {
            background-color: #F9C921;
        }

        .cc-modal-button-group {
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            align-items: stretch;
            gap: 3px;
        }

        .button-optout {
            cursor: pointer;
            font-size: 16px;
            line-height: 1.5;
            text-align: center;
            border-radius: 3px;
            padding: 10px;
            margin: 10px;
            background: #edeef5;
            transition: background 0.5s;
            background: #dcdeec;
        }

        @keyframes blob {
            0%, 100% {
                transform: scale(1);
            }

            30% {
                transform: scale(1.12, 0.94);
            }

            60% {
                transform: scale(0.96, 1.06);
            }
        }

        @keyframes blobChecked {
            0% {
                opacity: 1;
                transform: scaleX(1);
            }

            30% {
                transform: scaleX(1.44);
            }

            70% {
                transform: scaleX(1.18);
            }

            50%, 99% {
                transform: scaleX(1);
                opacity: 1;
            }

            100% {
                transform: scaleX(1);
                opacity: 0;
            }
        }