:root {
  --titleBg: #181818;
  --titleFg: #b1b1aa;
  --bg: #ebf1f1;
  --fg: #212121;
  --bg1: #212121;
  --fg1: #f2f9fa;
  --shadowColor: #6161618c;
  --hgbg: #d6e2e6;
  --hgfg: #212121;
  --infoFg: #212121;
  --infoBg: #d6e2e6;
  --formBg: #d6e2e6;
  --formFg: #212121;
  --formBorder: #212121;
  --inputBg: #ebf1f1;
  --inputFg: #212121;
  --inputBorder: #212121;
  --buttonBg: #212121;
  --buttonFg: #f2f9fa;
  --buttonBorder: #212121;
  --articleBg: rgba(224, 204, 178, 0.315);
  --borderR: 8px;
  --targetColor: #ffdf51;
  --buyColor: #b34d3b;
  --textAlignment: left;
  --textAlignment2: center;
}
* {
  box-sizing: border-box;
}
.l.h {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: red;
}
a,
a:visited,
a:hover {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--shadowColor);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
  text-decoration-skip-ink: none;
  text-decoration-style: dotted;
}
html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  padding-bottom: 4rem;
}
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  max-width: 100%;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.2rem;
  background: var(--bg);
  color: var(--fg);
  text-align: var(--textAlignment2);
}
sub {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
}
sub .material-symbols-outlined {
  width: 2rem;
}
h2,
h3,
h1,
h4 {
  padding: 0;
  margin: 0;
  justify-content: space-evenly;
  width: 100%;
}
h1 {
  padding-bottom: 0rem;
  padding-top: 4rem;
  padding-bottom: 0.5rem;
  font-size: min(3rem, 9vw);
}
.shadowed {
  filter: drop-shadow(8px 8px 2px var(--shadowColor));
}
main {
  padding: 0;
  display: flex;
  flex-direction: column;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
main section > h1 {
  text-align: var(--textAlignment2);
}
article {
  text-align: var(--textAlignment);
}
img,
video {
  max-width: 100%;
}
article img.amb {
  height: auto;
  margin-top: 2rem;
  margin-bottom: 1rem;
  min-height: 0;
}
.disabled {
  filter: grayscale(70%);
  opacity: 0.5;
}
header {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  background: var(--titleBg);
  color: var(--titleFg);
  padding: 0;
  font-size: min(20vw, 5rem);
  padding: 1rem;
  filter: drop-shadow(0px 10px 33px var(--titleBg));
  z-index: 2;
  position: relative;
  font-family: 'Tangerine', cursive;
  font-weight: bold;
  user-select: none;
}
header div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header div img {
  margin-bottom: 1rem;
  height: 6rem;
  border-radius: max(200px, 200%);
}
picture {
  height: 80vh;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  background-position: center bottom;
  background-size: contain;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  margin-bottom: 3rem;
  /*if portrait*/
}
picture .imgCnt {
  height: 100vmin;
  position: relative;
  width: fit-content;
}
picture .imgCnt img {
  height: 100vmin;
  margin: 0.4vmax;
}
picture img {
  height: 100vmin;
  position: relative;
  display: block;
  opacity: 0.98;
}
picture .cover {
  /*gradient to 0 alpha bottom*/
  z-index: -1;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-size: cover;
  z-index: 2;
  mask-image: linear-gradient(to bottom, #000000 95%, rgba(0, 0, 0, 0.6) 99%, rgba(0, 0, 0, 0) 100%);
}
picture .cover.secondary {
  filter: blur(90px);
  opacity: 0.8;
  z-index: 1;
  mask-image: none;
}
@media (max-width: 1000px) {
  picture {
    height: 30vh;
  }
}
article > div > h1:first-of-type,
article > div > div:first-of-type > h1:first-of-type {
  padding-top: 0;
}
hr {
  all: unset;
  display: block;
  max-width: 50%;
  opacity: 0.1;
  text-shadow: 0px 0px 1px var(--shadowColor);
  border-bottom: 1rem dotted var(--shadowColor);
  width: 100%;
  margin: 6rem;
  margin-left: auto;
  margin-right: auto;
}
nav,
.nav {
  text-align: center;
  margin-bottom: 1rem;
}
nav h3,
.nav h3,
nav select,
.nav select,
nav h4,
.nav h4 {
  text-align: center;
}
article {
  border-radius: var(--borderR);
  padding-left: 2rem;
  padding-bottom: 4rem;
  padding-top: 4rem;
  margin-bottom: 1rem;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
}
article.bg {
  background-color: var(--articleBg);
  box-shadow: 5px 5px 4px var(--shadowColor);
}
article .text {
  width: 100%;
}
@media (min-width: 1300px) {
  article.intro {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }
}
@media (min-width: 1000px) {
  article:not(.intro) {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }
}
article.full {
  gap: 0;
}
article > footer {
  min-width: 25vw;
}
article > div.text {
  padding-left: 2rem;
  padding-right: 2rem;
}
article > div.text.side {
  padding-left: 1.5rem;
  border-left: 1px dashed #b8cfd3a2;
}
@media (max-width: 1000px) {
  article > div.text.side {
    border-left: none;
  }
}
article.full > * {
  width: 100%;
}
article .amb {
  width: 100%;
  height: 100%;
  min-height: 46vw;
  min-width: 20vw;
  background-position: center !important;
  background-size: cover !important;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}
article .amb.small {
  min-height: 10rem;
}
article .amb2 {
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  width: 100%;
  height: 100%;
  min-height: 46vw;
  min-width: 18vw;
  background-position: center !important;
  background-size: cover !important;
}
icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 1rem;
}
icons icon {
  margin: min(1rem, 1vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
icons icon .material-symbols-outlined {
  font-size: 3rem;
  font-size: min(3rem, 8vw);
}
.italyA {
  color: #008c45;
}
.italyB {
  color: #ffffff;
}
.italyC {
  color: #ce2b37;
}
.italyA,
.italyB,
.italyC {
  font-weight: bold;
  text-transform: uppercase;
  font-family: 'Bitter', serif;
  /*outline */
  text-shadow: 0px 0px 1px #212121, 0px 0px 1px #212121;
}
:target {
  box-shadow: 0px 0px 12px var(--targetColor) !important;
}
nav,
.nav {
  width: 100%;
  padding: 1rem;
  background-color: var(--hgbg);
  color: var(--hgfg);
  border-radius: var(--borderR);
  box-shadow: 5px 5px 4px var(--shadowColor);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
nav > *,
.nav > * {
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1000px) {
  nav > *,
  .nav > * {
    flex-direction: column;
    align-items: stretch;
  }
}
nav button,
.nav button {
  margin-left: 0;
  margin-right: 0;
}
select {
  /* background-color: var(--bg); */
  color: var(--fg0);
  padding: 1rem;
  font-size: inherit;
  font-family: inherit;
  border-radius: var(--borderR);
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  border: none;
  box-shadow: 0px 0px 12px var(--shadowColor);
  font-weight: bold;
}
.selectwl {
  display: flex;
  flex-direction: row;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: var(--bg1);
  color: var(--fg1);
  height: fit-content;
  align-items: center;
  padding: 1rem;
  padding-left: 1rem;
  border-radius: var(--borderR);
  padding-right: 1rem;
  width: 100%;
}
.selectwl label {
  font-size: 0.98rem;
  text-align: left;
  font-weight: normal;
}
.selectwl select {
  background: none;
  padding: 0;
  margin: 0;
  width: 100%;
  border: 0;
  outline: none;
  box-shadow: none;
  margin-left: 1rem;
  cursor: pointer;
  text-align: center;
}
.selectwl select option {
  background-color: var(--bg1);
  color: var(--fg1);
  border-radius: var(--borderR);
}
.icon360 {
  opacity: 0.6;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 2rem !important;
  cursor: pointer;
}
*:has(.icon360) {
  position: relative;
}
footer {
  display: flex;
  justify-content: stretch;
  flex-direction: column;
  text-align: var(--textAlignment2);
}
@media (max-width: 1000px) {
  footer {
    order: 999;
  }
}
footer > div {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
footer > div > div {
  flex-grow: 1;
  flex-shrink: 2;
}
@media (max-width: 1000px) {
  footer > div {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
  }
}
@media (max-width: 900px) {
  footer > div {
    flex-direction: column;
    justify-content: stretch;
  }
}
dl {
  border-radius: var(--borderR);
  color: var(--infoFg);
  padding: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: bold;
  font-size: 0.99rem;
  width: 100%;
  background: var(--infoBg);
  border: 1px dashed var(--shadowColor);
  position: relative;
  text-align: left;
  flex-grow: 4;
  max-height: 100%;
  flex-direction: column;
  display: flex;
}
dl > footer {
  margin-top: auto;
}
dl .contact {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 1rem;
  font-size: 0.8rem;
}
dl dt {
  margin-top: 1rem;
}
dl dd {
  margin-top: 0.2rem;
  text-align: right;
  font-size: 0.8rem;
  font-style: italic;
  font-weight: normal;
}
dl .bg {
  background: url(data/static/info.svg) no-repeat center;
  position: absolute;
  opacity: 0.1;
  width: 100%;
  height: 40%;
  background-size: 90%;
  top: 0;
  right: 0;
  background-position: 50% 70%;
  pointer-events: none;
}
form:not(.light) {
  background: var(--formBg);
  color: var(--formFg);
  border: 1px solid var(--formBorder);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--borderR);
  width: fit-content;
  width: 100%;
  max-width: 900px;
  text-align: var(--textAlignment2);
  row-gap: 1rem;
}
form:not(.light) input,
form:not(.light) select,
form:not(.light) button,
form:not(.light) textarea {
  margin: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
button:-webkit-autofill,
button:-webkit-autofill:hover,
button:-webkit-autofill:focus,
button:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
  -webkit-text-fill-color: var(--inputFg) !important;
  background: var(--inputBg) !important;
  transition-delay: 5000s;
  color: var(--inputFg) !important;
}
input:-webkit-autofill::first-line {
  color: var(--inputFg) !important;
  font-family: inherit!important;
  font-size: inherit!important;
}
input,
textarea,
button {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: var(--inputFg);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: var(--inputBg);
  border: 1px solid var(--inputBorder);
  padding: 1rem;
  border-radius: var(--borderR);
  font-size: inherit;
  font-family: inherit;
  text-align: var(--textAlignment2);
}
input .material-symbols-outlined,
textarea .material-symbols-outlined,
button .material-symbols-outlined {
  margin-right: 1rem;
}
.inputwl {
  display: flex;
  flex-direction: row;
  font-size: 1.4rem;
  font-weight: bold;
  height: fit-content;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  background: var(--inputBg);
  border: 1px solid var(--inputBorder);
  padding: 1rem;
  border-radius: var(--borderR);
  font-size: inherit;
  font-family: inherit;
  text-align: var(--textAlignment2);
}
.inputwl label {
  font-size: 0.98rem;
  text-align: left;
  font-weight: normal;
}
.inputwl input,
.inputwl input:hover,
.inputwl input:focus,
.inputwl input:active {
  padding: 0;
  margin: 0;
  width: 100%;
  border: 0;
  outline: none;
  box-shadow: none;
  margin-left: 1rem;
}
textarea {
  min-height: 300px;
}
button {
  border: 1px solid var(--buttonBorder);
  background: var(--buttonBg);
  color: var(--buttonFg);
  font-weight: bold;
  cursor: pointer;
}
section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main > footer {
  margin-bottom: 2rem;
  margin-top: 4rem;
  font-size: 1rem;
}
/** add attention animation to #buyButton */
@keyframes attention {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.01);
  }
  100% {
    transform: scale(1);
  }
}
#buyButton {
  text-align: left;
  background-color: var(--buyColor);
  justify-content: start;
}
#buyButton .material-symbols-outlined {
  text-align: left;
}
#buyButton span:not(.material-symbols-outlined) {
  text-align: center;
  width: 100%;
  flex-grow: 10;
  display: inline-block;
}
*[target] {
  cursor: pointer;
}
#toTop > * {
  pointer-events: none;
}
#toTop {
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 2rem;
  background-color: var(--buyColor);
  padding: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: var(--buttonFg);
  cursor: pointer;
  user-select: none;
  z-index: 999;
  box-shadow: 0px 0px 12px var(--shadowColor);
}
dialog {
  display: block;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  color: var(--fg);
  padding: 2rem;
  border-radius: var(--borderR);
  box-shadow: 5px 5px 4px var(--shadowColor);
  border: 1px solid var(--shadowColor);
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  max-width: 900px;
}
dialog sub {
  text-align: center;
}
dialog .close {
  position: absolute;
  top: 0.5rem;
  right: 1.2rem;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
}
#langSelector {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  justify-content: center;
  column-gap: 1rem;
}
.langIcon {
  cursor: pointer;
  width: 2rem;
  border-radius: 20vw;
  height: 2rem;
  margin: 0.3rem;
}
.hidden:not(.anim) {
  display: none!important;
}
.hidden.anim {
  opacity: 0;
  transition: 2s;
  transform: scale(0.9);
  pointer-events: none;
}
/*anim .amb poop up on load*/
.amb.inView,
.amb2.inView,
.view360.inView,
dialog.inView {
  animation: popUp 0.2s;
  animation-fill-mode: forwards;
}
@keyframes popUp {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 500px) {
  article {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
  form:not(.light) {
    padding: 0.5rem;
  }
  article > div.text.side {
    padding: 0;
  }
  article > div.text {
    padding: 0;
  }
  main {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.smaller {
  font-size: 0.8rem;
}
embed {
  display: none;
}
progress#loadingBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  z-index: 999;
}
progress#loadingBar.hidden {
  display: none;
}
progress#loadingBar::-webkit-progress-value {
  background-color: var(--buyColor);
}
progress#loadingBar::-moz-progress-bar {
  background-color: var(--buyColor);
}
progress#loadingBar::-ms-fill {
  background-color: var(--buyColor);
}
progress#loadingBar::-webkit-progress-bar {
  background-color: transparent;
}
progress#loadingBar::-moz-progress-bar {
  background-color: transparent;
}
progress#loadingBar::-ms-fill {
  background-color: transparent;
}
input[disabled] {
  opacity: 0.3 !important;
  font-weight: normal;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
  /* Black with 50% opacity */
}
.priceLeadingZeros {
  font-size: 40%;
  opacity: 0.7;
}
.priceSuffix {
  font-size: 30%;
  margin: 0;
  vertical-align: text-top;
  padding-left: 0.3rem;
  color: orange;
}
