﻿#privacyblock {
    display: block;
    position: fixed;
    z-index: 10000;
    left: 0;
    bottom: 0;
    width: 30%;
    height: 30%;
    margin: 0.5em;
    padding: 0.5em;
    background-color: #eee;
    font-family: "Open Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    color: #5c5e60;
    box-shadow: 0 1px 3px 2px rgba(0,0,0,0.15);
    min-width: 350px;
    min-height: 220px;
}

#acceptButton {
    border: 2px;
    border-radius: 4px;
    color: white;
    padding: 0.5em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    width: 55%;
    cursor: pointer;
    background-color: #1734c2;
    float: left;
    margin-left: 5%;
    text-transform: uppercase;
    font-weight: 700;
}

#customizeButton {
    border: 2px;
    border-radius: 4px;
    color: white;
    padding: 0.5em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    width: 30%;
    cursor: pointer;
    background-color: #1734c2;
    float: right;
    margin-right: 5%;
    text-transform: uppercase;
    font-weight: 700;
}

#privacytext {
    font-size: 11pt;
    font-weight: 200;
    line-height: 1.8;
}

.privacylink {
    color: #1734c2;
}

#viewPrivacy {
    font-size: 10pt;
    font-weight: 100;
}

@media only screen and (max-device-width: 1300px) {
    #privacyblock {
        width: 99%;
        height: 30%;
    }

    #acceptButton {
        margin-left: 2%;
        width: 60%;
    }

    #customizeButton {
        margin-left: 2%;
        width: 30%;
    }
}

@media only screen and (max-device-width: 650px) {
    #privacyblock {
        width: 70%;
    }

    #privacytext {
        font-size: 8pt;
        font-weight: 200;
        line-height: 1.5;
    }

    #acceptButton {
        margin-left: 2%;
        font-size: 10px;
        width: 40%;
    }

    #customizeButton {
        margin-left: 2%;
        font-size: 12px;
        width: 30%;
    }
}

@media only screen and (max-device-height: 930px) {
    #privacyblock {
        height: 35%;
    }
}