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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
}

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;
}

:root {
  --primary1: #f60;
  --dark1: #000;
  --light1: #fff;
  --grey1: #454545;
  --img-zoom: 1;
  --vh: 1;
  height: 100%;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light1);
}

::-webkit-scrollbar-thumb {
  background: var(--primary1);
  border: 0.0625rem solid var(--light1);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark1);
}

@font-face {
  font-family: 'cardenio';
  src: url("../fonts/cardeniomodern-bold.woff2") format("woff2"), url("../fonts/cardeniomodern-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'cardenio';
  src: url("../fonts/cardeniomodern-regular.woff2") format("woff2"), url("../fonts/cardeniomodern-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  outline: none !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.5;
}

html {
  font-size: 16px;
  font-family: 'cardenio', sans-serif;
}

body {
  color: var(--dark1);
  background: var(--light1);
}

::-moz-selection {
  color: var(--light1);
  background: var(--primary1);
}

::selection {
  color: var(--light1);
  background: var(--primary1);
}

a {
  text-decoration: underline;
  cursor: pointer;
  color: inherit;
}

.bar {
  background: var(--light1);
  -webkit-box-shadow: 0 0 0.375rem rgba(var(--grey1), 0.5);
          box-shadow: 0 0 0.375rem rgba(var(--grey1), 0.5);
  width: 100%;
}

.bar__container {
  max-width: 77rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 992px) {
  .bar__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.bar__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grey1);
  line-height: 1.25;
  text-align: center;
  margin-bottom: 1rem;
  padding: 0 1rem;
  max-width: 16rem;
}

@media screen and (min-width: 768px) {
  .bar__title {
    font-size: 2.5rem;
    max-width: unset;
  }
}

@media screen and (min-width: 992px) {
  .bar__title {
    margin-bottom: 0;
  }
}

.logo {
  display: block;
  padding: 1rem;
}

.logo__img {
  display: block;
  height: 2.5rem;
}

.graphic {
  width: 100%;
  height: calc( (var(--vh, 1vh) * 100) - 9.25rem);
  position: relative;
  overflow: scroll;
}

@media screen and (min-width: 768px) {
  .graphic {
    height: calc( (var(--vh, 1vh) * 100) - 8.625rem);
  }
}

@media screen and (min-width: 992px) {
  .graphic {
    height: calc( (var(--vh, 1vh) * 100) - 4.5rem);
  }
}

.graphic__img {
  display: block;
  height: calc( 100% * var(--img-zoom));
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media screen and (min-width: 992px) {
  .graphic__img {
    width: calc( 100% * var(--img-zoom));
    height: auto;
  }
}

.zoom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
}

@media screen and (min-width: 992px) {
  .zoom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: static;
    gap: .5rem;
  }
}

.zoom__btn {
  all: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  padding: .75rem;
  background: var(--light1);
}

.zoom__btn--plus {
  border-top-left-radius: .75rem;
  border-top-right-radius: .75rem;
}

.zoom__btn--minus {
  border-bottom-left-radius: .75rem;
  border-bottom-right-radius: .75rem;
}

@media screen and (min-width: 992px) {
  .zoom__btn {
    padding: .5rem;
  }
  .zoom__btn:hover .zoom__icon {
    -webkit-filter: brightness(0);
            filter: brightness(0);
  }
}

.zoom__icon {
  height: 1.5rem;
  display: block;
  -webkit-transition: .2s;
  transition: .2s;
}

.cookiebar {
  z-index: 1001;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--light1);
  color: var(--dark1);
  border-top: 0.0625rem solid var(--dark1);
  font-size: 0.875rem;
  padding: 0.5rem 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.cookiebar--hide {
  display: none;
}

.cookiebar__container {
  width: 100%;
  max-width: 77rem;
  padding: 0 1rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 992px) {
  .cookiebar__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.cookiebar__text {
  margin-bottom: .75rem;
  text-align: center;
}

@media (min-width: 992px) {
  .cookiebar__text {
    margin: 0 1rem 0 0;
    text-align: left;
  }
}

.cookiebar__btn {
  all: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  white-space: nowrap;
  background: var(--primary1);
  padding: 0.5rem;
  font-weight: 700;
  font-size: .75rem;
}
/*# sourceMappingURL=style.css.map */