html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  width: 100vw;
}

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

::-moz-selection {
  background: var(--color-secondary);
  color: #fff;
}

::selection {
  background: var(--color-secondary);
  color: #fff;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul, ol {
  margin: 0.75em 0 1.25em 0;
  padding: 0 0 0 1.5em;
}

li ul, li ol {
  margin: 0 0 1.5em 2em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: var(--font-weight-bold);
}

dd {
  margin: 0 1.5em 1.5em;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  width: 100%;
  padding: var(--input-padding);
  color: var(--color-text);
  font-weight: var(--font-weight-regular);
  line-height: var(--body-line-height);
  background: var(--input-background-color);
  -webkit-appearance: none;
  outline: none;
  border-radius: var(--input-border-radius);
  font-size: 0.9em;
  border: 1px solid var(--color-border);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=range]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=color]::placeholder,
textarea::placeholder {
  color: var(--color-text-grey);
  font-weight: var(--font-weight-regular);
  line-height: var(--body-line-height);
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  outline-width: 0;
  outline: none;
}

label {
  display: block;
  text-align: left;
  font-size: 1rem;
  letter-spacing: 0.02em;
  font-weight: var(--font-weight-bold);
}

body select,
body .fs-label-wrap {
  width: 100%;
  padding: var(--input-padding);
  color: var(--color-text);
  font-weight: var(--font-weight-regular);
  line-height: var(--body-line-height);
  background: var(--input-background-color);
  -webkit-appearance: none;
  outline: none;
  border-radius: var(--input-border-radius);
  font-size: 0.9em;
  border: 1px solid var(--color-border);
  -webkit-appearance: auto;
}
body select::placeholder,
body .fs-label-wrap::placeholder {
  color: var(--color-text-grey);
  font-weight: var(--font-weight-regular);
  line-height: var(--body-line-height);
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a,
a:visited,
a:focus,
a:active {
  color: var(--color-secondary);
  text-decoration: none;
  transition: all 0.15s ease;
  word-wrap: break-word;
}

a:not([href]) {
  cursor: auto;
}

.content-wpb a:not(:has(img, div, i)) {
  border-bottom: 1px solid var(--color-primary);
}
.content-wpb a:not(:has(img, div, i)):hover {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: var(--font-weight-bold);
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 2em;
  margin-top: 1.5em;
  margin-bottom: 0.7em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 2em;
  margin-top: 0.5em;
  margin-bottom: 0.7em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}

.widget .widget-title {
  margin-top: 0;
  margin-bottom: 1em;
}

.widget select {
  max-width: 100%;
}

.widget.widget_template_widget {
  padding-left: 15px;
  padding-right: 15px;
}

.widget-wrapper > .widget-sticky {
  position: sticky;
  top: 5.5rem;
}

body.sticky-header--active .widget-wrapper > .widget-sticky {
  top: 10rem;
}

body.smallHead .widget-wrapper > .widget-sticky {
  top: 7rem;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
body .checkmarks ul,
body .links ul,
body .red-cross ul {
  list-style: none;
  margin-left: 0;
}
body .checkmarks ul li,
body .links ul li,
body .red-cross ul li {
  margin-bottom: 0.6em;
  line-height: 1.5;
}
body .checkmarks ul li::before,
body .links ul li::before,
body .red-cross ul li::before {
  font-family: var(--font-icon);
  font-weight: var(--font-icon-bold);
  display: inline-block;
  margin-left: -1.5em;
  width: 1.5em;
  color: var(--color-primary);
  padding-right: 0;
}
body .checkmarks table ul,
body .links table ul,
body .red-cross table ul {
  padding-left: 0.5em;
}

body .checkmarks ul li::before {
  content: "\f00c";
}

body .links ul li::before {
  content: "\f0c1";
  font-size: 0.8em;
  position: relative;
  margin-left: -1.8em;
  width: 1.8em;
}
body .links ul li a {
  border: 0;
}
body .links ul li a:hover {
  color: var(--color-primary);
}

body .red-cross ul li::before {
  content: "\f00d";
  color: var(--color-red);
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.site-content {
  position: relative;
  clear: both;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

.back {
  padding: 1.5em 0;
  font-size: 0.9em;
}

.back a::before {
  font-family: var(--font-icon);
  font-weight: var(--font-icon-light);
  content: " \f060";
  font-size: 1em;
  padding: 0.5em;
}

.page-no-margin .content-area {
  padding-bottom: 0;
}

.page-no-margin .entry-header-page {
  margin-bottom: 0;
  background: var(--color-secondary);
}

body .site-content .wpml-ls {
  color: var(--color-text-grey);
  font-size: 0.9em;
}
body .site-content .wpml-ls a::before {
  display: none;
}

/*--------------------------------------------------------------
## Rewards programs
--------------------------------------------------------------*/
.programs h2:first-child {
  margin-top: 0;
}

.pagination {
  margin: 3em auto;
  width: 100%;
  text-align: center;
}

.pagination a,
.pagination .current,
.pagination a.facetwp-page {
  display: inline-table;
  padding: 0.2em 0;
  margin: 0 0.25em;
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
  border-radius: 100%;
  width: 2em;
  height: 2em;
}

.pagination .current,
.pagination a.facetwp-page.active {
  color: var(--color-primary);
  background: var(--color-light);
}

.pagination .next,
.pagination .prev {
  font-size: 0;
}

.pagination .prev::before {
  content: "\f060";
  font-family: var(--font-icon);
  margin-right: 0.6em;
  font-size: 1rem;
}

.pagination .next::after {
  content: "\f061";
  font-family: var(--font-icon);
  margin-left: 0.6em;
  font-size: 1rem;
}

.pagination .prev.active,
.pagination .next.active {
  background: transparent;
}

body {
  max-height: 99999vh;
}

body.scrollLock {
  overflow: hidden;
  max-height: 100vh;
  transition-property: max-height;
  transition-duration: 1ms;
  transition-delay: 1001ms;
}

body ul.post-categories {
  line-height: 1em;
  list-style: none;
  margin: 0.4em 0;
  padding: 0;
  display: flex;
}
body ul.post-categories li {
  white-space: nowrap;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-stack-heading);
  font-weight: var(--font-weight-heading);
  line-height: var(--heading-line-height);
  border-bottom: none;
  font-size: 0.65em;
  display: flex;
  align-items: center;
  line-height: 1;
}
body ul.post-categories li a {
  color: var(--color-primary);
  z-index: 2;
  position: relative;
}
body ul.post-categories li a:hover {
  color: var(--color-secondary);
}
body ul.post-categories li::after {
  content: " ";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background: var(--color-secondary);
  margin: 0 0.6em;
}
body ul.post-categories li:last-child::after {
  display: none;
}
body ul.post-categories li:last-child a::after {
  content: "";
  padding: 0;
}

.content-wpb .wpb_single_image a,
.content-wpb .archive-grid a,
.content-wpb .card a,
.content-wpb .custom-html-widget a,
.content-wpb .custom-html-widget a:hover,
.content-wpb a.adv-link,
.content-wpb a.adv-link:hover {
  border-bottom: 0;
}

.swiper-inner_caption {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 1em 1.5em;
  font-size: 0.9rem;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.site-main table {
  border-spacing: 0;
  border-collapse: unset !important;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.site-main table tbody {
  overflow-x: scroll;
  min-width: 500px;
}
.site-main table td {
  padding: 0.6em 1em;
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}
.site-main table td:first-child {
  border-left: 1px solid var(--color-border);
}
.site-main table td:last-child {
  border-right: 1px solid var(--color-border);
}
.site-main table tr {
  background: #ffffff;
}
.site-main table tr:nth-child(even) {
  background: var(--color-light-bg);
}
.site-main table tr:last-child td {
  border-bottom: 1px solid var(--color-border);
}
.site-main table tr:last-child td:first-child {
  border-bottom-left-radius: var(--border-radius);
  border-bottom: 1px solid var(--color-border);
}
.site-main table tr:last-child td:last-child {
  border-bottom-right-radius: var(--border-radius);
  border-bottom: 1px solid var(--color-border);
}
.site-main table thead {
  color: #fff;
  font-size: 0.8rem;
}
.site-main table thead tr:first-child td {
  border: 0;
  border-right: 1px solid var(--color-tertiary);
  text-align: center;
  padding: 0.8em 1.1em;
  background: var(--color-secondary);
  overflow: hidden;
}
.site-main table thead tr:first-child td:first-child {
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: 0;
  border: 0;
  border-right: 1px solid var(--color-tertiary);
}
.site-main table thead tr:first-child td:last-child {
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: 0;
  border: 0;
}

.site-main tbody tr td img {
  max-width: 100px;
}

.table-scroll {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-bottom: 1em;
}

.table-scroll::-webkit-scrollbar {
  display: none;
}

.advertiser-disclosure-text {
  background: var(--color-light);
  padding: 2em;
  font-size: 0.8rem;
  margin-top: 2.5em;
}
.advertiser-disclosure-text h6 {
  margin-top: 0;
}
.advertiser-disclosure-text p {
  padding: 0;
  margin: 0;
}

body .vc_separator.vc_sep_color_grey .vc_sep_line {
  border-color: #ccc;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

embed,
iframe,
object {
  max-width: 100%;
}

.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
  font-size: 1rem;
  font-style: italic;
  color: #777777;
  margin-top: 0.3em;
  text-align: left;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
## Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 0 0 2em 0;
  font-size: 0.8em;
  clear: both;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
}
.breadcrumbs i {
  font-size: 0.7em;
  margin: 0 0.5em;
  color: var(--color-text-grey);
}
.breadcrumbs a {
  color: var(--color-text-grey);
  font-weight: var(--font-weight-regular);
}
.breadcrumbs a.home-icon i {
  font-size: 0.95em;
  margin: 0 0.2em 0 0;
  color: var(--color-text-grey);
}

#scroll-past {
  background: transparent;
  height: 0;
  margin: 0;
}

/*# sourceMappingURL=style.css.map */
