

#cookieNotice.display-right {
    left: 30px;
    bottom: 25px;
    max-width: 395px;
    border: 1px solid lightgray;
}

    #cookieNotice.light {
        background-color: #fff;
        background-color: white;
        color: #393d4d;
        color: var(--cookieNoticeProDark);
    }

    #cookieNotice {
        box-sizing: border-box;
        position: fixed;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 6px 6px rgb(0 0 0 / 25%);
        font-family: inherit;
        z-index: 999997;
    }

        #cookieNotice #closeIcon {
            width: 20px;
            height: 20px;
            cursor: pointer;
            color: #bfb9b9;
            overflow: hidden;
            opacity: .85;
            z-index: 999999;
            position: absolute;
            top: 0;
            right: 0;
            background: url(../images/close-icon.svg) 0 0 / 20px 20px no-repeat;
        }

        #cookieNotice * {
            margin: 0;
            padding: 0;
            text-decoration: none;
            list-style: none;
            box-sizing: border-box;
        }

        #cookieNotice .title-wrap {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            background: url(../images/cookie-icon.svg) 0px 0px / 20px 20px no-repeat;
           /* padding-left: 35px;*/
            height: 22px;
        }

            #cookieNotice .title-wrap svg {
                margin-right: 10px;
            }

        #cookieNotice h4 {
            font-family: inherit;
            font-weight: 700;
            font-size: 14px;
        }

        #cookieNotice.light p, #cookieNotice.light ul {
            color: #393d4d;
            color: var(--cookieNoticeProDark);
        }

        #cookieNotice p, #cookieNotice ul {
            font-size: 12px;
            line-height:12px;
            margin-bottom: 20px;
        }

        #cookieNotice .btn-wrap {
            display: flex;
            flex-direction: row;
            font-weight: 300;
            justify-content: center;
            margin: 0 -5px 0 -5px;
            flex-wrap: wrap;
        }

            #cookieNotice .btn-wrap a {
                flex-grow: 1;
                padding: 0 7px;
                /* margin: 0 5px 10px 5px; */
                border-radius: 10px;
                cursor: pointer;
                white-space: nowrap;
                /* min-width: 122px; */
                line-height: 30px;
                border: none;
                font-family: inherit;
                font-size: 14px;
                transition: box-shadow .3s;
                text-align: center;
            }

        #cookieNotice a {
            outline: 0;
            border: none;
            appearance: none;
            -webkit-appearance: none;
            appearance: none;
        }

        #cookieNotice .btn-wrap a:hover {
            transition: box-shadow .4s cubic-bezier(.25,.8,.25,1),transform .4s cubic-bezier(.25,.8,.25,1);
            box-shadow: 0 2px 5px 0 rgb(0 0 0 / 30%);
            transform: translate3d(0,-1px,0);
        }

@media screen and (max-width: 700px) {
    #liveChat{
        bottom:10px;
    }
    #cookieNotice.display-right {
        left: 10px;
        right: 10px;
        padding: 5px;
        bottom: 30px;
        z-index: 105;
        border: 1px solid lightgray;
    }

    #cookieNotice h4{
        font-size:14px;
    }

    #cookieNotice p, #cookieNotice ul {
        font-size: 12px;
        line-height:12px;
        margin-bottom: 10px;
    }

    #cookieNotice .title-wrap{
        margin-bottom:5px;
        background:none;
        padding-left:5px;
        height:auto;
    }

    #cookieNotice .btn-wrap a{
        margin-left:10px;
        margin-right:10px;
        font-size:11px;
        line-height:23px;
    }
     
}