:root {
    --primary-color: #200f00;
    --primary-light: #faf7f2;
    --secondary-color: #111111;
    --body-color: #666666;
    --border-color: rgba(255, 255, 255, 0.2);
    --border-color-01: rgba(0, 0, 0, 0.1);
    --white-color: #ffffff;
    --body-bg-color: #f5f5f5;
    --bg-text-color: #6a6a6a;
    --primary-font: "Sora", sans-serif;
    --secondary-font: "Inter", sans-serif;
    --link-hover: #876f44;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, audio, canvas, details, figcaption, figure, footer, header, hgroup, mark, menu, meter, nav, output, progress, section, summary, time, video {
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    margin: 0;
    padding: 0;
}
body {
    line-height: 1;
}
article, aside, dialog, figure, footer, header, hgroup, nav, section, blockquote {
    display: block;
}
nav ul {
    list-style: none;
}
ol {
    list-style: decimal;
    margin: 15px 0px 20px 30px;
}
ol>p {
    margin-left: -30px;
}
ul {
    list-style: disc inside;
}
li {
    margin-bottom: 5px;
}
ul ul {
    list-style: circle;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: none;
}
pre {
    background: var(--body-bg-color);
    font-family: var(--secondary-font);
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}
ins {
    text-decoration: underline;
}
del {
    text-decoration: line-through;
}
mark {
    background: none;
}
abbr[title], dfn[title] {
    border-bottom: 1px dotted var(--secondary-color);
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 1em 0;
    padding: 0;
}
input[type=submit], input[type=button], button {
    margin: 0;
    padding: 0;
}
input, select, a img {
    vertical-align: middle;
}
a {
    text-decoration: none;
}
b, strong {
    font-weight: 600;
}
i, em {
    font-style: italic;
}
i {
    margin-right: 10px;
}
html {
    height: 100%;
}
body {
    font-size: 15px;
    line-height: 1.7;
    font-family: var(--primary-font);
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    color: var(--body-color);
    height: 100%;
}
.body-wrapper {
    background-color: var(--body-bg-color);
    min-height: 100%;
    overflow: hidden;
}
h1 {
    font-size: 34px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 26px;
}
h4 {
    font-size: 22px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 14px;
}
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--secondary-color);
}
a {
    color: var(--secondary-color);
}
a:hover {
    color: var(--primary-color);
}
img {
    max-width: 100%;
}
/* nav area */
.nav-wrapper {
    box-shadow: 0 0 2px rgba(3, 3, 3, 0.6);
    width: 350px;
    background: var(--white-color);
    float: left;
    position: fixed;
    height: 100vh;
    scrollbar-width: thin;
    overflow-y: scroll;
    overflow-x: hidden;
}
.logo-wrapper {
    text-align: center;
    padding: 30px 20px;
    background: var(--primary-color);
    border-bottom: 1px solid var(--body-bg-color);
}
.need-support a i {
    margin-right: 3px;
}
.need-support a:hover i {
    color: var(--primary-color);
}
.main-nav-item {
    display: block;
    color: var(--secondary-color);
    background-color: var(--body-bg-color);
    padding: 14px 20px 14px;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}
.main-nav-item:after {
    font-family: FontAwesome;
    content: "\f067";
    font-size: 10px;
    display: block;
    position: absolute;
    right: 20px;
    top: 32%;
}
.main-nav-item:last-child {
    border-bottom: none;
}
.nav-item.active .main-nav-item:after {
    content: "\f068";
}
.nav-item.active .main-nav-item, .main-nav-item:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
.nav-item .sub-nav {
    display: none;
}
.nav-item.active .sub-nav {
    display: block;
}
.sub-nav-item {
    display: block;
    padding: 12px 28px 10px 49px;
    color: var(--body-color);
    cursor: pointer;
    border-top: 1px solid var(--border-color-01);
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}
.sub-nav-item.active, .sub-nav-item:hover {
    background: var(--primary-color);
    color: var(--primary-light);
}
.sub-nav-item:first-child {
    border-top: none;
}
/* content area */
.content-wrapper {
    overflow: hidden;
    margin-left: 350px;
}
.content-area {
    margin: auto 30px;
}
.doc-title-support {
    padding: 20px;
    background-color: var(--white-color);
    margin-bottom: 30px;
}
.doc-title-support>div {
    display: inline-block;
    vertical-align: middle;
    width: 49%;
}
.need-support a {
    text-transform: uppercase;
    padding: 10px 15px;
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    border: 1px solid;
    margin: 0 10px;
}
.need-support a:hover {
    color: var(--primary-color);
}
.doc-title h2 {
    margin: 0;
}
.need-support {
    text-align: right;
}
.need-support a i {
    color: var(--secondary-color);
    transition: all 400ms ease-in-out;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
}
.title {
    color: var(--secondary-color);
}
.content-wrapper img {
    background: var(--body-bg-color) none repeat scroll 0 0;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    box-sizing: border-box;
    margin: 15px auto;
    padding: 10px;
}
.video-section {
    background: var(--body-bg-color) none repeat scroll 0 0;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    box-sizing: border-box;
    margin: 15px auto;
    padding: 20px;
    display: inline-block;
    float: left;
    width: 100%;
}
.video-section-wrap,
.video-section > iframe{
    float: left;
    width: 100%;
}
.information {
    background: var(--body-bg-color);
    padding: 26px 30px;
    margin-bottom: 30px;
    color: var(--bg-text-color);
}
.message-box {
    padding: 26px 30px;
    background: var(--body-bg-color);
    margin-bottom: 30px;
    color: var(--bg-text-color);
}
.message-box i {
    color: var(--body-color);
    font-size: 20px;
    float: left;
    margin-right: 20px;
    margin-top: 3px;
}
.message-box span {
    display: block;
    overflow: hidden;
}
.gdlr-table {
    overflow: hidden;
}
.gdlr-table .head {
    font-weight: bold;
    margin-bottom: 9px;
}
.gdlr-3-row {
    float: left;
    width: 29%;
    padding: 15px 2% 12px;
    border: 1px solid var(--border-color);
    border-left-width: 0px;
}
.gdlr-3-row:first-child {
    border-left-width: 1px;
}
p {
    margin-bottom: 10px;
}
.divider {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
    margin-top: 30px;
}
.content-section {
    display: none;
    background-color: var(--white-color);
    margin-bottom: 50px;
    padding: 40px;
}
.content-section a {
    font-weight: bold;
    border-bottom: 1px solid;
    color: var(--link-hover);
}
.content-section a:hover{
    color: var(--primary-color);
}
.screenshot-wrap {
    display: flex;
    flex-direction: row;
    align-items: self-start;
}
.screenshot-wrap .screenshot-item:first-child {
    margin-right: 20px;
}
.pls-item h5 {
    margin-bottom: 0;
}
.container{
    max-width: 1280px;
}
.content-wrapper > .logo-wrapper{
    display: none;
}
@media(max-width: 1199px){
    .video-section{
        padding: 15px;
    }
    .nav-wrapper{
        width: 300px;
    }
    .content-wrapper{
        margin-left: 300px;
    }
    h2{
        font-size: 25px;
    }
    .doc-title-support > div.doc-title{
        width: 45%;
    }
    .doc-title-support > div.need-support{
        width: 52%;
    }
    .need-support a{
        font-size: 90%;
        margin: 0 5px;
    }
}
@media(max-width: 991px){
    .content-wrapper{
        margin-left: 0;
    }
    .nav-wrapper{
        width: 100%;
        position: relative;
        height: auto;
    }
    .content-wrapper{
        float: left;
        width: 100%;
    }
    .body-wrapper{
        display: flex;
        flex-direction: column-reverse;
    }
    .nav-wrapper > .logo-wrapper{
        display: none;
    }
    .content-wrapper > .logo-wrapper{
        display: block;
        display: none;
    }
}
@media(max-width: 575px){
    .video-section > iframe{
        height: 482px;
    }
    h2{
        font-size: 20px;
    }
    .need-support a {
        font-size: 85%;
        margin: 0 2px;
    }
    .doc-title-support > div.need-support {
        width: 59%;
    }
    .doc-title-support > div.doc-title {
        width: 40%;
    }
}
@media(max-width: 480px){
    .doc-title-support > div.doc-title{
        width: 100%;
        margin: 0 0 10px;
    }
    .doc-title-support > div.need-support{
        width: 100%;
        text-align: left;
    }
    .need-support a{
        padding: 8px 12px;
        font-size: 82%;
    }
    .doc-title-support{
        margin-bottom: 15px;
    }
    .content-area {
        margin: auto 15px;
    }
    .content-section{
        padding: 20px;
    }
    p{
        font-size: 98%;
    }
    h3 {
        font-size: 24px;
    }
    h1, h2, h3, h4, h5, h6{
        margin-bottom: 15px;
    }
    .video-section {
        padding: 10px;
    }
    .video-section > iframe {
        height: 250px;
    }
    .content-wrapper img{
        margin: 5px auto;
        max-width: 170px;
    }
}