@charset "UTF-8";
@media all {
    #privacy-background {
        display: none;
        position: fixed;
        z-index: 1;
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
    }

    #privacy-container {
        display: none;
        position: fixed;
        z-index: 2;
        bottom: 0;
        width: 85%;
        max-width: 700px;
        padding: 25px;
        font-size: 1em;
        text-align: left;
        background-color: #ffffff;
        margin-left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.75);
        opacity: 0.85;
    }

    #privacy-container a {
        text-decoration: underline;
    }

    #privacy-container a:hover {
        color: #7f7f7f;
    }

    #privacy-title {
        font-size: 2.8rem;
        line-height: 3.6rem;
        padding-left: 15px;
        width: 100%;
        position: relative;
        font-weight: 900;
        margin-bottom: 30px
    }

    #privacy-title:before {
        content: "";
        height: 36px;
        width: 4px;
        background-color: #c8b98d;
        display: inline-block;
        position: absolute;
        left: 0;
    }

    #privacy-text,
    #privacy-help {
        float: left;
    }

    #privacy-help {
        display: none;
    }

    #privacy-buttons span {
        display: inline-block;
        cursor: pointer;
        padding: 10px 30px;
        margin-right: 20px;
        margin-bottom: 10px;
        color: #fff;
        background-color: #74799d;
        opacity: 1;
    }
}

@media only screen and (max-width: 768px) {
    #privacy-container {
        width: 95%;
    }
}

@media only screen and (max-width: 648px) {

    #privacy-buttons span {
        width: 100%;
        text-align: center;
        margin-right: 0;
        line-height: 26px;
    }
}
