html {
    overflow: hidden;
    height: 100vh;
}

body {
    overflow: hidden;
    height: 100vh;
    padding: 0px 0px;
}

html, body {
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
    background-color: whitesmoke;
    --height-header: 60px;
    --height-footer: 60px;
    --width-nav: 200px;
    --box-color-back: #f5f5f5;
    --box-color-border: #d5d5d5;
    --box-color-hover: #d5d5d5;
    --icon-color: #a5a5a5;
    --link-color-hover: #7c7676;
    --divider-background-color: rgba(255, 255, 255, 0.5);
    --divider-height: 25px;
    --divider-margin: 10px;
    --divider-width: 1px;
    --header-title-font-weight: 400;
    --header-title-font-size: 20px;
    --header-title-color: #fff;
    --header-background-color: #00591C;
    --header-logo-width: 174px;
    --header-logo-height: 70px;
    --link-menu-right-margin-bottom: 5px;
    --link-menu-right-margin-left: 15px;
    --link-menu-right-margin-top: 2.5px;
    --link-menu-right-font-weight: 500;
    --menu-right-font-size: 15px;
    --menu-right-margin: 0 15px;
    --menu-right-icon-margin: 5px;
}

.page, .root {
    position: relative;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: var(--height-header) 1fr var(--height-footer);
    grid-template-areas:
      'header'
      'main'
      'footer';
    height: 100vh;
    overflow-x: hidden;
    background-color: white;
    border-radius: 0px;
}

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: var(--box-color-border);
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.loader > i {
    font-size: 100px;
}

.divider {
    display: inline-block;
    height: var(--divider-height);
    margin: var(--divider-margin);
    vertical-align: middle;
    width: var(--divider-width);
    background: var(--divider-background-color);
}

.header-title {
    color: var(--header-title-color);
    font-weight: var(--header-title-font-weight);
    font-family: inherit;
    white-space: nowrap;
    overflow: hidden;
    font-size: var(--header-title-font-size);

}

.header {
    grid-area: header;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--height-header);
    background-color: var(--header-background-color);
}

.header > .menu-left {
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.header > .menu-left > .icon {
    width: var(--header-logo-width);
    height: var(--header-logo-height);
}

.header > .menu-left > i {
    margin: 10px;
    visibility: visible;
    font-size: larger;
    color: var(--header-title-color);
}

.header > .menu-right {
    display: flex;
    align-items: center;
    position: relative;
    margin: var(--menu-right-margin);
    height: 60px;
    cursor: pointer;
}

.header > .menu-right > a {
    font-family: inherit;
    font-size: var(--menu-right-font-size);
    text-decoration: none;
    color: white;
    margin-bottom: var(--link-menu-right-margin-bottom);
    margin-left: var(--link-menu-right-margin-left);
    margin-top: var(--link-menu-right-margin-top);
    font-weight: var(--link-menu-right-font-weight);
    display: flex;
    align-items: center;
}

.header > .menu-right > a i {
    margin-right: var(--menu-right-icon-margin);
}

.header > .menu-right > .label {
    font-family: inherit;
    font-size: 12px;
    margin-right: 5px;
}

.header > .menu-right > .region {
    font-family: inherit;
    font-size: 12px;
    margin-right: 10px;
}

.dropdown {
    font-size: 14px;
    position: absolute;
    top: 40px;
    right: 0px;
    width: 160px;
    height: auto;
    z-index: 1;
    background-color: lightgray;
    border-radius: 4px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all .3s;
    padding: 0px 5px;
}

.dropdown > .list {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.dropdown a {
    text-decoration: none;
    color: inherit;
}

.nav {
    position: fixed;
    grid-area: nav;
    height: 100%;
    overflow-y: auto;
    width: var(--width-nav);
    transform: translateX(-245px);
    z-index: 2;
}

#s-n-cl {
    position: absolute;
    right: 8px;
    top: 8px;
    visibility: hidden;
    cursor: pointer;
    font-size: larger;
}

#s-n-loader {
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 36px;
    color: var(--box-color-hover);
    visibility: visible;
    display: block;
}

#s-m-ts {
    visibility: hidden;
    display: none;
}

.nav ul {
    list-style: none;
    padding: 0px;
}

.nav a {
    text-decoration: none;
    color: inherit;
}

.nav li > i, .dropdown li > i {
    margin-right: 5px;
}

.nav-main, .nav-child, .task-item, .dropdown > .list > .item {
    border-radius: 5px;
    padding: 5px 0px 5px 10px;
    border: 2px solid var(--box-color-back);
    color: black;
    background: var(--box-color-back);
    margin: 5px 0px;
}

.nav-main {
    margin: 10px 10px 10px 0px;
    font-size: 14px;
}

.nav-child {
    margin: 0px 10px 5px 10px;
    font-size: 12px;
}

.task-item {
    margin: 0px 10px 5px 20px;
    font-size: 12px;
}

.nav-main:hover, .nav-child:hover, .task-item:hover, .dropdown > .list > .item:hover {
    background: var(--box-color-hover);
    transition:0.3s;
    color: black;
}

.main {
    grid-area: main;
    padding: 5px;
    font-size: 14px;
}

.main > .content, .main > .content-faq {
    padding: 0px 10px 0px 10px;
}

.content-faq h1 {
    font-size: 20px;
}

.content h1 {
    font-size: 20px;
    border-bottom: 3px solid var(--box-color-border);
}

.content h2 {
    font-size: 18px;
    border-bottom: 2px solid var(--box-color-border);
}

.content h2:before {
    content: "\00BB";
    font-size: 18px;
    color: var(--icon-color);
    padding-right: 8px;
}

.content h3 {
    font-size: 16px;
    border-bottom: 1px solid var(--box-color-border);
    font-weight: normal;
}

.content h3:before{
    content: "\00BB\00BB";
    color: var(--icon-color);
    padding-right: 8px;
}

.content h3 a {
    text-decoration: none;
    color: inherit;
}

.content p {
    line-height: 1.5em;
}

.content li {
    padding-top: 5px;
}

.content .card-grid-banner, .content .card-grid-buttons {
    display: grid;
    grid-gap: 20px;
    margin: 20px;
}

.content .card-grid-banner {
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); /* Where the magic happens */
    grid-auto-rows: 94px;
}

.content .card-grid-buttons {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Where the magic happens */
    grid-auto-rows: 120px;
}

.content .card, .content .button {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--box-color-back);
    max-width: 360px;
    border: 1px solid var(--box-color-border);
    border-radius: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content .card:hover, .content .button:hover{
    background-color: var(--box-color-hover);
}

.content .card-a {
    display: flex;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    color: inherit;
}

.content-faq h2 {
    border: 1px solid #ddd;
    border-radius: 80px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: normal;
    background-color: #dedede;
}

.content-faq h3 {
    border: 1px solid #ddd;
    border-radius: 80px;
    padding: 10px 20px;
    cursor: pointer;
    --icon-hex: "\02795";
    font-size: 14px;
    font-weight: normal;
}

.content-faq h3:before {
    float: right !important;
    content: var(--icon-hex);
    padding-right: 5px;
}

.content-faq h3 ~ p {
    word-wrap: break-word;
    padding-left: 20px;
    padding-right: 20px;
    margin: 10px;
    display: none;
}

.content-faq h3 ~ h4 {
    margin: 10px;
    display: none;
}

.content-faq h3 ~ img {
    margin: 10px auto;
    display: none;
}

.content-faq h3 ~ ol {
    margin: 10px;
    display: none;
}

.content-faq h3 ~ ul {
    margin: 10px;
    display: none;
}

.content-faq h3 ~ blockquote {
    display: none;
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-left: 2px solid #ddd;
    color: #666;
    page-break-inside: avoid;
    line-height: 1.1;
    max-width: 100%;
    overflow: auto;
    padding: 0px 10px 0px 10px;
    word-wrap: break-word;
}

.card .card-box {
    display: flex;
    width: 100%;
}

.button .card-box {
    display: block;
    text-align: center;
}

.card .card-img {
    width: 25%;
}

.button .card-img {
    width: 40%;
}

.card .card-text {
    margin-left: 10px;
}

.button .card-text {
    margin-left: 10px;
}

.card .card-title {
    font-size: larger;
}

.button .card-title {
    font-size: small;
}

.card .card-desc {
    font-size: smaller;
    color: black;
}

.read-more {
    text-decoration: none;
    font-size: smaller;
    border-radius: 3px;
    border: 1px solid var(--box-color-border);
    padding: 3px 5px;
    margin: 0px 1px;
    background: var(--box-color-back);
    white-space: nowrap;
}

.read-more::after {
    content: "\2794";
    margin: 0 1px 0 3px;
}

.scroll-link {
    transition: all .25s ease-in-out;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: .25em;
    width: 40px;
    height: 40px;
    background-color: var(--box-color-back);
}

.scroll-link.show {
    visibility: visible;
    opacity: 1;
}

.scroll-link.hide {
    visibility: hidden;
    opacity: 0;
}

.scroll-link > svg {
    fill: #000;
    width: 24px;
    height: 12px;
}

.scroll-link:hover {
    background-color: var(--box-color-hover);
}

.scroll-link:hover > svg{
    fill: #000000;
}

.scroll-link-text {
    position: absolute;
    clip-path: inset(50%);
    margin: -1px;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    word-wrap: normal !important;
    clip: rect(1px, 1px, 1px, 1px);
}

.scroll-link-text:focus {
    display: block;
    top: 5px;
    left: 5px;
    z-index: 100000;
    clip-path: none;
    background-color: var(--box-color-back);
    padding: 15px 23px 14px;
    width: auto;
    height: auto;
    text-decoration: none;
    line-height: normal;
    color: #444;
    font-size: 1em;
    clip: auto !important;
}

.footer {
    grid-area: footer;
    height: var(--height-footer);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    font-size: x-small;
    background-color: var(--box-color-back);
    color: black;
}

.footer-msg, .footer-links {
    display: flex;
    margin-top: -20px;
}

.footer-links > a {
    text-decoration: none;
    color: inherit;
    margin: 0px 10px;
}

.active {
    visibility: visible !important;
    opacity: 1;
    transform: translateY(0);
}

.sel {
    border: 2px solid grey;
}

.side-show {
    opacity: 1;
    transform: translateX(0);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.08);
    background-color: lightgray;
    padding-top: 15px;
    padding-left: 5px;
}

.btn {
    font-size: smaller;
    border-radius: 3px;
    border: 1px solid #404040;
    padding: 0px 5px;
    margin: 0px 1px;
    background: #dedede;
    white-space: nowrap;
}

.btn:hover{
    border-color: rgb(202, 74, 141);
    background: rgb(202, 74, 141);
    color: whitesmoke;
}

blockquote {
    margin-left: 0px;
    margin-right: 0px;
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-left: 2px solid #ddd;
    color: #666;
    page-break-inside: avoid;
    line-height: 1.1;
    margin-bottom: 1.1em;
    max-width: 100%;
    overflow: auto;
    padding: 0px 10px 0px 10px;
    display: block;
    word-wrap: break-word;
}

.img-full {
  border: 1px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: min(90%, 1080px) !important;
}

.image-row {
    display: grid;
    gap: 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: min(90%, 1080px) !important;
}

.image-row img {
    display: block;
    max-width: min(90%, 1080px);
    margin-left: auto;
    margin-right: auto;
}

.svg-full {
    border: 1px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: min(80%, 800px) !important;
}

.svg-max {
  border: 1px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: min(90%, 1000px) !important;
}

.svg-medium {
    border: 1px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
}

.svg-med-border {
    border: 1px solid var(--box-color-border);
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
}

.icon-image {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin: 0px 1px 0px 1px;
}

.icon-big {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin: 2px;
}

.img-border {
    border: 2px solid var(--box-color-border);
    border-radius: 16px;
    overflow: hidden;
}

@media only screen and (min-width: 46.875em) {
    /* Break out to side nav grid layout on medium + screens*/

    .page {
      grid-template-columns: var(--width-nav) calc(100% - var(--width-nav));
      grid-template-areas:
        'header header'
        'nav main'
        'footer footer';
    }

    .nav {
      position: relative;
      transform: translateX(0);
    }

    .header > .menu-left > i {
        visibility: hidden;
    }

    .image-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .image-row img {
        max-width: 100%;
    }
}
