        body {
            padding-bottom: 50px;
        }

        .promo-banner {
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 50px;
            background: #521924;
            color: #fff;
            border-top: 1px solid #521924;
            z-index: 9999;
        }

        .promo-inner {
            max-width: 800px;
            height: 100%;
            margin: 0 auto;
            padding: 0 15px;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .promo-text {
            flex: 1;
            font-size: 15px;
            text-align: left;
            line-height: 1.3;
        }

        .promo-actions {
            display: flex;
            align-items: center;
            margin-left: 15px;
            white-space: nowrap;
        }

        .promo-actions .btn {
            margin-right: 10px;
        }


        .copy-btn, .copy-btn:active, .copy-btn:focus {
            background:#c6969e;
            padding:5px 10px 5px 10px;
            border:0px !important;
        }

        .copy-btn:hover {
            background:#ad848b;
            padding:5px 10px 5px 10px;
            border:0px !important;
        }




        .close-btn {
            color: #fff;
            font-size: 24px;
            line-height: 1;
            text-decoration: none;
            font-weight: bold;
        }

        .close-btn:hover,
        .close-btn:focus {
            color: #ddd;
            text-decoration: none;
        }

        /* Mobiel */
        @media (max-width: 767px) {

            body {
                padding-bottom: 120px;
            }

            .promo-banner {
                height: auto;
                min-height: 110px;
                padding: 10px 0;
            }

            .promo-inner {
                display: block;
                text-align: center;
            }

            .promo-text {
                text-align: center;
                margin-bottom: 10px;
                font-size: 14px;
            }

            .promo-actions {
                display: inline-block;
                margin: 0;
            }

            .promo-actions .btn {
                margin-right: 8px;
            }

            .close-btn {
                display: inline-block;
                vertical-align: middle;
            }
        }