[data-img=loading], [data-img=loaded], .fade-in {
    transition: opacity 200ms ease-in;
}

.fade-in {
    opacity: 0;
}

[data-img=loading] {
    opacity: 0;
}

[data-img=loaded] {
    opacity: 1 !important;
}

[data-snap-x] {
    scroll-snap-type: x mandatory;
}

[data-snap-x] > * {
    scroll-snap-align: center;
}

html.noscroll {
    overflow: hidden;
}

.mc-banner,
.mc-modal {
    z-index: 10001!important;
}

:root {
    --ohto-serif: 'p22-mackinac-pro', Georgia, 'Times New Roman', times, serif;
    --ohto-sans: 'Readex Pro', Helvetica, Arial, sans-serif;
    --ohto-darkest-brown: #3B352D;
    --ohto-medium-brown: #655A4D;
    --ohto-palest-pale: #F8F7F6;
    --ohto-bone: #EBE7E3;
    --ohto-gold: #988046;
    --ohto-palest-gold: #FFFAEE;
    --ohto-pale-gold: #F8F3E8;
    --ohto-medium-blue: #6B9AAE;
    --ohto-dark-gold: #685118;
    --ohto-red: #975936;
    --ohto-pale-blue: #F6FBFC;
    --ohto-dark-blue: #284F60;
    --ohto-med-green: #68925D;
    --ohto-pale-green: #F1F3EA;
    --ohto-forest-green: #38461E;
    --ohto-link-red: #975936;
    --ohto-visited-link: #685118;
    --card-border-radius: 15px;
    --card-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
    --button-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
    --hover-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    /*--wrapper-width: calc(100% - (var(--body-margin) * 2));*/
    --wrapper-width: 100%;
    --body-margin: 24px;
    --body-gap: 2.25rem;
    --theme-bg: var(--ohto-palest-pale);
    --theme-accent: var(--ohto-gold);
    --theme-body: var(--ohto-darkest-brown);
    --theme-body-soft: var(--ohto-medium-brown);
}

[class*='theme--'] {
    background-color: var(--theme-bg);
    color: var(--theme-body);
}

[class*='theme--'] .theme__accent {
    color: var(--theme-accent);
}

[class*='theme--'] .text--soft {
    color: var(--theme-body-soft);
}

.theme--local {
    --theme-bg: var(--ohto-pale-blue);
    --theme-accent: var(--ohto-medium-blue);
}

.theme--itinerary {
    --theme-bg: var(--ohto-palest-gold);
    --theme-accent: var(--ohto-medium-brown);
}

.theme--collection {
    --theme-body-soft: var(--ohto-gold);
}

.theme--insiders {
    --theme-bg: var(--ohto-pale-blue);
    --theme-body: var(--ohto-medium-brown);
}

.theme--sustainable {
    --theme-bg: var(--ohto-pale-green);
    --theme-body: var(--ohto-medium-brown);
}

.theme--treat {
    --theme-bg: var(--ohto-pale-gold);
    --theme-body: var(--ohto-medium-brown);
}

.theme--indigenous {
    --theme-bg: var(--ohto-pale-gold);
    --theme-body: var(--ohto-medium-brown);
}

.theme--dark {
    --theme-body: #fff;
}

.theme--dark a,
.theme--dark a:visited {
    color: var(--theme-body);
}

.theme--default a,
.theme--default a:visited {
    color: var(--ohto-link-red);
}


[class*='container'] {
    margin-left: auto;
    margin-right: auto;
}

.container--sm {
    max-width: calc(680px + (var(--body-margin) * 2));
}

.container--md {
    max-width: calc(960px + (var(--body-margin) * 2));
}

.container--lg {
    max-width: calc(1200px + (var(--body-margin) * 2));
}

.container--xl {
    max-width: 1400px;
}

[class*='oh-wrapper'] {
    max-width: 100%;
}

[class*='oh-wrapper'] > * {
    margin-left: var(--body-margin, 0);
    margin-right: var(--body-margin, 0);
    width: var(--wrapper-width);
    max-width: calc(100% - (var(--body-margin, 1rem) * 2))
}

[class*="oh-wrapper"] picture, [class*="oh-wrapper"] picture > img {
    max-width: 100%;
}

[class*='oh-wrapper'].center > * {
    margin-left: auto;
    margin-right: auto;
}

[class*='oh-wrapper'] > h2,
[class*='oh-wrapper'] > h3,
[class*='oh-wrapper'] > h4 {
    margin-top: var(--body-gap);
}

@media (max-width: 767px) {
    [class*='oh-wrapper'].wide {
        --body-margin: 12px;
    }
}

.oh-wrapper--sm {
    --wrapper-width: 400px;
    margin-top: var(--body-gap);
    margin-bottom: var(--body-gap);
}

.oh-wrapper--md {
    --wrapper-width: 680px;
    margin-top: var(--body-gap);
    margin-bottom: var(--body-gap);
}

.oh-wrapper--lg {
    --wrapper-width: 820px;
    margin-top: var(--body-gap);
    margin-bottom: var(--body-gap);
}

.oh-wrapper--xl {
    --wrapper-width: 960px;
    margin-top: var(--body-gap);
    margin-bottom: var(--body-gap);
}

.oh-wrapper--text {
    --body-margin: 24px;
}

.oh-wrapper--links {
    --body-margin: 24px;
}

.font-serif {
    font-family: var(--ohto-serif);
}

.font-sans {
    font-family: var(--ohto-sans);
}

body {
    font-family: var(--ohto-serif);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7rem;
    color: var(--ohto-darkest-brown);
}

a {
    color: var(--ohto-link-red);
}

a:visited {
    color: var(--ohto-visited-link);
}

article a {
    font-weight: bold;
}

p {
    margin-bottom: 1.5rem;
    overflow-wrap: break-word;
}

hr, ul, ol, pre {
    margin-top: var(--body-gap);
    margin-bottom: var(--body-gap);
    box-sizing: border-box;
}

ul li::marker {
    font-size: 70%;
}

article ul, article ol {
    padding-left: 1.5rem;
}

article ul li, article ol li {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

h1 {
    font-family: var(--ohto-sans);
    font-weight: 900;
    font-size: 2.7rem;
    line-height: 2.7rem;
    letter-spacing: -0.02em;
}

h2 {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 2rem;
}

h3 {
    font-weight: 500;
    font-size: 1.4rem;
}

h4 {
    font-weight: 300;
    font-size: 1.2rem;
}

h2 + *,
h3 + *,
h4 + * {
    margin-top: 1rem;
}

blockquote, [class*="oh-wrapper"] blockquote {
    position: relative;
    box-sizing: border-box;
    width: 450px;
    max-width: calc(100% - (var(--body-margin) * 2));
    margin: 2.5rem auto 3rem;
    padding: 2rem 0 0 3rem;
    font-family: var(--ohto-serif);
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 1.75rem;
    letter-spacing: -0.01em;
    color: var(--ohto-forest-green);
}

/* Remove left-indent on blockquote */
@media (min-width: 768px) {
    blockquote {
        padding: 2rem 0 0;
    }
}

blockquote::before {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    width: 130px;
    height: 14px;
    background-image: url('/themes/ohto2022/css/../img/ui/pre-pull-quote.png');
    background-repeat: no-repeat;
    background-size: contain;
}

blockquote > *:first-child {
    margin-top: 0;
}

/*blockquote * {*/
/*  margin: 0!important;*/
/*}*/

cite {
    font-family: var(--ohto-sans);
    font-style: normal;
    font-size: 0.8rem;
    color: var(--ohto-forest-green);
}

figure {
    position: relative;
    width: var(--wrapper-width, 100%);
    margin-top: var(--body-gap);
    margin-bottom: var(--body-gap);
}

figure > figure {
    margin: 0;
    max-width: 100%;
}

figure img {
    width: 100%;
}

figcaption {
    margin: 0.2rem auto 0.2rem;
    font-family: var(--ohto-sans);
    font-size: 0.75rem;
    line-height: 1.125rem;
    color: var(--ohto-medium-brown);
    max-width: calc(100% - (var(--body-margin) * 2))
}

.breadcrumb {
    margin: 1.5rem var(--body-margin) 2.5rem;
    font-family: var(--ohto-sans);
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.3rem;
}


.bg-fill-svg, .bg-fill-img {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.bg-fill-svg > svg {
    position: absolute;
    width: 120%;
    height: 100%;
    top: 0;
    left: -10%;
    right: 0;
    z-index: -1;
}

@media (min-width: 768px) {
    .bg-fill-svg.title--landing > svg {
        width: 100%;
        left: 0;
    }
}

.bg-fill-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.last:not([class*="block--"])::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 13px;
    background: url(/themes/ohto2022/css/../img/ui/marker-end-of-post.png) center no-repeat;
    background-size: contain;
    transform: translate(10px, 2px);
}
.last:not(p)::after {
    position: absolute;
    margin-top: 8px;
}

/*** Block Builder Blocks ***/

.oh-wrapper--crowdriff {
    --wrapper-width: 100%;
    --body-margin: auto;
}

.block--tip {
    margin-top: var(--body-gap);
    margin-bottom: var(--body-gap);
    padding: 20px 24px;
    border-radius: 6px;
    font-family: var(--ohto-sans);
    font-size: 0.8rem;
    line-height: 1.3rem;
    box-sizing: border-box;
}

.block--tip * {
    margin: unset;
    padding: unset;
}

.tip__title {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.tip__title .icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    pointer-events: none;
    user-select: none;
}

.theme--sustainable .icon {
    width: 25px !important;
    height: 26px !important;
}

.embed-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.block--disclaimer {
    max-width: fit-content;
    padding: 1.25rem;
    border: solid 1px rgba(151, 89, 54, 0.3);
    border-radius: 5px;
    font-family: var(--ohto-sans);
    font-weight: 400;
    font-size: 0.825rem;
    line-height: 1.25rem;
    color: var(--ohto-medium-brown);
    margin-bottom: var(--body-gap);
}

.block--disclaimer > *, .page--story .block--disclaimer > p {
    max-width: 740px;
    font-size: 0.825rem;
    line-height: 1.25rem;
    margin: 0;
}


/* Hide horizontal scrollbar */
.related-articles-swipe::-webkit-scrollbar {
    display: none;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */

}

.block--related {
    position: relative;
    height: 110px;
    margin: 2rem 0;
    padding-left: var(--body-margin);
    padding-right: var(--body-margin);
}
.block--related > * {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.block--related::before {
    content: "";
    display: block;
    width: 100%;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
    border-top: solid 1px var(--ohto-bone);
}
@media (max-width: 440px) {
    .block--related::before {
        padding-right: var(--body-margin);
    }
}

.related-articles-swipe {
    /*background-image: url(/themes/ohto2022/img/ui/bg-related-articles.png);*/
    /*background-size: cover;*/
    position: absolute;
    left: 0;
    right: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: auto;
    margin-top: 10px;
    padding-left: var(--body-margin);
    padding-right: var(--body-margin);
    overflow-x: auto;
    overscroll-behavior-x: contain;
}

.related-articles-swipe .teaser--tiny {
    min-width: 272px;
    max-width: 72vw;
}

.teaser--tiny {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: 12px;
    margin-right: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.teaser--tiny__img {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    margin-right: 12px;
    border-radius: 10px;
    background-color: var(--ohto-palest-pale);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.teaser--tiny__img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.teaser--tiny__title {
    max-width: 320px;
    display: block;
    margin-top: -2px;
    font-family: var(--ohto-sans);
    font-size: 13px;
    line-height: 16px;
    color: var(--ohto-darkest-brown);
}


/*** Stories ***/

.type--story .banner--default {
    overflow: hidden;
}

.type--story .article__title {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.type--story .article__meta {
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
    font-family: var(--ohto-sans);
    font-size: 0.9rem;
    line-height: 1.1rem;
    color: var(--ohto-medium-brown);
}

.type--story .article__intro {
    --wrapper-width: 820px;
    margin-top: 1.5rem;
    /*margin-bottom: 2rem;*/
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.6rem;
    font-weight: 400;
    color: var(--ohto-gold);
}


/* Embedded Media --> edit templates and then re-specify */


/* TEMP: */


.card {
    display: flex;
    border-radius: var(--card-border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    text-decoration: none;
}


/* FORMS */

form > *:not(.form--inline) {
    max-width: 520px;
}

label {
    text-transform: uppercase;
}

label, .form-item .description {
    display: block;
    font-family: var(--ohto-sans);
    font-size: 13px;
    line-height: 17px;
}

.button {
    display: inline-block;
    max-width: 260px;
    margin: 1rem 0;
    padding: 10px 22px;
    font-family: var(--ohto-sans);
    background: var(--ohto-red);
    appearance: none;
    border: none;
    border-radius: 40px;
    color: #fff !important;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.25rem;
    white-space: normal;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.button:hover {
    filter: brightness(1.15);
}

.button:active {
    filter: brightness(0.8);
    transform: translateY(1px);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

.button.secondary {
    background: var(--ohto-darkest-brown);
}

/* Form + Chosen override styling starts here */
input:not(.button):not(.form-checkbox), select, .chosen-single,
form .chosen-container .chosen-results li.active-result {
    align-items: center;
    width: 100%;
    height: 45px !important;
    margin: 0.5rem 0 0.5rem;
    padding: 0 1rem !important;
    box-sizing: border-box;
    border: 1px solid;
    border-color: var(--ohto-medium-brown) !important;
    border-radius: 10px !important;
    font-weight: normal;
    font-family: var(--ohto-sans);
    font-size: 0.8rem;
    line-height: 1rem;
    color: var(--ohto-medium-brown) !important;
    background-color: var(--ohto-palest-pale) !important;
}

select {
    background: url('/themes/ohto2022/css/../img/ui/select-arrow.png') no-repeat calc(100% - 16px);
    background-size: 25px 15px;
}

form .chosen-container .chosen-single::after {
    content: "";
    position: absolute;
    top: 14px;
    right: 12px;
    width: 26px;
    height: 15px;
    background: url('/themes/ohto2022/css/../img/ui/select-arrow.png') no-repeat;
    background-size: 26px 16px;
    transition: transform 125ms cubic-bezier(1, 0, 0.25, 1.35)
}

form .chosen-with-drop .chosen-single::after {
    transform: rotate(-180deg);
}

.chosen-container-single {
    width: 100% !important;
}

.chosen-container-single .chosen-results {
    margin: 0 !important;
    padding: 0 !important;
    max-height: unset !important;
}

.chosen-container-single .chosen-search {
    position: absolute;
    width: 0;
    height: 0;
    z-index: -999;
}

form .chosen-container-single .chosen-single,
form .chosen-container .chosen-results li.active-result {
    display: flex !important;
}

form .chosen-container-single .chosen-single:focus-within {
    outline: solid 1px blue;
}

.chosen-container-active.chosen-with-drop .chosen-drop {
    margin-top: -0.5rem;
    border: solid 1px var(--ohto-darkest-brown);
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: var(--hover-shadow);
    overflow: hidden;
}

.chosen-container-active.chosen-with-drop .chosen-single {
    border-bottom: solid 1px #ccc !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    box-shadow: var(--hover-shadow);
}

form .chosen-container .chosen-results li.active-result {
    margin: 0;
    border: 0;
    border-bottom: solid 1px #ccc !important;
    border-radius: 0 !important;
}

form .chosen-container .chosen-results li.result-selected {
    background-color: var(--ohto-bone) !important;
}

form .chosen-container .chosen-results li.highlighted {
    background-color: var(--ohto-pale-gold) !important;
}

form .description {
    font-family: var(--ohto-sans);
}

input[type="checkbox"],
input[type="radio"] {
    width: 26px;
    height: 26px;
    margin-top: 0;
    border: solid 1px var(--ohto-darkest-brown);
    border-radius: 10px;
    background-color: var(--ohto-palest-pale);
    box-sizing: border-box;
    vertical-align: middle;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

input[type="radio"] {
    border: solid 1px var(--ohto-darkest-brown);
    border-radius: 50%;
}

input[type="checkbox"]:checked {
    background-image: url(/themes/ohto2022/css/../../insider2022/img/icons/icon-close.png);
    background-size: 15px 15px;
    background-repeat: no-repeat;
    background-position: center center;
}

.form-type-radio,
.form-type-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-type-radio .description,
.form-type-checkbox .description {
    margin-left: 1.5em;
}

.form-required::after {
    display: none;
}

/* End of form styling */