@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "OpenSans";
    src: url("../fonts/OpenSans-ExtraBold.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

:root {
    --nav-width: 300px;
    --primary-color: #025159;
    --secondary-color: #D20023;
    --black-10: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background-color: rgb(255, 255, 255);
}

::-webkit-scrollbar-thumb {
    background-color: #dbdbdb;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'OpenSans', Arial, Helvetica, sans-serif;
}

.table-general {

    border-collapse: collapse;
    line-height: 1.4;

}

.table-general th,

.table-general td {

    padding: 12px;

}

.table-general th {

    background-color: #c7c1c1;

    white-space: nowrap;

    font-size: 16px;

    font-weight: 600;

    text-align: left;

}

.table-general td {

    vertical-align: top;
    border-top: 1px solid rgb(189, 185, 185) var(--theme-border);
    border-style: solid;
    border-color: rgb(202, 200, 200);
    display: table-cell;

}

.table-general th:first-child {

    width: 250px;

}

.img-border {
    border: 1px solid rgb(172, 170, 170);
}

.my16 {
    margin-top: 16px;
    margin-bottom: 16px;
}

.theme-img {
    width: 1000px;
    height: 1000px;
}

.note-text {
    font-size: 12px;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-color);
    background-color: #e7f3fe;
    border-left: 6px solid #2196F3;

}

.img-middle {
    vertical-align: middle;
}

.info-text {
    font-size: 12px;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-color);
    max-width: 860px !important;
    background-color: #fbfee7;
    border-left: 6px solid #d7eea3;

}

.divnote {
    margin-bottom: 15px;
    padding: 4px 12px;
}

hr {
    margin: 24px 0;
    border-top: 1px solid #dbdbdb;
}

.footer {
    background-color: #f8f8f8;
    color: #151818;
    font-size: 14px;
    padding: 2rem 0;

}

.footer p {
    margin: 0 auto;
    text-align: center;

}

.listing li,

ul>li,

ol>li {

    margin: 12px 0;

    line-height: 1.4;

}

/*.info{
    border: 1px; 
    background-color: rgb(242, 245, 197); 
    font-size: 12px;
}

.note{
    border: 1px; 
    background-color: rgb(179, 233, 243); 
    font-size: 12px;
}*/
.color-legends {
    padding: 1rem;
    background-color: rgb(43, 46, 46);
    font-size: 12px;
    font-weight: bolder;
    width: fit-content;
}

.note {

    border: 1px solid rgb(187, 236, 155);

}

.note .header {

    padding: 1rem;

    background-color: rgb(187, 236, 155);

    font-size: 14px;
    font-weight: bolder;

}

.note .body {

    padding: 1rem;

}

.note h3 {



    margin: 0;

}

.note p {

    margin: 0;

}

/*Info*/
.info {

    border: 1px solid rgb(80, 159, 159);

}

.info .header {

    padding: 1rem;

    background-color: rgb(64, 144, 197);

    font-size: 14px;
    font-weight: bolder;

}

.info .body {

    padding: 1rem;

}

.info h3 {



    margin: 0;

}

.info p {

    margin: 0;

}


/*info*/
.doc-page {}

.doc-nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--nav-width);

    display: flex;
    flex-direction: column;

    border-right: 1px solid var(--black-10);
}

.nav-header {
    flex: none;
    padding: 1rem 10px 1.4rem;
    text-align: center;
    background-color: #f8f8f8;
}

.nav-body {
    flex: 1 1 auto;
    padding: 1rem 0;
    overflow-y: auto;
    margin: 0.6rem 4px 0.6rem 0;
}

.nav-footer {
    flex: none;
    background-color: #f8f8f8;
}

.logo {
    width: 100%;
    height: 40px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {}

.nav-header>* {
    margin: 0;
}

.nav-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-header p {
    margin-top: 4px;
    font-size: 15px;
    color: var(--primary-color);
}

.nav-header p.version {
    font-size: 12px;
    color: #8D8D8D;
}

.doc-links {
    font-size: 14px;
}

.doc-links li+li {
    margin-top: 12px;
}

.doc-links a,
.parent-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.parent-link {
    cursor: default;
}

.doc-links ul {
    /* display: none; */
    margin: 14px 0;
}

.doc-links ul a {
    font-size: 14px;
    font-weight: 400;
}


/*nav footer*/
.nav-footer {
    padding: 1rem;
}

.nav-footer p {
    margin: 0;
    font-size: 14px;
    color: var(--primary-color);
}

.nav-footer p+p {
    margin-top: 6px;
}

/*content section*/
.doc-content {
    margin-left: var(--nav-width);
    /* max-width: 800px; */
    /* padding: 2rem 4rem; */
}

.content-section {
    /* max-width: 800px; */
    min-height: 200px;
    padding: 2rem 4rem;
}

.content-section.home {
    min-height: 100vh;
}

.content-section.home {
    position: relative;
    max-width: none;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../Images/hero.jpg) no-repeat center;
    background-size: cover;
}

/* .doc-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

.doc-title {

    text-align: center;

}



.home .doc-title h2 {

    margin: 0;

    font-size: 2.6rem;

    color: #fff;

    text-shadow: 2px 2px 2px rgb(0 0 0 / 44%);

}

.home .doc-title p {

    margin: 0;

    font-size: 1.4rem;

    color: #fff;

    text-shadow: 2px 2px 2px rgb(0 0 0 / 44%);

}

/* .home .doc-title h2 {
    margin: 0;
    color: #fff;
    font-size: 2.4rem;
    text-shadow: 2px 2px 2px rgb(0 0 0 / 44%);
    text-align: center;
} */
.section-title {
    margin: 0 0 2rem;
    padding-bottom: 4px;
    padding-left: 4px;
    color: var(--primary-color);
    font-size: 24px;
    border-bottom: 1px solid var(--secondary-color);
}

.content-section h2,
.content-section h3,
.content-section h4,
.content-section h5,
.content-section h6 {
    color: var(--primary-color);
}

.content-section p {
    /*max-width: 680px;*/
    line-height: 1.5;
}

.content-section img {
    display: inline-block;
}

.full-width {
    width: 100%;
    height: auto;
}

.width-60 {
    width: 60%;
    height: auto;
}

.width-15 {
    width: 15%;
    height: auto;
}

.width-100 {
    width: 100%;
    height: auto;
}

.listing {
    font-size: 16px;
}

.listing li {
    margin: 8px 0;
}

ul+h3 {
    margin-top: 3rem;
}