/* VARIABLES */
:root {
    --primary-blue-color: #00283C;
    --primary-teal-color: #058282;
    --primary-yellow-color: #FABE14;
    --secondary-blue-color: #006491;
    --secondary-teal-color: #054B50;
    --secondary-coral-color: #E15A5A;
    --secondary-coral-dark-color: #C64F4F;
    --secondary-burgundy-color: #8C233F;
    --secondary-beige-color: #E1DCD7;
    --secondary-light-beige-color: #F6F5F3;
    --background-gray-color: #F5F5F5;
    --white: #FFF;
    --black: #000;
    --black-opacity: rgba(255, 255, 255, 0.1);
    --gray: #99A9B1;
    --light-gray: #e1dcd7;
    --dark-green: #054b50;
    --heading-font-family: 'museo-slab';
    --subheading-font-family: 'museo-sans';
    --body-font-family: 'museo-sans';
    --body-font-size: 16px;
    --small-font-size: 14px;
    --left-gutter: 5vw;
    --right-gutter: 5vw;
}

/********** GLOBAL *********/
body {
    margin: 0;
    line-height: 120%;
    font-family: var(--body-font-family);
    font-weight: 300;
}

body.lock-scroll {
    position: fixed;
    width: 100%;
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font-family);
    color: var(--primary-blue-color);
}

h1.info-page {
    font-size: 54px;
    font-weight: 300;
    line-height: 110%;
}

h1.detail-page {
    font-size: 42px;
    font-weight: 700;
    line-height: 110%;
}

h1.article-page {
    font-size: 36px;
    line-height: 120%;
}

h2 {
    font-size: 28px;
    font-weight: 200;
    line-height: 110%;
}

h2.callout-heading {
    font-size: 36px;
    font-weight: 400;
    line-height: 120%;
}

h2.bl-yellow {
    border-left: 5px solid var(--primary-yellow-color);
    padding-left: 10px;
}

h2.bl-dark-blue {
    border-left: 5px solid var(--primary-blue-color);
    padding-left: 10px;
}

h2.bl-blue {
    border-left: 5px solid var(--secondary-blue-color);
    padding-left: 10px;
}

h2.bl-teal {
    border-left: 5px solid var(--primary-teal-color);
    padding-left: 10px;
}

h2.bl-green {
    border-left: 5px solid var(--secondary-teal-color);
    padding-left: 10px;
}

h2.bl-coral {
    border-left: 5px solid var(--secondary-coral-color);
    padding-left: 10px;
}

h2.bl-red {
    border-left: 5px solid var(--secondary-burgundy-color);
    padding-left: 10px;
}

h2.bl-gray {
    border-left: 5px solid var(--secondary-beige-color);
    padding-left: 10px;
}

h3 {
    font-size: 25px;
    font-weight: 600;
    line-height: 110%;
}

h3.bl-yellow {
    border-left: 4px solid var(--primary-yellow-color);
    padding-left: 8px;
}

h3.bl-dark-blue {
    border-left: 4px solid var(--primary-blue-color);
    padding-left: 8px;
}

h3.bl-blue {
    border-left: 4px solid var(--secondary-blue-color);
    padding-left: 8px;
}

h3.bl-teal {
    border-left: 4px solid var(--primary-teal-color);
    padding-left: 8px;
}

h3.bl-green {
    border-left: 4px solid var(--secondary-teal-color);
    padding-left: 8px;
}

h3.bl-coral {
    border-left: 4px solid var(--secondary-coral-color);
    padding-left: 8px;
}

h3.bl-red {
    border-left: 4px solid var(--secondary-burgundy-color);
    padding-left: 8px;
}

h3.bl-gray {
    border-left: 4px solid var(--secondary-beige-color);
    padding-left: 8px;
}

h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 110%;
}

h4.bl-yellow {
    border-left: 3px solid var(--primary-yellow-color);
    padding-left: 7px;
}

h4.bl-dark-blue {
    border-left: 3px solid var(--primary-blue-color);
    padding-left: 7px;
}

h4.bl-blue {
    border-left: 3px solid var(--secondary-blue-color);
    padding-left: 7px;
}

h4.bl-teal {
    border-left: 3px solid var(--primary-teal-color);
    padding-left: 7px;
}

h4.bl-green {
    border-left: 3px solid var(--secondary-teal-color);
    padding-left: 7px;
}

h4.bl-coral {
    border-left: 3px solid var(--secondary-coral-color);
    padding-left: 7px;
}

h4.bl-red {
    border-left: 3px solid var(--secondary-burgundy-color);
    padding-left: 7px;
}

h4.bl-gray {
    border-left: 3px solid var(--secondary-beige-color);
    padding-left: 7px;
}

h5 {
    font-size: 19px;
    font-weight: 600;
    line-height: 110%;
}

h6 {
    font-size: 16px;
    font-weight: 300;
    line-height: 110%;
}

a {
    color: inherit;
}

input[type="submit"] {
    all: unset;
    display: inline-block;
    cursor: pointer;
}

hr {
    max-width: unset;
}

/********** Utility Classes **********/
/* Miscellaneous */
.page-gutters {
    padding-left: var(--left-gutter);
    padding-right: var(--right-gutter);
}

.remove-right-padding {
    padding-right: unset !important;
}

.remove-left-padding {
    padding-left: unset !important;
}

.medium-align-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.underline {
    text-decoration: underline;
}

.uppercase {
    text-transform: uppercase;
}

.bold {
    font-weight: bold;
}

.small {
    font-size: var(--small-font-size);
}

.required::after {
    content: '*';
    color: var(--secondary-coral-color);
    margin-left: .5em;
}

.inline-error {
    color: var(--secondary-burgundy-color);
}

.invalid {
    border: 1px solid var(--secondary-burgundy-color);
}

.success {
    color: var(--secondary-teal-color);
    border: 1px solid var(--secondary-teal-color);
}

.disabled,
.no-access {
    opacity: .5;
}

.hide {
    display: none;
}

.back-link {
    margin-right: 1.5em;
}


.grid-pager td {
    border: none;
    padding-top: 2em;
}

.grid-pager table {
    width: auto;
    margin-left: auto;
    margin-right: 0;
}

.overflow-scroll {
    overflow: scroll;
}

.overflow-x-auto {
    overflow-x: auto;
}

.border-1-solid {
    border: 1px solid var(--secondary-light-beige-color);
}

/* Lists */
.no-list-style {
    list-style: none;
}

.disc-list-style {
    list-style: disc;
}

.circle-list-style {
    list-style: circle;
}

/* Tables */
.table-unset tbody {
    background-color: transparent;
}

.table-unset tr:nth-child(2n) {
    background-color: transparent;
}

table.no-border,
table.no-border tbody {
    border: none;
}

.table-header th,
.table-header td,
.gridview-table th {
    background-color: var(--primary-teal-color);
    color: var(--white);
    font-size: var(--small-font-size);
    font-weight: 400;
    text-transform: uppercase;
    padding: 1.25em 1.5em;
    border: 1px solid var(--primary-teal-color);
}

.table-header.blue th,
.table-header.blue td,
.gridview-table.blue th {
    background-color: var(--secondary-blue-color);
    color: var(--white);
    font-size: var(--small-font-size);
    font-weight: 400;
    text-transform: uppercase;
    padding: 1.25em 1.5em;
    border: 1px solid var(--secondary-blue-color);
}

.table-header.dark-blue th,
.table-header.dark-blue td,
.gridview-table.dark-blue th {
    background-color: var(--primary-blue-color);
    color: var(--white);
    font-size: var(--small-font-size);
    font-weight: 400;
    text-transform: uppercase;
    padding: 1.25em 1.5em;
    border: 1px solid var(--primary-blue-color);
}

.table-header.yellow th,
.table-header.yellow td,
.gridview-table.yellow th {
    background-color: var(--primary-yellow-color);
    color: var(--white);
    font-size: var(--small-font-size);
    font-weight: 400;
    text-transform: uppercase;
    padding: 1.25em 1.5em;
    border: 1px solid var(--primary-yellow-color);
}

.table-header.red th,
.table-header.red td,
.gridview-table.red th {
    background-color: var(--secondary-coral-color);
    color: var(--white);
    font-size: var(--small-font-size);
    font-weight: 400;
    text-transform: uppercase;
    padding: 1.25em 1.5em;
    border: 1px solid var(--secondary-coral-color);
}

.table-header.burgundy th,
.table-header.burgundy td,
.gridview-table.burgundy th {
    background-color: var(--secondary-burgundy-color);
    color: var(--white);
    font-size: var(--small-font-size);
    font-weight: 400;
    text-transform: uppercase;
    padding: 1.25em 1.5em;
    border: 1px solid var(--secondary-burgundy-color);
}

.table-header.beige th,
.table-header.beige td,
.gridview-table.beige th {
    background-color: var(--secondary-beige-color);
    color: var(--white);
    font-size: var(--small-font-size);
    font-weight: 400;
    text-transform: uppercase;
    padding: 1.25em 1.5em;
    border: 1px solid var(--secondary-beige-color);
}

.table-cells td {
    border: none;
    border-bottom: 1px solid var(--secondary-beige-color);
    padding: 1em 1.5em;
}

.gridview-table td {
    border: none;
    border-bottom: 1px solid var(--secondary-beige-color);
}

.dataTables_wrapper {
    margin-bottom: 6em;
}

.dataTables_wrapper .dataTables_length {
  float: left;
}

.dataTables_wrapper .dataTables_length select {
    width: 60px;
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 5px;
    background-color: transparent;
    padding: 4px;
	margin-bottom: 10px;
}

.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right;
}

.dataTables_wrapper .dataTables_filter label {
  display: inline-flex;
  align-items: baseline;
}

.dataTables_wrapper .dataTables_filter input {
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 5px;
  background-color: transparent;
  margin-left: 3px;
  margin-bottom: 10px;
}

.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: .755em;
}

.dataTables_wrapper .dataTables_paginate {
  font-size: var(--small-font-size);
  text-align: right;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    margin: 0 5px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background-color: var(--primary-yellow-color);
    padding: 3px 7px;
}

/* Filters */
.sidebar-filters {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.sidebar-filters .filter-label {
    font-weight: 900;
    text-transform: uppercase;
    line-height: 150%;
    letter-spacing: .1em;
}

.sidebar-filters select {
    margin-bottom: 0;
}

.filter-buttons {
    border-bottom: 1px solid var(--secondary-beige-color);
    padding-bottom: 1em;
}

.filter-buttons a {
    padding: 1em 2em;
}

.filter-buttons a.current {
    border-bottom: 2px solid var(--primary-teal-color) !important;
}

/* Paging */
.pages {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: var(--small-font-size);
    border-top: 1px solid var(--light-gray);
    margin-top: 2.5em;
    padding-top: 4em;
    padding-bottom: 6em;
}

.pages #page-numbers .page-button {
    margin: 0 5px;
}

.pages #page-numbers .current {
    background-color: var(--primary-yellow-color);
    padding: 3px 7px;
}

.pages .paging .prev-link {
    margin-right: 5px;
}

.pages .paging .next-link {
    margin-left: 5px;
}

/* Position */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.z-10 {
    z-index: 10;
}

.clear-fix {
    clear: both;
}

/* Display */
.flex {
    display: flex;
}

.flex-1 {
    display: flex;
    gap: 1em;
}

.flex-2 {
    display: flex;
    gap: 2em;
}

.flex-3 {
    display: flex;
    gap: 3em;
}

.flex-4 {
    display: flex;
    gap: 4em;
}

.flex-5 {
    display: flex;
    gap: 5em;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-col-1 {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.flex-col-2 {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.flex-col-3 {
    display: flex;
    flex-direction: column;
    gap: 3em;
}

.flex-col-4 {
    display: flex;
    flex-direction: column;
    gap: 4em;
}

.flex-col-5 {
    display: flex;
    flex-direction: column;
    gap: 5em;
}

/* Sizing */
.w-auto {
    width: auto;
}

.w-100 {
    width: 100%;
}

.w-90 {
    width: 90%;
}

.w-80 {
    width: 80%;
}

.w-75 {
    width: 75%;
}

.w-70 {
    width: 70%;
}

.w-60 {
    width: 60%;
}

.w-50 {
    width: 50%;
}

.w-40 {
    width: 40%;
}

.w-30 {
    width: 30%;
}

.w-25 {
    width: 25%;
}

.w-20 {
    width: 20%;
}

.w-10 {
    width: 10%;
}

.h-auto {
    height: auto;
}

.h-100 {
    height: 100%;
}

.h-90 {
    height: 90%;
}

.h-80 {
    height: 80%;
}

.h-75 {
    height: 75%;
}

.h-70 {
    height: 70%;
}

.h-60 {
    height: 60%;
}

.h-50 {
    height: 50%;
}

.h-40 {
    height: 40%;
}

.h-30 {
    height: 30%;
}

.h-25 {
    height: 25%;
}

.h-20 {
    height: 20%;
}

.h-10 {
    height: 10%;
}

/* Spacing */
.m-auto {
    margin: 0 auto;
}

.m-0 {
    margin: 0em;
}

.m-1 {
    margin: 1em;
}

.m-2 {
    margin: 2em;
}

.m-3 {
    margin: 3em;
}

.m-4 {
    margin: 4em;
}

.m-5 {
    margin: 5em;
}

.m-6 {
    margin: 6em;
}

.m-7 {
    margin: 7em;
}

.mt-0 {
    margin-top: 0em;
}

.mt-1 {
    margin-top: 1em;
}

.mt-2 {
    margin-top: 2em;
}

.mt-3 {
    margin-top: 3em;
}

.mt-4 {
    margin-top: 4em;
}

.mt-5 {
    margin-top: 5em;
}

.mt-6 {
    margin-top: 6em;
}

.mt-7 {
    margin-top: 7em;
}

.mb-0 {
    margin-bottom: 0em;
}

.mb-1 {
    margin-bottom: 1em;
}

.mb-2 {
    margin-bottom: 2em;
}

.mb-3 {
    margin-bottom: 3em;
}

.mb-4 {
    margin-bottom: 4em;
}

.mb-5 {
    margin-bottom: 5em;
}

.mb-6 {
    margin-bottom: 6em;
}

.mb-7 {
    margin-bottom: 7em;
}

.ml-0 {
    margin-left: 0em;
}

.ml-1 {
    margin-left: 1em;
}

.ml-2 {
    margin-left: 2em;
}

.ml-3 {
    margin-left: 3em;
}

.ml-4 {
    margin-left: 4em;
}

.ml-5 {
    margin-left: 5em;
}

.ml-6 {
    margin-left: 6em;
}

.ml-7 {
    margin-left: 7em;
}

.mr-0 {
    margin-right: 0em;
}

.mr-1 {
    margin-right: 1em;
}

.mr-2 {
    margin-right: 2em;
}

.mr-3 {
    margin-right: 3em;
}

.mr-4 {
    margin-right: 4em;
}

.mr-5 {
    margin-right: 5em;
}

.mr-6 {
    margin-right: 6em;
}

.mr-7 {
    margin-right: 7em;
}

.p-0 {
    padding: 0em;
}

.p-1 {
    padding: 1em;
}

.p-2 {
    padding: 2em;
}

.p-3 {
    padding: 3em;
}

.p-4 {
    padding: 4em;
}

.p-5 {
    padding: 5em;
}

.p-6 {
    padding: 6em;
}

.p-7 {
    padding: 7em;
}

.pt-0 {
    padding-top: 0em;
}

.pt-1 {
    padding-top: 1em;
}

.pt-2 {
    padding-top: 2em;
}

.pt-3 {
    padding-top: 3em;
}

.pt-4 {
    padding-top: 4em;
}

.pt-5 {
    padding-top: 5em;
}

.pt-6 {
    padding-top: 6em;
}

.pt-7 {
    padding-top: 7em;
}

.pb-0 {
    padding-bottom: 0em;
}

.pb-1 {
    padding-bottom: 1em;
}

.pb-2 {
    padding-bottom: 2em;
}

.pb-3 {
    padding-bottom: 3em;
}

.pb-4 {
    padding-bottom: 4em;
}

.pb-5 {
    padding-bottom: 5em;
}

.pb-6 {
    padding-bottom: 6em;
}

.pb-7 {
    padding-bottom: 7em;
}

.pl-0 {
    padding-left: 0em;
}

.pl-1 {
    padding-left: 1em;
}

.pl-2 {
    padding-left: 2em;
}

.pl-3 {
    padding-left: 3em;
}

.pl-4 {
    padding-left: 4em;
}

.pl-5 {
    padding-left: 5em;
}

.pl-6 {
    padding-left: 6em;
}

.pl-7 {
    padding-left: 7em;
}

.pr-0 {
    padding-right: 0em;
}

.pr-1 {
    padding-right: 1em;
}

.pr-2 {
    padding-right: 2em;
}

.pr-3 {
    padding-right: 3em;
}

.pr-4 {
    padding-right: 4em;
}

.pr-5 {
    padding-right: 5em;
}

.pr-6 {
    padding-right: 6em;
}

.pr-7 {
    padding-right: 7em;
}

/* Backgrounds */
.white-bg {
    background-color: var(--white);
}

.yellow-bg {
    background-color: var(--primary-yellow-color);
    color: var(--primary-blue-color);
}

.green-bg {
    background-color: var(--secondary-teal-color);
    color: var(--white);
}

.red-bg {
    background-color: var(--secondary-burgundy-color);
    color: var(--white);
}

.dark-blue-bg {
    background-color: var(--primary-blue-color);
    color: var(--white);
}

.blue-bg {
    background-color: var(--secondary-blue-color);
    color: var(--white);
}

.coral-bg {
    background-color: var(--secondary-coral-color);
    color: var(--white);
}

.teal-bg {
    background-color: var(--primary-teal-color);
    color: var(--white);
}

.light-beige-bg {
    background-color: var(--secondary-light-beige-color);
    color: var(--primary-blue-color);
}

.light-beige-bg p {
    color: var(--black);
}

.red-gradient-bg {
    background: linear-gradient(270deg, #d3635e, #882943);
    color: var(--white);
}

.blue-green-gradient {
    background: linear-gradient(-45deg, #367c7b, #0f2836);
    color: #FFF;
}

.yellow-bg h1,
.yellow-bg h2,
.yellow-bg h3,
.yellow-bg h4,
.yellow-bg h5,
.yellow-bg h6,
.light-beige-bg h1,
.light-beige-bg h2,
.light-beige-bg h3,
.light-beige-bg h4,
.light-beige-bg h5,
.light-beige-bg h6 {
    color: var(--primary-blue-color);
}

.coral-bg h1,
.coral-bg h2,
.coral-bg h3,
.coral-bg h4,
.coral-bg h5,
.coral-bg h6,
.blue-bg h1,
.blue-bg h2,
.blue-bg h3,
.blue-bg h4,
.blue-bg h5,
.blue-bg h6,
.dark-blue-bg h1,
.dark-blue-bg h2,
.dark-blue-bg h3,
.dark-blue-bg h4,
.dark-blue-bg h5,
.dark-blue-bg h6,
.red-bg h1,
.red-bg h2,
.red-bg h3,
.red-bg h4,
.red-bg h5,
.red-bg h6,
.green-bg h1,
.green-bg h2,
.green-bg h3,
.green-bg h4,
.green-bg h5,
.green-bg h6,
.teal-bg h1,
.teal-bg h2,
.teal-bg h3,
.teal-bg h4,
.teal-bg h5,
.teal-bg h6 {
    color: var(--white);
}

/* Colors */
.black,
h1.black,
h2.black,
h3.black,
h4.black,
h5.black,
h6.black {
    color: var(--black);
}

.teal,
h1.teal,
h2.teal,
h3.teal,
h4.teal,
h5.teal,
h6.teal {
    color: var(--primary-teal-color);
}

.green,
h1.green,
h2.green,
h3.green,
h4.green,
h5.green,
h6.green {
    color: var(--secondary-teal-color);
}

.blue,
h1.blue,
h2.blue,
h3.blue,
h4.blue,
h5.blue,
h6.blue {
    color: var(--secondary-blue-color);
}

.dark-blue,
h1.dark-blue,
h2.dark-blue,
h3.dark-blue,
h4.dark-blue,
h5.dark-blue,
h6.dark-blue {
    color: var(--primary-blue-color);
}

.red,
h1.red,
h2.red,
h3.red,
h4.red,
h5.red,
h6.red {
    color: var(--secondary-burgundy-color);
}

.coral,
h1.coral,
h2.coral,
h3.coral,
h4.coral,
h5.coral,
h6.coral {
    color: var(--secondary-coral-color);
}

.white,
h1.white,
h2.white,
h3.white,
h4.white,
h5.white,
h6.white {
    color: var(--white);
}

.yellow,
h1.yellow,
h2.yellow,
h3.yellow,
h4.yellow,
h5.yellow,
h6.yellow {
    color: var(--primary-yellow-color);
}

.light-beige,
h1.light-beige,
h2.light-beige,
h3.light-beige,
h4.light-beige,
h5.light-beige,
h6.light-beige{
    color: var(--secondary-light-beige-color);
}

/* Font Weight */
.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

.fw-100 {
    font-weight: 100;
}

/* Overlays */
.green-overlay {
    background-color: #058282;
    opacity: .5;
}

.green-gradient-overlay {
    background: linear-gradient(180deg, rgba(5, 130, 130, 0), var(--primary-teal-color));
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vertical-line-bg {
    background: url('/_assets/images/layout/reskin/background-vertical-lines.png') repeat;
    height: 100%;
    width: 100%
}

.swirl-bg {
    background-image: url('/_assets/images/layout/reskin/background-ad-swirl.png');
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Lists */
.results-list {
    list-style: none;
    margin-left: unset;
}

.results-list li {
    padding: 2em 0;
    border-bottom: 2px solid var(--secondary-light-beige-color);
}

.results-list.beige-border li {
    border-bottom: 2px solid var(--secondary-beige-color);
}

.results-list li:last-child {
    border-bottom: unset;
}

.results-list h3 {
    font-size: 25px;
    font-weight: 300;
    line-height: 110%;
    margin-bottom: 1em;
}

.order-option-nav-wrap {
    background: var(--primary-teal-color);
    /*border: #fff solid 1px;*/
    width: 300px;
}

.order-option-nav-wrap ul {
    list-style: none;
    border-left: #fff solid thin;
    margin: 0;
}

.order-option-nav-wrap .btn-sub-menu li {
    border: none;
    font-size: var(--small-font-size);
    height: 30px;
    line-height: 30px;
    padding: 0 0 0 8px;
}

.order-option-nav-wrap a {
    color: #fff;
    text-decoration: none;
}


@media screen and (max-width: 64em) {
    table.stack .table-header th,
    table.stack .table-header td,
    table.stack .table-cells td {
        text-align: center;
    }

    table.stack .table-cells td:not(:last-child) {
        border-bottom: unset;
    }
}

@media screen and (max-width: 40em) {
    .medium-align-middle {
        -webkit-box-align: unset;
        -ms-flex-align: unset;
        align-items: unset;
    }
}

/********** LAYOUTS **********/
.gap-x-halfem {
    margin-left: -.5em;
    margin-right: -.5em;
}

.gap-x-halfem > .cell {
    width: calc(100% - 1em);
    margin-left: .5em;
    margin-right: .5em;
}

.gap-x-1em {
    margin-left: -1em;
    margin-right: -1em;
}

.gap-x-1em > .cell {
    width: calc(100% - 2em);
    margin-left: 1em;
    margin-right: 1em;
}

.gap-x-1halfem {
    margin-left: -1.5em;
    margin-right: -1.5em;
}

.gap-x-1halfem > .cell {
    width: calc(100% - 3em);
    margin-left: 1.5em;
    margin-right: 1.5em;
}

.gap-x-2em {
    margin-left: -2em;
    margin-right: -2em;
}

.gap-x-2em > .cell {
    width: calc(100% - 4em);
    margin-left: 2em;
    margin-right: 2em;
}

.gap-x-2halfem {
    margin-left: -2.5em;
    margin-right: -2.5em;
}

.gap-x-2halfem > .cell {
    width: calc(100% - 5em);
    margin-left: 2.5em;
    margin-right: 2.5em;
}

.gap-x-3em {
    margin-left: -3em;
    margin-right: -3em;
}

.gap-x-3em > .cell {
    width: calc(100% - 6em);
    margin-left: 3em;
    margin-right: 3em;
}

.gap-x-3halfem {
    margin-left: -3.5em;
    margin-right: -3.5em;
}

.gap-x-3halfem > .cell {
    width: calc(100% - 7em);
    margin-left: 3.5em;
    margin-right: 3.5em;
}

.gap-y-halfem {
    margin-top: -.5em;
    margin-bottom: -.5em;
}

.gap-y-halfem > .cell {
    margin-top: .5em;
    margin-bottom: .5em;
}

.gap-y-1em {
    margin-top: -1em;
    margin-bottom: -1em;
}

.gap-y-1em > .cell {
    margin-top: 1em;
    margin-bottom: 1em;
}

.gap-y-1halfem {
    margin-top: -1.5em;
    margin-bottom: -1.5em;
}

.gap-y-1halfem > .cell {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

.gap-y-2em {
    margin-top: -2em;
    margin-bottom: -2em;
}

.gap-y-2em > .cell {
    margin-top: 2em;
    margin-bottom: 2em;
}

.gap-y-2halfem {
    margin-top: -2.5em;
    margin-bottom: -2.5em;
}

.gap-y-2halfem > .cell {
    margin-top: 2.5em;
    margin-bottom: 2.5em;
}

.gap-y-3em {
    margin-top: -3em;
    margin-bottom: -3em;
}

.gap-y-3em > .cell {
    margin-top: 3em;
    margin-bottom: 3em;
}

.gap-y-3halfem {
    margin-top: -3.5em;
    margin-bottom: -3.5em;
}

.gap-y-3halfem > .cell {
    margin-top: 3.5em;
    margin-bottom: 3.5em;
}

@media print, screen and (min-width: 40em) {
    .gap-x-halfem > .medium-1 {
        width: calc(8.3333333333% - 1em);
    }

    .gap-x-1em > .medium-1 {
        width: calc(8.3333333333% - 2em);
    }

    .gap-x-1halfem > .medium-1 {
        width: calc(8.3333333333% - 3em);
    }

    .gap-x-2em > .medium-1 {
        width: calc(8.3333333333% - 4em);
    }

    .gap-x-2halfem > .medium-1 {
        width: calc(8.3333333333% - 5em);
    }

    .gap-x-3em > .medium-1 {
        width: calc(8.3333333333% - 6em);
    }

    .gap-x-3halfem > .medium-1 {
        width: calc(8.3333333333% - 7em);
    }

    .gap-x-halfem > .medium-2 {
        width: calc(16.6666666667% - 1em);
    }

    .gap-x-1em > .medium-2 {
        width: calc(16.6666666667% - 2em);
    }

    .gap-x-1halfem > .medium-2 {
        width: calc(16.6666666667% - 3em);
    }

    .gap-x-2em > .medium-2 {
        width: calc(16.6666666667% - 4em);
    }

    .gap-x-2halfem > .medium-2 {
        width: calc(16.6666666667% - 5em);
    }

    .gap-x-3em > .medium-2 {
        width: calc(16.6666666667% - 6em);
    }

    .gap-x-3halfem > .medium-2 {
        width: calc(16.6666666667% - 7em);
    }

    .gap-x-halfem > .medium-3 {
        width: calc(25% - 1em);
    }

    .gap-x-1em > .medium-3 {
        width: calc(25% - 2em);
    }

    .gap-x-1halfem > .medium-3 {
        width: calc(25% - 3em);
    }

    .gap-x-2em > .medium-3 {
        width: calc(25% - 4em);
    }

    .gap-x-2halfem > .medium-3 {
        width: calc(25% - 5em);
    }

    .gap-x-3em > .medium-3 {
        width: calc(25% - 6em);
    }

    .gap-x-3halfem > .medium-3 {
        width: calc(25% - 7em);
    }

    .gap-x-halfem > .medium-4 {
        width: calc(33.3333333333% - 1em);
    }

    .gap-x-1em > .medium-4 {
        width: calc(33.3333333333% - 2em);
    }

    .gap-x-1halfem > .medium-4 {
        width: calc(33.3333333333% - 3em);
    }

    .gap-x-2em > .medium-4 {
        width: calc(33.3333333333% - 4em);
    }

    .gap-x-2halfem > .medium-4 {
        width: calc(33.3333333333% - 5em);
    }

    .gap-x-3em > .medium-4 {
        width: calc(33.3333333333% - 6em);
    }

    .gap-x-3halfem > .medium-4 {
        width: calc(33.3333333333% - 7em);
    }

    .gap-x-halfem > .medium-5 {
        width: calc(41.6666666667% - 1em);
    }

    .gap-x-1em > .medium-5 {
        width: calc(41.6666666667% - 2em);
    }

    .gap-x-1halfem > .medium-5 {
        width: calc(41.6666666667% - 3em);
    }

    .gap-x-2em > .medium-5 {
        width: calc(41.6666666667% - 4em);
    }

    .gap-x-2halfem > .medium-5 {
        width: calc(41.6666666667% - 5em);
    }

    .gap-x-3em > .medium-5 {
        width: calc(41.6666666667% - 6em);
    }

    .gap-x-3halfem > .medium-5 {
        width: calc(41.6666666667% - 7em);
    }

    .gap-x-halfem > .medium-6 {
        width: calc(50% - 1em);
    }

    .gap-x-1em > .medium-6 {
        width: calc(50% - 2em);
    }

    .gap-x-1halfem > .medium-6 {
        width: calc(50% - 3em);
    }

    .gap-x-2em > .medium-6 {
        width: calc(50% - 4em);
    }

    .gap-x-2halfem > .medium-6 {
        width: calc(50% - 5em);
    }

    .gap-x-3em > .medium-6 {
        width: calc(50% - 6em);
    }

    .gap-x-3halfem > .medium-6 {
        width: calc(50% - 7em);
    }

    .gap-x-halfem > .medium-7 {
        width: calc(58.3333333333% - 1em);
    }

    .gap-x-1em > .medium-7 {
        width: calc(58.3333333333% - 2em);
    }

    .gap-x-1halfem > .medium-7 {
        width: calc(58.3333333333% - 3em);
    }

    .gap-x-2em > .medium-7 {
        width: calc(58.3333333333% - 4em);
    }

    .gap-x-2halfem > .medium-7 {
        width: calc(58.3333333333% - 5em);
    }

    .gap-x-3em > .medium-7 {
        width: calc(58.3333333333% - 6em);
    }

    .gap-x-3halfem > .medium-7 {
        width: calc(58.3333333333% - 7em);
    }

    .gap-x-halfem > .medium-8 {
        width: calc(66.6666666667% - 1em);
    }

    .gap-x-1em > .medium-8 {
        width: calc(66.6666666667% - 2em);
    }

    .gap-x-1halfem > .medium-8 {
        width: calc(66.6666666667% - 3em);
    }

    .gap-x-2em > .medium-8 {
        width: calc(66.6666666667% - 4em);
    }

    .gap-x-2halfem > .medium-8 {
        width: calc(66.6666666667% - 5em);
    }

    .gap-x-3em > .medium-8 {
        width: calc(66.6666666667% - 6em);
    }

    .gap-x-3halfem > .medium-8 {
        width: calc(66.6666666667% - 7em);
    }

    .gap-x-halfem > .medium-9 {
        width: calc(75% - 1em);
    }

    .gap-x-1em > .medium-9 {
        width: calc(75% - 2em);
    }

    .gap-x-1halfem > .medium-9 {
        width: calc(75% - 3em);
    }

    .gap-x-2em > .medium-9 {
        width: calc(75% - 4em);
    }

    .gap-x-2halfem > .medium-9 {
        width: calc(75% - 5em);
    }

    .gap-x-3em > .medium-9 {
        width: calc(75% - 6em);
    }

    .gap-x-3halfem > .medium-9 {
        width: calc(75% - 7em);
    }

    .gap-x-halfem > .medium-10 {
        width: calc(83.3333333333% - 1em);
    }

    .gap-x-1em > .medium-10 {
        width: calc(83.3333333333% - 2em);
    }

    .gap-x-1halfem > .medium-10 {
        width: calc(83.3333333333% - 3em);
    }

    .gap-x-2em > .medium-10 {
        width: calc(83.3333333333% - 4em);
    }

    .gap-x-2halfem > .medium-10 {
        width: calc(83.3333333333% - 5em);
    }

    .gap-x-3em > .medium-10 {
        width: calc(83.3333333333% - 6em);
    }

    .gap-x-3halfem > .medium-10 {
        width: calc(83.3333333333% - 7em);
    }

    .gap-x-halfem > .medium-11 {
        width: calc(91.6666666667% - 1em);
    }

    .gap-x-1em > .medium-11 {
        width: calc(91.6666666667% - 2em);
    }

    .gap-x-1halfem > .medium-11 {
        width: calc(91.6666666667% - 3em);
    }

    .gap-x-2em > .medium-11 {
        width: calc(91.6666666667% - 4em);
    }

    .gap-x-2halfem > .medium-11 {
        width: calc(91.6666666667% - 5em);
    }

    .gap-x-3em > .medium-11 {
        width: calc(91.6666666667% - 6em);
    }

    .gap-x-3halfem > .medium-11 {
        width: calc(91.6666666667% - 7em);
    }
}

@media print, screen and (min-width: 64em) {
    .gap-x-halfem > .large-1 {
        width: calc(8.3333333333% - 1em);
    }

    .gap-x-1em > .large-1 {
        width: calc(8.3333333333% - 2em);
    }

    .gap-x-1halfem > .large-1 {
        width: calc(8.3333333333% - 3em);
    }

    .gap-x-2em > .large-1 {
        width: calc(8.3333333333% - 4em);
    }

    .gap-x-2halfem > .large-1 {
        width: calc(8.3333333333% - 5em);
    }

    .gap-x-3em > .large-1 {
        width: calc(8.3333333333% - 6em);
    }

    .gap-x-3halfem > .large-1 {
        width: calc(8.3333333333% - 7em);
    }

    .gap-x-halfem > .large-2 {
        width: calc(16.6666666667% - 1em);
    }

    .gap-x-1em > .large-2 {
        width: calc(16.6666666667% - 2em);
    }

    .gap-x-1halfem > .large-2 {
        width: calc(16.6666666667% - 3em);
    }

    .gap-x-2em > .large-2 {
        width: calc(16.6666666667% - 4em);
    }

    .gap-x-2halfem > .large-2 {
        width: calc(16.6666666667% - 5em);
    }

    .gap-x-3em > .large-2 {
        width: calc(16.6666666667% - 6em);
    }

    .gap-x-3halfem > .large-2 {
        width: calc(16.6666666667% - 7em);
    }

    .gap-x-halfem > .large-3 {
        width: calc(25% - 1em);
    }

    .gap-x-1em > .large-3 {
        width: calc(25% - 2em);
    }

    .gap-x-1halfem > .large-3 {
        width: calc(25% - 3em);
    }

    .gap-x-2em > .large-3 {
        width: calc(25% - 4em);
    }

    .gap-x-2halfem > .large-3 {
        width: calc(25% - 5em);
    }

    .gap-x-3em > .large-3 {
        width: calc(25% - 6em);
    }

    .gap-x-3halfem > .large-3 {
        width: calc(25% - 7em);
    }

    .gap-x-halfem > .large-4 {
        width: calc(33.3333333333% - 1em);
    }

    .gap-x-1em > .large-4 {
        width: calc(33.3333333333% - 2em);
    }

    .gap-x-1halfem > .large-4 {
        width: calc(33.3333333333% - 3em);
    }

    .gap-x-2em > .large-4 {
        width: calc(33.3333333333% - 4em);
    }

    .gap-x-2halfem > .large-4 {
        width: calc(33.3333333333% - 5em);
    }

    .gap-x-3em > .large-4 {
        width: calc(33.3333333333% - 6em);
    }

    .gap-x-3halfem > .large-4 {
        width: calc(33.3333333333% - 7em);
    }

    .gap-x-halfem > .large-5 {
        width: calc(41.6666666667% - 1em);
    }

    .gap-x-1em > .large-5 {
        width: calc(41.6666666667% - 2em);
    }

    .gap-x-1halfem > .large-5 {
        width: calc(41.6666666667% - 3em);
    }

    .gap-x-2em > .large-5 {
        width: calc(41.6666666667% - 4em);
    }

    .gap-x-2halfem > .large-5 {
        width: calc(41.6666666667% - 5em);
    }

    .gap-x-3em > .large-5 {
        width: calc(41.6666666667% - 6em);
    }

    .gap-x-3halfem > .large-5 {
        width: calc(41.6666666667% - 7em);
    }

    .gap-x-halfem > .large-6 {
        width: calc(50% - 1em);
    }

    .gap-x-1em > .large-6 {
        width: calc(50% - 2em);
    }

    .gap-x-1halfem > .large-6 {
        width: calc(50% - 3em);
    }

    .gap-x-2em > .large-6 {
        width: calc(50% - 4em);
    }

    .gap-x-2halfem > .large-6 {
        width: calc(50% - 5em);
    }

    .gap-x-3em > .large-6 {
        width: calc(50% - 6em);
    }

    .gap-x-3halfem > .large-6 {
        width: calc(50% - 7em);
    }

    .gap-x-halfem > .large-7 {
        width: calc(58.3333333333% - 1em);
    }

    .gap-x-1em > .large-7 {
        width: calc(58.3333333333% - 2em);
    }

    .gap-x-1halfem > .large-7 {
        width: calc(58.3333333333% - 3em);
    }

    .gap-x-2em > .large-7 {
        width: calc(58.3333333333% - 4em);
    }

    .gap-x-2halfem > .large-7 {
        width: calc(58.3333333333% - 5em);
    }

    .gap-x-3em > .large-7 {
        width: calc(58.3333333333% - 6em);
    }

    .gap-x-3halfem > .large-7 {
        width: calc(58.3333333333% - 7em);
    }

    .gap-x-halfem > .large-8 {
        width: calc(66.6666666667% - 1em);
    }

    .gap-x-1em > .large-8 {
        width: calc(66.6666666667% - 2em);
    }

    .gap-x-1halfem > .large-8 {
        width: calc(66.6666666667% - 3em);
    }

    .gap-x-2em > .large-8 {
        width: calc(66.6666666667% - 4em);
    }

    .gap-x-2halfem > .large-8 {
        width: calc(66.6666666667% - 5em);
    }

    .gap-x-3em > .large-8 {
        width: calc(66.6666666667% - 6em);
    }

    .gap-x-3halfem > .large-8 {
        width: calc(66.6666666667% - 7em);
    }

    .gap-x-halfem > .large-9 {
        width: calc(75% - 1em);
    }

    .gap-x-1em > .large-9 {
        width: calc(75% - 2em);
    }

    .gap-x-1halfem > .large-9 {
        width: calc(75% - 3em);
    }

    .gap-x-2em > .large-9 {
        width: calc(75% - 4em);
    }

    .gap-x-2halfem > .large-9 {
        width: calc(75% - 5em);
    }

    .gap-x-3em > .large-9 {
        width: calc(75% - 6em);
    }

    .gap-x-3halfem > .large-9 {
        width: calc(75% - 7em);
    }

    .gap-x-halfem > .large-10 {
        width: calc(83.3333333333% - 1em);
    }

    .gap-x-1em > .large-10 {
        width: calc(83.3333333333% - 2em);
    }

    .gap-x-1halfem > .large-10 {
        width: calc(83.3333333333% - 3em);
    }

    .gap-x-2em > .large-10 {
        width: calc(83.3333333333% - 4em);
    }

    .gap-x-2halfem > .large-10 {
        width: calc(83.3333333333% - 5em);
    }

    .gap-x-3em > .large-10 {
        width: calc(83.3333333333% - 6em);
    }

    .gap-x-3halfem > .large-10 {
        width: calc(83.3333333333% - 7em);
    }

    .gap-x-halfem > .large-11 {
        width: calc(91.6666666667% - 1em);
    }

    .gap-x-1em > .large-11 {
        width: calc(91.6666666667% - 2em);
    }

    .gap-x-1halfem > .large-11 {
        width: calc(91.6666666667% - 3em);
    }

    .gap-x-2em > .large-11 {
        width: calc(91.6666666667% - 4em);
    }

    .gap-x-2halfem > .large-11 {
        width: calc(91.6666666667% - 5em);
    }

    .gap-x-3em > .large-11 {
        width: calc(91.6666666667% - 6em);
    }

    .gap-x-3halfem > .large-11 {
        width: calc(91.6666666667% - 7em);
    }
}

/********** COMPONENTS **********/
/* Buttons */
.btn,
input[type="submit"].btn {
    position: relative;
    background-color: var(--primary-teal-color);
    width: max-content;
    height: 45px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 20px;
    box-sizing: border-box;
    gap: 10px;
    text-align: left;
    font-size: var(--body-font-size);
    color: var(--white);
    font-family: var(--body-font-family);
    line-height: 100%;
    text-decoration: none !important;
}

.btn:hover,
input[type="submit"].btn:hover {
    background-color: var(--dark-green);
    color: var(--white);
    text-decoration: none !important;
}

.btn:disabled,
input[type="submit"].btn:disabled {
    opacity: .5;
    text-decoration: none !important;
}

.btn:disabled:hover,
input[type="submit"].btn:disabled:hover {
    background-color: var(--primary-teal-color);
    text-decoration: none !important;
}

.btn-outline,
input[type="submit"].btn-outline {
    position: relative;
    background-color: transparent;
    border: 1px solid var(--primary-teal-color);
    width: max-content;
    height: 45px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 20px;
    box-sizing: border-box;
    gap: 10px;
    text-align: left;
    font-size: var(--body-font-size);
    color: var(--primary-teal-color);
    font-family: var(--body-font-family);
    line-height: 100%;
    text-decoration: none !important;
}

.btn-outline:hover,
input[type="submit"].btn-outline:hover {
    background-color: var(--primary-teal-color);
    color: var(--white);
    text-decoration: none !important;
}

.btn-beige,
input[type="submit"].btn-beige {
    position: relative;
    background-color: var(--secondary-beige-color);
    width: max-content;
    height: 45px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 20px;
    box-sizing: border-box;
    gap: 10px;
    text-align: left;
    font-size: var(--body-font-size);
    color: var(--primary-blue-color);
    font-family: var(--body-font-family);
    line-height: 100%;
    text-decoration: none !important;
}

.btn-beige:hover,
input[type="submit"].btn-beige:hover {
    background-color: var(--gray);
    text-decoration: none !important;
}

.btn-yellow,
input[type="submit"].btn-yellow {
    position: relative;
    background-color: var(--primary-yellow-color);
    width: max-content;
    height: 45px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 20px;
    box-sizing: border-box;
    gap: 10px;
    text-align: left;
    font-size: var(--body-font-size);
    color: var(--primary-blue-color);
    font-family: var(--body-font-family);
    line-height: 100%;
    text-decoration: none !important;
}

.btn-red,
input[type="submit"].btn-red {
    position: relative;
    background-color: var(--secondary-burgundy-color);
    width: max-content;
    height: 45px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 20px;
    box-sizing: border-box;
    gap: 10px;
    text-align: left;
    font-size: var(--body-font-size);
    color: var(--white);
    font-family: var(--body-font-family);
    line-height: 100%;
    text-decoration: none !important;
}

.btn-blue,
input[type="submit"].btn-blue {
    position: relative;
    background-color: var(--secondary-blue-color);
    width: max-content;
    height: 45px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 20px;
    box-sizing: border-box;
    gap: 10px;
    text-align: left;
    font-size: var(--body-font-size);
    color: var(--white);
    font-family: var(--body-font-family);
    line-height: 100%;
    text-decoration: none !important;
}

.btn-blue:hover,
input[type="submit"].btn-blue:hover {
    background-color: var(--primary-blue-color);
    text-decoration: none !important;
}

.btn-dark-blue,
input[type="submit"].btn-dark-blue {
    position: relative;
    background-color: var(--primary-blue-color);
    width: max-content;
    height: 45px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 20px;
    box-sizing: border-box;
    gap: 10px;
    text-align: left;
    font-size: var(--body-font-size);
    color: var(--white);
    font-family: var(--body-font-family);
    line-height: 100%;
    text-decoration: none !important;
}

.btn-dark-blue:hover,
input[type="submit"].btn-dark-blue:hover {
    background-color: var(--secondary-blue-color);
    text-decoration: none !important;
}

.btn-coral,
input[type="submit"].btn-coral {
    position: relative;
    background-color: var(--secondary-coral-color);
    width: max-content;
    height: 45px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 20px;
    box-sizing: border-box;
    gap: 10px;
    text-align: left;
    font-size: var(--body-font-size);
    color: var(--white);
    font-family: var(--body-font-family);
    line-height: 100%;
    text-decoration: none !important;
}

.btn-coral:hover,
input[type="submit"].btn-coral:hover {
    background-color: var(--secondary-coral-dark-color);
    text-decoration: none !important;
}

.btn-burgundy,
input[type="submit"].btn-burgundy {
    position: relative;
    background-color: var(--secondary-burgundy-color);
    width: max-content;
    height: 45px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 20px;
    box-sizing: border-box;
    gap: 10px;
    text-align: left;
    font-size: var(--body-font-size);
    color: var(--white);
    font-family: var(--body-font-family);
    line-height: 100%;
    text-decoration: none !important;
}

.btn-burgundy:hover,
input[type="submit"].btn-burgundy:hover {
    background-color: var(--secondary-coral-dark-color);
    text-decoration: none !important;
}

.btn-group {
    display: flex;
    align-items: center;
    gap: .5em;
}

.arrow::after {
    content: url('/_assets/images/layout/reskin/icon-right-arrow.png');
    margin-left: .5em;
}

.arrow-dark::after {
    content: url('/_assets/images/layout/reskin/icon-right-arrow-dark.png');
    margin-left: .5em;
}

.arrow-black::after {
    content: url('/_assets/images/layout/reskin/icon-right-arrow-black.png');
    margin-left: .5em;
}

.user::before {
    content: url('/_assets/images/layout/reskin/icon-join.png');
    margin-right: .5em;
}

.arrow-outline::before {
    content: url('/_assets/images/layout/reskin/icon-right-arrow-dark.png');
    margin-left: .5em;
}

.arrow-outline:hover::before {
    content: url('/_assets/images/layout/reskin/icon-right-arrow.png');
    margin-left: .5em;
}

.handshake-outline::before {
    content: url('/_assets/images/layout/reskin/icon-handshake.png');
    margin-right: .5em;
}

.handshake-outline:hover::before {
    content: url('/_assets/images/layout/reskin/icon-handshake-white.png');
    margin-right: .5em;
}

.clear::before {
    content: url('/_assets/images/layout/reskin/icon-close-white.png');
    margin-right: .5em;
}

/* Accordion */
.accordion,
.accordion-teal {
    margin-bottom: 3em;
    background: transparent;
}

.accordion-item .accordion-title {
    border-width: 1px 0 1px 0;
    padding: 2em 0 2em 0;
}

.accordion-item .accordion-title::before {
    font-size: 1.5em;
    color: var(--primary-blue-color);
}

.accordion-item.is-active .accordion-title {
    border-bottom: none;
}

.accordion-item .accordion-title h2 {
    font-size: 25px;
    font-weight: 300;
    color: var(--black);
    line-height: 110%;
    margin-bottom: unset;
}

.accordion-item.is-active .accordion-title h2 {
    color: var(--primary-teal-color);
}

.accordion-item .accordion-content {
    background: transparent;
    border: none;
    padding: 0 0 2em 0;
    line-height: 150%;
}

.accordion-content .presenter-row {
    padding-bottom: 3em;
}

.accordion-content .presenter-info {
    padding-left: 2em;
}

.accordion-teal {
    background-color: #f2f9f9;
}

.accordion-teal .accordion-item {
    padding: 0 2em;
}

.accordion-teal .accordion-item:nth-child(2n) {
    background-color: #e6f2f2;
}

.accordion-teal .accordion-item .accordion-title,
.accordion-teal .accordion-item .accordion-title:last-child:not(.is-active) {
    border-width: 0px;
}

.accordion-teal .accordion-title:hover,
.accordion-teal .accordion-title:focus {
    background-color: transparent;
}

/* Filters */
label[for="filter-trigger"] {
    display: none;
}

.filter-section {
    display: block;
    font-size: 16px;
    font-weight: 900;
    line-height: 150%;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.25em;
}

.filter-option {
    background-color: var(--secondary-light-beige-color);
    margin-bottom: 8px;
}

.accordion-item .filter-heading {
    font-size: 16px;
    line-height: 120%;
    color: inherit;
    padding: 1em 1.25em;
    border: 1px solid var(--light-gray);
}

/*:last-child:not(.is-active) > .filter-heading {
    border-bottom: unset;
}*/

.filter-content {
    background-color: var(--secondary-light-beige-color);
    padding: unset;
}

.filters .btn.clear {
    width: 100%;
    justify-content: center;
}

.filters select {
    background-color: var(--secondary-light-beige-color);
}

.filter-option .accordion-title::before {
    content: url('/_assets/images/layout/reskin/icon-caret-down.png');
}

.filter-option.is-active .accordion-title::before {
    content: url('/_assets/images/layout/reskin/icon-caret-up.png');
}

.filter-body.unstriped tbody {
    background-color: var(--secondary-light-beige-color);
}

.filter-body.unstriped tbody tr {
    background-color: var(--secondary-light-beige-color);
    border: none;
}

.filter-body.unstriped tbody tr td {
    padding: 0 2em .75em;
}

.filter-body.unstriped tbody tr:first-of-type td {
    padding-top: 2em;
}

.filter-body.unstriped tbody tr:last-of-type td {
    padding-bottom: 2em;
}

.filter-body input[type="checkbox"] + label:last-of-type {
    margin: 0 .5em;
}

/* Flags */
.flag {
    position: relative;
    letter-spacing: 0.1em;
    line-height: 150%;
    text-transform: uppercase;
    padding: 3px 10px;
    box-sizing: border-box;
    font-weight: 900;
    font-style: normal;
    width: fit-content;
}

.flag-icon {
    width: max-content;
    padding: 7px;
    line-height: 0;
}

.flag-box {
    position: absolute;
    top: -24px;
}

.deal-flag-box {
    position: absolute;
    top: -30px;
    left: -3px;
}

/* Highlight/Callout Boxes */
.highlight-box-wrapper {
    margin-top: 3em;
    margin-bottom: 3em;
}

.highlight-box {
    background-image: url('/_assets/images/layout/reskin/background-green-checkered.png');
    color: var(--white);
    padding: 3em;
}

.highlight-box h3 {
    font-size: 25px;
    line-height: 110%;
    color: var(--white);
}

.image-callout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 5em;
}

.image-callout .image-callout-img {
    position: absolute;
    top: 0;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    z-index: 0;
}

.image-callout .image-callout-overlay {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.image-callout .image-callout-info {
    padding: 3em;
    z-index: 2;
}

.image-callout .image-callout-info ul {
    list-style: none;
    margin: unset;
}

.image-callout .image-callout-info ul li {
    padding-top: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid rgba(0, 40, 60, .1);
}

.image-callout .image-callout-info ul li:first-of-type {
    padding-top: 0;
}

.image-callout .image-callout-info ul li:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}

.questions {
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: center;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
}

.contact-options a {
    display: flex;
    text-decoration: underline;
    line-height: 150%;
}

.contact-options a::before {
    font-size: 2em;
    margin-right: 7px;
}

.contact-options a.faq::before {
    content: url('/_assets/images/layout/reskin/icon-question.png');
}

.contact-options a.email::before {
    content: url('/_assets/images/layout/reskin/icon-email-yellow.png');
}

.contact-options a.phone::before {
    content: url('/_assets/images/layout/reskin/icon-phone.png');
}

.hero {
    background-color: var(--dark-green);
}

.hero .hero-top {
    background-color: var(--primary-teal-color);
    background-size: cover;
    height: 70px;
    margin-left: var(--left-gutter);
}

.hero .swirls {
    background-image: url("/_assets/images/layout/reskin/background-thin-swirls.png");
}

.hero .hero-body {
    background-color: var(--primary-teal-color);
    background-image: url("/_assets/images/layout/reskin/background-horizontal-lines.png");
    background-size: auto;
    padding-left: var(--left-gutter);
}

.hero .hero-body .hero-body-text {
    background-color: var(--dark-green);
    padding: 7em 20em;
}

.hero .hero-body .testimonial {
    font-family: var(--heading-font-family);
    font-size: 36px;
    color: var(--primary-yellow-color);
    line-height: 120%;
    text-align: center;
}

.hero .hero-body .orbit-bullets {
    margin-top: 4em;
}

.hero .hero-body .orbit-bullets button {
    background-color: var(--white);
    opacity: .4;
    width: 3.2em;
    height: .25em;
    margin: .5em;
    border-radius: unset;
}

.hero .hero-body .orbit-bullets button.is-active {
    background-color: var(--primary-yellow-color);
    opacity: 1;
}

/* Banner */
.page-banner {
    display: flex;
    justify-content: center;
    align-items:center;
    padding: 1em;
    margin: 1em auto;
    line-height: 120%;
}

.page-banner a:hover {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Product Cards */
.product-card-wrapper {
    display: flex;
    flex-direction: column;
    flex-shrink: 1;
    min-width: 0;
    min-height: 100%;
    box-sizing: border-box;
}

.product-card {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    background-color: var(--secondary-light-beige-color);
}

.product-card .product-card-icons {
    position: absolute;
    bottom: 2em;
    right: 2em;
}

.product-card .product-link {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.product-card .product-card-image {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card-image img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: 100%;
    object-fit: contain;
}

.product-card .product-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 7em;
    justify-content: space-between;
    position: relative;
    padding: 2em;
}

.product-card .product-card-body .product-title h3 {
    font-family: var(--body-font-family);
    font-size: 19px;
    font-weight: 400;
    line-height: 120%;
}

.product-card .product-card-body .product-card-prices {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: var(--small-font-size);
}

/* Breadcrumbs */
.breadcrumbs-row .breadcrumbs {
    margin: 3em 0;
}

.breadcrumbs-row .breadcrumbs a {
    color: inherit;
}

/* By Line */
.by-line {
    display: flex;
    gap: 1em;
    font-size: var(--small-font-size);
    color: var(--primary-teal-color);
    margin: 1em 0;
}

/* Sidebar */
.sidebar {
    padding-left: 5em;
}

.sidebar .sidebar-ad-callout {
    width: 100%;
    margin-bottom: 4em;
}

.sidebar .separator {
    height: 20px;
}

.sidebar .sidebar-data-bites {
    padding: 4em 0;
}

.sidebar .sidebar-data-bites .bite {
    display: flex;
    flex-direction: column;
    gap: .5em;
    padding: 2em 0;
    border-bottom: 2px solid var(--secondary-light-beige-color);
}

.sidebar .sidebar-data-bites .bite:last-of-type {
    padding-bottom: 0;
    border-bottom: unset;
}

.sidebar .sidebar-data-bites h2,
.sidebar .sidebar-jobwire h2,
.sidebar .sidebar-resources h2 {
    font-family: var(--heading-font-family);
    font-weight: 300;
    font-size: 25px;
    line-height: 110%;
    margin: 0;
}

.sidebar .sidebar-data-bites h3 {
    font-family: var(--heading-font-family);
    font-weight: 700;
    font-size: 35px;
    line-height: 30px;
    letter-spacing: -.03em;
    margin: 0;
}

.sidebar .sidebar-data-bites p {
    line-height: 150%;
}

.sidebar .sidebar-data-bites a,
.sidebar .sidebar-resources a {
    font-size: var(--small-font-size);
    color: var(--primary-teal-color);
    line-height: 160%;
    text-decoration: underline;
}

.sidebar .sidebar-jobwire,
.sidebar .sidebar-resources {
    display: flex;
    flex-direction: column;
    gap: 2em;
    padding: 4em 0;
}

/* Header */
.blue-bar {
    width: 100%;
    position: relative;
    background-color: var(--primary-blue-color);
    height: 30px;
    justify-content: space-between;
}

.links {
    position: relative;
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    font-size: var(--small-font-size);
    font-family: var(--body-font-family);
    font-weight: 100;
}

.links a {
    display: flex;
    align-items: center;
    height: 100%;
    color: var(--white);
    padding: 0 15px;
}

.links a.highlighted-bg {
    background-color: #1a3e50;
}

.links a img {
    padding: 0 5px;
}

.logo-nace {
    max-height: 32px;
    max-width: 118px;
}

nav.main {
    padding: 1em 0;
}

nav.main .primary-menu-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.main .primary-menu-buttons {
    padding-left: 50px;
}

nav.main ul.primary-menu, nav.main ul.secondary-menu {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

nav.main ul.primary-menu {
    font-size: 15px;
}

nav.main ul.secondary-menu {
    font-size: var(--small-font-size);
}

nav.main ul li {
    list-style: none;
}

nav.main ul li a {
    color: var(--primary-blue-color);
}

nav.main .menuitem {
    display: inline-block;
}

nav.main .menuitem a.top-dropdown-item, nav.main .menuitem a.top-menu-item {
    display: inline-block;
    height: 100%;
    width: 100%;
    padding: .25em .75em;
}

nav.main .menuitem a.top-dropdown-item:hover {
    background-color: #f5f3f1;
}

nav.main .menuitem a.top-dropdown-item::after {
    content: url('/_assets/images/layout/reskin/icon-caret-down.png');
    margin-left: .5em;
}

nav.main .menuitem:hover a.top-dropdown-item::after, nav.main .menuitem:active a.top-dropdown-item::after {
    content: url('/_assets/images/layout/reskin/icon-caret-up.png');
    margin-left: .5em;
}

nav.main ul.dropdown {
    position: absolute;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    padding: .7em;
    margin-left: 0;
    z-index: 1000;
}

nav.main ul.dropdown li a {
    display: block;
    height: 100%;
    width: 100%;
    padding: .5em 3em .5em 1em;
    font-size: var(--small-font-size);
}

nav.main ul.dropdown li a:hover, nav.main li.menuitem:hover {
    background-color: #f5f3f1;
}

.sign-in::before,
.sign-out::before {
    content: url('/_assets/images/layout/reskin/icon-signin.png');
}

.sign-in:hover::before,
.sign-out:hover::before {
    content: url('/_assets/images/layout/reskin/icon-signin-white.png');
}

/* Footer */
footer .separator {
    height: 60px;
}

footer .footer-body {
    padding-top: 5em;
    padding-bottom: 5em;
    font-weight: 200;
}

footer .footer-body .footer-org-info {
    display: flex;
    flex-direction: column;
    gap: 2em;
    padding-right: 10em;
}

footer .footer-body .footer-org-info .contact-info {
    display: flex;
    flex-direction: column;
    gap: .5em;
}

footer .footer-body .footer-org-info .footer-statement {
    font-size: var(--small-font-size);
    font-weight: 400;
    line-height: 160%
}

footer .footer-body .footer-org-info .footer-statement a {
    text-decoration: underline;
    line-height: 150%;
}

footer .footer-links .links-heading {
    padding-bottom: 2em;
}

footer .footer-links .links-heading h5 {
    font-family: var(--body-font-family);
    font-size: var(--small-font-size);
    text-transform: uppercase;
    letter-spacing: .05em;
    line-height: 150%;
}

footer .footer-links ul {
    list-style: none;
    margin: 0;
}

footer .footer-links li {
    font-size: var(--small-font-size);
    margin-block-start: 0;
    margin-block-end: 10px;
}

footer .social-icons {
    display: flex;
    gap: 1em;
    padding-top: 2em;
}

footer .footer-copyright {
    border-top: 2px solid #E5E9EB;
    padding-top: 1em;
    padding-bottom: 1em;
}

footer .footer-copyright .copyright-wrapper {
    display: flex;
    justify-content: space-between;
    align-content: center;
    font-size: 12px;
}

footer .footer-copyright .copyright-wrapper .copyright-links {
    display: flex;
    gap: .75em;
}

footer .footer-copyright .copyright-wrapper .copyright-links .posts {
    color: rgba(0, 0, 0, 0.3);
}

/* Form Inputs */
input[type="text"],
input[type="password"] {
    font-weight: 300;
    height: 45px;
    padding: 14px 20px;
}

select {
    background-color: var(--white);
    background-image: url('/_assets/images/layout/reskin/icon-caret-down.png');
    background-size: 12px 6px;
    background-position: right center;
    font-weight: 300;
    height: 45px;
    padding: 14px 20px;
}

select:focus {
    background-image: url('/_assets/images/layout/reskin/icon-caret-up.png');
}

select option {
    height: 45px;
    padding: 14px 20px;
    border-radius: unset;
}

select option:hover {
    background-color: var(--secondary-beige-color);
}

input[type="checkbox"],
input[type="radio"] {
    display: none;
}

/*input[type="checkbox"] + label:last-of-type { 
    margin: 0 .5em 30px;
}*/

input[type="checkbox"]:disabled + label:before,
input[type="checkbox"]:checked:disabled + label:before,
input[type="radio"]:disabled + label:before,
input[type="radio"]:checked:disabled + label:before{
    opacity: .6;
}

input[type="checkbox"]:disabled + label:last-of-type,
input[type="radio"]:disabled + label:last-of-type {
    color: #AAA;
}

input[type="checkbox"] + label:before, 
input[type="radio"] + label:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 .5em 0 -.6em;
    vertical-align: middle;
    cursor: pointer;
}

input[type="checkbox"] + label:before {
    background: url(/_assets/images/layout/reskin/checkbox-unchecked.png);
}

.gray-inputs input[type="checkbox"] + label:before {
    background: url(/_assets/images/layout/reskin/checkbox-unchecked-beige.png);
}

.white-inputs input[type="checkbox"] + label:before {
    background: url(/_assets/images/layout/reskin/checkbox-unchecked-white.png);
}

.blue-inputs input[type="checkbox"] + label:before {
    background: url(/_assets/images/layout/reskin/checkbox-unchecked-blue.png);
}

input[type="checkbox"]:checked + label:before {
    background: url(/_assets/images/layout/reskin/checkbox-checked.png);
}

input[type="radio"] + label:before {
    background: url(/_assets/images/layout/reskin/radio-unchecked-beige.png);
}

.white-inputs input[type="radio"] + label:before {
    background: url(/_assets/images/layout/reskin/radio-unchecked-white.png);
}

.blue-inputs input[type="radio"] + label:before {
    background: url(/_assets/images/layout/reskin/radio-unchecked-blue.png);
}

input[type="radio"]:checked + label:before {
    background: url(/_assets/images/layout/reskin/radio-checked.png);
}

/* Added for handling issues with checkboxes and radio buttons when used in Razor syntax */
.razor input[type="checkbox"]:disabled ~ label:before,
.razor input[type="checkbox"]:checked:disabled ~ label:before,
.razor input[type="radio"]:disabled ~ label:before,
.razor input[type="radio"]:checked:disabled ~ label:before {
    opacity: .6;
}

.razor input[type="checkbox"]:disabled ~ label:last-of-type,
.razor input[type="radio"]:disabled ~ label:last-of-type {
    color: #AAA;
}

.razor input[type="checkbox"] ~ label:before,
.razor input[type="radio"] ~ label:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 .5em 0 -.6em;
    vertical-align: middle;
    cursor: pointer;
}

.razor input[type="checkbox"] ~ label:before {
    background: url(/_assets/images/layout/reskin/checkbox-unchecked.png);
}

.razor.gray-inputs input[type="checkbox"] ~ label:before {
    background: url(/_assets/images/layout/reskin/checkbox-unchecked-beige.png);
}

.razor.white-inputs input[type="checkbox"] ~ label:before {
    background: url(/_assets/images/layout/reskin/checkbox-unchecked-white.png);
}

.razor.blue-inputs input[type="checkbox"] ~ label:before {
    background: url(/_assets/images/layout/reskin/checkbox-unchecked-blue.png);
}

.razor input[type="checkbox"]:checked ~ label:before {
    background: url(/_assets/images/layout/reskin/checkbox-checked.png);
}

.razor input[type="radio"] ~ label:before {
    background: url(/_assets/images/layout/reskin/radio-unchecked-beige.png);
}

.razor.white-inputs input[type="radio"] ~ label:before {
    background: url(/_assets/images/layout/reskin/radio-unchecked-white.png);
}

.razor.blue-inputs input[type="radio"] ~ label:before {
    background: url(/_assets/images/layout/reskin/radio-unchecked-blue.png);
}

.razor input[type="radio"]:checked ~ label:before {
    background: url(/_assets/images/layout/reskin/radio-checked.png);
}

@media screen and (max-width: 64em) {
    /* Highlight/Callout Boxes*/
    .hero .hero-body .hero-body-text {
        padding: 7em 10em;
    }

    /* Product Cards */
    #filter-wrapper {
        display: none;
        position: fixed;
        top: 0;
        z-index: -1;
    }

    #filters {
        position: relative;
        top: 0;
        height: 100vh;
    }

    label[for="filter-trigger"] {
        display: block;
        position: fixed;
        bottom: 15px;
        right: 45px;
        z-index: 1002;
        width: 50px;
        height: 50px;
        cursor: pointer;
    }

    label[for="filter-trigger"]:before {
        /**content: "Filters" !important;*/
        content: url(/_assets/images/nace-store-icon-funnel-filled-small.png) !important;
        background: #005581 !important;
        border-radius: 50%;
        width: 100% !important;
        height: 100% !important;
        color: #fff;
        padding-top: 12px;
        padding-left: 12px;
    }

    .filter-trigger:checked ~ #filter-wrapper {
        display: block;
        background: #fff;
        width: 300px;
        height: 100%;
        padding: 1em;
        margin: unset;
        overflow: auto;
        z-index: 1001;
    }

    .product-card .product-card-body {
        padding-bottom: 4em;
    }

    /* Header */
    .logo-wrapper {
        padding-top: 1em;
        padding-bottom: 1em;
        box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.06);
    }

    nav.main {
        position: absolute;
        left: 0;
        max-width: 100%;
        width: 100vw;
        height: 100vh;
        z-index: 500;
        background-color: var(--white);
        overflow-y: auto;
        padding-bottom: 5em;
    }

    nav.main ul.top-mobile-menu {
        list-style: none;
        display: flex;
        flex-direction: column;
        margin: 0;
    }

    nav.main .top-mobile-menu a.top-menu-item {
        display: flex;
        align-items: center;
    }

    nav.main .top-mobile-menu a img {
        width: 25px;
        margin-right: .5em;
    }

    nav.main ul.primary-menu, nav.main ul.secondary-menu {
        justify-content: unset;
        flex-direction: column;
    }

    nav.main ul.secondary-menu {
        font-size: var(--body-font-size);
    }

    nav.main .menuitem a.top-dropdown-item, nav.main .menuitem a.top-menu-item  {
        padding: .75em 2em;
    }

    nav.main ul.dropdown {
        position: relative;
        width: 100%;
        padding: .7em 2em;
    }

    /* Footer */
    footer hr {
        width: 100%;
        margin-top: 3em;
        margin-bottom: 3em;
    }

    footer .footer-body {
        padding-top: 3em;
        padding-bottom: unset;
    }

    footer .footer-copyright {
        border-top: unset;
        padding-top: unset;
        padding-bottom: 3em;
    }

    footer .footer-copyright .copyright-wrapper {
        flex-direction: column;
        gap: 2em;
    }
}

@media screen and (max-width: 40em) {
    /* Highlight/Callout Boxes*/
    .image-callout {
        padding: 5em 2em;
    }

    .hero .hero-top {
        margin-left: unset;
    }

    .hero .hero-body {
        padding-left: unset;
    }

    .hero .hero-body .hero-body-text {
        padding: 5em 3em;
    }

    /* Header */
    .links a {
        padding: 0 10px;
    }

    .logo-nace {
        max-height: 28px;
        max-width: 100px;
    }

    .mobile-menu-buttons .btn, 
    .mobile-menu-buttons .btn-outline,
    .mobile-menu-buttons .sign-in, 
    .mobile-menu-buttons .sign-out {
        font-size: var(--small-font-size);
        padding: 5px 10px;
        gap: 5px;
        height: 40px;
    }

    /* Footer */
    footer .footer-body .footer-org-info {
        padding-right: unset;
    }

    footer .footer-links .links-heading {
        padding-bottom: 1em;
    }

    footer .footer-links ul {
        margin-top: 1em;
    }

    /* Sidebar */
    .sidebar {
        padding-left: unset;
    }

}

/* ---------- HOME PAGE --------- */
/* Slider */
.slider-bg {
    background-image: url('/_assets/images/layout/reskin/background-slider.png');
    background-size: 100% 100%;
}

.slider-bg .orbit {
    padding: 5em var(--right-gutter) 5em var(--left-gutter);
}

.slider-bg .orbit-slide {
    top: 0;
}

.slider-bg .slide-img {
    padding-right: 20px;
}

.slider-bg .slide-img img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 500px;
    overflow: hidden;
    object-fit: cover;
}

.slider-bg .slide-copy {
    padding-left: 20px;
}

.slider-bg .slide-copy .sliderStyles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slider-bg .slide-copy h2 {
    font-family: var(--heading-font-family);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue-color);
    padding-right: 15%;
    line-height: 110%;
}

.slider-bg .slide-copy p {
    color: var(--primary-blue-color);
    line-height: 150%
}

.slider-bg .slide-buttons {
    position: absolute;
    bottom: 10px;
    right: var(--right-gutter);
    display: flex;
    gap: .5em;
}

/* News */
.home-news {
    background-color: var(--secondary-light-beige-color);
    padding-top: 6em;
    padding-bottom: 6em;
}

.home-news .masonry-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 4em;
    grid-auto-flow: dense;
}

.home-news .masonry-grid .card {
    position: relative;
    background-color: var(--white);
    margin-top: 4em;
    margin-bottom: 4em;
    overflow: visible;
}

.home-news .masonry-grid .card .flag-box {
    position: absolute;
    top: -24px;
}

.home-news .masonry-grid .card .card-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-news .masonry-grid .card-1 {
    grid-column: span 3;
}

.home-news .masonry-grid .card-1 .flag {
    background-color: var(--primary-yellow-color);
    color: var(--primary-blue-color);
}

.home-news .masonry-grid .card-2{
    grid-column: span 3;
}

.home-news .masonry-grid .card-2 .flag {
    background-color: var(--secondary-blue-color);
    color: var(--white);
}

.home-news .masonry-grid .card-3 {
    grid-column: span 6;
    margin-bottom: -4em;
}

.home-news .masonry-grid .card-3 .flag {
    background-color: var(--secondary-coral-color);
    color: var(--white);
}

.home-news .masonry-grid .card-4 {
    grid-column: span 6;
    margin-top: -4em;
}

.home-news .masonry-grid .card-4 .flag {
    background-color: var(--secondary-coral-color);
    color: var(--white);
}

.home-news .masonry-grid .card-5 {
    grid-column: span 3;
}

.home-news .masonry-grid .card-5 .flag {
    background-color: var(--secondary-blue-color);
    color: var(--white);
}

.home-news .masonry-grid .card-6 {
    grid-column: span 3;
}

.home-news .masonry-grid .card-6 .flag {
    background-color: var(--secondary-burgundy-color);
    color: var(--white);
}

.home-news .masonry-grid .card.card-3 .card-image img,
.home-news .masonry-grid .card.card-4 .card-image img {
    min-height: 420px;
    width: 100%;
    object-fit: cover;
}

.home-news .masonry-grid .card .card-body {
    position:relative;
    padding: 1.5em 1.5em 1.5em 1.5em;
    flex-grow: 1;
}

.home-news .masonry-grid .card.card-1 .card-body h2,
.home-news .masonry-grid .card.card-2 .card-body h2,
.home-news .masonry-grid .card.card-5 .card-body h2,
.home-news .masonry-grid .card.card-6 .card-body h2 {
    font-family: var(--body-font-family);
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-blue-color);
    line-height: 120%;
}

.home-news .masonry-grid .card.card-3 .card-body h2,
.home-news .masonry-grid .card.card-4 .card-body h2 {
    font-family: var(--heading-font-family);
    font-size: 25px;
    font-weight: 300;
    color: var(--primary-blue-color);
    line-height: 110%;
}

.home-news .masonry-grid .card .card-body .card-teaser {
    margin: 1em 0;
    padding-bottom: 2em;
    line-height: 150%;
}

.home-news .masonry-grid .card .card-body .read-more-wrapper {
    position: absolute;
    bottom: 2em;
    left: 1.5em;
    color: var(--primary-blue-color);
}

/* Events */
.home-events {
    background-image: url('/_assets/images/layout/reskin/background-blue-burst.png');
    background-size: 100% 100%;
    padding-top: 7em;
    padding-bottom: 7em;
}

.home-events h2 {
    font-family: var(--heading-font-family);
    font-size: 54px;
    font-weight: 300;
    line-height: 110%;
    color: var(--white);
}

.home-events .events {
    margin-top: 4em;
}

.home-events .events > .cell {
    padding-left: 1.5em;
    padding-right: 1.5em
}

.home-events .events .event-card {
    position: relative;
}

.home-events .events .event-1,
.home-events .events .event-2 {
    height: 100%;
}

.home-events .events .event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} 

.home-events .events .image-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
    pointer-events: none;
}

.home-events .events .event-info {
    display: flex;
    flex-direction: column;
    gap: 1.1em;
    color: var(--white);
}

.home-events .events .event-info .title {
    line-height: 150%;
    font-weight: bold;
}

.home-events .events .event-info .details {
    display: flex;
    flex-direction: column;
    gap: 1.1em;
}

.home-events .events .event-info .date-label,
.home-events .events .event-info .audience-label {
    font-size: var(--small-font-size);
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--gray);
}

.home-events .events .event-1 .event-info, 
.home-events .events .event-2 .event-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 2em 1em 2em;
}

.home-events .events .event-1 .event-info .title, 
.home-events .events .event-2 .event-info .title {
    font-family: var(--heading-font-family);
    font-size: 25px;
    font-weight: 200;
    line-height: 110%;
}

.home-events .events hr {
    opacity: .1;
    border-width: 2px;
    margin-top: 2em;
    margin-bottom: 2em;
}

/* Trending Data */
.home-trending {
    padding-top: 7em;
    padding-bottom: 7em;
}

.home-trending .cell:first-of-type {
    padding-right: 3em;
}

.home-trending .cell:nth-of-type(2),
.home-trending .cell:nth-of-type(3) {
    padding-left: 3em;
    padding-right: 3em;
    border-right: 2px solid #e5e9eb;
}

.home-trending .cell:last-of-type {
    padding-left: 3em;
}

.home-trending h2 {
    font-family: var(--heading-font-family);
    font-size: 54px;
    font-weight: 300;
    line-height: 110%;
    margin-top: .5em;
}

.home-trending .tr-topic:hover {
    color: var(--secondary-coral-color);
}

.home-trending .tr-topic .tr-percent {
    font-family: var(--heading-font-family);
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 120%;
}

.home-trending .tr-topic .tr-description {
    font-size: var(--small-font-size);
    line-height: 160%;
}

/* Ads */
.home-ads-section {
    background-color: var(--secondary-light-beige-color);
    padding-top: 5em;
    padding-bottom: 5em;
}

.home-ads-section .cell:first-of-type {
    padding-right: 2em;
}

.home-ads-section .cell:nth-of-type(2) {
    padding-left: 2em;
    padding-right: 2em;
}

.home-ads-section .cell:last-of-type {
    padding-left: 2em;
}

.home-ads-section .cell .home-ad-wrapper {
    position: relative;
    height: 100%;
}

.home-ads-section .cell .home-ad-solid-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-ads-section .cell .home-ad-vector-bg {
    background-image: url('/_assets/images/layout/reskin/background-ad-swirl.png');
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-ads-section .cell .home-ad-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-ads-section .cell:first-of-type .home-ad-overlay {
    background: linear-gradient(180deg, rgba(250, 190, 20, 0), var(--primary-yellow-color));
}

.home-ads-section .cell:nth-of-type(2) .home-ad-overlay {
    background: linear-gradient(180deg, rgba(198, 79, 79, 0), var(--secondary-coral-color));
}

.home-ads-section .cell:last-of-type .home-ad-overlay {
    background: linear-gradient(180deg, rgba(5, 130, 130, 0), var(--primary-teal-color));
}

.home-ads-section .cell .home-ad-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2em;
}

.home-ads-section .cell .home-ad-text a:hover {
    color: inherit;
}

.home-ads-section .cell:first-of-type .home-ad-text {
    color: var(--primary-blue-color);
}

.home-ads-section .cell:nth-of-type(2) .home-ad-text,
.home-ads-section .cell:last-of-type .home-ad-text {
    color: var(--white);
}

.home-ads-section .cell .home-ad-description::after {
    margin-left: .5em;
}

@media screen and (max-width: 64em) {
    /* Slider */
    .slider-bg {
        background-image: url('/_assets/images/layout/reskin/background-slider-mobile.png');
    }

    .slider-bg .orbit {
        padding-top: 3em;
        padding-bottom: 7em;
        height: 900px;
    }

    .slider-bg .orbit-container {
        height: 100%;
    }

    .slider-bg .slide-img {
        padding-right: 0%;
        margin-top: 40px;
    }

    .slider-bg .slide-img img {
        height: 400px;
    }

    .slider-bg .slide-copy h2 {
        font-size: 35px;
        font-weight: 700;
        padding-right: 0;
    }

    .slider-bg .slide-buttons {
        position: absolute;
        left: var(--left-gutter);
        right: unset;
    }

    /* News */
    .home-news .masonry-grid {
        grid-template-columns: 1fr;
    }

    .home-news .masonry-grid .card {
        margin-top: 0;
        margin-bottom: 0;
    }

    .home-news .masonry-grid .card-1 {
        grid-column: span 1;
    }

    .home-news .masonry-grid .card-2 {
        grid-column: span 1;
    }

    .home-news .masonry-grid .card-3 {
        grid-column: span 1;
        margin-bottom: 0;
    }

    .home-news .masonry-grid .card-4 {
        grid-column: span 1;
        margin-top: 0;
    }

    .home-news .masonry-grid .card-5 {
        grid-column: span 1;
    }

    .home-news .masonry-grid .card-6 {
        grid-column: span 1;
    }

    .home-news .masonry-grid .card.card-3 .card-image img,
    .home-news .masonry-grid .card.card-4 .card-image img {
        min-height: unset;
        width: unset;
        object-fit: unset;
    }

    .home-news .masonry-grid .card.card-3 .card-body h2,
    .home-news .masonry-grid .card.card-4 .card-body h2 {
        font-family: var(--body-font-family);
        font-size: 19px;
        font-weight: 700;
        color: var(--primary-blue-color);
        line-height: 120%;
    }

    /* Events */
    .home-events {
        background-image: unset;
        background-color: var(--primary-blue-color);
    }

    .home-events .events > .cell {
        padding-left: 0;
        padding-right: 0;
    }

    .home-events .events .event-1, 
    .home-events .events .event-2 {
        height: unset;
    }

    .home-events h2 {
        font-size: 35px;
    }

    .home-events .events .event-1 .event-info, 
    .home-events .events .event-2 .event-info {
        position: unset;
        padding: 0;
    }

    /* Trending Data */
    .home-trending .cell:first-of-type {
        padding-right: 0;
    }

    .home-trending .cell:nth-of-type(2),
    .home-trending .cell:nth-of-type(3) {
        padding: 2em 0 2em 0;
        border-right: none;
        border-bottom: 2px solid #e5e9eb;
    }

    .home-trending .cell:last-of-type {
        padding-left: 0;
        padding-top: 2em;
    }

    .home-trending h2 {
        font-size: 35px;
    }

    .home-trending .tr-topic .tr-percent {
        font-size: 30px;
    }

    /* Ads */
    .home-ads-section .cell:first-of-type {
        padding-right: 0;
        padding-bottom: 2em;
    }

    .home-ads-section .cell:nth-of-type(2) {
        padding: 2em 0 2em 0;
    }

    .home-ads-section .cell:last-of-type {
        padding-left: 0;
        padding-top: 2em;
    }
}

@media screen and (max-width: 40em) {
    /* Slider */
    .slider-bg .slide-img img {
        height: 250px;
    }

    .slider-bg .slide-copy {
        padding-left: 0px;
    }

    .slider-bg .slide-copy .btn {
        margin-bottom: 10px;
    }

    /* Events */
    .home-events h2 {
        margin-bottom: 1em;
    }
}

/********** COLLECTION PAGE **********/
/* Main Content */
.news-internal .main-content {
    padding-right: 5em;
    padding-bottom: 6em;
    border-right: 3px solid var(--secondary-light-beige-color);
}

.news-internal .two-column-row .column-1 {
    padding-right: 1.5em;
}

.news-internal .two-column-row .column-2 {
    padding-left: 1.5em;
}

.news-internal .card-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 4em;
}

.news-internal .card-wrapper .card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 500px;
    overflow: hidden;
}

.news-internal .card-wrapper .card-image img {
    width: 100%;
    object-fit: cover;
}

.news-internal .card-wrapper .card-body {
    position: relative;
    background-color: var(--secondary-light-beige-color);
    padding: 2em 2em 5em 2em;
    height: 100%;
}

.news-internal .card-wrapper .card-body h2 {
    font-family: var(--heading-font-family);
    font-size: 25px;
    font-weight: 300;
    color: var(--primary-blue-color);
    line-height: 110%;
}

.news-internal .card-wrapper .card-body .by-line {
    margin: 1.5em 0;
}

.news-internal .card-wrapper .card-body .card-teaser {
    margin: 1.5em 0;
    line-height: 150%;
}

.news-internal .card-wrapper .card-body .read-more-wrapper {
    position: absolute;
    bottom: 2em;
    left: 1.5em;
    color: var(--primary-blue-color);
}

.news-internal .results-list .article-listing .article-details p:last-of-type {
    margin-bottom: unset;
}

@media screen and (max-width: 64em) {
    .news-internal .main-content {
        padding-right: unset;
        border-right: unset;
    }

    .news-internal .two-column-row .column-1 {
        padding-right: unset;
    }

    .news-internal .two-column-row .column-2 {
        padding-left: unset;
    }

    .news-internal .results-list .article-listing .article-details {
        padding-left: 1em;
    }
}

@media screen and (max-width: 40em) {
    .news-internal .results-list .article-listing .article-image {
        margin-bottom: 2em;
    }

    .news-internal .results-list .article-listing .article-image img {
        width: 100%;
    }
}

/*********** ARTICLE PAGE **********/
.article-internal .main-content {
    padding-right: 5em;
    padding-bottom: 6em;
    border-right: 3px solid var(--secondary-light-beige-color);
}

.article-internal .main-content a {
    text-decoration: underline;
}

/* Top */
.article-internal .flag-box {
    margin-bottom: 1em;
}

.article-internal h1 {
    margin-bottom: unset;
}

/* Image */
.article-internal .article-image  {
    margin: 3em 0;
}

.article-internal .article-image img {
    width: 100%;
}

/* Share */
.article-internal .share-wrapper {
    position: relative;
    text-align: center;
}

.article-internal .share-wrapper .share-heading {
    font-size: var(--small-font-size);
    font-weight: 400;
    opacity: .6;
    line-height: 150%;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1em;
}

.article-internal .share-wrapper .share-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
}

.article-internal .share-wrapper .social-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5em;
}

.article-internal .share-wrapper .other-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
    width: 100%;
}

.article-internal .share-wrapper .divider {
    width: 50%;
    height: 2px;
    border-bottom: 2px solid var(--secondary-light-beige-color);
}

.article-internal .share-wrapper span.font-up {
    font-size: 1.2em;
    cursor: pointer;
}

.article-internal .share-wrapper span.font-normal {
    font-size: 1em;
    cursor: pointer;
}

.article-internal .share-wrapper span.font-down {
    font-size: .8em;
    cursor: pointer;
}

.article-internal .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 3em;
}

.article-internal .tags .tag {
    font-size: var(--small-font-size);
    background-color: var(--light-gray);
    padding: 5px;
}

.article-internal .tags .tag:hover {
    background-color: var(--gray);
    color: var(--white);
}

.article-internal .article-body {
    min-height: 450px;
}

.article-internal h2 {
    font-size: 28px;
    font-weight: 300;
    line-height: 110%;
    margin-top: 2em;
    margin-bottom: .5em;
}

.article-internal h3 {
    font-family: var(--body-font-family);
    font-size: 25px;
    font-weight: 600;
    line-height: 110%;
    margin-top: 2em;
    margin-bottom: .5em;
}

.article-internal h4 {
    font-size: 22px;
    font-weight: 500;
    line-height: 110%;
    margin-top: 2em;
    margin-bottom: .5em;
}

.article-internal h5 {
    font-family: var(--body-font-family);
    font-size: 19px;
    font-weight: 700;
    line-height: 120%;
    margin-top: 2em;
    margin-bottom: .5em;
}

.article-internal h6 {
    font-size: var(--body-font-size);
    font-weight: 400;
    line-height: 110%;
    margin-top: 2em;
    margin-bottom: .5em;
}

.article-internal .callout-right,
.article-internal .callout-left,
.article-internal .callout-box {
    background-color: var(--dark-green);
    background-image: url('/_assets/images/layout/reskin/background-teal-swirl.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    color: var(--white);
    margin-top: 2em;
    margin-bottom: 3em;
    padding: 3em 20em 3em 3em;
    line-height: 150%
}

.article-internal .callout-right h5,
.article-internal .callout-left h5,
.article-internal .callout-box h5 {
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    font-weight: 900;
    color: var(--primary-yellow-color);
    margin-top: unset;
    margin-bottom: 1.5em;
    letter-spacing: .1em;
    line-height: 150%;
    text-transform: uppercase;
}

.article-internal .callout-right a,
.article-internal .callout-left a,
.article-internal .callout-box a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-internal .callout-right a:hover,
.article-internal .callout-left a:hover,
.article-internal .callout-box a:hover {
    color: inherit;
}

.article-internal .author-wrapper .separator {
    height: 20px;
    margin: 4em 0;
}

.article-internal .author-with-image {
    min-height: 80px;
    display: flex;
}

.article-internal .author-with-image .avatar-inline {
    width: 80px;
    height: max-content;
    margin-right: 1.5em;
}

.article-internal .author-no-image {
    margin: 0px 0px 0px -100px;
}

@media screen and (max-width: 90em) {
    .article-internal .callout-right,
    .article-internal .callout-right,
    .article-internal .callout-right {
        background-color: var(--dark-green);
        background-image: unset;
        background-repeat: unset;
        background-position: unset;
        background-size: unset;
        padding: 3em;
    }
}

@media screen and (max-width: 64em) {
    .article-internal .main-content {
        padding-right: unset;
        border-right: unset;
    }

    /* Share */
    .article-internal .share-wrapper {
        text-align: unset;
        margin-bottom: 3em;
    }

    .article-internal .share-wrapper .share-icons {
        align-items: unset;
    }

    .article-internal .share-wrapper .social-icons {
        flex-direction: row;
        align-items: unset;
    }

    .article-internal .share-wrapper .other-icons {
        flex-direction: row;
    }

    .article-internal .share-wrapper .divider {
        width: 2px;
        height: 24px;
        border-right: 2px solid var(--secondary-light-beige-color);
        border-bottom: unset;
    }
}

@media screen and (max-width: 40em) {
    .article-internal .callout-right,
    .article-internal .callout-right,
    .article-internal .callout-right {
        padding: 2em;
    }
}

/*********** TWO COLUMN PAGE **********/
/* Page Header */
.page-header {
    background-image: url('/_assets/images/layout/reskin/background-blue-burst.png');
    background-size: 100% 100%;
    padding-bottom: 5em;
}

.page-header .breadcrumbs-row .breadcrumbs {
    font-size: var(--small-font-size);
    color: var(--white);
}

.page-header .breadcrumbs-row .breadcrumbs a:hover {
    text-underline-offset: 3px;
}

.page-header .header h1 {
    font-size: 54px;
    font-weight: 300;
    color: var(--primary-yellow-color);
    line-height: 110%;
}

.two-columns-internal {
    background-color: var(--background-gray-color);
}

.two-columns-internal .sidebar-left {
    display: flex;
    flex-direction: column;
    gap: 3em;
    border-right: 1px solid var(--light-gray);
    padding-top: 5em;
    padding-right: 5em;
}

.two-columns-internal .sidebar-left .sidebar-nav-mobile-control {
    display: none;
}

.two-columns-internal .sidebar-left .separator {
    height: 20px;
}

.two-columns-internal .sidebar-left .sidebar-nav-wrap {
    padding-bottom: 6em;
}

.two-columns-internal .sidebar-left #sidebar-nav {
    list-style: none;
}

.two-columns-internal .sidebar-left #sidebar-nav li {
    padding: 1em 0;
    line-height: 120%;
    border-bottom: 1px solid var(--light-gray)
}

.two-columns-internal .sidebar-left #sidebar-nav li:first-of-type {
    padding-top: 0;
}

.two-columns-internal .sidebar-left #sidebar-nav li:last-of-type {
    padding-bottom: 0;
    border-bottom: unset;
}

.two-columns-internal .sidebar-left #sidebar-nav li a {
    padding-left: 0;
}

.two-columns-internal .sidebar-left #sidebar-nav li .submenu-toggle::after {
    content: url('/_assets/images/layout/reskin/icon-caret-down.png');
    padding-top: .7em;
    border: none;
}

.two-columns-internal .sidebar-left #sidebar-nav li .submenu-toggle[aria-expanded="true"]::after {
    content: url('/_assets/images/layout/reskin/icon-caret-up.png');
    transform: none;
    transform-origin: unset;
}

.two-columns-internal .main-content {
    padding-top: 5em;
    padding-left: 5em;
}

.two-columns-internal .main-content a {
    text-decoration: underline;
}

@media screen and (max-width: 64em) {
    .two-columns-internal .sidebar-left {
        padding-right: 3em;
    }

    .two-columns-internal .main-content {
        padding-left: 3em;
    }
}

@media screen and (max-width: 40em) {
    .page-header .header h1 {
        font-size: 36px;
        font-weight: 400;
        text-align: center;
        padding: 0 1.5em;
    }

    .two-columns-internal .sidebar-left {
        border-right: none;
        padding-top: 3em;
        padding-right: 0;
    }

    .two-columns-internal .sidebar-left .sidebar-nav-mobile-control {
        display: block;
    }

    .two-columns-internal .sidebar-left .sidebar-nav-mobile-control img {
        width: 25px;
        height: 25px;
    }

    .two-columns-internal .sidebar-left .sidebar-nav-wrap {
        padding-bottom: unset;
    }

    .two-columns-internal .sidebar-left #sidebar-nav {
        display: none;
    }

    .two-columns-internal .main-content {
        padding-left: 0;
    }
}

/********** UPCOMING EVENTS PAGE **********/

/* Events */
.upcoming-events #events-list {
    list-style: none;
    margin-left: unset;
}

.upcoming-events #events-list li {
    padding: 2.5em 0;
    border-bottom: 1px solid var(--light-gray);
}

.upcoming-events #events-list li:first-of-type {
    padding-top: 0;
}

.upcoming-events #events-list li:last-of-type {
    border-bottom: none;
}

.upcoming-events #events-list li .flag {
    display: block;
}

.upcoming-events #events-list .event-image {
    padding-right: 3em;
}

.upcoming-events #events-list .event-details {
    display: flex;
    flex-direction: column;
    gap: 1em;
    padding-top: 2em;
}

.upcoming-events #events-list .event-details .event-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 120%;
}

.upcoming-events #events-list .event-details .event-date {
    font-size: var(--small-font-size);
    color: var(--primary-teal-color);
}


/********** STORE EVENT/PRODUCT PAGES **********/
/* Top */
.store-internal .store-internal-top {
    background-color: var(--secondary-light-beige-color);
    padding: 5em 0;
}

.store-internal .store-internal-top .breadcrumbs {
    font-size: var(--small-font-size);
    line-height: 120%;
}

.store-internal .store-internal-top .breadcrumbs a {
    color: var(--black);
    opacity: .6;
}

.store-internal .store-internal-top .info {
    display: flex;
    flex-direction: column;
    gap: 2em;
    justify-content: center;
    padding-right: 2em;
}

.store-internal .store-internal-top .image {
    padding-left: 2em;
}

.store-internal .store-internal-top .info .title {
    font-size: 42px;
    font-weight: 700;
    line-height: 110%;
}

.store-internal .store-internal-top .info .info-items {
    display: flex;
    gap: 1.75em;
    flex-wrap: wrap;
    font-size: var(--small-font-size);
    font-weight: 400;
    color: var(--primary-teal-color);
    line-height: 120%;
}

.store-internal .store-internal-top .cta {
    display: flex;
    gap: 10px;
    margin-top: 2em;
}

/* Body */
.store-internal .store-internal-body {
    margin-bottom: 7em;
}

/* Sidebar */
.store-internal .store-internal-body .sidebar-left {
    display: flex;
    flex-direction: column;
    gap: 3em;
    border-right: 1px solid var(--light-gray);
    padding-top: 5em;
    padding-right: 5em;
}

.store-internal .store-internal-body .sidebar-left .sidebar-nav-mobile-control {
    display: none;
}

.store-internal .store-internal-body .sidebar-left .separator {
    height: 20px;
}

.store-internal .store-internal-body .sidebar-left #sidebar-nav {
    list-style: none;
}

.store-internal .store-internal-body .sidebar-left #sidebar-nav li {
    padding: 1em 0;
    line-height: 120%;
    border-bottom: 1px solid var(--light-gray)
}

.store-internal .store-internal-body .sidebar-left #sidebar-nav li:first-of-type {
    padding-top: 0;
}

.store-internal .store-internal-body .sidebar-left #sidebar-nav li:last-of-type {
    padding-bottom: 0;
    border-bottom: unset;
}

.store-internal .store-internal-body .sidebar-left #sidebar-nav li a {
    padding-left: 0;
}

.store-internal .store-internal-body .sidebar-left #sidebar-nav li .submenu-toggle::after {
    content: url('/_assets/images/layout/reskin/icon-caret-down.png');
    padding-top: .7em;
    border: none;
}

.store-internal .store-internal-body .sidebar-left #sidebar-nav li .submenu-toggle[aria-expanded="true"]::after {
    content: url('/_assets/images/layout/reskin/icon-caret-up.png');
    transform: none;
    transform-origin: unset;
}

.store-internal .sidebar-left .separator {
    height: 20px;
}

/* Share */
.store-internal .share-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.store-internal .share-wrapper .share-heading {
    font-family: var(--heading-font-family);
    font-size: 25px;
    font-weight: 300;
    line-height: 110%;
}

.store-internal .share-wrapper .share-icons {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.store-internal .share-wrapper .social-icons {
    display: flex;
    align-items: center;
    gap: .75em;
}

.store-internal .share-wrapper .other-icons {
    display: flex;
    align-items: center;
    gap: 1.5em;
    width: 100%;
}

.store-internal .share-wrapper .other-icons .divider {
    width: 2px;
    height: 24px;
    border-right: 2px solid var(--secondary-light-beige-color);
}

.store-internal .share-wrapper .divider {
    width: 100%;
    height: 2px;
    border-bottom: 2px solid var(--secondary-light-beige-color);
}

.store-internal .share-wrapper span.font-up {
    font-size: 1.2em;
    cursor: pointer;
}

.store-internal .share-wrapper span.font-normal {
    font-size: 1em;
    cursor: pointer;
}

.store-internal .share-wrapper span.font-down {
    font-size: .8em;
    cursor: pointer;
}

/* Moin Content */
.store-internal .store-internal-body .main-content {
    padding-top: 5em;
    padding-left: 5em;
}

.store-internal .store-internal-body .main-content .short-description {
    font-size: 21px;
    line-height: 150%;
    padding-top: 2em;
    padding-bottom: 2em;
}

/* Related Products */
.store-internal .related-products-wrapper .separator {
    height: 60px;
}

.store-internal .related-products {
    padding-top: 7em;
    padding-bottom: 7em;
}

.store-internal .related-products .related-products-heading {
    margin-bottom: 3em;
}

@media screen and (max-width: 75em) {
    .store-internal .store-internal-top .info .info-items {
        flex-wrap: wrap
    }
}

@media screen and (max-width: 64em) {
    .store-internal .store-internal-body .sidebar-left {
        padding-right: 3em;
    }

    .store-internal .store-internal-body .main-content {
        padding-left: 3em;
    }

    /* Top */
    .store-internal .store-internal-top .image {
        padding-left: unset;
        padding-top: 4em;
    }

    .store-internal .store-internal-top .cta {
        flex-wrap: wrap;
    }

    /* Questions */
    .store-internal .store-internal-body .main-content .contact-options {
        flex-wrap: wrap;
    }

    /* Related Products */
    .store-internal .related-products {
        padding-bottom: 4em;
    }
}

@media screen and (max-width: 40em) {
    /* Top */
    .store-internal .store-internal-top .info .title {
        font-size: 36px;
        font-weight: 400;
    }

    /* Sidebar */
    .store-internal .store-internal-body .sidebar-left {
        border-right: none;
        padding-top: 3em;
        padding-right: 0;
    }

    .store-internal .store-internal-body .sidebar-left .sidebar-nav-mobile-control {
        display: block;
    }

    .store-internal .store-internal-body .sidebar-left .sidebar-nav-mobile-control img {
        width: 25px;
        height: 25px;
    }

    .store-internal .store-internal-body .sidebar-left .sidebar-nav-wrap {
        padding-bottom: unset;
    }

    .store-internal .store-internal-body .sidebar-left #sidebar-nav {
        display: none;
    }

    /* Body */
    .store-internal .store-internal-body .main-content {
        padding-left: 0;
    }

    /* Related Products */
    .store-internal .related-products .related-products-heading h2 {
        font-size: 2em;
    }
}

/********** SHOPPING CART/CHECKOUT **********/
.cart-steps {
    list-style: none;
    margin: 3em;
    text-align: center;
}

.cart-steps li {
    display: inline-block;
    padding-right: 2.5em;
}

.cart-steps li .step {
    background-color: var(--secondary-light-beige-color);
    font-weight: 700;
    padding: 7px 12px;
    margin-right: 10px;
}

.cart-steps li.current .step {
    background-color: var(--primary-yellow-color);
}

.cart-steps li.completed .step {
    background-color: var(--primary-teal-color);
    color: var(--white);
}

.order-table th {
    background-color: var(--primary-teal-color);
    color: var(--white);
    font-size: var(--small-font-size);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 1.25em 1.5em;
}

.order-table tbody,
.order-table td.product tbody {
    border: none;
}

.order-table tbody tr {
    border-bottom: 2px solid var(--secondary-light-beige-color);
}

.order-table tbody tr:nth-child(2n) {
    background-color: unset;
}

.order-table td {
    font-size: var(--small-font-size);
    padding: 2.5em 1.5em;
}

.order-table td.product tr {
    border-bottom: none;
}

.order-table td.product td.img {
    width: 1px;
}

.order-table td.product .product-image {
    max-width: 200px;
    width: auto;
}

.order-table td.product td.name {
    font-size: 19px;
    font-weight: 700;
    line-height: 120%;
}

.order-table td.qty input {
    width: 4em;
    margin: 0 auto;
}

.order-table tfoot {
    background: unset;
    border: unset;
    border-bottom: 2px solid var(--secondary-light-beige-color);
}

.order-table tfoot.no-border {
    border: unset;
}

.order-table tfoot td {
    padding: .5em 1.5em;
    text-align: right;
}

.order-table tfoot td.foot-label {
    font-weight: 300;
}

.order-table tfoot tr:first-child td {
    padding-top: 2.5em;
}

.order-table tfoot tr.promo-code td {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
}

.order-table tfoot tr.promo-code .promo-wrapper {
    display: flex;
    font-weight: 300;
    width: 300px;
    float: right;
}

.cart-buttons {
    display: flex;
    justify-content: space-between;
    padding: 2.5em 0;
}

.cart-info .info {
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: var(--small-font-size);
    padding-bottom: 7em;
}

.cart-shipping-information,
.cart-order-information {
    list-style-type: none;
    margin: 0;
}

.cart-order-information li {
    position: relative;
    padding-left: 22%;
}

.cart-order-information li span {
    display: block;
    position: absolute;
    left: 0;
    font-weight: 400;
}

@media screen and (max-width: 87em) {
    .cart-order-information li {
        padding-left: 30%;
    }
}

@media screen and (max-width: 64em) {
    .cart-steps {
        margin: 3em 0;
    }

    .cart-steps li {
        padding-top: 1em;
    }
    
    .order-table td {
        padding: 1em 1.5em;
        text-align: center;
    }

    .order-table > tbody > tr > td:first-child {
        padding-top: 3em;
    }

    .order-table > tbody > tr > td:last-child {
        padding-bottom: 3em;
    }

    .order-table td input[type="checkbox"] + label:last-of-type,
    .order-table td p {
        margin: 0
    }

    .order-table td.product {
        text-align: center;
    }

    .order-table td.product td.img {
        width: 100%;
    }

    .order-table td.product .product-image {
        margin: 0 auto;
    }

    .order-table.stack tfoot {
        display: block;
    }

    .order-table tfoot tr:first-child td {
        padding-top: .5em;
        padding-bottom: .5em;
    }

    .order-table tfoot tr:last-child td {
        padding-top: .5em;
        padding-bottom: .5em;
    }

    .cart-order-information li {
        padding-left: 45%;
    }
}

@media screen and (max-width: 40em) {
    .cart-buttons {
        gap: .5em;
    }

    .cart-info .info {
        text-align: left;
        gap: 1em;
    }

    .cart-order-information li {
        padding-left: 25%;
    }
}

/********** CONFIRMATION MESSAGE **********/
.confirmation-message {
    border: 1px solid var(--black);
}

/********** SURVEY **********/
.cd-tabs {
    display: flex;
    gap: 3em;
    position: relative;
    width: 100%;
}

.cd-tabs nav {
    position: relative;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-right: 3em;
    border-right: 1px solid var(--light-gray);
}

.cd-tabs__navigation {
    width: 250px;
    background-color: #fff;
    -webkit-box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
    box-shadow: inset 0 -2px 3px rgba(203, 196, 130, 0.06);
    margin: 0;
}

.cd-tabs__navigation li {
    /*float: none;*/
    list-style: none;
    padding: 1em 0;
    line-height: 120%;
    border-bottom: 1px solid var(--light-gray);
}

.cd-tabs__navigation a {
    display: inline-block;
    height: auto;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    padding: .7em 1em;
}

.cd-tabs__navigation a.cd-selected {
    text-decoration: underline;
    text-decoration-color: var(--primary-teal-color);
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.cd-tabs__navigation a::before {
    top: 50%;
    margin-top: -8px;
    margin-left: 0;
    left: 40px;
}

.cd-tabs__content {
    min-height: 0;
    margin: 0;
}

.cd-tabs__content li {
    display: none;
    padding: 1.4em;
    list-style: none;
}

.cd-tabs__content li.cd-selected {
    display: block;
    -webkit-animation: cd-fade-in 0.5s;
    animation: cd-fade-in 0.5s;
}

.cd-tabs__content li p {
    font-size: 1.2rem;
}

@media only screen and (max-width: 64em) {
    .cd-tabs {
        flex-direction: column;
    }

    .cd-tabs nav {
        overflow: scroll;
        padding-right: unset;
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
    }

    .cd-tabs__navigation {
        width: 100%;
        margin-left: 0;
        margin-bottom: 0;
    }

    .cd-tabs__navigation li {
        float: left;
        border-bottom: none;
        padding: 0;
        list-style: none;
        border-right: 1px solid var(--light-gray);
    }

    .cd-tabs__navigation a {
        position: relative;
        display: block;
        height: 60px;
        width: 60px;
        text-align: center;
        font-size: 1.2rem;
        font-weight: 600;
        line-height: 150%;
        text-decoration: none;
    }

    .cd-tabs__navigation a:hover {
        color: #29324e;
        background-color: rgba(233, 230, 202, 0.3);
    }

    .cd-tabs__navigation a span {
        display: none;
    }

    .cd-tabs__navigation a#tab_save {
        width: 150px;
    }

    .question-overflow {
        overflow-x: auto;
    }
}

@-webkit-keyframes cd-fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes cd-fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hide-text label {
    font-size: 0px !important;
}

/********** MAKE PAYMENT **********/
.tabletolist, .tabletolist ul {
    margin: unset;
}

.tabletolist li {
    list-style-type: none;
}

.tabletolist li span.row_headers {
    font-weight: bold;
    padding-right: 2em;
}

/******** ATTENDEE REGISTRATION FUNNEL *********/
.badge-preview {
    height: 230px; 
    border: 1px solid #000 !important; 
    text-align: center; 
    padding: 30px 15px 0 15px;
}

.move-buttons {
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
    align-items: center
}

#additionalMemberCheck,
#renewalMemberCheck {
    background: url(/_assets/images/open.png) no-repeat 0 11px;
    padding: 10px 0 0 25px;
    cursor: pointer;
}

#additionalMemberCheck.close,
#renewalMemberCheck.close{
    background-image: url(/_assets/images/close.png);
}

@media screen and (max-width: 64em) {
    .move-buttons {
        flex-direction: row;
    }

    .move-buttons input {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
}

/********** MEMBERSHIP RENEWAL NOTICE **********/
.memberNotice {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: var(--primary-yellow-color);
    border-radius: 7px;
    z-index: 1000;
}

.memberNotice a {
    color: var(--primary-blue-color);
}

.memberNotice > a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 15px;
    text-decoration: none;
}

#memberMessageExpanded {
    color: var(--primary-blue-color);
    padding: 15px;
    width: 670px;
}

#memberMessageExpanded img {
    margin: -15px -15px -16px;
}

#memberMessageExpanded #noticeTitle {
    display: block;
    text-align: right;
    width: 100%;
    padding-right: 65px;
}

#memberMessageExpanded #noticeTitle .red {
    color: red;
}

#memberExpandedClose {
    float: right;
    text-decoration: none;
}

@media only screen and (max-width: 75em) {
    .memberNotice {
        display: none !important;
    }
}

/********** BUYERS GUIDE **********/
.responsive-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/********** MEMBER ORGS **********/
.ln-letters {
    overflow: hidden;
}

.ln-letters a {
    font-size: var(--small-font-size);
    display: block;
    float: left;
    padding: .25em .5em;
    border: 1px solid var(--secondary-beige-color);
    border-right: none;
    text-decoration: none;
}

.ln-letters a.ln-last {
    border-right: 1px solid var(--secondary-beige-color);
}

.ln-letters a:hover,
.ln-letters a.ln-selected {
    background-color: var(--primary-yellow-color);
}

.ln-letters a.ln-disabled {
    color: #ccc;
}

.member-org-row {
    border-top: 1px solid var(--secondary-beige-color);
    padding: 1.5em 0;
}

/********** MICROSITES **********/
.mega-menu {
    width: 45vw;
}

.mega-menu-callout {
    background-color: var(--secondary-light-beige-color);
    padding: 1em 1.5em;
}

.mega-menu-callout .callout-img {
    width: 100%;
    margin-bottom: 1em;
}

nav.main ul.dropdown.mega-menu .mega-menu-callout a {
    padding: unset;
}

.trees-bg {
    background: linear-gradient(90deg, #054b50, rgba(5, 75, 80, 0)), 
        radial-gradient(circle, rgba(0, 40, 60, 0.7), rgba(5, 130, 130, .5)), 
        url('/_assets/images/layout/reskin/microsites/background-trees.png');
    height: 100%;
    width: 100%;
}

.reg-table {
    width: 75%;
}

.reg-table thead {
    border: none;
}

.reg-table thead th {
    font-size: 17px;
    font-weight: 300;
    text-align: center;
    line-height: 150%;
    /*border: 1px solid rgba(5, 130, 130, .2);*/
}

.reg-table thead th.transparent-cell {
    background: #fff;
    color: inherit;
    border: none;
}

.reg-table thead th.transparent-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: transparent;
  z-index: 1;
}

.reg-table thead th.left {
    text-align: left;
    padding-left: 2em;
}

.reg-table thead th.right {
    text-align: right;
    padding-right: 2em;
}

.reg-table thead th .main-heading {
    font-family: var(--heading-font-family);
    font-size: 25px;
    font-weight: 400;
    line-height: 130%;
}

.reg-table thead th .sub-heading {
    font-weight: 100;
}

.reg-table tbody tr {
    background-color: var(--secondary-light-beige-color);
}

.reg-table tbody.teal-stripes tr:nth-child(2n) {
    background-color: rgba(5, 130, 130, 0.1);
}

.reg-table tbody tr td {
    font-size: 17px;
    line-height: 150%;
    text-align: center;
    color: var(--primary-blue-color);
    padding: 1em 2em;
    border: 1px solid rgba(5, 130, 130, .2);
}

.reg-table tbody tr td:first-of-type {
    text-align: left;
}

.bt-best-deal {
    border-top: 3px solid var(--secondary-coral-dark-color) !important;
}

.bl-best-deal {
    border-left: 3px solid var(--secondary-coral-dark-color) !important;
}

.br-best-deal {
    border-right: 3px solid var(--secondary-coral-dark-color) !important;
}

.bb-best-deal {
    border-bottom: 3px solid var(--secondary-coral-dark-color) !important;
}

.bb-thick {
    border-bottom: 2px solid var(--primary-teal-color) !important;
}

@media screen and (max-width: 64em) {
    .reg-table {
        width: 100%;
    }
}