/*============================= Typography ==================================*/
@charset "UTF-8";

html {
    font-size: 16px;
}
body {
    font: var(--base-font-size) / var(--base-lineheight) var(--base-font-family);
    font-weight: 500;
    background: var(--page-bg);
    color: var(--base-color);
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: geometricPrecision;
}

/*::selection {
    background: var(--color-green);
    color: #fff;
}*/

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: bold;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 1em;
}
h1:where(:first-child), h2:where(:first-child), h3:where(:first-child), h4:where(:first-child), h5:where(:first-child), h6:where(:first-child), .h1:where(:first-child), .h2:where(:first-child), .h3:where(:first-child), .h4:where(:first-child), .h5:where(:first-child), .h6:where(:first-child) {
    margin-top: 0;
}

h1, .h1 {
    font-size: 26px;
    margin: 0.7em 0;
    color: #ffa302;
}
h2, .h2 {
    font-size: 20px;
    margin: 0.65em 0;
}
h3, .h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0.82em 0;
}
h4, .h4 {
    font-size: 14px;
    font-weight:600;
    margin: 0.74em 0 0.74em 0;
}
h5, .h5 {
    font-size: 14px;
    font-weight: 300;
}
h6, .h6 {
    font-size: 12px;
}
/**/
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}
.img-rounded {
    border-radius: 6px;
}
.img-circle {
    border-radius: 50%;
}

p {
    margin: 0.74em 0 0.74em 0;
}
p:first-child {
    margin-top: 0;
}
p:last-child {
    margin-bottom: 0;
}
p img.float-left, p img[align="left"] {
    margin: 3px 20px 0 0;
}
p img.float-right, p img[align="right"] {
    margin: 3px 0 15px 20px;
}
p + h2 {
    margin-top: 0.9em;
}
/**/
b, strong, .bold {
    font-weight: bold;
}
small, .small {
    font-size: 12px;
}
big, .big {
    font-size: 16px;
}
mark, .mark {
    background-color: #fcf8e3;
    padding: .2em;
}
/*hr {
  height: 2px;
  margin-top: 26px;
  margin-bottom: 26px;
  border: 0;
}*/
/**/
a[name]:empty {
    position: relative;
    top: 60px;
}
/**/
a, .link {
    text-decoration: var(--link-line, var(--_link-line, underline));
    text-decoration-color: var(--link-line-color, var(--_link-line-color));
    text-decoration-style: var(--link-line-style, var(--_link-line-style, solid));
    text-decoration-thickness: var(--link-line-thickness, var(--_link-line-thickness, auto));
    text-underline-offset: var(--link-line-offset, var(--_link-line-offset, auto));
    text-decoration-skip-ink: var(--link-line-skip-ink, var(--_link-line-skip-ink, auto));
    transition: background-color var(--transition-duration) ease-in-out 0s, color var(--transition-duration) ease-in-out 0s, opacity var(--transition-duration) ease-in-out 0s;
    color: var(--link-color, var(--_link-color));
    cursor: pointer;
}
a, .link, a:active, .link:active, a:focus, .link:focus {
    outline: none;
}
a:where(:hover), .link:where(:hover) {
    text-decoration-line: var(--link-line-hover, var(--_link-line-hover));
    text-decoration-color: var(--link-line-color-hover, var(--_link-line-color-hover));
    text-decoration-style: var(--link-line-style-hover, var(--_link-line-style-hover));
    text-decoration-thickness: var(--link-line-thickness, var(--_link-line-thickness));
    color: var(--link-color-hover, var(--_link-color-hover));
}
.link--noline {
    text-decoration: none;
}
[href^="tel:"] {
    white-space: nowrap;
    --_link-line: underline;
    --_link-line-hover: none;
    --_link-color: currentColor;
}

.link--current {
    --_link-color: var(--theme-color);
}
.link--solid {
    --_link-line: underline;
    --_link-line-style: solid;
    --_link-line-style-hover: var(--_link-line-style);
}
.link--dashed, .link--pseudo {
    --_link-line: underline;
    --_link-line-style: dashed;
    --_link-line-style-hover: var(--_link-line-style);
}
.link--dotted {
    --_link-line: underline;
    --_link-line-style: dotted;
    --_link-line-style-hover: var(--_link-line-style);
}
/**/
blockquote, .blockquote{
    font-size: 15px;
    font-style: italic;
    line-height: 1.333;
    margin: 0.74em 0 1.1em 0;
    padding: 19px 20px 23px 20px;
    background: #eef9ff;
}
blockquote:where(:first-child) {
    margin-top: 0;
}
blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child {
    margin-bottom: 0;
}
/**/
ul:where(:not([class])), ol:where(:not([class])) {
    padding: 0 0 0 30px;
    margin: 0.74em 0 0.74em 0;
    list-style: none;
}
ul:where(:not([class]):last-child), ol:where(:not([class]):last-child) {
    margin-bottom: 0;
}
:where(ul:not([class]), ol:not([class])) > li {
    position: relative;
    margin: 0 0 0.74em 0;
}
:where(ul:not([class]), ol:not([class])) > li:last-child {
    margin-bottom: 0;
}
:where(ul:not([class])) > li:before {
    position: absolute;
    content: '\2022';
    font-family: sans-serif;
    font-size: 8px;
    line-height: 2.5;
    top: 0;
    left: 14px;
    display: inline-block;
}
:where(ol:not([class])) > li:before {
    position: absolute;
    counter-increment: list;
    content: counter(list) ".";
    top: 0;
    right: 100%;
    margin: 0 -25px 0 0;
    text-align: right;
}
:where(ul:not([class]) > li, ol:not([class]) > li) > ul:where(:not([class])), :where(ul:not([class]) > li, ol:not([class]) > li) > ol:where(:not([class])) {
    margin-top: 0.74em;
    margin-bottom: 0;
}

/**/
code {
    font-family: inherit;
    font-weight: 550;
    letter-spacing: 0.14px;
    padding: 12px 16px 8px 16px;
    margin: 15px 0 20px 0;
    border: none;
    background: var(--color-bg-quote);
    white-space: preserve-spaces;
    display: block;
}
code:first-child {
    margin-top: 0;
}
code:last-child {
    margin-bottom: 0;
}
/**/
.typography_content table {
    margin: 0.74em 0 0.74em 0;
    border: none;
    border-collapse: collapse;
    background: none;
}
.typography_content td, .typography_content th{
    font-weight:normal;
    text-align:left;
    padding:5px 0 5px 0;
    border:none;
}
.typography_content thead td, .typography_content .thead td{
    padding-bottom:7px;
}
.typography_content td + td{
    padding-left:15px;
}
.typography_content tr + tr td{
    border-top:1px solid #dfeff8;
}
.typography_content thead td{
    border-top:none;
    border-bottom:1px solid #dfeff8;
}

.table {
    font: inherit;
    max-width: 100%;
    margin-top: 0.74em;
    margin-bottom: 0.74em;
    border: none;
    border-collapse: collapse;
    border-spacing: 0;

    overflow: hidden;

    --td-padding-y: 5px;
    --td-padding-x: 15px;
}
.table--wide {
    width: 100%;
}
:where(.table-responsive) > .table {
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: inherit;
    box-shadow: none;
}
.table:where(:first-child) {
    margin-top: 0;
}
.table:where(:last-child) {
    margin-bottom: 0;
}
.table > * > :where(tr) {
    background: #F4F5F3;
    background: var(--light, #F4F5F3) var(--dark, #2c2c2c);
}
.table > * > * > * {
    vertical-align: baseline;
}
.table > * > * > * :where(*:last-child) {
    margin-bottom: 0;
}
.table > * > * > :where(td, th) {
    padding: var(--td-padding-y) var(--td-padding-x);
    border: none;
    border-top: 1px solid #dfeff8;
    border-right: 1px solid #dfeff8;
    background: inherit;
    text-align: inherit;
}
.table > * > * > :where(th) {
    font-weight: 700;
}
.table > * > * > :where(td:empty, th:empty) {
    padding: 0;
}
.table--vertical-middle > * > * > * {
    vertical-align: middle;
}
.table > * > * > :where(td:first-child, th:first-child) {}
.table > * > * > :where(td:last-child, th:last-child) {
    border-right: none;
    border-top-right-radius: inherit;
    border-bottom-right-radius: inherit;
}
.table > *:where(:first-child) > *:where(:first-child) > :where(td, th) {
    border-top: none;
}
.table > :where(thead) > :where(tr) > *, .table > :where(tbody) > :where(tr.thead) > * {
    border-bottom: 1px solid #dfeff8;
    /*font-weight: 700;
    background: #E5DED8;*/
    --td-padding-y: 7px;
}
.table > thead > tr > td, .table > tbody > tr.thead > td, .table > thead > tr > th, .table > tbody > tr.thead > th {}
.table > thead > tr:first-child > td, .table > tbody > tr.thead:first-of-type > td, .table > thead > tr:first-child > th, .table > tbody > tr.thead:first-of-type > th {
    border-top: none;
}

.table--bordered > * > * > td, .table--bordered > * > * > th, .table--bordered > * > * > td:last-child, .table--bordered > * > * > th:last-child {
    border-right: 1px solid var(--color-gray-light, #F6F6F6);
}
.table--nobordered > * > * > td, .table--nobordered > * > * > th {
    border: none;
}
.table--noborder-v > * > * > td, .table--noborder-v > * > * > th {
    border-right: none;
}

.table--condensed > * > * > td, .table--condensed > * > * > th {
    padding: 5px;
}

.table--striped > tbody > tr:where(:nth-child(2n+1)) {
    background: var(--color-gray-light, #F6F6F6);
}
.table--striped > thead + tbody > tr {
    background: none;
}
.table--striped > thead + tbody > tr:where(:nth-child(2n)) {
    background: var(--color-gray-light, #F6F6F6);
}

.table--hover > tbody > tr:not(.thead):hover {
    position: relative;
    background: #f5f5f5;
    color: #339966;
}

.table-responsive {
    position: relative;
    min-height: 0.01%;
    margin-bottom: 25px;
    overflow-x: auto;
    display: block;
}
.table-responsive--bordered {
    border: 1px solid var(--color-gray-light, #F6F6F6);
}
.table-responsive--bordered > .table {
    border: none;
}
.table-responsive--round {
    border-radius: 12px;
}
.table-responsive:first-child { margin-top: 0; }
.table-responsive:last-child { margin-bottom: 0; }
.box-rds > .table-responsive { border-top-right-radius: inherit; border-top-left-radius: inherit; border-bottom-right-radius: inherit; border-bottom-left-radius: inherit; }
.table-responsive-outer {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}
.table-responsive-outer--round {
    border-radius: 12px;
}
.table-responsive-outer:first-child { margin-top: 0; }
.table-responsive-outer:last-child { margin-bottom: 0; }
.table-responsive-outer > .table-responsive { margin-top: 0; margin-bottom: 0; }

.table-responsive__left-sdw, .table-responsive__right-sdw { position: absolute; top: 0; width: 0; height: 100%; box-shadow: 0 0 0 0 #f4f2eb; transition: all 0.35s ease 0s; z-index: 5; }
.table-responsive__left-sdw { left: 0; }
.table-responsive__right-sdw { right: 0; }
.table-responsive__left-sdw--show { box-shadow: 0 0 20px 20px #f4f2eb; }
.table-responsive__right-sdw--show { box-shadow: 0 0 20px 20px #f4f2eb; }

h2 + .table, .h2 + .table, h2 + .table-responsive, .h2 + .table-responsive, h2 + .table-responsive-outer, .h2 + .table-responsive-outer { margin-top: -5px; }
/*============================ !Typography! =================================*/
/*============================= Utilities ===================================*/
.vertical-top {
    vertical-align: top;
}
.vertical-middle {
    vertical-align: middle;
}
.vertical-baseline {
    vertical-align: baseline;
}
.vertical-bottom {
    vertical-align: bottom;
}

.ir {
    display: block;
    text-indent: -999em;
    overflow: hidden;
    background-repeat: no-repeat;
    text-align: left;
    direction: ltr;
}
.hidden {
    display: none;
    visibility: hidden;
}
.visuallyhidden {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
}
.invisible {
    visibility: hidden;
}

.clearfix:before, .clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    visibility: hidden;
}
.clearfix:after {
    clear: both;
}
.ul-inline-block {
    letter-spacing: -3px;
    word-spacing: -3px;
    line-height: 0px;
}
.ul-inline-block > li, .inline-block {
    display: inline-block;
    letter-spacing: normal;
    word-spacing: normal;
    line-height: 1.231;
}
.float-left {
    float: left;
}
.float-right {
    float: right;
}
.text-align-left {
    text-align: left;
}
.text-align-center {
    text-align: center;
}
.text-align-right {
    text-align: right;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-nowrap {
    white-space: nowrap;
}
.block-elem {
    display: block;
}
/*============================ !Utilities! ==================================*/