@charset "UTF-8";
@font-face {
  font-family: "bold";
  src: url("../fonts/WorkSans-Bold.ttf");
}
@font-face {
  font-family: "mid";
  src: url("../fonts/WorkSans-Light.ttf");
}
@font-face {
  font-family: "light";
  src: url("../fonts/WorkSans-Light.ttf");
}
/* LOADER STYLES */
.loader-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #242f3f; /* A dark background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out; /* Add this for the fade-out effect */
}

.loader {
  border: 8px solid #f3f3f3; /* Light grey circle */
  border-top: 8px solid #3498db; /* Blue spinning part */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.reload-button {
  position: fixed; /* Sticks to the viewport */
  top: var(--distance-m);
  left: 48vw;
  z-index: 1000; /* Ensures it's on top of other content */
  width: 4vw;
  height: 4vw;
  background-color: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px); /* Frosted glass effect */
  border-radius: 50%; /* Makes it circular */
  display: grid;
  place-items: center; /* Perfectly centers the icon */
  color: white;
  font-size: var(--fontsize-m);
  text-decoration: none;
  transition: transform 0.2s ease-in-out, background-color 0.2s;
}

.reload-button:hover {
  transform: scale(1.1) rotate(90deg);
  background-color: rgba(255, 255, 255, 0.5);
}

.container {
  width: 20vw;
  height: 10vw;
  background-color: var(--theBackground);
  margin: 0 auto;
  display: grid;
  align-items: center;
  justify-content: center;
}

.dark2 {
  font-family: "anton";
}

.container__super {
  width: var(--width-m);
  margin: 0 auto;
}

.container__general {
  display: flex;
  justify-content: center;
  align-content: center;
  justify-items: start;
  align-items: center;
  border-radius: 5vw;
  background-color: black;
}

.container__general--title {
  padding: var(--padding-l);
  padding-bottom: var(--padding-m);
}

.flex-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
  height: 100%;
  padding: var(--padding-l);
  gap: 2vw;
}

.flex-container > div {
  min-width: 16vw;
  background: #ffecb3;
  border-radius: 5vw;
  font-family: "bold-serif";
  font-size: 1vw;
  padding: var(--padding-m) var(--padding-m);
}

/* Enable view transitions with one line */
@view-transition {
  navigation: auto;
}
/* Target the captured snapshots, not DOM elements */
::view-transition-old(root) {
  animation: 300ms ease-out both fade-out;
}

::view-transition-new(root) {
  animation: 300ms ease-in both fade-in;
}

/* The magic: shared element morphing */
.hero-image {
  view-transition-name: hero;
}

@media screen and (min-width: 720px) {
  .grid__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 720px) {
  .grid__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    width: 95%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 720px) {
  .grid__item {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: clamp(20px, 4vw, 40px);
    column-gap: clamp(20px, 4vw, 40px);
    padding-top: 24px;
    padding-right: clamp(24px, 4vw, 30px);
    padding-bottom: clamp(16px, 2vw, 32px);
    padding-left: clamp(20px, 3vw, 30px);
    border-radius: 10px;
    background-color: white;
    -moz-column-fill: balance;
    column-fill: balance;
    margin-bottom: 4vw;
  }
  .grid__item__title {
    font-size: clamp(30px, 5vw, 50px);
    font-family: "bold";
    color: blueviolet;
    line-height: 1;
    word-spacing: -0.5vw;
    letter-spacing: -0.1vw;
    padding-top: 12px;
    padding-bottom: 18px;
    text-align: left;
    margin: 0 0 clamp(4px, 0.3vw, 12px) 0;
    -moz-column-span: all;
    column-span: all;
  }
  .grid__item__title-uc {
    font-size: clamp(30px, 5vw, 50px);
    font-family: "bold";
    color: steelblue;
    line-height: 1;
    word-spacing: -0.5vw;
    letter-spacing: -0.1vw;
    padding-top: 12px;
    padding-bottom: 18px;
    text-align: left;
    margin: 0 0 clamp(4px, 0.3vw, 12px) 0;
    -moz-column-span: all;
    column-span: all;
  }
  .grid__item p {
    margin-top: 0;
    margin-bottom: 1em;
    letter-spacing: -0.04vw;
    font-family: "mid";
    -webkit-hyphens: auto;
    hyphens: auto;
  }
  .grid__item p:first-child {
    margin-top: 0;
  }
  .grid__item ol {
    margin-top: 0;
    margin-bottom: 1em;
    padding-left: 0;
    list-style: none;
    counter-reset: custom-counter;
  }
  .grid__item ol li {
    margin-bottom: 0.5em;
    padding-left: 2em;
    position: relative;
    counter-increment: custom-counter;
    font-family: "mid";
    letter-spacing: -0.04vw;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
  .grid__item ol li::before {
    content: counter(custom-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: blueviolet;
    font-family: "bold";
    font-weight: bold;
  }
  .grid__item ul {
    margin-top: 0;
    margin-bottom: 1em;
    padding-left: 0;
    list-style: none;
  }
  .grid__item ul li {
    margin-bottom: 0.5em;
    padding-left: 2em;
    position: relative;
    font-family: "mid";
    letter-spacing: -0.04vw;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
  .grid__item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: blueviolet;
    font-family: "bold";
    font-weight: bold;
  }
  .grid__item__image {
    width: 80%;
    height: auto;
    margin: 0.5em 0 2em 0;
    -moz-column-span: all;
    column-span: all;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .grid__wrapper:last-of-type .grid__item {
    position: relative;
  }
  .grid__wrapper:last-of-type .grid__item::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(240px + 11vw);
    height: calc(100% - 300px - 8vw);
    width: 1.5px;
    background-color: steelblue;
    transform: translateX(-50%);
    z-index: 100;
    opacity: 1;
    pointer-events: none;
  }
}
@media screen and (max-width: 720px) {
  .grid__item {
    -moz-column-count: 1;
    column-count: 1;
    padding-top: clamp(20px, 4vw, 40px);
    padding-right: clamp(20px, 4vw, 40px);
    padding-bottom: clamp(0px, 1.5vw, 40px);
    border-radius: 10px;
    padding-left: clamp(20px, 4vw, 40px);
    background-color: white;
    margin-bottom: 6vw;
  }
  .grid__item__title {
    font-size: clamp(10px, 6vw, 200px);
    font-family: "bold";
    font-weight: bold;
    color: blueviolet;
    word-spacing: -0.5vw;
    line-height: 1;
    text-align: left;
    margin: 0 0 0.2em 0;
    padding-bottom: 3vw;
  }
  .grid__item__title-uc {
    font-size: clamp(10px, 6vw, 200px);
    font-family: "bold";
    font-weight: bold;
    color: steelblue;
    word-spacing: -0.5vw;
    line-height: 1;
    text-align: left;
    margin: 0 0 0.2em 0;
    padding-bottom: 3vw;
  }
  .grid__item p {
    margin-top: 0;
    margin-bottom: 1em;
    font-family: "mid";
    -webkit-hyphens: auto;
    hyphens: auto;
  }
  .grid__item p:first-child {
    margin-top: 0;
  }
  .grid__item ol {
    margin-top: 0;
    margin-bottom: 1em;
    padding-left: 0;
    list-style: none;
    counter-reset: custom-counter;
  }
  .grid__item ol li {
    margin-bottom: 0.5em;
    padding-left: 2em;
    position: relative;
    counter-increment: custom-counter;
    font-family: "mid";
  }
  .grid__item ol li::before {
    content: counter(custom-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: blueviolet;
    font-family: "bold";
    font-weight: bold;
  }
  .grid__item ul {
    margin-top: 0;
    margin-bottom: 1em;
    padding-left: 0;
    list-style: none;
  }
  .grid__item ul li {
    margin-bottom: 0.5em;
    padding-left: 2em;
    position: relative;
    font-family: "mid";
  }
  .grid__item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: blueviolet;
    font-family: "bold";
    font-weight: bold;
  }
  .grid__item__image {
    width: 80%;
    height: auto;
    margin: 0.5em 0 1em 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 720px) {
  .step {
    font-family: "bold" !important;
    color: darkblue;
    font-size: clamp(16px, 4vw, 36px);
    margin: 0 0 0.1em 0 !important;
  }
  .step-subtitle {
    font-family: "bold" !important;
    color: steelblue;
    font-size: clamp(16px, 4vw, 36px);
    line-height: 1;
    margin: 0.2em 0 0.25em 0 !important;
    -webkit-hyphens: none !important;
            hyphens: none !important;
  }
}
@media screen and (max-width: 720px) {
  .step {
    font-family: "bold" !important;
    color: darkblue;
    font-size: clamp(17px, 7.2vw, 29px);
    margin: 0 0 0.1em 0 !important;
  }
  .step-subtitle {
    font-family: "bold" !important;
    padding-top: 1.5vw;
    padding-bottom: 1vw;
    color: steelblue;
    font-size: clamp(17px, 7.2vw, 29px);
    line-height: 1;
    margin: -0.3em 0 0.1em 0 !important;
  }
}
.span-bold {
  font-family: "bold";
  color: blueviolet;
}

.span-bold-uc {
  font-family: "bold";
  color: steelblue;
}

.dark-blue {
  color: darkblue;
} 
.faq__header--container {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0vw;
  margin-bottom: 2vw;
}

@media (max-width: 760px) {
  .tip__container {
    display: block;
    width: 100%;
  }
}
.titleI {
  font-family: "bold";
  font-size: 2.5vw;
  letter-spacing: -0.1vw;
  padding-left: 8vw;
}

.instructions {
  max-width: 720px;
  margin: 2vw auto;
}

.instructions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2vw;
}
.instructions-grid .instructions-title {
  grid-column: 1/-1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .instructions-grid {
    gap: 2vw;
  }
}

.instructions-title {
  background-color: transparent;
  padding: 0;
  border-radius: 10px;
  text-align: left;
  display: flex;
  align-items: flex-end;
  min-height: 30px;
}
.instructions-title h2 {
  font-family: "bold";
  font-size: clamp(20px, 3vw, 40px);
  color: white;
  margin: 0;
  margin-bottom: -1.5vw;
  text-shadow: 0px 0px 24px midnightblue, 0px 0px 24px midnightblue;
  line-height: 1.2;
}

.instructions-image {
  transition: transform 0.3s ease;
}
.instructions-image:hover {
  transform: translateY(-5px);
}
.instructions-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 19/9;
  cursor: pointer;
}

.instructions-label {
  font-family: "mid";
  color: white;
  font-size: clamp(18px, 1.25vw, 18px);
  text-align: center;
  margin-top: clamp(2px, 0.5vw, 8px);
  line-height: 1.2;
}

.clickable-image {
  cursor: pointer !important;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border: 2px solid transparent;
}
.clickable-image:hover {
  transform: scale(1.05);
  border-color: #3498db;
}
.clickable-image:active {
  transform: scale(0.98);
  opacity: 0.8;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .clickable-image {
    border: 2px solid rgba(52, 152, 219, 0.3);
  }
  .clickable-image:hover {
    border-color: #3498db;
  }
}

.instructions-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  z-index: 10000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.instructions-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.instructions-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  z-index: 10000;
}

.instructions-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.instructions-modal-content img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  -moz-user-select: auto;
       user-select: auto;
  -webkit-user-select: auto;
}

@media screen and (min-width: 1025px) {
  .instructions-modal.show {
    padding: 20px;
    overflow-y: auto;
  }
  .instructions-modal-content {
    max-height: 95vh;
  }
  .instructions-modal-content img {
    max-height: 85vh;
    -moz-user-select: text;
         user-select: text;
    -webkit-user-select: text;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .instructions-modal.show {
    padding: 40px 20px 60px 20px;
  }
  .instructions-modal-content {
    max-height: 80vh;
  }
  .instructions-modal-content img {
    max-height: 65vh;
  }
  .instructions-modal-close {
    top: -20px;
    left: -20px;
    width: 50px;
    height: 50px;
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .instructions-modal-content {
    max-width: 95vw;
    max-height: 90vh;
  }
  .instructions-modal-content img {
    max-height: 75vh;
  }
}
.instructions-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 10002;
  transition: transform 0.2s ease;
  font-size: 32px;
  font-weight: bold;
  color: black;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
}
.instructions-modal-close span {
  margin: 0;
  padding: 0;
  line-height: 1;
  display: block;
  text-align: center;
}
.instructions-modal-close:hover {
  transform: scale(1.1);
}
.instructions-modal-close:active {
  transform: scale(0.95);
}

.instructions-modal-header {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  height: 40px;
  z-index: 10002;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  pointer-events: none;
}
.instructions-modal-header .instructions-modal-print,
.instructions-modal-header .instructions-modal-close {
  pointer-events: auto;
  display: block;
  visibility: visible;
}
@supports (-ms-ime-align: auto) {
  .instructions-modal-header {
    display: block;
  }
  .instructions-modal-header .instructions-modal-print {
    float: left;
    margin-left: 0;
  }
  .instructions-modal-header .instructions-modal-close {
    float: right;
    margin-right: 0;
  }
}

.instructions-modal-print {
  position: relative;
  top: 0;
  left: 0;
  width: 40px !important;
  height: 40px !important;
  background-color: #007acc !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
  transition: transform 0.2s ease;
  font-size: 16px;
  color: white !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  border: 2px solid #005fa3 !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  pointer-events: auto !important;
}
.instructions-modal-print:hover {
  transform: scale(1.1);
  background-color: #005fa3 !important;
}
.instructions-modal-print:active {
  transform: scale(0.95);
  background-color: #004080 !important;
}
.instructions-modal-print i {
  font-size: 16px !important;
  line-height: 1 !important;
  color: white !important;
  pointer-events: none !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .instructions-modal-print {
    display: block !important;
    text-align: center !important;
    line-height: 36px !important;
  }
  .instructions-modal-print i {
    display: inline-block !important;
    vertical-align: middle !important;
    line-height: 1 !important;
  }
}
@supports (-ms-ime-align: auto) {
  .instructions-modal-print {
    display: block !important;
    text-align: center !important;
    line-height: 36px !important;
    background: #007acc !important;
  }
  .instructions-modal-print i {
    display: inline-block !important;
    vertical-align: middle !important;
  }
}

.instructions-modal-title {
  color: white;
  font-family: "mid";
  font-size: clamp(20px, 3vw, 36px);
  text-align: center;
  margin-top: 20px;
  padding: 0 20px;
  line-height: 1.3;
  font-weight: bold;
  max-width: 100%;
  word-wrap: break-word;
}

.span-bold-privacy {
  font-family: "bold";
  color: blueviolet;
}

.grid__item__title-privacy {
  font-size: clamp(30px, 5vw, 50px);
  font-family: "bold";
  color: blueviolet;
  line-height: 1;
  word-spacing: -0.5vw;
  letter-spacing: -0.1vw;
  padding-top: 12px;
  padding-bottom: 8px;
  text-align: left;
  margin: 0 0 clamp(4px, 0.3vw, 12px) 0;
}

/* Direct print button for individual images */
.direct-print-btn {
  background: #007acc !important;
  color: white !important;
  border: none !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  margin: 5px !important;
  display: inline-block !important;
  font-family: Arial, sans-serif !important;
  transition: background-color 0.3s ease !important;
  /* Windows Edge specific fixes */
}
.direct-print-btn:hover {
  background: #005fa3 !important;
}
.direct-print-btn i {
  margin-right: 5px !important;
  font-size: 12px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .direct-print-btn {
    background: #007acc !important;
    color: white !important;
    font-weight: bold !important;
  }
}

/* Enlarge button for modal view */
.enlarge-btn {
  background: #28a745 !important;
  color: white !important;
  border: none !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  margin: 5px !important;
  display: inline-block !important;
  font-family: Arial, sans-serif !important;
  transition: background-color 0.3s ease !important;
  /* Windows Edge specific fixes */
}
.enlarge-btn:hover {
  background: #218838 !important;
}
.enlarge-btn i {
  margin-right: 5px !important;
  font-size: 12px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .enlarge-btn {
    background: #28a745 !important;
    color: white !important;
    font-weight: bold !important;
  }
}

/* Container for image buttons */
.image-buttons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 10px 0 !important;
  flex-wrap: wrap !important;
}/*# sourceMappingURL=newstyle.css.map */