@font-face {
    font-family: desertbeauty;
    src: url(/resources/papyrus.ttf);
}
:focus{
    outline: none;
}
body {
    color: black;
    font-family: Tahoma, "Myriad Pro", Myriad, desertbeauty, Papyrus, fantasy, Verdana, sans-serif;
    font-size: var(--text-default);
    line-height: 1.4;
    padding: 0;
    background: var(--main-white);
    max-width: 1920px;
    margin: var(--center);
}


/* Global Header / Footer */
header.main {
    background: var(--pink);
    z-index: 10;
    position: relative;
}
.shippingBannerWrapper {
    background: var(--green);
    font-size: 14px;
    color: #000;
}
.shippingBannerText {
    padding: 5px 0;
    margin: var(--center);
    max-width: var(--site-width);
}
/*
header {
    margin: var(--center);
    max-width: var(--site-width);
    padding: 10px 0;
    background: var(--background);
    position: sticky;
    top: 0;
}
*/
header .mainLogo {
    height: 35px;
    margin-left: 15px;
}
header .mainMobileLogo {
    display: none;
    margin: 0;
    height: 35px;
    max-width: 300px;
}
main {
    margin: var(--center);
    max-width: var(--site-width);
    padding: 0 10px;
}
.innerContent {
    margin: var(--center);
    max-width: var(--site-width);
}
main:after {
    content: "";
    display: table;
    clear: both;
}
footer {
    background: var(--pink-background);
    font-size: var(--text-small);
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-block {
    width: calc(100% / 3);
}
.footer-hours {
    text-align: left;
}
.footer-nav {
    text-align: center;
}
.footer-social {
    text-align: right;
}
.footer-social a {
    display: block;
}
.footer-nav img {
    width: 200px;
    display: block;
}
.footerIcons {
    text-align: center;
}
.footerLinks {
    display: flex;
    justify-content: space-evenly;
}
.footerLinks a {
    display: block;
    color: black;
}
.footerLinks a:hover {
    color: black;
}
.icon {
    width: 20px;
}

.navbar {
    max-width: var(--site-width);
    margin: 0 auto;
}
.navBar {
    /*background: var(--background);*/
}
.navbar-toggler {
    padding: 0.2rem .2em;
    background: rgba(241,241,241,0.7);
}
.navbar-toggler-icon {
    width: 1.3em;
    height: 1.2em;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0;
}
.cartLink {
    display: none;
}
.cartIcon .mini-cart-total {
    position: relative;
    margin: 5px 0 0 5px;
}
.cartIcon .minicart-quantity {
    font-family: Verdana, sans-serif;
    background-color: var(--green);
    border-radius: 50%;
    color: #000;
    padding: 3px;
    position: absolute;
    text-align: center;
    right: -11px;
    top: -8px;
    min-width: 20px;
    font-size: 11px;
    line-height: 1em;
}

.modal {
    backdrop-filter: blur(10px);
}



/* Global Elements */
h1,h2,h3,h4,h5 {
    margin: 0px;
    padding: 0px;
}
a {
    text-decoration: none;
    color: var(--main-gray);
}
a:hover {
    color: var(--green-dark);
    text-decoration: underline;
}
.pointer {
    cursor: pointer;
}
::placeholder {
    color: black;
    opacity: 0.4;
}
.block {
    display: block;
}
.inlineForm {
    text-align: right;
    line-height: normal;
    margin: 0;
}
.inlineForm form {
    margin: 0;
    padding: 0;
}
.inlineForm input[type=text], .inlineForm input[type=password], .inlineForm input[type=number] {
    width: auto;
    display: inline-block;
    margin-bottom: 0;
}
input[type=text], select, input[type=number], input[type=password], textarea {
    width: 100%;
    display: block;
    border: 1px solid var(--green-dark);
    margin-bottom: 10px;
    padding: 5px;
    background: white;
    line-height: 1.5;
    font-family: Verdana, sans-serif;
}
input[type=submit], input[type=button], .button {
    background: var(--green-dark);
    border: 0;
    color: white;
    padding: 5px 20px;
    cursor: pointer;
    line-height: 1.5;
}
input:disabled,
button:disabled,
button[disabled] {
  background: var(--lighter-gray);
  cursor: not-allowed;
}
.button {
    display: inline-block;
}
input[type=submit]:hover, input[type=button]:hover,
.button:hover {
    color: black;
    background: var(--dark-pink);
    text-decoration: none;
}
hr {
    color: var(--main-gray);
    background: var(--main-gray);
    border: 1px solid var(--main-gray);
}
#flashBanner {
    background-color: var(--green-dark);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    text-align: center;
}
#errorBanner div, #successBanner div {
    padding: 3px;
}
#errorBanner {
    color: white;
    background-color: #B2160E;
    height: 28px;
    text-align: center;
}
#successBanner {
    color: white;
    background-color: #298D41;
    height: 28px;
    text-align: center;
}
#successBanner {
    overflow: hidden;
    animation: hideAndRemove 5s forwards;
}
#errorBanner {
    overflow: hidden;
    animation: hideAndRemove 5s forwards;
}
@keyframes hideAndRemove {
    0%   {height: 28px; position: static;}
    90%  {height: 28px; position: static;}
    99%  {height: 0; position: static;}
    100% {height: 0; position: absolute;}
}
.bold {
    font-weight: bold;
}
.italic {
    font-style: italic;
}
.hide {
    display: none;
}
.center {
	text-align: center;
}
.centerDiv, .center-element {
    display: block;
	margin: var(--center);
}
.clear {
	clear: both;
}
.left {
    float: left;
}
.right {
    float: right;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.ml-10 {
    margin-left: 10px;
}
.mv-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.mv-20 {
    margin-top: 20px;
    margin-bottom: 20px;
}
.mv-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}
.mh-10 {
    margin-left: 10px;
    margin-right: 10px;
}
.mh-20 {
    margin-left: 20px;
    margin-right: 20px;
}
.mh-30 {
    margin-left: 30px;
    margin-right: 30px;
}
.fw-b2 {
    font-weight: 200;
}
.fw-b6 {
    font-weight: 600;
}
.responsive_img {
    height: auto;
    width: auto;
	max-width: 100%;
}

/* Error Page */
.errorPageWrapper {
    margin: 20px auto;
}

/* Updates Page */
.update-wrapper {
    line-height: 2;
}
.update-div {
    margin: 40px 0 0 0;
}
.update-div h2 {
    font-size: 27px;
    font-weight: 900;
    margin: 0 0 10px;
}
.update-date {
    font-size: 14px;
    font-weight: bold;
    text-align: right;
}
.pages {
    display: flex;
    justify-content: space-between;
    margin: 10px 0 0 0;
}
.update-spacer {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 20px auto;
}
.update-spacer div {
    background: var(--green);
    width: 100%;
    height: 3px;
    margin: auto 10px;
}
.update-spacer img {
    width: 20px;
}
#prev-page {
    width: 40%;
    text-align: left;
}
#next-page {
    width: 40%;
    text-align: right;
}

/* Navigation */
@media (min-width: 768px) {
    .navbar-nav {
        margin: 0 10px 0 0;
    }
}
/* Mobile changes */
@media screen and (max-width:400px) {
    header .navbar-brand {
        width: 70%;
        margin-right: 0;
    }
}

@media screen and (max-width:767px) {
    main {
        margin: 0;
        padding: 0;
    }
    .cartLink {
        display: list-item;
    }
    .center-logo {
        display: none;
    }
    .cartIcon {
        display: none;
    }
    header .mainMobileLogo {
        display: block;
    }
    header .mainLogo {
        display: none;
    }
    .footerIcons .instagram {
        margin-right: 10px;
    }
    .footerIcons {
        text-align: center;
        margin: 10px 10px 0;
    }
    .footerLinks {
        position: static;
        text-align: center;
    }
    .footerCopyright {
        position: static;
        text-align: center;
    }
}


@media screen and (max-width:600px) {
    .footer-nav img {
        width: 150px;
    }
    .footer-hours {
        display: none;
    }
    .footer-block {
        width: auto;
    }
}