:root {
   color-scheme: light dark;
}

body {
   font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
   line-height: 1.5;
   margin: 0;
   color: #000000;
   background: #FFFDFA;
   padding-bottom: 52px;
   font-size: 18px;
   font-weight: 400;
}

h1 {
   font-size: 27px;
   font-weight: 700;
   line-height: 1.3;
   margin-top: 0;
   margin-bottom: 24px;
}

h2 {
   font-size: 22px;
   font-weight: 600;
   line-height: 1.35;
   margin-top: 64px;
   margin-bottom: 16px;
}

h2::before {
    display: block;
    content: "";
    border-top: 0.5px solid #D1C0AC;
    width: 100%;
    margin: 0;
    transform: translateY(-32px);
}

h3 {
   font-size: 20px;
   font-weight: 600;
   line-height: 1.35;
   margin-top: 44px;
   margin-bottom: 22px;
}

p {
   margin-top: 16px;
   margin-bottom: 16px;
}

ol {
   list-style-position: inside;
   padding: 0;
   margin-top: 0;
   margin-bottom: 0;
}

ul {
   list-style: none;
   padding: 0;
}

li {
   margin-bottom: 16px;
}

a {
   color: #007330;
   text-decoration: none;
}

blockquote {
   margin: 20px 0;
   padding: 0 16px;
   border-radius: 8px;
   border: solid 0.5px #D1C0AC;
   color: #8C6B46;
   background: #F5EFE9;
}

img {
   max-width: 100%;
}

.img20 img {
   width: 20px;
}

.img50 img {
   width: 50px;
}

.img320 img {
   width: 320px;
}

.img480 img {
   width: 480px;
}

.vid {
   width: 240px;
   height: 520px;
   margin: 0 auto;
   padding: 8px;
}

.vid video {
   height: 100%;
   border-radius: 36px;
}

.wrapper {
   max-width: 760px;
   margin: 0 auto;
   padding-right: 20px;
   padding-left: 20px;
}

.site-header {
   height: 120px;
   /* border-bottom: 1px solid #75757567; */
   position: sticky;
   background: #FFFDFA;
}

.site-header--wrapper {
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 100%;
}

.site-header--wrapper a {
   font-weight: 600;
   font-size: 24px;
}

.logo i {
   padding-left: 12px;
}

.details {
   margin-top: 28px;
   margin-bottom: 16px;
}

.details h1 {
   margin-bottom: 8px;
   font-size: 1.6rem;
}

.details p {
   margin: 0;
}

.details--item {
   font-size: 0.9rem;
   font-weight: 500;
   margin-bottom: 4px;
   color: #7F7F86;
}

.details--item i {
   margin: 0 6px;
}

.details--item i:first-child {
   margin-right: 0;
}

.grouped-table {
   margin-bottom: 22px;
}

.grouped-table--title h2 {
   font-size: 1rem;
}

.grouped-table--row {
   display: block;
   background: #FFFFFF;
   color: #000000;
   border: solid 1px #C5C6C8;
   border-bottom-style: none;
   padding: 12px 16px;
   text-decoration: none;
   cursor: pointer;
   -webkit-tap-highlight-color: transparent;
}

.grouped-table--row:hover {
   background: #E3E3EA;
}

.grouped-table--row:first-of-type {
   border-radius: 8px 8px 0 0;
}

.grouped-table--row:last-of-type {
   border-radius: 0 0 8px 8px;
   border-bottom-style: solid;
}

.grouped-table--row:only-of-type {
   border-radius: 8px;
}

.grouped-table--row-icon {
   width: 20px;
   margin-left: 14px;
   text-align: center;
}

.grouped-table--row-icon {
   color: #0077F7;
}

.grouped-table--row .description {
   color: #9797A4;
   margin-right: 12px;
}

.report-problem-link a {
   color: #9797A4;
   font-size: 0.8rem;
   font-weight: 500;
}

.search--wrapper {
   display: flex;
   justify-content: center;
   padding: 20px 0px;
}

.search--field {
   padding: 10px 14px;
   border-radius: 8px;
   border: solid 1px #C5C6C8;
   font-size: 1.15rem;
   width: 80%;
}

.hidden {
   visibility: hidden;
}

@media (prefers-color-scheme: dark) {

   body {
      color: #F1F6FF;
      background: #252527;
   }

   a {
      color: #00B8B8;
   }

   blockquote {
      color: #8A8F99;
      background: #39393C;
      border-color: #454547;
   }
   
   h2::before {
      border-color: #454547;
   }

   .site-header {
      background: #252527;
   }
}