/*##### vvv SYNC BETWEEN SITES vvv #####*/


/*--- Header ---*/
a, button {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.float-right {
    float: right;
}

.header-nav-background {
    position: fixed;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 96px;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), 75%, transparent); */
    background: rgba(var(--navBgColor), 0.72);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}
.header-nav-frame {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    /* mix-blend-mode: difference; */
    display: block;
    justify-content: start;
    align-items: center;
    margin-left: max(0px, calc(calc(100% - 1648px) / 2));
    width: calc(calc(100% / 12) * 8);
    max-width: calc(calc(1648px / 12) * 8);
    margin-bottom: -96px;
}
.header-btn-frame {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding: 0px 16px 0px 0px;
    margin-left: auto;
    margin-right: max(0px, calc(calc(100% - 1648px) / 2));
    width: calc(calc(calc(100% / 12) * 4) - 16px);
    max-width: calc(calc(calc(1648px / 12) * 4) - 16px);
    height: 96px;
    background-color: #00000000;
    color: #FFF;
}
.header-btn-frame>div {
    display: flex;
    justify-content: end;
    align-items: center;
}
nav.header-nav {
    display: grid;
    height: 96px;
    grid: 'logo logo logo link link link link link';
    gap: 16px;
    padding: 0px 16px;
    background-color: #00000000;
    align-items: center;
    color: #FFF;
}
header.nav-mobile {
    display: none;
}
.header-logo {
    grid-area: logo;
    /* margin-top: calc(calc(100% - 42px) * .407);
    margin-bottom: calc(calc(100% - 42px) * .593); */
    margin: 22px 0px 32px;
    height: 42px;
    width: 192px;
    align-items: center;
}
.header-logo img {
    height: 42px;
    width: 192px;
    filter: invert(var(--logoInvert));
}
a.header-link {
    grid-area: link / span 1;
    width: fit-content;
    color: #787E81;
}
a.header-link:not(:hover) span {
    color: var(--headerColor);
}
a.header-btn {
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: var(--headerBtnHeight);
    max-height: var(--headerBtnHeight);
    padding: 0px 36.5px;
    width: fit-content;
    background: var(--headerBtnFill);
    color: var(--headerBtnColor);
    border-radius: 40px;
    border: 1px solid var(--headerBtnBorderColor);
}
a.header-btn:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, var(--headerBtnHoverTintAlpha)), rgba(0, 0, 0, var(--headerBtnHoverTintAlpha))), var(--headerBtnHoverFill);
    color: var(--headerBtnHoverColor);
    border-color: var(--headerBtnHoverBorderColor);
}
a.nav-btn {
    display: none;
}

/*- MOBILE Header -*/
@media only screen and (max-width: 991px) {
    div.builder-blocks[builder-type="blocks"] {
        align-items: flex-start;
        -webkit-box-align: start;
    }
    a.header-link {
        display: none;
    }
    .header-nav-background {
        position: fixed;
        top: 0;
        z-index: 10;
        width: 100%;
        height: 72px;
    }
    .header-nav-frame {
        position: sticky;
        top: 0;
        z-index: 10;
        display: block;
        justify-content: start;
        align-items: center;
        margin-left: 0px;
        width: calc(calc(100% / 6) * 6);
        max-width: calc(calc(100vw / 6) * 6);
        margin-bottom: 0; /* was -72px */
    }
    .header-btn-frame {
        position: sticky;
        top: 0;
        right: 0;
        z-index: 10;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        padding: 0;
        margin-left: auto;
        margin-right: 64px;
        width: calc(calc(calc(100vw / 6) * 2) - 12px);
        max-width: calc(calc(calc(100vw / 6) * 2) - 12px);
        height: 72px;
    }
    .header-btn-frame>div {
        display: flex;
        align-items: flex-end;
        flex-direction: column;
    }
    nav.header-nav {
        display: grid;
        height: 71px;
        grid: 'logo logo logo logo btn btn';
        gap: 12px;
        padding: 0px 12px;
        align-items: center;
    }
    .header-logo {
        grid-area: logo;
        margin: 0px 0px;
        height: 30px;
        width: 134px;
        align-items: center;
    }
    .header-logo img {
        height: 30px;
        width: 134px;
    }
    a.header-btn {
        z-index: 2;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 16px 0px;
        height: var(--headerBtnHeight);
        max-height: var(--headerBtnHeight);
        padding: 0px 25.5px;
        width: fit-content;
        border-radius: 40px;
    }
    a.nav-btn {
        grid-area: btn;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        justify-self: end;
        margin-left: 12px;
        width: 40px;
        height: 40px;
        max-width: 40px;
        max-height: 40px;
        box-sizing: border-box;
        border: 1px solid var(--navBtnBorderColor);
        border-radius: 40px;
    }
    div.nav-btn-inner {
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 28px;
        height: 28px;
        max-width: 28px;
        max-height: 28px;
        box-sizing: border-box;
        border: 1px solid var(--navBtnInnerColor);
        background: var(--navBtnInnerColor);
        border-radius: 28px;
    }
    div.nav-btn-inner.icon-navx {
        display: none;
    }

    /*- MOBILE Nav Menu -*/
    header.nav-mobile {
        position: fixed;
        top: 0;
        z-index: 8;
        display: none; /*block*/
        padding: 103px 12px 32px;
        width: calc(100% - var(--mobileWidthOffset));
        max-width: calc(100vw - var(--mobileWidthOffset));
        height: calc(100% - var(--navMenuHeightOffset));
        max-height: calc(100vh - var(--navMenuHeightOffset));
        background: rgb(var(--navBgColor));
    }
    header.nav-mobile>div {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    header.nav-mobile .base-grid {
        grid-template-columns: repeat(6, 1fr [col]);
        gap: 12px;
        padding: 0px 12px;
    }
    .nav-mobile-btm {
        width: 100%;
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        justify-content: flex-end;
    }
    .nav-mobile-btm>.base-grid {
        padding: 0px;
    }
    .nav-mobile-btm>.base-grid>div {
        display: flex;
        flex-direction: column;
    }
    .nav-mobile-btm .footer-link:not(:hover) {
      color: var(--headerColor);
    }
    header.nav-mobile>div a.mobile-link:not(:last-child) {
        margin-bottom: 16px;
    }
    a.mobile-link {
        color: #787E81;
        width: fit-content;
    }
    a.mobile-link:not(:hover) {
        color: var(--headerColor);
    }
} /*- END MOBILE Header, Nav Menu -*/

/*- TINY Header -*/
@media only screen and (max-width: 339px) {
    a.header-btn:not(.all-screens) {
        z-index: -1;
        display: none;
    }
    .mobile-note {
        margin-top: 71px;
    }
}


/*--- Footer ---*/

footer.footer-frame {
    position: relative;
    z-index: 9;
    display: block;
    width: 100%;
    height: fit-content;
    background-color: rgb(0, 0, 0);
}
div.footer {
    margin-left: max(0px, calc(calc(100% - 1648px) / 2));
    width: calc(100% - var(--widthOffset));
    max-width: 1648px;
    height: fit-content;
    display: grid;
    grid: 'nav nav nav nav news news . learn learn about about social';
    gap: 0px 16px;
    padding: 0px 16px;
    color: #FFF;
}
span.footer-head {
    color: #787E81;
}
a.footer-link {
    width: fit-content;
    color: #787E81;
}
a.footer-link:not(:hover) {
    color: #FFF;
}
a.detail-link {
    width: fit-content;
    color: #FFF;
}
a.detail-link:not(:last-child) {
    margin-right: 24px;
}
a.detail-link:not(:hover) {
    color: #787E81;
}
a.footer-btn {
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 46px;
    max-height: 46px;
    padding: 0px 24px 0px 16px;
    width: fit-content;
    background: var(--footerBtnFill);
    color: var(--footerBtnColor);
    border-radius: 40px;
    border: 1px solid var(--footerBtnBorderColor);
    font-family: "Neue Haas Grotesk Display Pro - Medium", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -.6px;
}
a.footer-btn:hover {
    background: var(--footerBtnHoverFill);
    color: var(--footerBtnHoverColor);
    border: 1px solid var(--footerBtnHoverBorderColor);
}
a.footer-btn img {
    width: 25px;
    height: 19px;
    margin-right: 12px;
    filter: invert(var(--footerBtnIconInvert));
}
a.footer-btn:hover img {
    filter: invert(calc(calc(var(--footerBtnIconInvert) - 1) * -1));
}
div.footer-spacer {
    grid-area: auto / nav / auto / social;
    width: calc(100% - 35px);
    margin-right: 32px;
    margin-left: 1px;
    padding-right: 1px;
}
div.footer-nav {
    grid-area: 2 / nav;
    display: flex;
    flex-direction: column;
}
div.footer-newsletter {
    grid-area: 2 / news;
    display: flex;
    flex-direction: column;
}
div.footer-learnmore {
    grid-area: 2 / learn;
    display: flex;
    flex-direction: column;
}
div.footer-about {
    grid-area: 2 / about;
    display: flex;
    flex-direction: column;
}
div.footer-social {
    grid-area: 2 / social;
    display: flex;
    flex-direction: column;
}

/*- MOBILE Footer -*/
@media only screen and (max-width: 991px) {
    div.footer {
        margin-left: 0;
        width: calc(100% - var(--mobileWidthOffset));
        max-width: 100vw;
        height: fit-content;
        display: grid;
        grid: "nav nav nav nav nav nav"
        "learn learn about about social social"
        "foot foot foot foot foot foot"
        / 1fr 1fr 1fr 1fr 1fr 1fr;
        gap: 0px 12px;
        padding: 0px 12px;
        color: #FFF;
    }
    div.footer .base-grid {
        grid-template-columns: repeat(6, 1fr [col]);
        gap: 12px;
        padding: 0px 12px;
    }
    a.detail-link:not(:last-child) {
        margin-right: 16px;
    }
    a.footer-btn {
        align-self: center;
        width: 100%;
        max-width: 300px !important;
        margin: 0 auto;
    }
    div.footer-spacer {
        grid-area: auto / 1 / auto / 7;
        /* width: calc(100% - 24px);
        margin-right: 0px;
        margin-left: 0px;
        padding-right: 1px; */
        width: 100%;
        margin: 0;
        padding: 0;
    }
    div.footer-nav {
        grid-area: auto / nav;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    div.footer-nav .row-fill {
        flex: 1 1 100%;
        width: auto;
        max-width: 100%;
    }
    div.footer-nav .row-half {
        flex: 1 1 50%;
        width: auto;
        max-width: 100%;
    }
    div.footer-newsletter {
        grid-area: auto / nav;
        display: flex;
        flex-direction: column;
    }
    div.footer-learnmore {
        grid-area: auto / learn;
        display: flex;
        flex-direction: column;
    }
    div.footer-about {
        grid-area: auto / about;
        display: flex;
        flex-direction: column;
    }
    div.footer-social {
        grid-area: auto / social;
        display: flex;
        flex-direction: column;
    }
    div.footer-fine-print {
        display: flex;
        flex-direction: column-reverse;
    }
}

/*- TABLET Footer (keep on this line) -*/
@media only screen and (min-width: 641px) {
    a.footer-btn {
        margin: 0 auto 0 0;
    }
}


/*--- Page Elements ---*/

.feature-text-icon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-height: 46px;
    height: 46px;
    max-width: 46px;
    width: 46px;
    border-radius: 30px;
    border: 1px solid #787E81;
    background-color: #00000000;
}
.feature-text-icon .font-body-sm {
    max-height: fit-content;
    height: fit-content;
    max-width: fit-content;
    width: fit-content;
}

.scan-app-icon {
    width: calc(min(1648px, 100vw) * .049);
    height: calc(min(1648px, 100vw) * .049);
    border-radius: calc(min(1648px, 100vw) * .008);
    background-color: #000;
}

.product-tag {
    width: fit-content;
    height: fit-content;
    padding: 8px 16px;
    border: 1px solid #FFF;
    border-radius: 40px;
}
.product-tag-inverted {
    width: fit-content;
    height: fit-content;
    padding: 8px 16px;
    background: #FFF;
    border-radius: 40px;
}
.product-tag-dark {
    width: fit-content;
    height: fit-content;
    padding: 8px 16px;
    background: #000;
    border-radius: 40px;
}

.pin-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    /* opacity: 0; */
    /* left: 0; */
    top: 0;
    overflow: visible;
    z-index: 1;
}
.pin-wrapper>div:not(.pin-bridge) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.pin-bridge {
    left: 0;
    right: 0;
    /* top: calc(calc(min(1648px, 100vw) * .497) * var(--line-y)); */
    top: 0;
    bottom: 0;
}
.pin-bridge::before {
    content: '';
    position: absolute;
    display: block;
    /* height: 0; */
    left: var(--line-start);
    right: calc(100% - var(--line-end));
    top: var(--line-y);
    bottom: calc(100% - var(--line-y-end));
    border-bottom: var(--line-border);
    border-left: var(--line-border);
    border-right: var(--line-border);
}

.action-btn {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    max-height: 80px;
    height: 80px;
    width: fit-content;
    padding: 0px;
    border: 1px solid #787E81;
    border-radius: 72px;
    background-color: #00000000;
}
.action-btn:hover {
    border: 1px solid #FFF;
    background-color: #FFF;
    cursor: pointer;
}
.action-btn-icon-frame {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-height: 78px;
    height: 78px;
    max-width: 78px;
    width: 78px;
    border-radius: 40px;
    border: 1px solid #FFF;
    background-color: #FFF;
}
.action-btn:hover .action-btn-icon-frame {
    border: 1px solid #FFF;
    background-color: #000;
}
.action-btn-text {
    padding: 0px 52px 0px 20px;
    font-family: "Neue Haas Grotesk Display Pro - Medium", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #FFF;
}
.action-btn:hover .action-btn-text {
    color: #000;
}
.action-btn-icon {
    max-width: 36px;
    width: 36px;
    max-height: 36px;
    height: 36px;
}
.action-btn-icon img {
    max-width: 36px;
    width: 36px;
    max-height: 36px;
    height: 36px;
}
.action-btn-icon-lg {
    max-width: 51px;
    width: 51px;
    max-height: 51px;
    height: 51px;
}
.action-btn-icon-lg img {
    max-width: 51px;
    width: 51px;
    max-height: 51px;
    height: 51px;
}
.action-btn:hover .action-btn-icon img {
    filter: invert(1);
}
.action-btn:hover .action-btn-icon-lg img {
    filter: invert(1);
}

.list-icon {
    max-width: 24px;
    width: 24px;
    max-height: 24px;
    height: 24px;
}
.list-icon img {
    max-width: 24px;
    width: 24px;
    max-height: 24px;
    height: 24px;
}

.press-img:hover {
    opacity: 50%;
}

.slider {
    overflow-x: visible;
    overflow-y: hidden;
}
.slider .slider-track {
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 12px;
}
.slider .slider-track::-webkit-scrollbar {
    display: none;
}
.slider .gallery {
    display: flex;
    flex-flow: row nowrap;
    margin: 0 auto;
}
.slider .gallery::before {
    content: '';
    padding-right: 20vw;
}
.slider .gallery::after {
    content: '';
    padding-right: 50vw;
}
.slider .item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.slider .item img {
    object-fit: cover;
    max-inline-size: 100%;
    block-size: 100%; 
}
/* (section-specific slider) */
/* cushion */
.slider.TOGcush {
    block-size: calc(calc(100vw * .856) * 1.166);
}
.slider.TOGcush .slider-track {
    /* hide the scrollbar outside the parent element */
    block-size: calc(calc(calc(100vw * .856) * 1.166) + 25px);
}
.slider.TOGcush .gallery {
    gap: 8px;
    inline-size: calc(100vw * .856);
    block-size: calc(calc(100vw * .856) * 1.166);
}
/* steamvr accessories */
.slider.TOGsteam {
    block-size: 100vw;
}
.slider.TOGsteam .slider-track {
    /* hide the scrollbar outside the parent element */
    block-size: calc(100vw + 25px);
}
.slider.TOGsteam .gallery {
    gap: 8px;
    inline-size: calc(100vw * .856);
    block-size: 100vw;
}

.tog-img:not(.tog-active) {
    display: none;
}
.tog-btn.tog-active[class*='TOGfeat-'] {
    border: 1px solid #FFF;
    background: #FFF;
}
.tog-btn.tog-active[class*='TOGfeat-'] div {
    color: #000;
}

/*- TABLET Page Elements -*/
@media only screen and (min-width: 641px) and (max-width: 991px) {
    .scan-app-icon {
        width: calc(100vw * .3);
        height: calc(100vw * .3);
        border-radius: calc(100vw * .049);
        background-color: #000;
    }

    .tog-btn.tog-active[class*='TOGcomf-'] {
        border: 1px solid #000;
        background: #000;
    }
    .tog-btn.tog-active[class*='TOGcomf-'] div {
        color: #FFF;
    }
    .tog-sec:not(.tog-active):not(.tog-mobile-only) {
        display: none;
    }
}

/*- MOBILE Page Elements -*/
@media only screen and (max-width: 640px) {
    .product-tag, .product-tag-inverted, .product-tag-dark {
        font-size: 14px !important;
        line-height: 21px !important;
    }

    .action-btn {
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        max-height: 64px;
        height: 64px;
        width: fit-content;
        padding: 0px;
        border: 1px solid #787E81;
        border-radius: 72px;
        background-color: #00000000;
    }
    .action-btn-icon-frame {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        max-height: 62px;
        height: 62px;
        max-width: 62px;
        width: 62px;
        border-radius: 40px;
        border: 1px solid #FFF;
        background-color: #FFF;
    }
    .action-btn-text {
        padding: 0px 48px 0px 16px;
        font-family: "Neue Haas Grotesk Display Pro - Medium", sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 15px;
        line-height: 24px;
        letter-spacing: 0.01em;
        color: #FFF;
    }
    .action-btn-icon {
        max-width: 32px;
        width: 32px;
        max-height: 32px;
        height: 32px;
    }
    .action-btn-icon img {
        max-width: 32px;
        width: 32px;
        max-height: 32px;
        height: 32px;
    }
    .action-btn-icon-lg {
        max-width: 51px;
        width: 51px;
        max-height: 51px;
        height: 51px;
    }
    .action-btn-icon-lg img {
        max-width: 51px;
        width: 51px;
        max-height: 51px;
        height: 51px;
    }
    
    .scan-app-icon {
        width: calc(100vw * .3);
        height: calc(100vw * .3);
        border-radius: calc(100vw * .049);
        background-color: #000;
    }

    .tog-btn.tog-active[class*='TOGcomf-'] {
        border: 1px solid #000;
        background: #000;
    }
    .tog-btn.tog-active[class*='TOGcomf-'] div {
        color: #FFF;
    }
    .tog-sec:not(.tog-active) {
        display: none;
    }
}


/*--- Template ---*/

.hide {
    visibility: hidden;
    z-index: -1;
}
.base-margin {
    margin: 0px 16px;
}

.divider {
    height: 0px;
    width: calc(100% - 33px);
    margin-left: 16px;
    border-top: 1px solid #787E81;
}
.child-divider {
    height: 0px;
    width: calc(100% - 1px);
    border-top: 1px solid #787E81;
}
.img-rounded {
    border-radius: 8px;
}

.base-grid {
    display: grid !important;
    grid-template-columns: repeat(12, 1fr [col]);
    gap: 16px;
    padding: 0px 16px;
}
.gb-1 {
    grid-column-start: 1;
}
.gb-2 {
    grid-column-start: 2;
}
.gb-3 {
    grid-column-start: 3;
}
.gb-4 {
    grid-column-start: 4;
}
.gb-5 {
    grid-column-start: 5;
}
.gb-6 {
    grid-column-start: 6;
}
.gb-7 {
    grid-column-start: 7;
}
.gb-8 {
    grid-column-start: 8;
}
.gb-9 {
    grid-column-start: 9;
}
.gb-10 {
    grid-column-start: 10;
}
.gb-11 {
    grid-column-start: 11;
}
.gb-12 {
    grid-column-start: 12;
}
.ge-1 {
    grid-column-end: col 1;
}
.ge-2 {
    grid-column-end: col 2;
}
.ge-3 {
    grid-column-end: col 3;
}
.ge-4 {
    grid-column-end: col 4;
}
.ge-5 {
    grid-column-end: col 5;
}
.ge-6 {
    grid-column-end: col 6;
}
.ge-7 {
    grid-column-end: col 7;
}
.ge-8 {
    grid-column-end: col 8;
}
.ge-9 {
    grid-column-end: col 9;
}
.ge-10 {
    grid-column-end: col 10;
}
.ge-11 {
    grid-column-end: col 11;
}
.ge-12 {
    grid-column-end: col 12;
}

/*- TABLET Template -*/
@media only screen and (min-width: 641px) and (max-width: 991px) {
    .gbt-1 {
        grid-column-start: 1;
    }
    .gbt-2 {
        grid-column-start: 2;
    }
    .gbt-3 {
        grid-column-start: 3;
    }
    .gbt-4 {
        grid-column-start: 4;
    }
    .gbt-5 {
        grid-column-start: 5;
    }
    .gbt-6 {
        grid-column-start: 6;
    }
    .gbt-7 {
        grid-column-start: 7;
    }
    .gbt-8 {
        grid-column-start: 8;
    }
    .gbt-9 {
        grid-column-start: 9;
    }
    .gbt-10 {
        grid-column-start: 10;
    }
    .gbt-11 {
        grid-column-start: 11;
    }
    .gbt-12 {
        grid-column-start: 12;
    }
    .get-1 {
        grid-column-end: col 1;
    }
    .get-2 {
        grid-column-end: col 2;
    }
    .get-3 {
        grid-column-end: col 3;
    }
    .get-4 {
        grid-column-end: col 4;
    }
    .get-5 {
        grid-column-end: col 5;
    }
    .get-6 {
        grid-column-end: col 6;
    }
    .get-7 {
        grid-column-end: col 7;
    }
    .get-8 {
        grid-column-end: col 8;
    }
    .get-9 {
        grid-column-end: col 9;
    }
    .get-10 {
        grid-column-end: col 10;
    }
    .get-11 {
        grid-column-end: col 11;
    }
    .get-12 {
        grid-column-end: col 12;
    }
} /*- END TABLET Template -*/

/*- MOBILE Template -*/
@media only screen and (max-width: 640px) {
    .base-margin {
        margin: 0px 12px;
    }
    .base-grid {
        grid-template-columns: repeat(6, 1fr [col]);
        gap: 12px;
        padding: 0px 12px;
    }
    .gbm-1 {
        grid-column-start: 1;
    }
    .gbm-2 {
        grid-column-start: 2;
    }
    .gbm-3 {
        grid-column-start: 3;
    }
    .gbm-4 {
        grid-column-start: 4;
    }
    .gbm-5 {
        grid-column-start: 5;
    }
    .gbm-6 {
        grid-column-start: 6;
    }
    .gem-1 {
        grid-column-end: col 1;
    }
    .gem-2 {
        grid-column-end: col 2;
    }
    .gem-3 {
        grid-column-end: col 3;
    }
    .gem-4 {
        grid-column-end: col 4;
    }
    .gem-5 {
        grid-column-end: col 5;
    }
    .gem-6 {
        grid-column-end: col 6;
    }
} /*- END MOBILE Template -*/

.font-xl {
    font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 72px;
    line-height: 88px;
}
.xl-shorten-top { margin-top: calc(calc(72px - 88px) / 1.2) }
.xl-shorten-btm { margin-bottom: calc(calc(72px - 88px) / 1) }
.font-lg {
    font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 64px;
    line-height: 72px;
}
.lg-shorten-top { margin-top: calc(calc(64px - 72px) * 1.5) }
.lg-shorten-btm { margin-bottom: calc(calc(64px - 72px) * 1.5) }
.font-head {
    font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 48px;
    line-height: 56px;
}
.head-shorten-top { margin-top: calc(calc(48px - 56px) * 1) }
.head-shorten-btm { margin-bottom: calc(calc(48px - 56px) * 1.4) }
.font-subhead {
    font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 40px;
}
.subhead-shorten-top { margin-top: calc(calc(32px - 40px) * 0.7) }
.subhead-shorten-btm { margin-bottom: calc(calc(32px - 40px) * 1) }
.font-body-lg {
    font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
}
.body-lg-shorten-top { margin-top: calc(calc(24px - 32px) * 0.6) }
.body-lg-shorten-btm { margin-bottom: calc(calc(24px - 32px) * 0.8) }
.font-body-sm {
    font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
}
.body-sm-shorten-top { margin-top: calc(calc(18px - 24px) * 0.8) }
.body-sm-shorten-btm { margin-bottom: calc(calc(18px - 24px) * 1) }
.font-label {
    font-family: "Neue Haas Grotesk Display Pro - Medium", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.02em;
}
.label-shorten-top { margin-top: calc(calc(15px - 22px) * 0.7) }
.label-shorten-btm { margin-bottom: calc(calc(15px - 22px) * 0.8) }
.font-detail {
    font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}
.detail-shorten-top { margin-top: calc(calc(16px - 20px) * 0.6) }
.detail-shorten-btm { margin-bottom: calc(calc(16px - 20px) * 1) }
.font-list {
    font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 40px;
}

/*- MOBILE Fonts -*/
@media only screen and (max-width: 991px) {
    .font-mob-xl {
        font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 42px;
        line-height: 48px;
    }
    .mob-xl-shorten-top { margin-top: calc(calc(42px - 48px) * 1.2) }
    .mob-xl-shorten-btm { margin-bottom: calc(calc(42px - 48px) * 1.5) }
    .font-mob-head {
        font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 32px;
        line-height: 40px;
    }
    .mob-head-shorten-top { margin-top: calc(calc(32px - 40px) * 1.1) }
    .mob-head-shorten-btm { margin-bottom: calc(calc(32px - 40px) * 1) }
    .font-mob-subhead {
        font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 28px;
        line-height: 34px;
    }
    .mob-subhead-shorten-top { margin-top: calc(calc(28px - 34px) * 1.2) }
    .mob-subhead-shorten-btm { margin-bottom: calc(calc(28px - 34px) * 1.2) }
    .font-mob-lg {
        font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 24px;
        line-height: 32px;
    }
    .mob-lg-shorten-top { margin-top: calc(calc(24px - 32px) * 0.7) }
    .mob-lg-shorten-btm { margin-bottom: calc(calc(24px - 32px) * 0.9) }
    .font-mob-sm {
        font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 24px;
    }
    .mob-sm-shorten-top { margin-top: calc(calc(18px - 24px) * 0.8) }
    .mob-sm-shorten-btm { margin-bottom: calc(calc(18px - 24px) * 1) }
    .font-mob-xsm {
        font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
    }
    .mob-xsm-shorten-top { margin-top: calc(calc(16px - 20px) * 0.7) }
    .mob-xsm-shorten-btm { margin-bottom: calc(calc(16px - 20px) * 1.1) }
    .font-mob-detail {
        font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 11px;
        line-height: 16px;
    }
    .mob-detail-shorten-top { margin-top: calc(calc(11px - 16px) * 0.7) }
    .mob-detail-shorten-btm { margin-bottom: calc(calc(11px - 16px) * 1.1) }
    .font-mob-footer {
        font-family: "Neue Haas Grotesk Display Pro - 55 Roman", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 28px;
    }
    .mob-footer-shorten-top { margin-top: calc(calc(16px - 28px) * 0.5) }
    .mob-footer-shorten-btm { margin-bottom: calc(calc(16px - 28px) * 0.75) }
}

.spacer-240 {
    max-width: 240px;
    max-height: 240px;
    width: 240px;
    height: 240px;
}
.spacer-160 {
    max-width: 160px;
    max-height: 160px;
    width: 160px;
    height: 160px;
}
.spacer-120 {
    max-width: 120px;
    max-height: 120px;
    width: 120px;
    height: 120px;
}
.spacer-80 {
    max-width: 80px;
    max-height: 80px;
    width: 80px;
    height: 80px;
}
.spacer-64 {
    max-width: 64px;
    max-height: 64px;
    width: 64px;
    height: 64px;
}
.spacer-56 {
    max-width: 56px;
    max-height: 56px;
    width: 56px;
    height: 56px;
}
.spacer-48 {
    max-width: 48px;
    max-height: 48px;
    width: 48px;
    height: 48px;
}
.spacer-40 {
    max-width: 40px;
    max-height: 40px;
    width: 40px;
    height: 40px;
}
.spacer-32 {
    max-width: 32px;
    max-height: 32px;
    width: 32px;
    height: 32px;
}
.spacer-24 {
    max-width: 24px;
    max-height: 24px;
    width: 24px;
    height: 24px;
}
.spacer-20 {
    max-width: 20px;
    max-height: 20px;
    width: 20px;
    height: 20px;
}
.spacer-16 {
    max-width: 16px;
    max-height: 16px;
    width: 16px;
    height: 16px;
}
.spacer-8 {
    max-width: 8px;
    max-height: 8px;
    width: 8px;
    height: 8px;
}
@media only screen and (min-width: 992px) {
    .desktop-nix {
        display: none;
    }
}

/*- TABLET Spacers -*/
@media only screen and (min-width: 641px) and (max-width: 991px) {
    .tspacer-240 {
        max-width: 240px;
        max-height: 240px;
        width: 240px;
        height: 240px;
    }
    .tspacer-160 {
        max-width: 160px;
        max-height: 160px;
        width: 160px;
        height: 160px;
    }
    .tspacer-120 {
        max-width: 120px;
        max-height: 120px;
        width: 120px;
        height: 120px;
    }
    .tspacer-80 {
        max-width: 80px;
        max-height: 80px;
        width: 80px;
        height: 80px;
    }
    .tspacer-64 {
        max-width: 64px;
        max-height: 64px;
        width: 64px;
        height: 64px;
    }
    .tspacer-56 {
        max-width: 56px;
        max-height: 56px;
        width: 56px;
        height: 56px;
    }
    .tspacer-48 {
        max-width: 48px;
        max-height: 48px;
        width: 48px;
        height: 48px;
    }
    .tspacer-40 {
        max-width: 40px;
        max-height: 40px;
        width: 40px;
        height: 40px;
    }
    .tspacer-32 {
        max-width: 32px;
        max-height: 32px;
        width: 32px;
        height: 32px;
    }
    .tspacer-24 {
        max-width: 24px;
        max-height: 24px;
        width: 24px;
        height: 24px;
    }
    .tspacer-20 {
        max-width: 20px;
        max-height: 20px;
        width: 20px;
        height: 20px;
    }
    .tspacer-16 {
        max-width: 16px;
        max-height: 16px;
        width: 16px;
        height: 16px;
    }
    .tspacer-8 {
        max-width: 8px;
        max-height: 8px;
        width: 8px;
        height: 8px;
    }
    .tablet-nix {
        display: none;
    }
}

/*- MOBILE Spacers -*/
@media only screen and (max-width: 640px) {
    .mspacer-240 {
        max-width: 240px;
        max-height: 240px;
        width: 240px;
        height: 240px;
    }
    .mspacer-160 {
        max-width: 160px;
        max-height: 160px;
        width: 160px;
        height: 160px;
    }
    .mspacer-120 {
        max-width: 120px;
        max-height: 120px;
        width: 120px;
        height: 120px;
    }
    .mspacer-80 {
        max-width: 80px;
        max-height: 80px;
        width: 80px;
        height: 80px;
    }
    .mspacer-64 {
        max-width: 64px;
        max-height: 64px;
        width: 64px;
        height: 64px;
    }
    .mspacer-56 {
        max-width: 56px;
        max-height: 56px;
        width: 56px;
        height: 56px;
    }
    .mspacer-48 {
        max-width: 48px;
        max-height: 48px;
        width: 48px;
        height: 48px;
    }
    .mspacer-40 {
        max-width: 40px;
        max-height: 40px;
        width: 40px;
        height: 40px;
    }
    .mspacer-32 {
        max-width: 32px;
        max-height: 32px;
        width: 32px;
        height: 32px;
    }
    .mspacer-24 {
        max-width: 24px;
        max-height: 24px;
        width: 24px;
        height: 24px;
    }
    .mspacer-20 {
        max-width: 20px;
        max-height: 20px;
        width: 20px;
        height: 20px;
    }
    .mspacer-16 {
        max-width: 16px;
        max-height: 16px;
        width: 16px;
        height: 16px;
    }
    .mspacer-8 {
        max-width: 8px;
        max-height: 8px;
        width: 8px;
        height: 8px;
    }
    .mobile-nix {
        display: none;
    }
}