﻿
#divCookieNotice {
    position: fixed;
    right: 30px;
    bottom: 30px;
    max-width: 450px;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 5px;
    background: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 0 0 2px #eee, 0 1px 3px 0 #ccc;
    z-index: 9;
}

    #divCookieNotice .title-wrap {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
        height: 20px;
    }

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

    #divCookieNotice h4 {
        font-family: inherit;
        font-weight: 700;
        font-size: 18px;
    }

    #divCookieNotice p {
        color: #333;
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    #divCookieNotice .btn-wrap {
        display: flex;
        flex-direction: row;
        font-weight: 700;
        justify-content: left;
        margin: 0 -5px 0 -5px;
        flex-wrap: wrap;
    }

        #divCookieNotice .btn-wrap button {
            padding: 0 7px;
            margin: 0 5px 10px 5px;
            border-radius: .25rem;
            cursor: pointer;
            white-space: nowrap;
            min-width: 120px;
            line-height: 36px;
            border: none;
            font-family: inherit;
            font-size: 15px;
        }

@media only screen and (max-width: 768px) {
    #divCookieNotice {
        max-width: 100%;
        right: auto;
        bottom: 20px;
        margin: 0 15px;
    }
}