.privacy-policy {
    background: #fff;
    border: 1px solid #ddd;
    border-left: 0;
    border-right: 0;
    bottom: 0;
    left: 0;
    min-width: 320px;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 501;
    transition-duration: .2s;
    padding-bottom: 50px;

    .btn {
        min-width: 250px;
    }

    * {
        transition-duration: .2s
    }

    .container {
        display: flex
    }

    .privacy-policy__right {
        display: flex;
        .btn {
            margin-bottom: 10px;
            width: 100%
        }

        .btn:last-child {
            margin-bottom: 0
        }
    }
    
    @media (min-width: 768px) {
        .btn {
            flex: 0 0 170px
        }
        .container {
            align-items: center;
            justify-content: space-between
        }

        .privacy-policy__left {
            padding-right: 30px
        }
    }
    @media (max-width: 767px) {
        .container {
            align-items:center;
            flex-direction: column;
            text-align: center
        }
        .btn {
            text-align: center
            justify-content: center;
            width: 100%
        }
    }
}