:root {
            --genesys-contrast-color: rgba(0,0,0,0.87);
            --genesys-primary-color: #0D6EFD;
            --genesys-overlay-zindex: 1;
         }
         .genesys-mxg-ps-custom svg {
            fill: var(--genesys-contrast-color);
         }
         .genesys-mxg-ps-custom > div, .genesys-mxg-ps-custom > button {
            display: none;
            position: fixed;
            line-height: 1;
            z-index: var(--genesys-overlay-zindex);
            transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
            transform: translate3d(0, 0, 0); /* Safari - address possible position flicker and blur() perf */
         }
         .genesys-mxg-ps-custom > div.show, .genesys-mxg-ps-custom > button.show {
            display: block;
         }
         .genesys-mxg-close {
            line-height: 1;
            pointer-events: none;
            padding: 10px;
         }
         .genesys-mxg-close:before {
            background-color: var(--genesys-primary-color);
            content: ' ';
            position: absolute;
            top: 14px;
            bottom: 14px;
            left: 14px;
            right: 14px;
            z-index: -1;
         }
         .genesys-mxg-close svg {
            width: 32px;
         }

         .genesys-mxg-ps-custom > button.genesys-mxg-customlauncher {
            border: none;
            background: transparent;
            padding: 0;
            margin: 0;
            z-index: calc(var(--genesys-overlay-zindex) - 2);
            width: 90px;
            height: 90px;
         }
         .genesys-mxg-customlauncher svg {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            opacity: 0;
            transition: opacity 250ms ease-in-out;
         }
         .genesys-mxg-customlauncher:not(.active):not(:hover) svg.launcher-default,
         .genesys-mxg-customlauncher:not(.active):hover svg.launcher-hover,
         .genesys-mxg-customlauncher.active svg.launcher-active {
            opacity: 1;
         }

         .genesys-mxg-ps-custom .genesys-mxg-counter {
            height: 25px;
	         width: 25px;
            line-height: 25px;
            border-radius: 50%;
            text-align: center;
	         background: #ff0000;
            color: #fff;
         }

         .genesys-mxg-disclaimer {
            font-size: 10px;
            max-width: 255px;
            line-height: 1;
            color: #767676;
         }
         .genesys-mxg-disclaimer a {
            color: #767676;
         }