:root {
  --green: #66b05c;
  --greenLight: #84ff73;
  --green40: rgba(102, 176, 92, 0.4);
  --orange: #ee7f00;
  --white: #ffffff;
  --whiteLight: #fafafa;
  --black: #000000;
  --black40: rgba(0, 0, 0, 0.4);
  --blackLight: #1e1e1e;
  --greyLight: #9e9e9e;
  --greyDark: #393738;
  --boxShadowInst: rgba(0, 0, 0, 0.5);
  --link: #3a8a41;
  --linkhighlight: #35aa40;
  --after-height: 80%;
  --after-width: 77.2%;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #3a96dd;
}

::-webkit-scrollbar-track {
  background: rgba(214, 212, 206, 0.6823529412);
  box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:horizontal {
  background-color: #fafafa;
  box-shadow: 0px 0px 25px rgb(0, 0, 0);
  border-radius: 10px;
  border: 1px solid #bdbdbd;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:vertical {
  background-color: #fafafa;
  border-radius: 10px;
  border: 1px solid #bdbdbd;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #3a96dd;
}

::-webkit-scrollbar-button {
  display: none;
  opacity: 0;
  height: 0;
  width: 0;
}

@font-face {
  font-family: "CurrentMain";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html {
  pointer-events: none;
  overflow: hidden;
}

body {
  pointer-events: none;
  background-color: #ffffff;
  font-family: "CurrentMain", sans-serif;
  display: flex;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h1 {
  font-size: 1.2em;
}

h2, button {
  font-size: 1em;
}

p {
  padding: 0;
  margin: 0;
}

a {
  all: unset;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
  outline: none;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.activeUi {
  background-color: #9b9b9b !important;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.1) !important;
  color: #fafafa !important;
}

.bracket {
  display: flex;
  flex-direction: row;
  gap: 15px;
  height: 5vh;
  justify-content: center;
  align-items: center;
  border: 1px solid #d4d4d4;
  background-color: #e2e2e2;
}

.alignCenterContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
}

#frame {
  box-sizing: border-box;
  pointer-events: none;
  position: relative;
  z-index: 8000;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding: 25px;
  background-color: #ffffff;
}
#frame #display {
  pointer-events: none;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 100%;
  border: 2px solid #e2e2e2;
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.5);
  background-color: transparent;
  border-radius: 2vw;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transition: 0.4s ease-in-out;
}
#frame #display #contentframe {
  pointer-events: all;
  position: relative;
  z-index: -1;
  display: flex;
  flex-direction: row;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  border-top-left-radius: 2vw;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#frame #display #contentframe::after {
  content: "";
  pointer-events: none;
  width: var(--after-width);
  height: var(--after-height);
  margin-bottom: 107px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(237, 237, 237) 100%);
}
#frame #display #contentframe #content {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 50px;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  overflow-x: scroll;
  scroll-behavior: smooth;
}
#frame #display #toolbar {
  pointer-events: all;
  position: relative;
  z-index: -1;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  border-top: 1px solid #afafaf;
  background-color: #ededed;
  border-bottom-left-radius: 2vw;
}
#frame #display #toolbar .toolbarElement:first-child {
  margin-left: 2vw;
}
#frame #display #toolbar .toolbarElement:last-child {
  margin-right: 2vw;
}
#frame #navigation {
  box-sizing: border-box;
  pointer-events: all;
  z-index: 8000;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
  width: 20%;
  height: 100%;
  padding: 0 20px 0 20px;
  border: 1px solid #e2e2e2;
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.1);
  background-color: #ededed;
  border-top-right-radius: 2vw;
}
#frame #navigation #accesspanel {
  pointer-events: all;
  width: 100%;
  height: 5vh;
  border-top-right-radius: 3vh;
  border: 1px solid #d4d4d4;
  border-bottom: 5px solid #d4d4d4;
  background-color: #ffffff;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0 10px 0;
  align-items: center;
  gap: 20px;
  flex-direction: row;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}
#frame #navigation #menu {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: auto;
  height: -moz-max-content;
  height: max-content;
  padding: 20px 13px 15px 10px;
  border: 1px solid #d4d4d4;
  background-color: #e2e2e2;
}
#frame #navigation #submenu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: auto;
  height: 55vh;
  padding: 10px 10px 0px 10px;
  border: 1px solid #d4d4d4;
  background-color: #e2e2e2;
  overflow-x: hidden;
  overflow-y: auto;
}
#frame footer {
  display: flex;
  flex-direction: row;
  height: 8vh;
  min-height: 5vh;
  gap: 2px;
  justify-self: flex-end;
  margin-bottom: 10px;
  justify-content: center;
  align-items: center;
  color: #848484;
  border: 1px solid #d4d4d4;
  background-color: #e2e2e2;
  flex-wrap: wrap;
  overflow-y: auto;
  overflow-x: hidden;
  padding-left: 10px;
}
#frame socialmedia {
  display: flex;
  flex-direction: row;
  min-height: 5.1vh;
  gap: 8px;
  justify-self: flex-end;
  margin-top: auto;
  margin-bottom: 1px;
  justify-content: center;
  align-items: center;
  color: #848484;
  border: 1px solid #d4d4d4;
  background-color: #e2e2e2;
  flex-wrap: wrap;
  overflow-y: auto;
  padding: 2px 15px 2px 15px;
}
#frame socialmedia a {
  border: 1px solid #b4b4b4;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px;
  box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.71);
}
#frame socialmedia a img {
  opacity: 0.2;
}
#frame socialmedia a img:hover {
  opacity: 1;
}

.company {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px 0 20px;
  gap: 20px;
  height: 100%;
  width: 100%;
}
.company .companyName {
  display: flex;
  flex-direction: column;
  margin: 0;
}

logo {
  display: flex;
  border-radius: 100%;
  padding: 5px;
  height: 100%;
  width: auto;
  align-items: center;
  justify-content: center;
}
logo img {
  height: 50px;
  width: auto;
  display: flex;
}

#submenu ul {
  display: flex;
  gap: 8px;
  width: 100%;
  height: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
#submenu ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fafafa;
  border: 1px solid #bdbdbd;
  outline: none;
  transition: all 0.8s ease-in-out;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
  height: auto;
  width: -moz-fit-content;
  width: fit-content;
  flex: 1 0 48%;
}
#submenu ul li p {
  display: flex;
  flex-wrap: wrap;
  white-space: pre;
  cursor: default;
}
#submenu ul li:hover {
  background-color: #ffffff;
  transition: all 0.14s ease-in-out;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
  scale: 1.02;
  opacity: 1;
}
#submenu ul li p {
  padding: 10px;
}

#pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  /* fixed width */
  padding: 5px;
  border: 1px solid #d4d4d4;
  background-color: #e2e2e2;
  box-sizing: border-box;
}

.toolbarElement.Page {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pagination {
  flex: 1 1 0%;
  overflow-x: auto;
  scrollbar-width: none;
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
  gap: 10px;
  scroll-behavior: smooth;
}

/* Buttons on edges */
#scrollLeftBtn,
#scrollRightBtn {
  flex: 0 0 auto;
  height: 38px;
  font-size: 14px;
  background-color: #ededed;
  border: 1px solid #afafaf;
  padding: 0 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

#scrollLeftBtn:hover {
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
}

#scrollRightBtn:hover {
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
}

/* Scrollable pagination container */
.pagination-container {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  flex: 1;
}

.pagination-container::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari/Edge */
}

/* Radio button styling */
.pageBar {
  flex: 0 0 auto;
  height: 100%;
  margin-bottom: 0;
}

.pageBar input[type=radio] {
  display: none;
}

.pageBar span {
  display: inline-block;
  width: 20px;
  height: 38px;
  background-color: #f0f0f0;
  border: 1px solid #afafaf;
  position: relative;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.pageBar span:hover {
  background-color: #ffffff;
}

.pageBar input[type=radio]:checked + span {
  background-color: #9e9e9e;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.1);
  transition: all 1s;
}

.pageBar input[type=radio]:checked + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 28px;
  background-color: #f0f0f0;
  transform: translate(-50%, -50%);
  border: 1px solid #afafaf;
  transition: all 0.2s;
}

.dummyRadio {
  pointer-events: none;
  opacity: 0;
}

.companyContact {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 8px;
}

.contact {
  margin-left: auto;
  margin-right: 25px;
  opacity: 0.4;
}

.menuBrick {
  height: 50px;
  width: 100%;
  background-color: transparent;
  margin-left: 50px;
}

.brickButton {
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  border-radius: 25px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

.brickIndicator {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: #fafafa;
  border: 1px solid #e2e2e2;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
}

.inputSearch {
  border: none;
  background-color: #fff;
  height: 30px;
  width: 95%;
  display: flex;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: 8px;
}

.menuSection {
  padding: 30px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  border: 1px solid #d4d4d4;
  height: 25vh;
  background-color: #e2e2e2;
}

.btnContainer {
  pointer-events: all;
  width: 100%;
  height: -moz-min-content;
  height: min-content;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  border-right: 1px solid rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  border-left: 1px solid rgba(59, 59, 59, 0.4);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.2);
}

.btnContainer .button {
  padding: 1em;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  color: rgb(0, 0, 0);
  font-weight: 600;
  text-transform: uppercase;
  background-color: #fafafa;
  position: relative;
  top: -10px;
  border-left: solid 1px #afafaf;
  border-right: solid 1px #afafaf;
  border-top: solid 1px #afafaf;
  border-bottom: solid 1px #afafaf;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-shadow: 0px 10px 0px 0px rgb(180, 180, 180);
  transition: 0.14s ease-in-out;
}

.btnContainer .button:hover {
  border-left: solid 1px #afafaf;
  border-right: solid 1px #afafaf;
  border-top: solid 1px #afafaf;
  border-bottom: solid 1px #afafaf;
  color: #2e2e2e;
  cursor: pointer;
  transition: 0.14s ease-in-out;
  background-color: #ffffff;
}

.btnContainer:has(.button.active) {
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  border-right: 1px solid rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  border-left: 1px solid rgba(59, 59, 59, 0.4);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0);
}

.btnContainer .button.active {
  top: 0px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  transition: 0.14s ease-in-out;
  border: solid 0px transparent;
  color: #2e2e2e;
  background-color: #3a96dd;
}

.btnContainer .button:hover {
  background-color: #3a96dd;
}

.btnContainer .button.active:hover {
  background-color: #3a96dd;
}

.btnContainer .enabled {
  box-shadow: none !important;
  -webkit-box-shadow: none;
  top: 1px;
  border: none;
  color: var(--whiteLight);
  background-color: var(--green);
  transition: 0.14s ease-in-out;
}

.btnContainer .active {
  color: var(--whiteLight);
  text-transform: uppercase;
  background-color: var(--green);
  top: 0px;
  box-shadow: 0px 0px 0px 0px rgba(58, 138, 65, 0);
  background-color: var(--green);
  transition: 0.14s ease-in-out;
}

.loginSection {
  pointer-events: all;
  width: 100%;
  min-height: 100px;
  border-top-right-radius: 3vh;
  border: 1px solid #d4d4d4;
  background-color: #e2e2e2;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: row;
}

.inputContainer {
  display: flex;
  flex-direction: column;
  display: flex;
}

.loginInput {
  display: flex;
  height: 30px;
  width: 100%;
  border: none;
  margin-top: 5px;
  border: 1px solid #d4d4d4;
  /* border-bottom: 1px solid #d4d4d4; */
  background-color: #f5f5f5;
  padding: 5px 0 5px 8px;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.loginButton {
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  height: 90%;
  border: 1px solid #d4d4d4;
  background-color: #ededed;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  flex: 1 0;
}
.loginButton:hover {
  background-color: #ffffff;
}

.loginBlocker {
  position: absolute;
  width: var(--after-width);
  height: var(--after-height);
  z-index: 8000;
  background-image: url("/img/heroImage2.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.cartContainer {
  width: 50px;
  height: 50px;
  /* background-color: #e2e2e2; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid #d4d4d4; */
  cursor: pointer;
}

.cartIcon {
  height: 30px;
  width: 30px;
}

.cartItem {
  width: 50px;
  height: 50px;
  background-color: #fafafa;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #d4d4d4;
}

.loginPanel {
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: 100%;
  height: calc(60% - 10px);
  padding: 0 10px 0 10px;
}

.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

label {
  font-size: 14px;
  margin-bottom: 5px;
  display: flex;
}

.input-field {
  display: flex;
  background-color: transparent;
  width: calc(100% - 20px);
  height: 3.4vh;
  font-size: 14px;
  padding: 0 0 0 20px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 2px solid #ccc;
  border-left: 1px solid #ccc;
  outline: none;
  transition: all 0.8s ease-in-out;
  margin-bottom: 5px;
  box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.input-field:focus {
  background-color: #ededed;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  border-bottom: 2px solid rgba(76, 175, 80, 0.8);
  border-left: 1px solid #ffffff;
  box-shadow: 0px 0px 28px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
}

.input-field::-moz-placeholder {
  color: #1e1e1e;
}

.input-field::placeholder {
  color: #1e1e1e;
}

.mainImage {
  cursor: pointer;
}

.flexRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.productContainer {
  display: flex;
  flex-direction: row;
  height: -moz-fit-content;
  height: fit-content;
  align-self: end;
  margin-bottom: 9vh;
  margin-left: 1vw;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

.productOptions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 10px;
}

.optionItem {
  width: 100px;
  height: 100px;
  border: 1px solid #1e1e1e;
  border-radius: 1rem;
  background-color: #fafafa;
}

.optionImg {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.categoryContainer {
  display: flex;
  flex-direction: row;
  height: -moz-fit-content;
  height: fit-content;
  align-self: end;
  margin-bottom: 20px;
  opacity: 0;
}

.categoryCard {
  display: flex;
  flex-direction: column;
  height: 500px;
  width: 22vw;
  max-width: 60vw;
  background: white;
  border-radius: 1rem;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border: 1px solid rgba(30, 30, 30, 0.533);
  box-shadow: 20px 20px 15px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.8s ease-in-out;
  scroll-snap-type: x mandatory;
  z-index: 20;
}

/* Product Card */
.productCard {
  display: flex;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  width: 350px;
  max-width: 350px;
  background: white;
  border-radius: 1rem;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border: 1px solid rgba(30, 30, 30, 0.533);
  box-shadow: 20px 20px 15px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.8s ease-in-out;
  scroll-snap-type: x mandatory;
  z-index: 20;
}

.productCard:hover {
  /* transform: translateY(-4px); */
}

/* Header with responsive image */
.cardHeader img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: all 0.2s ease-in-out;
}

/* Body content */
.cardBody {
  padding: 0 1.5rem 0 1.5rem;
  display: flex;
  flex-direction: column;
}

.cardContent {
  display: flex;
  flex-direction: column;
}

.cardRating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  justify-content: center;
}

.rating {
  width: 25px;
  height: 25px;
}

.productName {
  font-size: 1.5rem;
  margin: 1rem 0rem 0.5rem 0rem;
  color: #222;
}

.productClaim {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.productDescription {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* Footer */
.cardFooter {
  padding: 1rem 0 1rem 0;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.priceStock {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
}

.stock {
  font-size: 0.8rem;
  /* padding: 0.25rem 0.5rem; */
  border-radius: 4px;
}

.inStock {
  /* background-color: #e6f4ea; */
  color: #2a7c3b;
}

.outOfStock {
  /* background-color: #fdecea; */
  color: #a94442;
}

/* Buy Button */
.cartButton {
  display: flex;
  padding: 0.75rem;
  background-color: #ededed;
  color: #000000;
  font-size: 1rem;
  border: 1px solid #ededed;
  border-left: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom-right-radius: 25px;
  border-top-right-radius: 25px;
}

.cartButton:hover {
  background-color: #3fffaf;
}

.buyButton {
  display: flex;
  padding: 0.75rem;
  background-color: #ededed;
  color: #000000;
  font-size: 1rem;
  border: 1px solid #e2e2e2;
  border-right: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom-left-radius: 25px;
  border-top-left-radius: 25px;
}

.buyButton:hover {
  background-color: #155cc1;
}

.visible {
  opacity: 1;
  transition: all 1s ease-in-out;
}

.mutaded {
  /* width: 400px;
  height: 600px; */
  transition: all 1s ease-in-out;
}

unterkante {
  height: 100%;
  width: 25vw;
  position: relative;
  right: 0;
  /* background-color: red; */
}

.is-centered {
  transform: translateY(-100px);
  transition: transform 0.8s ease-in-out;
}

.gallery-container {
  width: 40vw;
  height: 25vw;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 10;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}
.gallery-container .top-row,
.gallery-container .bottom-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: 100%;
}
.gallery-container .top-row {
  height: 60%;
}
.gallery-container .top-row .big {
  flex: 2;
  aspect-ratio: 1/1;
}
.gallery-container .top-row .medium {
  flex: 1;
  aspect-ratio: 1/1;
}
.gallery-container .bottom-row {
  height: 40%;
}
.gallery-container .bottom-row .small {
  flex: 1;
  aspect-ratio: 1/1;
  min-width: 0;
}
.gallery-container .gallery-item {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(30, 30, 30, 0.533);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}
.gallery-container .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery-container .gallery-item .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 35%;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
.gallery-container .gallery-item .overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(255, 255, 255), transparent);
  z-index: 0;
}
.gallery-container .gallery-item .overlay .text-content {
  z-index: 1;
  width: 100%;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #2e2e2e;
  font-size: 0.9rem;
}
.gallery-container .gallery-item .overlay .name {
  font-weight: 600;
}
.gallery-container .gallery-item .overlay .price {
  font-weight: 500;
}
.gallery-container .gallery-item .new-label {
  position: absolute;
  top: 0.5rem;
  left: 0.75rem;
  color: #46b3ff;
  font-weight: bold;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
  text-shadow: 1px 1px 1px rgba(28, 66, 96, 0.2470588235);
}
.gallery-container .gallery-item.isNew .new-label {
  opacity: 1;
}

.gallery-item.big {
  flex: 2;
}

.gallery-item.medium {
  flex: 1.5;
}

.gallery-item.small {
  flex: 1;
}

.isNew .new-label {
  padding: 0.2em;
}

.product-grid-wrapper {
  padding: 20px;
}

.product-grid {
  display: flex;
  min-width: -moz-max-content;
  min-width: max-content;
  height: 100%;
}

.product-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 250px;
  /* fixed width for consistent columns */
  flex-shrink: 0;
  /* prevent columns from shrinking */
  justify-content: center;
  align-items: center;
}

.product-card {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 200px;
  height: 165.078px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
}

.product-card img {
  max-height: 80px; /* or tweak as needed */
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 8px;
  display: block;
  border-radius: 4px;
}

.product-card h3 {
  font-size: 1.2em;
  margin: 10px 0 5px;
}

.product-card p {
  font-size: 0.9em;
  color: #555;
}

#modalLogin {
  background: white;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  width: 300px;
  position: relative;
  z-index: 9999;
}

#modalOverlay {
  position: fixed;
  border-top-left-radius: 2vw;
  width: var(--after-width);
  height: var(--after-height);
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.closebtn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: #e2e2e2;
  border-radius: 100%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  border: 1px solid rgba(30, 30, 30, 0.2470588235);
  transition: background-color 0.2s ease;
}

.closebtn:hover {
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}

.usernameInput {
  width: auto;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(30, 30, 30, 0.2470588235);
}

.passwordInput {
  width: auto;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(30, 30, 30, 0.2470588235);
}

.buttonLogin {
  width: 100%;
  padding: 0.5rem;
  background-color: #3a96dd;
  color: #2e2e2e;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.buttonLogin:hover {
  color: white;
  background-color: #46a9f5;
  transition: background-color 0.2s ease;
}

.statusMessage {
  margin-top: 0.5rem;
  color: red;
  font-size: 0.9rem;
  display: none;
}

.dashboard {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  height: 100%;
}
.dashboard .panel {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  background-color: #fafafa;
  border: 1px solid rgba(30, 30, 30, 0.533);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}

.alignCenterContainer .productContainer {
  align-self: flex-start !important;
}

.editorWrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
}

.editorPanel {
  flex: 1;
  width: auto;
  background-color: #fafafa;
  padding: 20px;
  border-radius: 1em;
  border: 1px solid rgba(30, 30, 30, 0.533);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.4);
  font-family: sans-serif;
}

.editorPanel label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.editorPanel input[type=text],
.editorPanel input[type=file],
.editorPanel textarea {
  width: calc(100% - 20px);
  margin-top: 5px;
  padding: 8px;
  border: 1px solid rgb(212, 212, 212);
  border-radius: 6px;
  background-color: #e2e2e2;
}

.editorPanel .saveButton {
  margin-top: 20px;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.productContainer {
  max-width: 600px;
}

.optionImgPreview {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  margin-right: 5px;
  border: 1px solid #ccc;
}

.savebtncontainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* Form layout base */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formRow {
  display: flex;
  gap: 2rem;
  flex-direction: row;
}

.textInputGroup,
.otherInputGroup {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Gender section */
.genderGroup {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.genderGroup label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #f0f0f0;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-weight: 500;
  font-size: 1rem;
}

.genderGroup input[type=radio] {
  accent-color: #4f46e5;
}

.genderGroup label:hover {
  background-color: #e0e0e0;
}

/* Styled selects */
select {
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #fff;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

select:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.3);
}

select[multiple] {
  min-height: 100px;
}

.detailContainer {
  position: fixed;
  width: 72%;
  height: 85%;
  background-color: #fafafa;
  display: flex;
  z-index: 50;
  opacity: 1;
  display: flex;
  flex-direction: column;
  padding: 1vh 2vw 1vh 2vw;
  gap: 10px;
}

.headlineContainerDetail {
  display: flex;
  flex-direction: column;
  height: 20vh;
  width: 100%;
  font-size: 1.5em;
  justify-self: center;
  padding-left: 6vw;
}

.contentContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 50px;
}

.contentContainer h2 {
  margin-bottom: 0;
}

.cardHeaderDetail {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 20px;
}

.detailImg {
  border: px solid #e2e2e2;
  border-radius: 1rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.productOptionsDetail {
  /* padding: 0 1.5rem 0 1.5rem; */
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}

.cardBodyDetail {
  display: flex;
  flex-direction: column;
  width: 30%;
}

.productDescription.readText {
  border-top: 1px solid #e2e2e2;
  line-height: 1.8;
  padding: 5px 0 5px 0;
  font-weight: 400;
  /* color: #1e1e1e; */
}

.optionItemDetail {
  width: 100px;
  height: 100px;
  border: 1px solid #1e1e1e;
  border-radius: 1rem;
  background-color: #fafafa;
}

.optionImgDetail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease-in-out;
  border-radius: 1rem;
}

.detailCloseContainer {
  position: relative;
  top: 30px;
  margin-left: auto;
  background-color: #e2e2e2;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  border: 1px solid rgba(30, 30, 30, 0.2470588235);
}

.detailCloseContainer .modalClose {
  top: 8px !important;
  right: 11px !important;
  scale: 1 !important;
  border: none;
  background-color: transparent;
}

.toolbarElement {
  display: flex;
  align-items: center;
  /* height: 100%; */
  height: auto;
  justify-content: center;
}

.toolbarElement.Text {
  order: 2;
  margin-right: 2vw;
  margin-left: auto !important;
}

#toolbar button {
  height: 40px;
  font-size: 14px;
  background-color: #ededed;
  border: 1px solid #afafaf;
  padding: 0 0.8rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

#toolbar button:first-child {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

#toolbar button:last-child {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

#toolbar button:hover {
  background-color: #ffffff;
}

#toolbar button:active {
  transform: scale(0.98);
}

#add-toolbar {
  display: flex;
  gap: 1rem;
  padding: 0.5rem;
  background: #f5f5f5;
  font-family: system-ui, sans-serif;
}

.add-button {
  padding: 0.5rem 1rem;
  border: 1px solid #888;
  background: white;
  cursor: pointer;
  border-radius: 6px;
  font-size: 0.9rem;
}

.add-button:focus {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}

/* Progress bar container */
.add-progress-wrapper {
  margin-right: 5px;
  margin-left: 5px;
  position: relative;
  flex: 1;
  min-width: 120px;
  height: 38px;
  background: #e2e2e2;
  overflow: hidden;
  border: 1px solid #afafaf;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.add-progress-inner {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, #75bef8 0%, #3a96dd 100%);
  transition: width 0.3s ease;
}

.add-progress-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7em;
  font-weight: 600;
  color: #1f2d3a;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* radio */
.radio-container {
  display: flex;
  gap: 25px;
  font-family: sans-serif;
  justify-content: center;
}

.radio-option {
  flex: 0 0 auto;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  margin-bottom: 0;
}

.radio-option input[type=radio] {
  display: none;
}

.radio-option span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #f0f0f0;
  border: 1px solid #afafaf;
  border-radius: 50%;
  position: relative;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}

.radio-option span:hover {
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}

.radio-option input[type=radio]:checked + span {
  background-color: #9e9e9e;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.1);
  font-weight: bold;
}

/* Checked state with inner white circle */
.radio-option input[type=radio]:checked + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  background-color: #f0f0f0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #afafaf;
}

.video-pagination-toolbar {
  order: 1;
  margin-left: 2vw;
  padding: 0 1rem 0 1rem;
  height: 40px;
  background-color: #cccccc;
  align-items: center;
  justify-content: center;
  display: flex;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 1px solid #afafaf;
  gap: 10px;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.1);
  color: #828282;
}

.example {
  background-color: #e2e2e2;
  pointer-events: all;
  scroll-snap-align: start;
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: row;
}

.example .image {
  flex-direction: column;
  gap: 25px;
  padding: 20px;
  display: flex;
  height: auto;
  width: 70vw;
  justify-content: center;
  align-items: center;
}

.headlineContainer.text .headline {
  display: flex;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 800;
  font-size: 1.3em;
  padding-bottom: 4px;
}

.headlineContainer.text .subline {
  display: flex;
  font-size: 1.2em;
  font-weight: 550;
  color: var(--greyLight);
}

.exampleDescription {
  display: flex;
  flex-direction: column;
  text-align: justify;
  color: #000000;
  font-size: 1.1em;
  margin-top: 15px;
  line-height: 1.4;
}

.example .image video {
  border: 1px solid #d4d4d4;
  border-bottom: 1px solid #ffffff;
  border-radius: 25px;
  border-right: 1px solid #ffffff;
  box-shadow: 5px 0px 15px rgba(132, 132, 132, 0.8);
  width: 100%;
  display: flex;
}

.example .image img {
  border: 1px solid #d4d4d4;
  border-bottom: 1px solid #ffffff;
  border-radius: 25px;
  border-right: 1px solid #ffffff;
  box-shadow: 5px 0px 15px rgba(132, 132, 132, 0.8);
  width: 100%;
  display: flex;
}

.project-title {
  font-size: 3vh;
}

.project-subtitle {
  font-size: 2.2vh;
}

.headlineContainer {
  width: 30vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  border-left: 2px solid #d4d4d4;
  background: #ffffff;
}

.project-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  height: 100%;
  padding-left: 2vw;
  padding-right: 2vw;
}

.description-inner {
  font-size: 1.1em;
  line-height: 1.3em;
}

.project-description-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  overflow-y: auto; /* required for scrolling */
  scrollbar-width: none; /* Firefox: hide scrollbar */
  -ms-overflow-style: none; /* IE/Edge: hide scrollbar */
}

.description-inner {
  word-break: break-word;
  white-space: normal;
  height: 100%;
  font-size: 1.1em;
  line-height: 1.3em;
  /* can scale dynamically with font-size */
}

.project-description-text::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}

@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: portrait) {
  #frame {
    flex-direction: column !important;
    padding: 0px !important;
    gap: 10px !important;
    border-radius: 0px !important;
  }
  #display {
    width: calc(100% - 5px) !important;
    height: 67% !important;
    border-radius: 0 !important;
  }
  #contentframe {
    border-radius: 0px !important;
  }
  .example {
    flex-direction: column;
  }
  .example .image {
    width: 100vw !important;
    padding: 0 !important;
    gap: 0px;
  }
  .example .image video {
    border-radius: 0 !important;
  }
  .example .image img {
    border-radius: 0 !important;
  }
  .example .headlineContainer.text {
    width: 100% !important;
    padding: 0 !important;
    justify-content: flex-start !important;
    height: 100%;
    display: flex;
  }
  .example .project-card {
    justify-content: flex-start !important;
    padding: 3vw 4vw 0 4vw;
    gap: 5px;
  }
  .example .project-description-text {
    -webkit-line-clamp: 5;
  }
  #toolbar {
    flex-wrap: wrap !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    gap: 10px !important;
    padding-bottom: 10px !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar {
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar p {
    display: none !important;
  }
  #toolbar .toolbarElement.Text {
    width: 100% !important;
    margin: 0 5px !important;
    flex: 1;
  }
  #toolbar .toolbarElement.Text button {
    border-radius: 0;
  }
  #toolbar .radio-container {
    justify-content: space-evenly !important;
    width: 100% !important;
  }
  #navigation {
    width: 100% !important;
    height: 31% !important;
    border-radius: 0 !important;
    padding: 0 10px 0 5px !important;
  }
  #navigation #accesspanel {
    border-top-right-radius: 0 !important;
    display: none !important;
  }
  #navigation #accesspanel .companyName {
    flex-direction: row !important;
    gap: 10px !important;
  }
  #navigation #menu {
    flex-direction: row !important;
    margin-top: 5px !important;
    gap: 5px !important;
    width: 100% !important;
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #menu .btnContainer {
    flex: 1 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    display: flex !important;
  }
  #navigation #menu .btnContainer .button {
    font-size: 1em !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding-bottom: 0;
    padding-top: 12px;
  }
  #navigation #menu .btnContainer .button.active {
    padding-bottom: 1em !important;
  }
  #navigation footer {
    overflow: hidden !important;
    margin-bottom: 5px !important;
    padding-left: 2px !important;
  }
  #navigation footer button,
  #navigation footer a {
    font-size: 0.8em !important;
  }
  #navigation #pagination {
    display: none;
  }
  #navigation #submenu {
    height: auto !important;
  }
  #navigation socialmedia {
    display: none !important;
    margin-top: 0 !important;
  }
  .project-header {
    flex-direction: row;
    display: flex;
    margin-bottom: 0 !important;
  }
  .project-title {
    font-size: 1em !important;
  }
  .project-subtitle {
    margin-left: auto;
  }
  .project-description-text {
    flex: 1 1 auto;
    overflow-y: auto;
    margin-top: auto;
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 320px) and (max-width: 940px) and (orientation: landscape) {
  #frame {
    padding: 10px !important;
    gap: 10px !important;
  }
  #display {
    width: 70% !important;
    border-radius: 0 !important;
  }
  #navigation {
    width: calc(30% - 15px) !important;
    padding: 0 10px 0 5px !important;
    border-radius: 0 !important;
  }
  #navigation #accesspanel {
    border-top-right-radius: 0 !important;
    display: none !important;
  }
  #navigation #accesspanel .companyName {
    flex-direction: column !important;
    gap: 0px !important;
  }
  #navigation #menu {
    gap: 5px !important;
    width: 100% !important;
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #menu .btnContainer {
    flex: 1 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    display: flex !important;
  }
  #navigation #menu .btnContainer .button {
    font-size: 1.1em;
    min-width: 0 !important;
    min-height: 0 !important;
    padding-bottom: 2vh;
    padding-bottom: 0;
    padding-top: 10px;
  }
  #navigation #menu .btnContainer .button.active {
    padding-bottom: 1em !important;
  }
  #navigation #pagination {
    display: none;
  }
  #navigation #submenu {
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #submenu p {
    display: flex;
    flex-wrap: wrap;
    white-space: break-spaces !important;
  }
  #navigation socialmedia {
    display: none !important;
  }
  #toolbar {
    gap: 10px !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar {
    width: 100% !important;
    border-radius: 0 !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar p {
    display: none !important;
  }
  #toolbar .toolbarElement.Text {
    width: 100% !important;
  }
  #toolbar .toolbarElement.Text button {
    border-radius: 0;
  }
  #toolbar .radio-container {
    padding: 0 4px;
    justify-content: space-evenly !important;
    width: 100% !important;
  }
  #toolbar .add-progress-wrapper {
    min-width: 10% !important;
  }
  .example .image {
    width: 60vw !important;
    padding: 0 !important;
  }
  .example .image video {
    border-radius: 0 !important;
  }
  .example .image img {
    border-radius: 0 !important;
  }
  .example .headlineContainer {
    width: 40vw !important;
  }
  .example .project-title {
    font-size: 1em;
  }
  .example .project-subtitle {
    font-size: 0.8em;
  }
  footer {
    overflow: hidden !important;
    margin-bottom: 5px !important;
    padding-left: 2px !important;
  }
  footer button,
  footer a {
    font-size: 0.8em !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) and (orientation: portrait) {
  #frame {
    flex-direction: column !important;
    padding: 0px !important;
    gap: 10px !important;
    border-radius: 0px !important;
  }
  #display {
    width: calc(100% - 5px) !important;
    height: 67% !important;
    border-radius: 0 !important;
  }
  #contentframe {
    border-radius: 0px !important;
  }
  .example {
    flex-direction: column;
  }
  .example .image {
    width: 100vw !important;
    padding: 0 !important;
    gap: 0px;
  }
  .example .image video {
    border-radius: 0 !important;
  }
  .example .image img {
    border-radius: 0 !important;
  }
  .example .headlineContainer.text {
    width: 100% !important;
    padding: 0 !important;
    justify-content: flex-start !important;
    height: 100%;
    display: flex;
  }
  .example .project-card {
    justify-content: flex-start !important;
    padding: 3vw 4vw 0 4vw;
    gap: 5px;
  }
  .example .project-description-text {
    -webkit-line-clamp: 5;
  }
  #toolbar {
    flex-wrap: wrap !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    gap: 10px !important;
    padding-bottom: 10px !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar {
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar p {
    display: none !important;
  }
  #toolbar .toolbarElement.Text {
    width: 100% !important;
    margin: 0 5px !important;
    flex: 1;
  }
  #toolbar .toolbarElement.Text button {
    border-radius: 0;
  }
  #toolbar .radio-container {
    justify-content: space-evenly !important;
    width: 100% !important;
  }
  #navigation {
    width: 100% !important;
    height: 31% !important;
    border-radius: 0 !important;
    padding: 0 10px 0 5px !important;
  }
  #navigation #accesspanel {
    border-top-right-radius: 0 !important;
    display: none !important;
  }
  #navigation #accesspanel .companyName {
    flex-direction: row !important;
    gap: 10px !important;
  }
  #navigation #menu {
    flex-direction: row !important;
    margin-top: 5px !important;
    gap: 5px !important;
    width: 100% !important;
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #menu .btnContainer {
    flex: 1 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    display: flex !important;
  }
  #navigation #menu .btnContainer .button {
    font-size: 1em !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding-bottom: 0;
    padding-top: 12px;
  }
  #navigation #menu .btnContainer .button.active {
    padding-bottom: 1em !important;
  }
  #navigation footer {
    overflow: hidden !important;
    margin-bottom: 5px !important;
    padding-left: 2px !important;
  }
  #navigation footer button,
  #navigation footer a {
    font-size: 0.8em !important;
  }
  #navigation #pagination {
    display: none;
  }
  #navigation #submenu {
    height: auto !important;
  }
  #navigation socialmedia {
    display: none !important;
    margin-top: 0 !important;
  }
  .project-header {
    flex-direction: row;
    display: flex;
    margin-bottom: 0 !important;
  }
  .project-title {
    font-size: 1em !important;
  }
  .project-subtitle {
    margin-left: auto;
  }
  .project-description-text {
    flex: 1 1 auto;
    overflow-y: auto;
    margin-top: auto;
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  #frame {
    padding: 10px !important;
    gap: 10px !important;
  }
  #display {
    width: 70% !important;
    border-radius: 0 !important;
  }
  #navigation {
    width: calc(30% - 15px) !important;
    padding: 0 10px 0 5px !important;
    border-radius: 0 !important;
  }
  #navigation #accesspanel {
    border-top-right-radius: 0 !important;
    display: none !important;
  }
  #navigation #accesspanel .companyName {
    flex-direction: column !important;
    gap: 0px !important;
  }
  #navigation #menu {
    gap: 5px !important;
    width: 100% !important;
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #menu .btnContainer {
    flex: 1 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    display: flex !important;
  }
  #navigation #menu .btnContainer .button {
    font-size: 1.1em;
    min-width: 0 !important;
    min-height: 0 !important;
    padding-bottom: 2vh;
    padding-bottom: 0;
    padding-top: 10px;
  }
  #navigation #menu .btnContainer .button.active {
    padding-bottom: 1em !important;
  }
  #navigation #pagination {
    display: none;
  }
  #navigation #submenu {
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #submenu p {
    display: flex;
    flex-wrap: wrap;
    white-space: break-spaces !important;
  }
  #navigation socialmedia {
    display: none !important;
  }
  #toolbar {
    gap: 10px !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar {
    width: 100% !important;
    border-radius: 0 !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar p {
    display: none !important;
  }
  #toolbar .toolbarElement.Text {
    width: 100% !important;
  }
  #toolbar .toolbarElement.Text button {
    border-radius: 0;
  }
  #toolbar .radio-container {
    padding: 0 4px;
    justify-content: space-evenly !important;
    width: 100% !important;
  }
  #toolbar .add-progress-wrapper {
    min-width: 10% !important;
  }
  .example .image {
    width: 60vw !important;
    padding: 0 !important;
  }
  .example .image video {
    border-radius: 0 !important;
  }
  .example .image img {
    border-radius: 0 !important;
  }
  .example .headlineContainer {
    width: 40vw !important;
  }
  .example .project-title {
    font-size: 1em;
  }
  .example .project-subtitle {
    font-size: 0.8em;
  }
  footer {
    overflow: hidden !important;
    margin-bottom: 5px !important;
    padding-left: 2px !important;
  }
  footer button,
  footer a {
    font-size: 0.8em !important;
  }
}
@media screen and (min-width: 912px) and (max-width: 912px) and (min-height: 1368px) and (max-height: 1368px) and (orientation: portrait) {
  #frame {
    flex-direction: column !important;
    padding: 0px !important;
    gap: 10px !important;
    border-radius: 0px !important;
  }
  #display {
    width: calc(100% - 5px) !important;
    height: 67% !important;
    border-radius: 0 !important;
  }
  #contentframe {
    border-radius: 0px !important;
  }
  .example {
    flex-direction: column;
  }
  .example .image {
    width: 100vw !important;
    padding: 0 !important;
    gap: 0px;
  }
  .example .image video {
    border-radius: 0 !important;
  }
  .example .image img {
    border-radius: 0 !important;
  }
  .example .headlineContainer.text {
    width: 100% !important;
    padding: 0 !important;
    justify-content: flex-start !important;
    height: 100%;
    display: flex;
  }
  .example .project-card {
    justify-content: flex-start !important;
    padding: 3vw 4vw 0 4vw;
    gap: 5px;
  }
  .example .project-description-text {
    -webkit-line-clamp: 5;
  }
  #toolbar {
    flex-wrap: wrap !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    gap: 10px !important;
    padding-bottom: 10px !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar {
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar p {
    display: none !important;
  }
  #toolbar .toolbarElement.Text {
    width: 100% !important;
    margin: 0 5px !important;
    flex: 1;
  }
  #toolbar .toolbarElement.Text button {
    border-radius: 0;
  }
  #toolbar .radio-container {
    justify-content: space-evenly !important;
    width: 100% !important;
  }
  #navigation {
    width: 100% !important;
    height: 31% !important;
    border-radius: 0 !important;
    padding: 0 10px 0 5px !important;
  }
  #navigation #accesspanel {
    border-top-right-radius: 0 !important;
    display: none !important;
  }
  #navigation #accesspanel .companyName {
    flex-direction: row !important;
    gap: 10px !important;
  }
  #navigation #menu {
    flex-direction: row !important;
    margin-top: 5px !important;
    gap: 5px !important;
    width: 100% !important;
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #menu .btnContainer {
    flex: 1 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    display: flex !important;
  }
  #navigation #menu .btnContainer .button {
    font-size: 1em !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding-bottom: 0;
    padding-top: 12px;
  }
  #navigation #menu .btnContainer .button.active {
    padding-bottom: 1em !important;
  }
  #navigation footer {
    overflow: hidden !important;
    margin-bottom: 5px !important;
    padding-left: 2px !important;
  }
  #navigation footer button,
  #navigation footer a {
    font-size: 0.8em !important;
  }
  #navigation #pagination {
    display: none;
  }
  #navigation #submenu {
    height: auto !important;
  }
  #navigation socialmedia {
    display: none !important;
    margin-top: 0 !important;
  }
  .project-header {
    flex-direction: row;
    display: flex;
    margin-bottom: 0 !important;
  }
  .project-title {
    font-size: 1em !important;
  }
  .project-subtitle {
    margin-left: auto;
  }
  .project-description-text {
    flex: 1 1 auto;
    overflow-y: auto;
    margin-top: auto;
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 912px) and (max-width: 912px) and (min-height: 1368px) and (max-height: 1368px) and (orientation: landscape) {
  #frame {
    padding: 10px !important;
    gap: 10px !important;
  }
  #display {
    width: 70% !important;
    border-radius: 0 !important;
  }
  #navigation {
    width: calc(30% - 15px) !important;
    padding: 0 10px 0 5px !important;
    border-radius: 0 !important;
  }
  #navigation #accesspanel {
    border-top-right-radius: 0 !important;
    display: none !important;
  }
  #navigation #accesspanel .companyName {
    flex-direction: column !important;
    gap: 0px !important;
  }
  #navigation #menu {
    gap: 5px !important;
    width: 100% !important;
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #menu .btnContainer {
    flex: 1 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    display: flex !important;
  }
  #navigation #menu .btnContainer .button {
    font-size: 1.1em;
    min-width: 0 !important;
    min-height: 0 !important;
    padding-bottom: 2vh;
    padding-bottom: 0;
    padding-top: 10px;
  }
  #navigation #menu .btnContainer .button.active {
    padding-bottom: 1em !important;
  }
  #navigation #pagination {
    display: none;
  }
  #navigation #submenu {
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #submenu p {
    display: flex;
    flex-wrap: wrap;
    white-space: break-spaces !important;
  }
  #navigation socialmedia {
    display: none !important;
  }
  #toolbar {
    gap: 10px !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar {
    width: 100% !important;
    border-radius: 0 !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar p {
    display: none !important;
  }
  #toolbar .toolbarElement.Text {
    width: 100% !important;
  }
  #toolbar .toolbarElement.Text button {
    border-radius: 0;
  }
  #toolbar .radio-container {
    padding: 0 4px;
    justify-content: space-evenly !important;
    width: 100% !important;
  }
  #toolbar .add-progress-wrapper {
    min-width: 10% !important;
  }
  .example .image {
    width: 60vw !important;
    padding: 0 !important;
  }
  .example .image video {
    border-radius: 0 !important;
  }
  .example .image img {
    border-radius: 0 !important;
  }
  .example .headlineContainer {
    width: 40vw !important;
  }
  .example .project-title {
    font-size: 1em;
  }
  .example .project-subtitle {
    font-size: 0.8em;
  }
  footer {
    overflow: hidden !important;
    margin-bottom: 5px !important;
    padding-left: 2px !important;
  }
  footer button,
  footer a {
    font-size: 0.8em !important;
  }
}
@media screen and (min-width: 720px) and (max-width: 720px) and (min-height: 540px) and (max-height: 540px) and (orientation: portrait) {
  #frame {
    flex-direction: column !important;
    padding: 0px !important;
    gap: 10px !important;
    border-radius: 0px !important;
  }
  #display {
    width: calc(100% - 5px) !important;
    height: 67% !important;
    border-radius: 0 !important;
  }
  #contentframe {
    border-radius: 0px !important;
  }
  .example {
    flex-direction: column;
  }
  .example .image {
    width: 100vw !important;
    padding: 0 !important;
    gap: 0px;
  }
  .example .image video {
    border-radius: 0 !important;
  }
  .example .image img {
    border-radius: 0 !important;
  }
  .example .headlineContainer.text {
    width: 100% !important;
    padding: 0 !important;
    justify-content: flex-start !important;
    height: 100%;
    display: flex;
  }
  .example .project-card {
    justify-content: flex-start !important;
    padding: 3vw 4vw 0 4vw;
    gap: 5px;
  }
  .example .project-description-text {
    -webkit-line-clamp: 5;
  }
  #toolbar {
    flex-wrap: wrap !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    gap: 10px !important;
    padding-bottom: 10px !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar {
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar p {
    display: none !important;
  }
  #toolbar .toolbarElement.Text {
    width: 100% !important;
    margin: 0 5px !important;
    flex: 1;
  }
  #toolbar .toolbarElement.Text button {
    border-radius: 0;
  }
  #toolbar .radio-container {
    justify-content: space-evenly !important;
    width: 100% !important;
  }
  #navigation {
    width: 100% !important;
    height: 31% !important;
    border-radius: 0 !important;
    padding: 0 10px 0 5px !important;
  }
  #navigation #accesspanel {
    border-top-right-radius: 0 !important;
    display: none !important;
  }
  #navigation #accesspanel .companyName {
    flex-direction: row !important;
    gap: 10px !important;
  }
  #navigation #menu {
    flex-direction: row !important;
    margin-top: 5px !important;
    gap: 5px !important;
    width: 100% !important;
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #menu .btnContainer {
    flex: 1 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    display: flex !important;
  }
  #navigation #menu .btnContainer .button {
    font-size: 1em !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding-bottom: 0;
    padding-top: 12px;
  }
  #navigation #menu .btnContainer .button.active {
    padding-bottom: 1em !important;
  }
  #navigation footer {
    overflow: hidden !important;
    margin-bottom: 5px !important;
    padding-left: 2px !important;
  }
  #navigation footer button,
  #navigation footer a {
    font-size: 0.8em !important;
  }
  #navigation #pagination {
    display: none;
  }
  #navigation #submenu {
    height: auto !important;
  }
  #navigation socialmedia {
    display: none !important;
    margin-top: 0 !important;
  }
  .project-header {
    flex-direction: row;
    display: flex;
    margin-bottom: 0 !important;
  }
  .project-title {
    font-size: 1em !important;
  }
  .project-subtitle {
    margin-left: auto;
  }
  .project-description-text {
    flex: 1 1 auto;
    overflow-y: auto;
    margin-top: auto;
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 720px) and (max-width: 720px) and (min-height: 540px) and (max-height: 540px) and (orientation: landscape) {
  #frame {
    padding: 10px !important;
    gap: 10px !important;
  }
  #display {
    width: 70% !important;
    border-radius: 0 !important;
  }
  #navigation {
    width: calc(30% - 15px) !important;
    padding: 0 10px 0 5px !important;
    border-radius: 0 !important;
  }
  #navigation #accesspanel {
    border-top-right-radius: 0 !important;
    display: none !important;
  }
  #navigation #accesspanel .companyName {
    flex-direction: column !important;
    gap: 0px !important;
  }
  #navigation #menu {
    gap: 5px !important;
    width: 100% !important;
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #menu .btnContainer {
    flex: 1 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    display: flex !important;
  }
  #navigation #menu .btnContainer .button {
    font-size: 1.1em;
    min-width: 0 !important;
    min-height: 0 !important;
    padding-bottom: 2vh;
    padding-bottom: 0;
    padding-top: 10px;
  }
  #navigation #menu .btnContainer .button.active {
    padding-bottom: 1em !important;
  }
  #navigation #pagination {
    display: none;
  }
  #navigation #submenu {
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #submenu p {
    display: flex;
    flex-wrap: wrap;
    white-space: break-spaces !important;
  }
  #navigation socialmedia {
    display: none !important;
  }
  #toolbar {
    gap: 10px !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar {
    width: 100% !important;
    border-radius: 0 !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar p {
    display: none !important;
  }
  #toolbar .toolbarElement.Text {
    width: 100% !important;
  }
  #toolbar .toolbarElement.Text button {
    border-radius: 0;
  }
  #toolbar .radio-container {
    padding: 0 4px;
    justify-content: space-evenly !important;
    width: 100% !important;
  }
  #toolbar .add-progress-wrapper {
    min-width: 10% !important;
  }
  .example .image {
    width: 60vw !important;
    padding: 0 !important;
  }
  .example .image video {
    border-radius: 0 !important;
  }
  .example .image img {
    border-radius: 0 !important;
  }
  .example .headlineContainer {
    width: 40vw !important;
  }
  .example .project-title {
    font-size: 1em;
  }
  .example .project-subtitle {
    font-size: 0.8em;
  }
  footer {
    overflow: hidden !important;
    margin-bottom: 5px !important;
    padding-left: 2px !important;
  }
  footer button,
  footer a {
    font-size: 0.8em !important;
  }
}
@media screen and (min-width: 853px) and (max-width: 853px) and (min-height: 1280px) and (max-height: 1280px) and (orientation: portrait) {
  #frame {
    flex-direction: column !important;
    padding: 0px !important;
    gap: 10px !important;
    border-radius: 0px !important;
  }
  #display {
    width: calc(100% - 5px) !important;
    height: 67% !important;
    border-radius: 0 !important;
  }
  #contentframe {
    border-radius: 0px !important;
  }
  .example {
    flex-direction: column;
  }
  .example .image {
    width: 100vw !important;
    padding: 0 !important;
    gap: 0px;
  }
  .example .image video {
    border-radius: 0 !important;
  }
  .example .image img {
    border-radius: 0 !important;
  }
  .example .headlineContainer.text {
    width: 100% !important;
    padding: 0 !important;
    justify-content: flex-start !important;
    height: 100%;
    display: flex;
  }
  .example .project-card {
    justify-content: flex-start !important;
    padding: 3vw 4vw 0 4vw;
    gap: 5px;
  }
  .example .project-description-text {
    -webkit-line-clamp: 5;
  }
  #toolbar {
    flex-wrap: wrap !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    gap: 10px !important;
    padding-bottom: 10px !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar {
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar p {
    display: none !important;
  }
  #toolbar .toolbarElement.Text {
    width: 100% !important;
    margin: 0 5px !important;
    flex: 1;
  }
  #toolbar .toolbarElement.Text button {
    border-radius: 0;
  }
  #toolbar .radio-container {
    justify-content: space-evenly !important;
    width: 100% !important;
  }
  #navigation {
    width: 100% !important;
    height: 31% !important;
    border-radius: 0 !important;
    padding: 0 10px 0 5px !important;
  }
  #navigation #accesspanel {
    border-top-right-radius: 0 !important;
    display: none !important;
  }
  #navigation #accesspanel .companyName {
    flex-direction: row !important;
    gap: 10px !important;
  }
  #navigation #menu {
    flex-direction: row !important;
    margin-top: 5px !important;
    gap: 5px !important;
    width: 100% !important;
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #menu .btnContainer {
    flex: 1 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    display: flex !important;
  }
  #navigation #menu .btnContainer .button {
    font-size: 1em !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding-bottom: 0;
    padding-top: 12px;
  }
  #navigation #menu .btnContainer .button.active {
    padding-bottom: 1em !important;
  }
  #navigation footer {
    overflow: hidden !important;
    margin-bottom: 5px !important;
    padding-left: 2px !important;
  }
  #navigation footer button,
  #navigation footer a {
    font-size: 0.8em !important;
  }
  #navigation #pagination {
    display: none;
  }
  #navigation #submenu {
    height: auto !important;
  }
  #navigation socialmedia {
    display: none !important;
    margin-top: 0 !important;
  }
  .project-header {
    flex-direction: row;
    display: flex;
    margin-bottom: 0 !important;
  }
  .project-title {
    font-size: 1em !important;
  }
  .project-subtitle {
    margin-left: auto;
  }
  .project-description-text {
    flex: 1 1 auto;
    overflow-y: auto;
    margin-top: auto;
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 853px) and (max-width: 853px) and (min-height: 1280px) and (max-height: 1280px) and (orientation: landscape) {
  #frame {
    padding: 10px !important;
    gap: 10px !important;
  }
  #display {
    width: 70% !important;
    border-radius: 0 !important;
  }
  #navigation {
    width: calc(30% - 15px) !important;
    padding: 0 10px 0 5px !important;
    border-radius: 0 !important;
  }
  #navigation #accesspanel {
    border-top-right-radius: 0 !important;
    display: none !important;
  }
  #navigation #accesspanel .companyName {
    flex-direction: column !important;
    gap: 0px !important;
  }
  #navigation #menu {
    gap: 5px !important;
    width: 100% !important;
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #menu .btnContainer {
    flex: 1 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    display: flex !important;
  }
  #navigation #menu .btnContainer .button {
    font-size: 1.1em;
    min-width: 0 !important;
    min-height: 0 !important;
    padding-bottom: 2vh;
    padding-bottom: 0;
    padding-top: 10px;
  }
  #navigation #menu .btnContainer .button.active {
    padding-bottom: 1em !important;
  }
  #navigation #pagination {
    display: none;
  }
  #navigation #submenu {
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #submenu p {
    display: flex;
    flex-wrap: wrap;
    white-space: break-spaces !important;
  }
  #navigation socialmedia {
    display: none !important;
  }
  #toolbar {
    gap: 10px !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar {
    width: 100% !important;
    border-radius: 0 !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar p {
    display: none !important;
  }
  #toolbar .toolbarElement.Text {
    width: 100% !important;
  }
  #toolbar .toolbarElement.Text button {
    border-radius: 0;
  }
  #toolbar .radio-container {
    padding: 0 4px;
    justify-content: space-evenly !important;
    width: 100% !important;
  }
  #toolbar .add-progress-wrapper {
    min-width: 10% !important;
  }
  .example .image {
    width: 60vw !important;
    padding: 0 !important;
  }
  .example .image video {
    border-radius: 0 !important;
  }
  .example .image img {
    border-radius: 0 !important;
  }
  .example .headlineContainer {
    width: 40vw !important;
  }
  .example .project-title {
    font-size: 1em;
  }
  .example .project-subtitle {
    font-size: 0.8em;
  }
  footer {
    overflow: hidden !important;
    margin-bottom: 5px !important;
    padding-left: 2px !important;
  }
  footer button,
  footer a {
    font-size: 0.8em !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1024px) and (min-height: 600px) and (max-height: 600px) and (orientation: portrait) {
  #frame {
    flex-direction: column !important;
    padding: 0px !important;
    gap: 10px !important;
    border-radius: 0px !important;
  }
  #display {
    width: calc(100% - 5px) !important;
    height: 67% !important;
    border-radius: 0 !important;
  }
  #contentframe {
    border-radius: 0px !important;
  }
  .example {
    flex-direction: column;
  }
  .example .image {
    width: 100vw !important;
    padding: 0 !important;
    gap: 0px;
  }
  .example .image video {
    border-radius: 0 !important;
  }
  .example .image img {
    border-radius: 0 !important;
  }
  .example .headlineContainer.text {
    width: 100% !important;
    padding: 0 !important;
    justify-content: flex-start !important;
    height: 100%;
    display: flex;
  }
  .example .project-card {
    justify-content: flex-start !important;
    padding: 3vw 4vw 0 4vw;
    gap: 5px;
  }
  .example .project-description-text {
    -webkit-line-clamp: 5;
  }
  #toolbar {
    flex-wrap: wrap !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    gap: 10px !important;
    padding-bottom: 10px !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar {
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar p {
    display: none !important;
  }
  #toolbar .toolbarElement.Text {
    width: 100% !important;
    margin: 0 5px !important;
    flex: 1;
  }
  #toolbar .toolbarElement.Text button {
    border-radius: 0;
  }
  #toolbar .radio-container {
    justify-content: space-evenly !important;
    width: 100% !important;
  }
  #navigation {
    width: 100% !important;
    height: 31% !important;
    border-radius: 0 !important;
    padding: 0 10px 0 5px !important;
  }
  #navigation #accesspanel {
    border-top-right-radius: 0 !important;
    display: none !important;
  }
  #navigation #accesspanel .companyName {
    flex-direction: row !important;
    gap: 10px !important;
  }
  #navigation #menu {
    flex-direction: row !important;
    margin-top: 5px !important;
    gap: 5px !important;
    width: 100% !important;
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #menu .btnContainer {
    flex: 1 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    display: flex !important;
  }
  #navigation #menu .btnContainer .button {
    font-size: 1em !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding-bottom: 0;
    padding-top: 12px;
  }
  #navigation #menu .btnContainer .button.active {
    padding-bottom: 1em !important;
  }
  #navigation footer {
    overflow: hidden !important;
    margin-bottom: 5px !important;
    padding-left: 2px !important;
  }
  #navigation footer button,
  #navigation footer a {
    font-size: 0.8em !important;
  }
  #navigation #pagination {
    display: none;
  }
  #navigation #submenu {
    height: auto !important;
  }
  #navigation socialmedia {
    display: none !important;
    margin-top: 0 !important;
  }
  .project-header {
    flex-direction: row;
    display: flex;
    margin-bottom: 0 !important;
  }
  .project-title {
    font-size: 1em !important;
  }
  .project-subtitle {
    margin-left: auto;
  }
  .project-description-text {
    flex: 1 1 auto;
    overflow-y: auto;
    margin-top: auto;
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1024px) and (min-height: 600px) and (max-height: 600px) and (orientation: landscape) {
  #frame {
    padding: 10px !important;
    gap: 10px !important;
  }
  #display {
    width: 70% !important;
    border-radius: 0 !important;
  }
  #navigation {
    width: calc(30% - 15px) !important;
    padding: 0 10px 0 5px !important;
    border-radius: 0 !important;
  }
  #navigation #accesspanel {
    border-top-right-radius: 0 !important;
    display: none !important;
  }
  #navigation #accesspanel .companyName {
    flex-direction: column !important;
    gap: 0px !important;
  }
  #navigation #menu {
    gap: 5px !important;
    width: 100% !important;
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #menu .btnContainer {
    flex: 1 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    display: flex !important;
  }
  #navigation #menu .btnContainer .button {
    font-size: 1.1em;
    min-width: 0 !important;
    min-height: 0 !important;
    padding-bottom: 2vh;
    padding-bottom: 0;
    padding-top: 10px;
  }
  #navigation #menu .btnContainer .button.active {
    padding-bottom: 1em !important;
  }
  #navigation #pagination {
    display: none;
  }
  #navigation #submenu {
    height: auto !important;
    padding: 2px !important;
  }
  #navigation #submenu p {
    display: flex;
    flex-wrap: wrap;
    white-space: break-spaces !important;
  }
  #navigation socialmedia {
    display: none !important;
  }
  #toolbar {
    gap: 10px !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar {
    width: 100% !important;
    border-radius: 0 !important;
  }
  #toolbar .toolbarElement.video-pagination-toolbar p {
    display: none !important;
  }
  #toolbar .toolbarElement.Text {
    width: 100% !important;
  }
  #toolbar .toolbarElement.Text button {
    border-radius: 0;
  }
  #toolbar .radio-container {
    padding: 0 4px;
    justify-content: space-evenly !important;
    width: 100% !important;
  }
  #toolbar .add-progress-wrapper {
    min-width: 10% !important;
  }
  .example .image {
    width: 60vw !important;
    padding: 0 !important;
  }
  .example .image video {
    border-radius: 0 !important;
  }
  .example .image img {
    border-radius: 0 !important;
  }
  .example .headlineContainer {
    width: 40vw !important;
  }
  .example .project-title {
    font-size: 1em;
  }
  .example .project-subtitle {
    font-size: 0.8em;
  }
  footer {
    overflow: hidden !important;
    margin-bottom: 5px !important;
    padding-left: 2px !important;
  }
  footer button,
  footer a {
    font-size: 0.8em !important;
  }
}
.menu-container {
  background: transparent;
  position: relative;
  display: flex;
  height: 100%;
  width: auto;
  justify-content: center;
  align-items: center;
}

.menu-container:hover {
  background: #ffffff;
}

.menu-container:hover .dots-button {
  color: #4b4b4b;
}

.dots-button {
  display: flex;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #9e9e9e;
  display: flex;
  height: auto;
  width: auto;
}

.menu-content {
  position: absolute;
  left: -325px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px -25px 30px rgba(0, 0, 0, 0.2);
  min-width: 300px;
  z-index: 1;
  padding: 10px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-content p {
  margin-left: 20px;
}

/* Outer container fixed width */
:root {
  --bg: #e2e2e2;
  --grid-line: #d4d4d4;
  --accent: #d4d4d4;
  --grid-size: 160px;
  --small-grid-size: 20px;
  --particle-color: #d4d4d4;
}

/* Container */
.sci-fi-os-bg {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg);
}

/* Main + secondary grids */
.sci-fi-os-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(rgba(212, 212, 212, 0.8) 1px, transparent 1px) 0 0/var(--grid-size) var(--grid-size), linear-gradient(90deg, rgba(212, 212, 212, 0.8) 1px, transparent 1px) 0 0/var(--grid-size) var(--grid-size), linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px) 0 0/var(--small-grid-size) var(--small-grid-size), linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px) 0 0/var(--small-grid-size) var(--small-grid-size);
}

/* Fade overlay */
.grid-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 12;
  background: linear-gradient(to bottom, #e2e2e2 0%, transparent 20%, transparent 80%, #e2e2e2 100%);
  transition: opacity 0.2s ease-in-out;
}

/* Vertical animated lines */
.lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 11;
}

.line {
  position: absolute;
  width: 1.5px;
  height: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.line-drop {
  position: absolute;
  width: 100%;
  height: 20vh;
  bottom: -50%;
  left: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 75%, rgba(255, 255, 255, 0.8) 100%);
  animation-name: drop-up;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  animation-iteration-count: infinite;
}

@keyframes drop-up {
  0% {
    bottom: -50%;
  }
  100% {
    bottom: 110%;
  }
}
/* Scanline */
.scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 212, 212, 0.8), transparent);
  animation: sweep 20s linear infinite;
  filter: blur(1px);
  z-index: 20;
}

@keyframes sweep {
  0% {
    transform: translateY(-30vh);
  }
  50% {
    transform: translateY(100vh);
  }
  100% {
    transform: translateY(-30vh);
  }
}
/* HUD */
.hud {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 50;
}

.hud .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: clamp(14px, 1vw, 16px);
  text-transform: uppercase;
  color: #444;
  gap: 2px;
}

.hud .title .info {
  font-family: ui-monospace, monospace;
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 400;
  color: #777;
  letter-spacing: 0.5px;
  margin-top: 0;
}

/* Clock */
.hud .panel {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 6px 10px;
  border-radius: 6px;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  font-size: clamp(10px, 0.9vw, 12px);
  color: #444;
}

/* Center mark */
.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  z-index: 50;
}

.mark {
  opacity: 0;
  width: 220px;
  height: 220px;
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.05));
  box-shadow: inset 2px 2px 8px rgba(255, 255, 255, 0.3), inset -2px -2px 8px rgba(0, 0, 0, 0.05);
  display: grid;
  place-items: center;
  z-index: 49;
}

/* Background animated text */
.bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
  pointer-events: all;
  text-align: left;
  width: 80%;
  max-width: 60vw;
}

/* Text lines */
.bg-text .line1,
.bg-text .line2 {
  opacity: 0;
  transform: scale(0.95);
  animation-fill-mode: forwards;
  font-size: clamp(1.5rem, 5vw, 4rem);
  /* responsive font */
  font-weight: 700;
  color: rgba(50, 50, 50, 0.85);
}

.bg-text .line2 {
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 500;
  color: rgba(70, 70, 70, 0.7);
}

/* Fade + scale animation classes added dynamically via JS */
.bg-text .line1.show {
  animation: textFadeIn 4s linear forwards;
}

.bg-text .line2.show {
  animation: textFadeIn 4s linear 0.2s forwards;
}

@keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  20% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.95);
  }
}
/* Vertical Progress bar */
/* Horizontal Progress bar below second text line */
/* Progress container: progress bar + indicators */
.progress-container {
  display: flex;
  align-items: center;
  gap: 12px;
  /* space between bar and indicators */
  margin-top: 10px;
  width: 31%;
}

/* Horizontal Progress bar */
.bg-text-progress {
  flex: 1;
  height: 6px;
  background: #9e9e9e;
  border-radius: 3px;
  overflow: hidden;
}

.bg-text-progress .fill {
  height: 100%;
  width: 0%;
  background: #fff;
  transition: width 4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
}

/* Indicators container */
.progress-indicators {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.indicator {
  width: 6px;
  height: 6px;
  /* same height as bar? use flexible later */
  background: #ccc;
  border-radius: 3px;
  transition: background 0.4s;
}

.indicator.filled {
  background: #fff;
}

.portfolio-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 1;
  /* final visible state */
  transition: opacity 1s ease, transform 0.8s ease;
}

.portfolio-buttons.hidden {
  opacity: 0;
  transform: translateY(20px);
}

.portfolio-buttons.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-button {
  padding: 10px 20px;
  border: 1px solid #afafaf;
  border-radius: 6px;
  color: rgba(50, 50, 50, 0.85);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  background: #ededed;
}

.portfolio-button:hover {
  background: #fff;
  color: rgba(50, 50, 50, 0.85);
}

/* Modal should overlay everything, ignore parent container flex/scroll */
.modalOverlay {
  position: fixed;
  border-top-left-radius: 2vw;
  width: var(--after-width);
  height: var(--after-height);
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

.audio-modal {
  background: white;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  width: 300px;
  position: relative;
}

.audio-modal button {
  margin: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: #0af;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}

.audio-modal button:hover {
  background: #08c;
}

/* Volume slider overlay */
.volume-slider-container {
  order: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
  padding: 0 1rem;
  justify-content: center;
}

.volume-slider-container label {
  font-size: 0.9rem;
  color: #333;
}

.volume-slider-container input[type=range] {
  -webkit-appearance: none;
  /* remove default style */
  -moz-appearance: none;
  width: 120px;
  /* desired width */
  height: 6px;
  /* track height */
  background: #ccc;
  border-radius: 3px;
  outline: none;
  position: relative;
}

/* WebKit: Chrome, Safari */
.volume-slider-container input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ededed;
  border: 1px solid #aaa;
  cursor: pointer;
  /* Center the thumb on 6px track */
  margin-top: -2px;
  /* (thumb height - track height) / 2 = (16 - 6)/2 = 5 */
}

/* Firefox */
.volume-slider-container input[type=range]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ededed;
  border: 1px solid #aaa;
  cursor: pointer;
  /* Firefox aligns differently; negative margin centers */
  margin-top: -2px;
}

/* Firefox: Track */
.volume-slider-container input[type=range]::-moz-range-track {
  height: 6px;
  background: #ccc;
  border-radius: 3px;
}

/* Optional: IE/Edge */
.volume-slider-container input[type=range]::-ms-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ededed;
  border: 1px solid #aaa;
  cursor: pointer;
  /* IE/Edge */
  margin-top: 0;
  /* tweak if needed */
}

.volume-slider-container input[type=range]::-ms-track {
  height: 6px;
  background: #ccc;
  border-radius: 3px;
  border: none;
  color: transparent;
  /* remove default styling */
}

.image-zoom-overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
  transition: background-color 0.3s ease;
}

.image-zoom-overlay.visible {
  background-color: rgba(0, 0, 0, 0.7);
}

.zoomed-image-anim {
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* === Main container === */
.custom-video-container {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* === Video === */
.custom-video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* === Overlay Controls === */
.custom-video-container .video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  opacity: 1;
  transition: opacity 0.4s ease;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

/* === Show overlay on hover === */
.custom-video-container:hover .video-overlay,
.custom-video-container:focus-within .video-overlay {
  opacity: 1;
}

/* === Controls === */
.custom-video-container button,
.custom-video-container input[type=range] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  cursor: pointer;
}

.custom-video-container button {
  color: #fff;
  font-size: 1.2rem;
  padding: 4px 6px;
  transition: transform 0.15s ease;
}

.custom-video-container button:hover {
  transform: scale(1.1);
}

/* === Sliders === */
.custom-video-container input[type=range] {
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
}

.custom-video-container input[type=range]:first-of-type {
  width: 90%;
  /* 90% width */
}

.custom-video-container input[type=range]:last-of-type {
  width: 10%;
  /* 10% width */
}

.custom-video-container input[type=range]::-webkit-slider-thumb {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #fff;
  cursor: pointer;
}

.custom-video-container input[type=range]::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

/* === Time Display === */
.custom-video-container span {
  color: #fff;
  font-size: 0.85rem;
  font-family: monospace;
  min-width: 50px;
  text-align: right;
}

.custom-video-container input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  background: #b8b8b8;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.custom-video-container input[type=range]::-moz-range-thumb {
  background: #b8b8b8;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* === Fullscreen Mode === */
.custom-video-container.fullscreen-mode {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0;
  background: #000;
  z-index: 9999;
}

.custom-video-container.fullscreen-mode video {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}

.video-fullscreen-active {
  overflow: hidden;
}

.detailContainer {
  font-family: Arial, sans-serif;
}

.detailContainer img.detailImg {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

.project-card {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

.project-header {
  margin-bottom: 10px;
}

.project-title {
  font-weight: bold;
  font-size: 1.8em;
  font-family: "HeadlineFont", sans-serif;
}

.project-subtitle {
  color: #555;
  font-size: 0.9em;
}

.project-description-text {
  font-size: 0.95em;
  line-height: 1.4em;
}

.toolbar-detail-btn {
  cursor: pointer;
  width: 40px !important;
  height: 40px !important;
  border-top-left-radius: 100% !important;
  border-bottom-left-radius: 100% !important;
  display: flex;
  margin-right: 20px;
  border-radius: 100%;
  background-color: #cccccc;
  color: #000;
  border: 1px solid #afafaf;
  order: 3;
  font-size: 1.2em !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.details-close-btn {
  position: sticky;
  margin-left: auto;
  background-color: #e2e2e2;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.5;
  border: 1px solid rgba(30, 30, 30, 0.2470588235);
}

.details-close-btn:hover {
  background-color: #ffffff;
}

.details-close-container {
  display: flex;
  position: static;
  margin-left: auto;
}

.details-body {
  padding: 20px 0;
  text-align: justify;
}

.details-content {
  height: 100%;
  padding-top: 40px;
}

.error {
  font-size: clamp(1.5rem, 5vw, 4rem);
  font-weight: 700;
  color: rgba(50, 50, 50, 0.85);
}

.about-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0px 20px;
  height: 100%;
  overflow-y: auto;
}

.about-header {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

.about-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.tagline {
  color: #555;
  font-size: 1.1rem;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  line-height: 1.6;
}

.about-container {
  height: 100%;
}

.impressum-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0px 20px;
  overflow-y: auto;
  width: var(--after-width);
  height: var(--after-height);
  line-height: 1.6;
}

.impressum-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 50px;
}

.impressum-header {
  text-align: center;
  margin-top: 40px;
}

.impressum-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.impressum-header .note {
  font-size: 1rem;
  color: #555;
}

.impressum-content h2,
.impressum-content h3 {
  margin-top: 25px;
  margin-bottom: 10px;
}

.impressum-content p {
  margin-bottom: 15px;
}

.impressum-content a {
  color: #0077ff;
  text-decoration: none;
}

.impressum-content a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=main.css.map */