/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {  
}
 
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 768px) {  
}
 
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    .privacy-sheet {
        padding-top: 100px !important;
        padding-left: 130px !important;
        padding-right: 130px !important;
    }
}
 
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1020px;
    }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
body {
    font-family: 'Roboto', sans-serif;
}

.brand-text {
    /* font-size: 28.2px; */
    background: linear-gradient(to right, #ffd032 0%, #ff244c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bd-navbar {
    background-color: #1b1b1b;
}

.navbar {
    padding-top: .1rem;
    padding-bottom: .1rem;
}

.section-title {
    font-size: 36px;
    font-weight: bolder;
}

.section-1 {
    background: url(assets/body01Bg.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 150px;
    padding-bottom: 150px;
    color: #f1f3f5;
}

.section-2 {
    background-color: #e9ecef;
    color: #212529;
    padding-top: 120px;
}

.section-3 {
    background-color: #343a40;
    color: #f1f3f5;
    padding-top: 120px;
    padding-bottom: 120px;
}

.footer {
    background-color: #1b1b1b;
    color: #f1f3f5;
    padding-top: 90px;
    padding-bottom: 120px;
}

footer ul, footer ol, footer li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.video-link {
    font-size: 18px;
    display: inline-block;
    text-decoration: none;
    color: #ff8806;
}

.backlight-video-link {
    text-decoration: none;
    color: #adb5bd;
}

.download-button {
    background-color: #ff8806;
    color: #ffffff;
}

.site-footer-heading {
    font-size: 18px;
    font-weight: bold;
    color: #f1f3f5;
    margin-bottom: 14px;
}

.site-footer-link {
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    color: #f1f3f5;
}

.site-footer-share {
    margin-left: 30px;
}

.copyright-text {
    font-size: 14px;
    color: #f1f3f5;
}

.orange-text {
    color: #ff8806;
}

.section-tips,
.section-accordion-tips,
.accordion-button, 
.accordion-button:not(.collapsed), 
.accordion-button:focus {
    background-color: #e9ecef;
    border-color: #adb5bd;
    box-shadow: 0 0 0 0;
    color: #adb5bd;
    text-decoration: none;
    outline: 0;
}

.section-accordion-tips li {
    font-weight: lighter;
}

.accordion-button:not(.collapsed)::before,
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23YOUR_HEX_CODE'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.section-tips ul {
    margin: 0;
    padding: 0;
}

.section-tips-item {
    padding: 0 18px 0 18px;
    border-width: 0 1px 0 0px; /* top right bottom left */
    border-style: inset; 
    border-color: #adb5bd;
    font-weight: lighter;
}

.section-tips-item:first-child {
    min-width: 80px;
    padding: 0 0 0 0;
}

.section-tips-item:last-child {
    min-width: 200px;
    border-style: none;
    padding: 0 0 0 18px;
}

.section-privacy {
    background-color: #e9ecef;
}

.privacy-sheet {
    padding-bottom: 120px !important;
    background-color: #ffffff;
}

.privacy-sheet-title {
    font-size: 36px;
    font-weight: bold;
    padding-bottom: 18px;
}

.privacy-term-title {
    color: #495057;
    /* font-size: 16px; */
    font-weight: bold;
}

.privacy-term-body {
    color: #495057;
    /* font-size: 16px; */
    font-weight: normal;
    padding-bottom: 30px;
}

.privacy-email-link {
    text-decoration: none;
}

span.tab {
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding-left: 2em; 
}

.section-accordion-tips li {
    font-weight: lighter;
}

/* Numbered lists like 1, 1.1, 2.2.1... 
https://stackoverflow.com/a/25298818
*/
.privacy-term-body ol li {
    display:block;
} /* hide original list counter */

.privacy-term-body ol > li:first-child {
    counter-reset: item;
} /* reset counter */

.privacy-term-body ol > li {
    counter-increment: item;
    position: relative;
} /* increment counter */

.privacy-term-body ol > li:before {
    content:"(" counters(item, ".") ")";
    position: absolute;
    margin-right: 100%; 
    right: 4px;
} /* print counter */
