/*
File Name - Style.css
Purpose - Styling for Privacy Policy
*/

body {
    font-family: "Source Sans Pro";
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.35;
    letter-spacing: normal;
    color: rgba(0, 0, 0, 0.87);
    margin: 0 10px;
}

h3 {
    text-decoration: underline;
}

li {
    margin-bottom: 1em;
    padding-left: .3em;
}

a {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.accordion .item input[type=checkbox] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.accordion .item input:target~.collapsible,
.accordion .item input:checked~.collapsible {
    display: block;
}

.accordion .item input~.collapsible {
    display: none;
}

.accordion .item h3 {
    cursor: pointer;
}

table {
    text-align: left;
    border-collapse: collapse;
}

table,
th,
td {
    border: 1px solid black;
}

th,
td {
    padding: 8px;
}

body>p:first-child {
    margin-top: 16px;
}