﻿html {
    /* Used to set the top of page to height of header when scrolling to sections */
    scroll-padding-top: calc(3.13rem + 40px + 20px); /* height of header + height of Page Toolbar + height of top padding */
}

/* Set padding around entire section*/
.privacyPolicyContent {
    padding: 20px 20px;
}

.xtarget {
    margin: 0px;
    border: none;
    padding: 0px 60px;
}
    /* When jumping to a section, highlight section to show user what they've selected. */
    .xtarget:target {
        animation: highlight 2s ease;
        border-left: 0px solid white;
        border-top: 0px solid white;
        border-bottom: 0px solid white;
        border-right: 0px solid white;
    }
        /* Optional - After animation is gone this element will remain for the user to easily identify the section. */
        .xtarget:target:before {
            content: 'Currently Reading';
            font-family: 'Open Sans', sans;
            font-size: 12px;
            background: #ccc;
            border-radius: 3px;
            background-clip: padding-box;
            color: #fff;
            padding: 0 5px;
            margin: 0;
            position: relative;
            height: 20px;
        }

/* Highlight Settings called from animation above */
@keyframes highlight {
    0% {
        border-left: 10px solid red;
    }

    100% {
        border-left: 0px solid red;
    }
}

/* Navigation arrows for list items (optional) */
h1, h2, h3 {
    color: #5e5e5e;
    font-family: 'Georgia', Georgia, serif;
    font-weight: 400;
    letter-spacing: -.025em;
}

h1 {
    font-size: 36px;
}

h2 {
    position: relative;
    font-size: 24px;
    margin: 0px;
    padding: 0px;
}

    h2 a {
        color: slategrey;
        font-size: 16px;
        border: 1px solid #efefef;
        border-radius: 20%;
        background-clip: padding-box;
        display: inline-block;
        width: 60px;
        height: 36px;
        line-height: 38px;
        margin-left: 15px;
        vertical-align: middle;
        text-align: center;
        text-decoration: none;
    }

        h2 a:hover {
            color: white;
            background: slategrey;
        }

h3 {
    position: relative;
    font-size: 20px;
    margin: 0px;
    padding: 0px;
}

    h3 a {
        color: slategrey;
        font-size: 16px;
        border: 1px solid #efefef;
        border-radius: 20%;
        background-clip: padding-box;
        display: inline-block;
        width: 60px;
        height: 36px;
        line-height: 38px;
        margin-left: 15px;
        vertical-align: middle;
        text-align: center;
        text-decoration: none;
    }

        h3 a:hover {
            color: white;
            background: slategrey;
        }

p {
    color: #777;
    font-size: 18px;
    line-height: 1.714;
    font-weight: 300;
    letter-spacing: .01em;
    margin-bottom: 24px;
}


/* Left Panel */
.filters-navbar .item,
.filters-navbar ul.dxnb-content {
    border-right: none;
}

.filters-navbar .item {
    padding-left: 24px !important;
}

.privacyPolicyContainer {
    max-width: 900px;
}

.privacyPolicyLayout {
    padding-top: 8px;
    padding-bottom: 8px;
}
