:root {
    --mzColorWhite: #ffffff;
    --mzColorLightGray: #ebebeb;
    --mzColorGray: #c0c0c0;
    --mzColorCharcoal: #494949;
    --mzColorBlack: #000000;
    --mzColorBlue: #0a6cff;
    --mzColorGreen: #109410;
    --mzColorOrange: #f19e03;
    --mzColorRed: #d30000;
    --mzColorPink: #ffa1a1;
    --mzColorPurple: #8910ad;
    --mzColorYellow: #fce564;
    --mzColorPrimaryTint: #eff3f1;
    --mzColorPrimaryLight: #c4dacd;
    --mzColorPrimaryMedium: #74ac8c;
    --mzColorPrimaryDark: #355f47;
    --mzColorPromptDark: #2f3739;
    --mzColorPromptLight: #f9f9f9;
    --yfColorCream: #fff1c2;
    --yfColorGreen: #355f47;
    --yfColorRed: #6b1e15;
    --Fonts: "Segoe UI", -apple-system-font, BlinkMacSystemFont, Roboto, Helvetica, Arial;
    --FontSizeBase: 16px;
    --FontSizeLarger: 20px;
    --FontLineHeightBase: 22px;
    --FontWeightBase: 400;
    --easeOutQuint: cubic-bezier(0.230, 1.000, 0.320, 1.000);
    --PopupCoverTop: 0px;
    --HamburgerMenuRight: 0px;
}

/* #region | Colors */

.mzColorWhite {
    color: var(--mzColorWhite)
}

.mzBackColorWhite {
    background-color: var(--mzColorWhite)
}

.mzColorLightGray {
    color: var(--mzColorLightGray)
}

.mzBackColorLightGray {
    background-color: var(--mzColorLightGray)
}

.mzColorGray {
    color: var(--mzColorGray)
}

.mzBackColorGray {
    background-color: var(--mzColorGray)
}

.mzColorCharcoal {
    color: var(--mzColorCharcoal)
}

.mzBackColorCharcoal {
    background-color: var(--mzColorCharcoal)
}

.mzColorBlack {
    color: var(--mzColorBlack)
}

.mzBackColorBlack {
    background-color: var(--mzColorBlack)
}

.mzColorBlue {
    color: var(--mzColorBlue)
}

.mzBackColorBlue {
    background-color: var(--mzColorBlue)
}

.mzColorGreen {
    color: var(--mzColorGreen)
}

.mzBackColorGreen {
    background-color: var(--mzColorGreen)
}

.mzColorOrange {
    color: var(--mzColorOrange)
}

.mzBackColorOrange {
    background-color: var(--mzColorOrange)
}

.mzColorRed {
    color: var(--mzColorRed)
}

.mzBackColorRed {
    background-color: var(--mzColorRed)
}

.mzColorPink {
    color: var(--mzColorPink)
}

.mzBackColorPink {
    background-color: var(--mzColorPink)
}

.mzColorPurple {
    color: var(--mzColorPurple)
}

.mzBackColorPurple {
    background-color: var(--mzColorPurple)
}

.mzColorYellow {
    color: var(--mzColorYellow)
}

.mzBackColorYellow {
    background-color: var(--mzColorYellow)
}

.mzColorPrimaryTint {
    color: var(--mzColorPrimaryTint)
}

.mzBackColorPrimaryTint {
    background-color: var(--mzColorPrimaryTint)
}

.mzColorPrimaryLight {
    color: var(--mzColorPrimaryLight)
}

.mzBackColorPrimaryLight {
    background-color: var(--mzColorPrimaryLight)
}

.mzColorPrimaryMedium {
    color: var(--mzColorPrimaryMedium)
}

.mzBackColorPrimaryMedium {
    background-color: var(--mzColorPrimaryMedium)
}

.mzColorPrimaryDark {
    color: var(--mzColorPrimaryDark)
}

.mzBackColorPrimaryDark {
    background-color: var(--mzColorPrimaryDark)
}

.yfColorCream {
    color: var(--yfColorCream)
}

.yfBackColorCream {
    background-color: var(--yfColorCream)
}

.yfColorGreen {
    color: var(--yfColorGreen)
}

.yfBackColorGreen {
    background-color: var(--yfColorGreen)
}

.yfColorRed {
    color: var(--yfColorRed)
}

.yfBackColorRed {
    background-color: var(--yfColorRed)
}

/* #endregion | Colors */

/* #region | css reset */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    -webkit-text-size-adjust: none
}

mark {
    background-color: transparent;
    color: inherit
}

input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input[type="text"],
input[type="email"],
select,
textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* #endregion | css reset */

/* #region | Overlay scrollbars */

.os-theme-dark {
    --os-handle-bg: rgb(135 157 133 / 20%) !important;
    --os-handle-bg-hover: rgb(135 157 133 / 50%) !important;
    --os-handle-bg-active: rgb(135 157 133 / 75%) !important;
    --os-size: 10px;
    --os-padding-perpendicular: 0px;
    --os-padding-axis: 0px;
    --os-track-border-radius: 10px;
    --os-handle-interactive-area-offset: 0px;
    --os-handle-border-radius: 10px;
}

.os-scrollbar-track:hover {
    background: rgba(90, 141, 53, .08);
}

/* #endregion | Overlay scrollbars */

body {
    font-family: var(--Fonts);
    font-size: var(--FontSizeBase);
    font-weight: var(--FontWeightBase);
    line-height: 1.0;
    min-width: 320px;
    overflow-x: hidden;
    word-wrap: break-word;
    transition: opacity 1500ms;
}

body:before {
    content: '';
    display: block;
    z-index: 0;
    height: 100lvh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    background-attachment: scroll;
    background-color: var(--yfColorCream);
}

body.inputsactive {
    height: 100vh;
}

body.inputsactive #Topbar {
    position: absolute;
}

/* #region | Topbar */

#Topbar {
    position: fixed;
    z-index: 2;
    top: 0px;
    left: 0px;
    height: 50px;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    transition: background-color 3000ms;
}

#Topbar.show {
    background-color: rgba(0, 0, 0, 0.1);
}

#TopbarInner {
    position: relative;
    flex: 1 1;
    max-width: 1000px;
    padding-left: 6px;
    padding-right: 6px;
    display: flex;
    flex-direction: row;
    opacity: 0;
    transform: translateY(-50px);
    transition: transform 3000ms cubic-bezier(0.16, 1, 0.3, 1), opacity 4000ms;
}

#Topbar.show>#TopbarInner {
    opacity: 1;
    transform: none;
}

#TopbarFavicon {
    flex: 0 0 50px;
}

#TopbarRightContent {
    display: flex;
    flex: 1 1;
    justify-content: right;
}

#Topbar .mzButton {
    background-color: transparent;
    height: 50px;
    width: 50px;
    flex-direction: row;
    justify-content: center;
}

#TopbarRightContent .mzButtonSvg {
    width: 33px;
    min-width: 28px;
    max-width: 33px;
    margin-left: 2px;
}

.HamburgerLine {
    transition: transform 1500ms cubic-bezier(0.16, 1, 0.3, 1), opacity 1000ms;
}

#Hamburger.showclose #HamburgerLineTop {
    transform: translate3d(9px, -1px, 0px) rotate(45deg);
}

#Hamburger.showclose #HamburgerLineMiddle {
    opacity: 0;
}

#Hamburger.showclose #HamburgerLineBottom {
    transform: translate3d(-11px, 9px, 0px) rotate(-45deg);
}

#HamburgerMenu {
    position: fixed;
    z-index: 2;
    top: 50px;
    right: var(--HamburgerMenuRight);
    height: fit-content;
    width: 205px;
    background-color: #f9f9f9;
    border: 1px solid #777;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateX(50px);
    transition: transform 1500ms cubic-bezier(0.16, 1, 0.3, 1), opacity 1000ms;
}

#HamburgerMenu.show {
    opacity: 1;
    transform: translateX(-4px);
}

#HamburgerMenu>.mzButton {
    width: 100%;
    justify-content: left;
    height: 44px;
    padding-right: 8px;
    background-color: #f9f9f9;
}

#HamburgerMenu>.mzButton>.mzButtonText {
    font-family: var(--Fonts);
    color: var(--mzColorCharcoal);
}

/* #endregion | Topbar */

/* #region | PopupCover */

#PopupCover {
    position: fixed;
    z-index: 2;
    top: 0px;
    height: 0px;
    width: 100vw;
    overflow: hidden;
    transition: background-color 1000ms;
}

#PopupCover.show {
    height: 100dvh;
}

#PopupCover.hamburger {
    position: absolute;
    z-index: 0;
    top: var(--PopupCoverTop);
}

#PopupCover.shade {
    background-color: rgba(0, 0, 0, 0.2);
}

/* #endregion | PopupCover */

#BodyTopPadding {
    height: 50px;
}

.BodyPanel {
    position: relative;
    overflow: hidden;
    width: 85vw;
    max-width: 870px;
    margin: auto;
    margin-top: 30px;
    padding: clamp(12px, 4vw, 20px);
    background-color: rgba(253, 251, 243, 0.8);
    border-radius: 8px;
    border: 1px solid rgb(189, 179, 138);
    box-shadow: 4px 4px 10px rgba(189, 179, 138, 0.6);
    opacity: 0;
    transform: translateX(-50px);
    transition: transform 1500ms cubic-bezier(0.16, 1, 0.3, 1), opacity 1000ms;
}

.BodyPanel.show {
    opacity: 1;
    transform: none;
}

.BodyPanelHeading {
    position: relative;
    color: var(--yfColorGreen);
    font-family: var(--Fonts);
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 26px;
}

.BodyPanelSubHeading {
    position: relative;
    color: var(--yfColorRed);
    font-family: var(--Fonts);
    font-size: 19px;
    margin-top: 14px;
    margin-bottom: -4px;
}

.BodyPanelText {
    position: relative;
    color: var(--mzColorCharcoal);
    font-family: var(--Fonts);
    font-size: var(--FontSizeBase);
    line-height: var(--FontLineHeightBase);
}

.BodyPanelText>.FormTextBox {
    /* margin-top: 12px; */
    margin-bottom: 4px;
}

.BodyPanelPara.FormPrompt {
    margin-top: 16px;
    margin-bottom: -8px;
}

.BodyPanelImage {
    opacity: 0.3;
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0;
    background-size: cover;
    background-position: center;
    width: clamp(150px, 100vw, 400px);
    /* height: clamp(150px, 100vw, 400px); */
    max-width: 100%;
    max-height: 100%;
    border-radius: 0px 8px 8px 0px;
    transition: transform 2500ms;
}

.BodyPanelImage.grow {
    transform: scale(1.1);
}

.BodyPanelPara {
    margin-top: 12px;
    margin-bottom: 4px;
}

.BodyPanelList {
    list-style-type: disc;
    padding-left: 20px;
    line-height: 20px;
}

.BodyPanelList>li {
    margin-bottom: 5px;
}

.BodyButton {
    position: relative;
    width: 300px;
    height: 60px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    opacity: 0;
    transform: translateX(-50px);
    transition: transform 1500ms cubic-bezier(0.16, 1, 0.3, 1), opacity 1000ms;
}

.BodyButton.show {
    opacity: 1;
    transform: none;
}

.BodyButton>.mzButtonText {
    margin: auto;
}

::placeholder {
    color: #dbd2bb !important;
}

.FormGap {
    height: 10px;
}

.mzEditBoxInput {
    color: #fcfcfc;
    caret-color: #fff;
}

.mzEditBox:has(.mzEditBoxInput:focus),
.mzEditBox:has(.mzEditBoxClear:hover),
.FormTextArea:has(.mzEditBoxInput:focus) {
    background-color: #665d45;
}

.mzEditBoxClear {
    max-width: 0px;
    background-color: #ccc0a5;
    border-radius: 0px;
    padding: 0px;
}

.mzPasswordHideShow {
    background-color: #ccc0a5;
    border-radius: 0px;
}

.FormTextBox {
    background-color: #9f906d;
    width: 100%;
    max-width: 100%;
    height: 50px;
    margin-top: 16px;
    padding-left: 4px;
}

.FormTextBoxIcon {
    max-width: 44px;
    flex: 1 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.FormTextBoxIconLeft {
    width: 44px;
    height: 26px;
}

.FormTextArea {
    background-color: #9f906d;
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    margin-top: 16px;
    margin-bottom: 4px;
    padding-left: 4px;
    border-radius: 8px;
}

.FormTextArea>.mzEditBoxInput {
    width: calc(100% - 4px);
    margin-top: 4px;
}

.BodyPanelTextButton {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 60px;
    margin: auto;
    margin-top: 30px;
    border-radius: 8px;
    background-color: var(--mzColorGreen);
    color: var(--mzColorWhite);
}

.BodyPanelTextButton>.mzButtonText {
    margin: auto;
}

.InputErrorMessage {
    color: var(--mzColorRed);
    margin-top: 2px;
    margin-bottom: 10px;
    line-height: 18px;
}

.InputErrorMessage.hidden {
    display: none;
}

#SigninError:not(.hidden) {
    margin-top: 8px;
}

.PromptAbove {
    height: 0px;
    overflow: hidden;
    margin-bottom: -18px;
    padding-left: 2px;
    color: var(--yfColorGreen);
    font-size: 14px;
    transition: height 300ms;
}

.PromptAbove.show {
    height: 20px;
}

.HiddenInput {
    opacity: 0;
    height: 0px;
    width: 0px;
}

/* @view-transition {
    navigation: auto;
} */