component-carousel {
  position: relative;
  width: 100%;
  background-color: #f5f5f5;
  display: block;
  overflow: hidden;
}

.pageProduct .carouselContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  transform: translateX(-103vw);
  transition: transform 1s;
}
.pageProduct .carouselElement {
  padding: 4.5vw 0;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-right: 2vw;
  margin-top: 0.5vw;
  width: 60vw;
  min-width: 60vw;
  height: 100%;
  background-color: #fff;
  box-shadow: rgba(0, 0, 5, 0.15) 0 0.15vw 0.4vw;
  z-index: 5;
}
.pageProduct .carouselPic img {
  display: block;
  width: 18vw;
  height: 18vw;
  border-radius: 50%;
  margin-right: 3vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageProduct .carouselButton {
  color: #fff;
  background-color: #2b193c;
  width: -moz-fit-content;
  width: fit-content;
}
.pageProduct .carouselArrow {
  text-align: center;
  cursor: pointer;
}
.pageProduct .carouselArrow svg {
  margin: 2vw;
  width: 1vw;
}
.pageProduct .carouselIndicators {
  position: relative;
  bottom: 3vw;
  z-index: 10;
  text-align: center;
}

.pageFacts .carouselContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  transform: translateX(-200vw);
  transition: transform 1s;
}
.pageFacts .carouselContainer .legend {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6901960784);
  padding: 0.4vw 0 0.25vw 0;
}
.pageFacts .carouselContainer h2 {
  font-size: 85%;
  text-align: center;
}
.pageFacts .carouselElement {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 100vw;
  min-width: 100vw;
  height: 100%;
  background-color: #fff;
  z-index: 5;
}
.pageFacts .carouselPic img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pageFacts .carouselIndicators {
  position: absolute;
  width: 100%;
  bottom: 3vw;
  z-index: 10;
  text-align: center;
}

.carouselIndicator {
  display: inline;
  height: 0.75vw;
  cursor: pointer;
}
.carouselIndicator.carouselActive .carouselIndicatorCircle {
  stroke: #e19be5 !important;
}

.table5 {
  padding: 0 5vw 2vw 5vw;
}
.table5 h3 {
  font-size: 120%;
  margin-top: calc(var(--fScale) * 6vw);
  padding-bottom: calc(var(--fScale) * 2vw);
  color: #e19be5;
}
.table5 ol.collection {
  border-top: 1px solid #e19be5;
  font-size: calc(var(--fScale) * 2vw);
  -webkit-hyphens: none;
          hyphens: none;
}
.table5 ol.collection .item-container {
  display: grid;
  grid-template-columns: 5fr 10fr;
}
.table5 ol.collection .attribute-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--column-width-min), 1fr));
}
.table5 ol.collection .tableSection1 {
  --column-width-min: 10.5em;
}
.table5 ol.collection .tableSection2 {
  --column-width-min: 10.5em;
}
.table5 ol.collection .tableSection3 {
  --column-width-min: 10.5em;
}
.table5 ol.collection .attribute {
  border-left: 1px solid #e19be5;
  border-bottom: 1px solid #e19be5;
  padding: 1vw 0.5vw;
  overflow: hidden;
  text-overflow: ellipsis;
}
.table5 ol.collection .firstCol {
  border-left: unset;
}
.table5 ol.collection .item-container:hover {
  background-color: #f5f5f5;
}
.table5 ol.collection .item-container:first-child .attribute {
  display: flex;
  text-overflow: initial;
  overflow: auto;
  white-space: normal;
  background-color: #fff;
  font-weight: 600;
}

.componentFaqs {
  padding: 6vw 5vw 7vw 5vw;
  color: #2b193c;
  background-color: #fff;
}
.componentFaqs h2 {
  text-align: center;
}
.componentFaqs h3 {
  font-size: 100%;
  margin: calc(var(--fScale) * 6vw) 0 0 0;
  padding-bottom: calc(var(--fScale) * 2vw);
  color: #e19be5;
  border-bottom: 1px solid #e19be5;
}
.componentFaqs .faqsItem {
  padding: calc(var(--fScale) * 2vw) 0;
  border-bottom: 1px solid #e19be5;
  cursor: pointer;
}
.componentFaqs .faqsItem .faqPlusMinus {
  position: absolute;
  right: 5vw;
  height: 1.5vw;
}
.componentFaqs .faqsItem .faqMinus {
  opacity: 0;
  transition: opacity 500ms, transform 500ms;
}
.componentFaqs .faqsItem .faqPlus {
  opacity: 1;
  transition: opacity 500ms, transform 500ms;
}
.componentFaqs .faqsItem .faqsWrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.5s ease-out;
}
.componentFaqs .faqsItem.active .faqsWrapper {
  grid-template-rows: 1fr;
  margin-top: calc(var(--fScale) * 1vw);
}
.componentFaqs .faqsItem .faqsText {
  font-size: 85%;
  width: 80%;
  overflow: hidden;
}

:root {
  --fScale: 1.5;
  --iLarge: 0;
}

* {
  border: 0 none;
  outline: 0;
  padding: 0;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  box-sizing: border-box;
  -webkit-hyphens: manual;
  hyphens: manual;
}

.coUiLight {
  color: #e19be5;
}

.coUiDark {
  color: #2b193c;
}

.coWhite {
  color: #fff;
}

.coBlack {
  color: #000;
}

.coGray {
  color: #666669;
}

.bcUiOffWhite {
  background-color: #f5f5f5;
}

.bcUiOffWhite h3 {
  color: #e19be5;
}

.bcUiDark {
  background-color: #2b193c;
}

.bcUiLight {
  background-color: #e19be5;
}

.bcWhite {
  background-color: #fff;
}

component-header,
component-footer {
  position: relative;
  display: block;
  width: 100%;
}

component-revolution {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  padding: 8vw 6vw 7vw 6vw;
  background-color: #f5f5f5;
  font-weight: 400;
}
component-revolution .headline {
  margin-bottom: calc(var(--fScale) * 0.5vw);
  color: #e19be5;
  font-size: 140%;
  text-transform: uppercase;
}
component-revolution .text {
  color: #2b193c;
  font-size: 200%;
}

.revolutionDark {
  background-color: #2b193c;
}
.revolutionDark .text,
.revolutionDark button {
  color: #fff;
}

html {
  height: 100%;
  background-color: #2b193c;
}

body {
  font-family: Urbanist, Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: calc(var(--fScale) * 3vw);
  color: #fff;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
  scroll-behavior: smooth;
}

li {
  list-style: none;
}

section {
  width: 100%;
}

#pageContainer {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.page {
  width: 100%;
}

.slide-left {
  transition: transform 1000ms ease;
  transform: translateX(-100%);
}

.slide-right {
  transition: transform 1000ms ease;
  transform: translateX(100%);
}

button {
  font-family: Urbanist, Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: calc(var(--fScale) * 3vw);
  cursor: pointer;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  font-size: calc(var(--fScale) * 3vw * 0.667);
  font-weight: 500;
}

input::placeholder,
textarea::placeholder,
input,
textarea {
  font-size: calc(var(--fScale) * 3vw * 0.667);
  font-weight: 500;
}

.text-center,
.textCenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.textRight {
  display: block;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

b,
strong {
  font-weight: 600;
}

.stopScrolling {
  overflow-y: scroll;
  position: fixed;
}

.fixScrolling {
  position: fixed;
}

a,
a:hover,
a:visited {
  color: #e19be5;
  text-decoration: none;
  -webkit-hyphens: none;
          hyphens: none;
  cursor: pointer;
}

.hidden {
  display: none;
}

h1 {
  font-size: 130%;
  font-weight: 500;
  color: #e19be5;
  text-transform: uppercase;
}

h2 {
  font-size: 125%;
  font-weight: 500;
  margin-bottom: calc(var(--fScale) * 0.5vw);
}

h3 {
  font-size: 120%;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: calc(var(--fScale) * 0.5vw);
}

h4 {
  font-size: 120%;
  font-weight: 500;
  margin-bottom: calc(var(--fScale) * 0.5vw);
}

p {
  margin-bottom: calc(var(--fScale) * 2vw);
}

.contentPic img {
  margin-bottom: calc(var(--fScale) * 3vw);
}

.w100 {
  width: 100%;
}

.container {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

.dflex {
  display: flex;
}

.flexAlignBottom {
  align-items: flex-end;
}

.container,
.row,
.col {
  padding: 0;
  margin: 0;
}

.columns {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
}

.column {
  width: auto;
  position: relative;
}

.boxes {
  position: relative;
  margin-top: calc(var(--fScale) * -19vw);
  margin-left: auto;
  margin-right: auto;
  width: 75vw;
  z-index: 3;
}

.box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  color: #666669;
  padding: calc(var(--fScale) * 3vw) calc(var(--fScale) * 4vw) calc(var(--fScale) * 4vw) calc(var(--fScale) * 4vw);
  box-shadow: rgba(0, 0, 5, 0.45) 0 calc(var(--fScale) * 0.25vw) calc(var(--fScale) * 1vw) 0;
  margin-bottom: calc(var(--fScale) * 3vw);
}

.box button {
  margin-left: auto;
  margin-right: auto;
}

.vcenter {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*
.column12,
.column20,
.column25,
.column30,
.column31,
.column45,
.column50,
.column55,
.column60,
.column70,
.column75 {
  width: 100%;
}
*/
.column {
  width: auto;
}

.column5 {
  width: 5%;
}

.column12 {
  width: 12%;
}

.column15 {
  width: 15%;
}

.column20 {
  width: 20%;
}

.column25 {
  width: 25%;
}

.column30 {
  width: 30%;
}

.column31 {
  width: 31%;
}

.column45 {
  width: 45%;
}

.column50 {
  width: 50%;
}

.column55 {
  width: 55%;
}

.column60 {
  width: 60%;
}

.column75 {
  width: 75%;
}

.columns {
  flex-direction: row;
}

.w10 {
  width: 10%;
}

.w30 {
  width: 30%;
}

.w34 {
  width: 34%;
}

.w40 {
  width: 40%;
}

.w48 {
  width: 48%;
}

.w50 {
  width: 50%;
}

.w55 {
  width: 55%;
}

.w60 {
  width: 60%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

.mb05 {
  margin-bottom: calc(var(--fScale) * 0.5vw);
}

.mb1 {
  margin-bottom: calc(var(--fScale) * 1vw);
}

.mb2 {
  margin-bottom: calc(var(--fScale) * 2vw);
}

.mb3 {
  margin-bottom: calc(var(--fScale) * 3vw);
}

.mb4 {
  margin-bottom: calc(var(--fScale) * 4vw);
}

.mb5 {
  margin-bottom: calc(var(--fScale) * 5vw);
}

.mb6 {
  margin-bottom: calc(var(--fScale) * 6vw);
}

.mb8 {
  margin-bottom: calc(var(--fScale) * 8vw);
}

.mb10 {
  margin-bottom: calc(var(--fScale) * 10vw);
}

.mb-2 {
  margin-bottom: calc(var(--fScale) * -2vw);
}

.ml1 {
  margin-left: calc(var(--fScale) * 1vw);
}

.ml5 {
  margin-left: calc(var(--fScale) * 5vw);
}

.mr1 {
  margin-right: calc(var(--fScale) * 1vw);
}

.mr2 {
  margin-right: calc(var(--fScale) * 2vw);
}

.mt-2 {
  margin-top: calc(var(--fScale) * -2vw);
}

.mt-4 {
  margin-top: calc(var(--fScale) * -4vw);
}

.mt1 {
  margin-top: calc(var(--fScale) * 1vw);
}

.mt2 {
  margin-top: calc(var(--fScale) * 2vw);
}

.mt3 {
  margin-top: 3vw;
}

.mt4 {
  margin-top: calc(var(--fScale) * 4vw);
}

.mt5 {
  margin-top: 5vw;
}

.mt8 {
  margin-top: calc(var(--fScale) * 8vw);
}

.mt10 {
  margin-top: calc(var(--fScale) * 10vw);
}

.mt11 {
  margin-top: calc(var(--fScale) * 11vw);
}

.mt12 {
  margin-top: calc(var(--fScale) * 12vw);
}

.mt13 {
  margin-top: calc(var(--fScale) * 13vw);
}

.mt14 {
  margin-top: calc(var(--fScale) * 14vw);
}

.mt15 {
  margin-top: calc(var(--fScale) * 15vw);
}

.pb6 {
  padding-bottom: 6vw;
}

.pl3 {
  padding-left: 3vw;
}

.plr3 {
  padding-left: 3vw;
  padding-right: 3vw;
}

.pr3 {
  padding-right: 3vw;
}

.pr5 {
  padding-right: calc(var(--fScale) * 5vw);
}

.pt5 {
  padding-top: 5vw;
}

.pt6 {
  padding-top: 6vw;
}

.pt7 {
  padding-top: 7vw;
}

.pt8 {
  padding-top: calc(var(--fScale) * 8vw);
}

.pt10 {
  padding-top: calc(var(--fScale) * 10vw);
}

.pt11 {
  padding-top: calc(var(--fScale) * 11vw);
}

.pt12 {
  padding-top: calc(var(--fScale) * 12vw);
}

.pageMargin {
  margin: 0 5vw;
}

/* urbanist-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/urbanist-v15-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* urbanist-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Urbanist";
  font-style: normal;
  font-weight: 500;
  src: url("../assets/fonts/urbanist-v15-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
#menutext {
  color: #fff;
  text-align: center;
  width: 100%;
  margin-top: 3vw;
}

#menu {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
}

#menuBg {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(var(--fScale) * 10vw);
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

.scrolled #menuBg {
  background-color: rgba(43, 25, 60, 0.5019607843);
  box-shadow: rgba(0, 0, 5, 0.45) 0 calc(var(--fScale) * 1vw) calc(var(--fScale) * 2.5vw) 0;
  -webkit-backdrop-filter: blur(calc(var(--fScale) * 0.5vw));
          backdrop-filter: blur(calc(var(--fScale) * 0.5vw));
}

#menu.row {
  flex-wrap: unset;
}

#menuLogoSvg {
  position: fixed;
  top: calc(var(--fScale) * 4vw);
  left: calc(var(--fScale) * 5vw);
  float: left;
  height: calc(var(--fScale) * 3.2vw);
  z-index: 1000;
}

.scrolled #menuLogoSvg {
  top: calc(var(--fScale) * 3.6vw);
}

#menuBurgerSvg {
  position: absolute;
  top: calc(var(--fScale) * 4.4vw);
  right: calc(var(--fScale) * 5vw);
  height: calc(var(--fScale) * 2.4vw);
  cursor: pointer;
  z-index: 1000;
}

.menuBurgerPath {
  stroke: #fff;
}

.headerFacts .logoSt0 {
  fill: #2b193c;
}
.headerFacts .menuBurgerPath {
  stroke: #2b193c;
}

.strokeWhite {
  stroke: #fff !important;
}

.fillWhite {
  fill: #fff !important;
}

.fillCoUiLight {
  fill: #e19be5 !important;
}

.scrolled #menuBurgerSvg {
  top: calc(var(--fScale) * 4vw);
}

#menuModal {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2b193c;
  padding: calc(var(--fScale) * 5vw) calc(var(--fScale) * 5vw);
  z-index: 100;
}

#menuModalLogo {
  height: calc(var(--fScale) * 15vw);
}

#menuModalContent {
  font-size: 125%;
}

#menuModalContent li {
  list-style-type: none;
  margin-bottom: calc(var(--fScale) * 0.5vw);
}

.menuList .big {
  font-size: 225%;
  line-height: 140%;
}

.insta,
.x {
  height: calc(var(--fScale) * 3vw);
  fill: #e19be5;
  margin-right: calc(var(--fScale) * 1vw);
  cursor: pointer;
}

.menuLink {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.menuLink:hover,
.menuLink:visited {
  color: #fff;
}

.banner {
  display: flex;
  align-items: center;
  width: 100vw;
  height: 56.25vw;
}

.bannerVideo {
  width: 100%;
  margin-top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  filter: brightness(20%) saturate(90%) hue-rotate(228deg) brightness(86%) contrast(97%);
  /*
     -webkit-filter: blur(10px);
     -moz-filter: blur(10px);
     -o-filter: blur(10px);
     -ms-filter: blur(10px);
     filter: blur(10px);
  */
}

.bannerHeadline {
  position: absolute;
  top: calc(var(--fScale) * -5vw);
  line-height: calc(var(--fScale) * 12vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  width: 100%;
  font-size: 400%;
  z-index: 1;
}

.bannerHeadline div {
  margin: auto;
}

.bannerHeadline .big {
  font-size: 225%;
  color: #e19be5;
}

.pageProduct .hero {
  height: 54vw;
  overflow: hidden;
}
.pageProduct .heroHeadline {
  position: absolute;
  top: 34vw;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  font-size: 140%;
  z-index: 1;
}
.pageProduct .heroHeadline h1 {
  font-size: 250%;
  color: #fff;
}
.pageProduct .heroHeadline h3 {
  color: #fff;
}
.pageProduct .burns {
  width: 100vw;
  height: 54vw;
  transform: scale(3) translateY(3vw);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s linear;
  transform-origin: 50% 45%;
  animation: burnsZoom 64s infinite;
}
@keyframes burnsZoom {
  0% {
    transform: scale(3) translateY(0%);
  }
  50% {
    transform: scale(2) translateY(10%);
  }
  100% {
    transform: scale(3) translateY(0%);
  }
}

.pageAbout .hero {
  height: 40vw;
  overflow: hidden;
}
.pageAbout .burns {
  width: 100vw;
  height: 40vw;
  transform: scale(1.5) translateX(5%) translateY(10%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s linear;
  transform-origin: 50% 45%;
  animation: burnsZoom 64s infinite;
}
@keyframes burnsZoom {
  0% {
    transform: scale(1.5) translateX(5%) translateY(10%);
  }
  50% {
    transform: scale(1) translateX(0%) translateY(0%);
  }
  100% {
    transform: scale(1.5) translateX(5%) translateY(10%);
  }
}
.pageAbout .vision {
  padding: 5vw 5vw 6vw 5vw;
  width: 100%;
  text-align: center;
  background-color: #f5f5f5;
}
.pageAbout .vision .column60 {
  margin: auto;
}
.pageAbout .team {
  background-color: #fff;
  padding: 6vw 25vw 3vw 25vw;
}
.pageAbout .team .photo {
  border-radius: 50%;
  width: 100%;
}
.pageAbout .team h2 {
  font-size: 150%;
  color: #2b193c;
}
.pageAbout .team h3 {
  font-size: 120%;
  margin-bottom: 3vw;
  text-transform: unset;
  color: #e19be5;
}
.pageAbout .team .members {
  font-size: 80%;
}
.pageAbout .team .members img {
  width: 80%;
  margin-bottom: 1vw;
}
.pageAbout .milestones {
  color: #666669;
  background-color: #fff;
  padding: 5vw 5vw 6vw 5vw;
}
.pageAbout .milestones .header {
  font-size: 120%;
  margin-bottom: 4vw !important;
  justify-content: center;
}
.pageAbout .milestones img {
  height: 12vw;
}
.pageAbout .milestones .borderRight {
  border-right: calc(var(--iLarge) * 0.5px) solid #e19be5;
}
.pageAbout .milestones .dotted {
  border-right-width: calc(var(--iLarge) * 1px);
  border-style: dashed;
}
.pageAbout h2,
.pageAbout h3 {
  color: #2b193c;
}

.press {
  background-color: #f5f5f5;
  padding: 2vw 5vw 2.5vw 5vw;
}
.press img {
  width: 70vw;
}

.pageImprint h3,
.pagePrivacy h3 {
  text-transform: unset;
  margin-top: 2vw;
}

.textIntroCenter {
  width: 100%;
  padding: 15vw 0 10vw 0;
  margin: auto;
  font-size: 150%;
}

.text-w-greenloop {
  padding: 5vw;
  color: #666669;
}
.text-w-greenloop .column30 {
  padding-left: 4vw;
  font-size: 130%;
}
.text-w-greenloop .column {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.text-w-greenloop {
  justify-content: space-evenly !important;
}

.text-on-pic {
  width: calc(var(--fScale) * 45vw);
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color: #fff;
}
.text-on-pic.right {
  right: 20vw;
}
.text-on-pic.left {
  left: 20vw;
}
.text-on-pic .big {
  font-size: 400%;
  line-height: 90%;
}

#plants {
  position: relative;
  height: calc(69vw + var(--fScale) * 18vw);
}
#plants .pics {
  position: absolute;
  top: calc(var(--fScale) * 20vw);
}
#plants .plant {
  width: 25vw;
  position: absolute;
}
#plants .plant img {
  width: 100%;
}
#plants .plant.minze {
  top: 0vw;
  left: 60vw;
}
#plants .plant.thai-basilikum {
  top: 5vw;
  left: 20vw;
}
#plants .plant.lollo-rosso {
  top: 20vw;
  left: 45vw;
}
#plants .plant.romana {
  top: 30vw;
  left: 10vw;
}
#plants .plant.rucola {
  top: 35vw;
  left: 65vw;
}
#plants .plant.basilikum-genovese {
  top: 45vw;
  left: 35vw;
}

#factsTeaser {
  position: relative;
  padding: 6vw 12vw 0 12vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
#factsTeaser img {
  width: 22vw;
}
#factsTeaser .text {
  position: relative;
  color: #fff;
}
#factsTeaser p {
  padding-bottom: calc(var(--fScale) * 2vw);
  border-bottom: 1px solid #e19be5;
  width: calc(var(--fScale) * 50vw);
}
#factsTeaser .noborder {
  border-bottom: unset;
}

#factsLoop {
  position: relative;
  padding: 6vw 5vw 4vw 5vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
#factsLoop img {
  width: 32vw;
  margin-left: 2vw;
}
#factsLoop .text {
  position: relative;
  color: #fff;
}
#factsLoop p {
  padding-bottom: calc(var(--fScale) * 2vw);
  border-bottom: 1px solid #e19be5;
  width: calc(var(--fScale) * 50vw);
}
#factsLoop .noborder {
  border-bottom: unset;
}

#sectionIcons {
  position: relative;
  background-color: #f5f5f5;
  padding: calc(var(--fScale) * 5vw) calc(var(--fScale) * 18vw);
  -webkit-hyphens: none;
          hyphens: none;
}
#sectionIcons img {
  height: calc(var(--fScale) * 6vw);
  margin-bottom: calc(var(--fScale) * 2vw);
}
#sectionIcons .lineRight {
  border-right: 1px solid #e19be5;
}

.factsTables {
  background-color: #fff;
  width: 100%;
  padding-bottom: 6vw;
}
.factsTables h2 {
  text-align: center;
  margin-bottom: 3vw;
}

button {
  padding: calc(var(--fScale) * 3vw * 0.5) calc(var(--fScale) * 3vw * 1.5);
  border-radius: calc(var(--fScale) * 3vw * 1.5);
}

.buttonLight {
  background-color: #e19be5;
  color: #f5f5f5;
  margin-top: 25px;
  margin-bottom: 43px;
}

.buttonDark {
  background-color: #2b193c;
  color: #fff;
}

.jump-top {
  margin-bottom: calc(var(--fScale) * 4vw);
}

#dimmer {
  position: fixed;
  background-color: rgba(0, 20, 32, 0.6);
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: none;
}

input::-moz-placeholder {
  font-weight: 500;
}

input::placeholder {
  font-weight: 500;
}

textarea::-moz-placeholder {
  font-weight: 500;
}

textarea::placeholder {
  font-weight: 500;
}

.dialog-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--fScale) * 3vw);
  border-top-left-radius: calc(var(--fScale) * 1.25vw);
  border-top-right-radius: calc(var(--fScale) * 1.25vw);
  background-color: #dcf0ff;
}

.dialog-header-text {
  position: absolute;
  left: calc(var(--fScale) * 1.5vw);
  top: calc(var(--fScale) * 0.2vw);
}

#submit {
  margin-top: calc(var(--fScale) * 0.5vw);
  font-weight: 500;
  color: #668;
  background-color: #dcf0ff;
  box-shadow: none;
  cursor: pointer;
}

#footer {
  background-color: #2b193c;
  padding: calc(var(--fScale) * 4vw) calc(var(--fScale) * 7vw) calc(var(--fScale) * 5vw) calc(var(--fScale) * 7vw);
}

#footerLogoMenu {
  width: calc(var(--fScale) * 45vw);
}

#footerLogo {
  height: calc(var(--fScale) * 2.4vw);
}

#footer .insta,
#footer .x {
  height: calc(var(--fScale) * 2vw);
}

#footer .vline {
  height: calc(var(--fScale) * 9vw);
  border-left: 1px solid #e19be5;
}

.menuFooterList li {
  list-style-type: none;
  line-height: calc(var(--fScale) * 3vw * 1.5);
}

.registration-form-container,
.login-form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  justify-content: flex-start;
}

.registration-form-container,
.login-form-container {
  width: 100%;
  padding: 0;
  margin: 0;
}

.registration-form {
  max-width: 20vw; /* Set a maximum width for the form */
}

.login-form h2,
.registration-form h2 {
  color: #e19be5;
  font-size: 25px;
  display: flex;
  text-align: center;
  justify-content: center;
  margin-bottom: 40px;
}

.registration-form label,
.login-form label {
  display: block;
  margin-bottom: 5px;
}

.registration-form input[type=text],
.registration-form input[type=email],
.registration-form input[type=password],
.login-form input[type=text],
.login-form input[type=email],
.login-form input[type=password] {
  width: 100%;
  padding: 15px 10px;
  margin-bottom: 10px;
  border: none;
  box-sizing: border-box;
  border-radius: 0px;
}

.registration-form button[type=submit],
.login-form button[type=submit] {
  width: 50%;
  padding: 10px;
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
  background-color: #e19be5;
  color: white;
  display: block;
  margin: 20px auto;
}

.styled-hr {
  width: 100%;
  border: 0;
  height: 1px;
  background-color: #e19be5;
  margin-top: 30px;
  margin-bottom: 30px;
}

.registration-form .social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 40vw;
}

.registration-form .social-buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #fff;
  border: none;
  border-radius: 0px;
  color: #2c2632;
  cursor: pointer;
}

.registration-form .social-buttons button img {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.tank-status {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-between;
  color: #666669;
}
.tank-status .percentage {
  position: relative;
  top: 0;
  font-size: 220%;
  font-weight: 500;
}

.light-status {
  color: #fff;
}

#image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  :root {
    --fScale: 1.2;
    --iLarge: 1;
  }
  body {
    overflow: hidden;
  }
  .tileGrid .tile img {
    height: 8vw;
  }
  .stats {
    margin: 0 5px 20px 5px;
  }
  .tileGrid,
  .tileGrid2 {
    gap: 10px !important;
  }
  .tileGrid2 .tile3,
  .tileGrid2 .tile4 {
    margin-top: -20px !important;
  }
  .tileGrid .tile1,
  .tileGrid .tile2 {
    width: 87vw;
    height: 31vw;
    cursor: pointer;
  }
  .text-container {
    margin-top: 25px !important;
  }
  .tileGrid .tile3,
  .tileGrid .tile5,
  .tileGrid .tile6 {
    height: 32vw;
    width: 42vw;
    cursor: pointer;
  }
  .tileGrid .tile4 {
    height: 67vw;
    width: 42vw;
  }
  .text-container {
    margin-top: 35px;
  }
  #tankGraph,
  .graph-labels,
  .tank-graph {
    width: 80vw !important;
    height: 45vw !important;
  }
  .light-graph-labels,
  .light-graph,
  #lightGraph {
    width: 75vw !important;
    height: 50vw !important;
  }
  .stats .divider,
  .light-stats .divider {
    top: 50%;
    left: 0%;
    right: 0%;
    height: 2px;
  }
  .stats,
  .light-stats {
    justify-content: space-between;
  }
  .time-selector {
    width: 80vw;
  }
  .profile-form h2,
  .login-form h2 {
    font-size: 20px !important;
  }
  .profile-form,
  .login-form {
    width: 80%;
  }
  .profile-button-bottom,
  .bottomLight {
    width: 60vw;
  }
  .light-button {
    width: 60vw;
  }
  .user-management h2 {
    font-size: 20px !important;
  }
  .user-list {
    width: 85% !important;
  }
  .dropdown-menu,
  .admin-select-container {
    width: 92% !important;
  }
  .dropdown {
    width: 100% !important;
  }
  .head-text {
    margin-bottom: 20px !important;
  }
  .open-valve {
    width: 50vw;
  }
  .recalibrate {
    width: 50vw;
  }
  .remote-call-section {
    width: 95vw;
  }
  .remote-call-section__console-display {
    height: 167px !important;
  }
  .remote-call-section__title {
    font-size: 20px !important;
    margin-top: 30px !important;
  }
  .stats :nth-child(3) {
    margin-right: 15px;
  }
  .arrow img {
    padding-top: 2px !important;
    width: 5vw;
    height: 5vw;
  }
  .remote-call-button,
  .dissconect,
  .logout {
    width: 60vw !important;
  }
  #email,
  .email-placeholder {
    font-size: 16px;
  }
  #email::-moz-placeholder, .email-placeholder::-moz-placeholder {
    font-size: 16px;
  }
  #email::placeholder,
  .email-placeholder::placeholder {
    font-size: 16px;
  }
}
@media screen and (min-width: 769px) {
  :root {
    --fScale: 0.9;
  }
  .tileGrid .tile img {
    height: 8vw;
  }
  .tileGrid .tile1,
  .tileGrid .tile2 {
    width: 87vw;
    height: 25vw;
    cursor: pointer;
  }
  .tileGrid .tile3,
  .tileGrid .tile5,
  .tileGrid .tile6 {
    height: 27vw;
    width: 43vw;
    cursor: pointer;
  }
  .tileGrid .tile4 {
    height: 56vw;
    width: 43vw;
  }
  .text-container {
    margin-top: 40px;
  }
  #tankGraph,
  .graph-labels,
  .tank-graph,
  .light-graph,
  .graph-labels {
    width: 60vw !important;
    height: 30vw !important;
  }
  .stats,
  .light-stats {
    justify-content: space-around;
  }
  .stats .divider,
  .light-stats .divider {
    top: 50%;
    left: 14%;
    right: 14%;
    height: 2px;
  }
  .light-stats :nth-child(1) {
    margin-left: 40px;
  }
  .light-stats :nth-child(3) {
    margin-right: 40px;
  }
  .time-selector {
    width: 60vw;
  }
  .remote-call-section__console-display {
    height: 25vh !important;
  }
  .remote-call-section {
    width: 60vw;
  }
  .remote-call-section__title {
    font-size: 20px !important;
  }
  .arrow img {
    width: 3vw;
    height: 3vw;
  }
  .profile-form,
  .login-form {
    width: 40vw;
  }
  .remote-call-button,
  .dissconect,
  .logout {
    width: 40vw !important;
  }
  #email,
  .email-placeholder {
    font-size: 14px;
  }
  #email::-moz-placeholder, .email-placeholder::-moz-placeholder {
    font-size: 14px;
  }
  #email::placeholder,
  .email-placeholder::placeholder {
    font-size: 14px;
  }
}
@media screen and (min-width: 1025px) {
  :root {
    --fScale: 0.6;
  }
  .tileGrid .tile img {
    height: 5vw;
  }
  .tileGrid .tile1,
  .tileGrid .tile2 {
    width: 61vw;
    height: 15vw;
    cursor: pointer;
  }
  .tileGrid .tile3,
  .tileGrid .tile5,
  .tileGrid .tile6 {
    height: 15vw;
    width: 30vw;
    cursor: pointer;
  }
  .tileGrid .tile4 {
    height: 31vw;
    width: 30vw;
  }
  .text-container {
    margin-top: 10px;
  }
  #tankGraph,
  .graph-labels,
  .tank-graph,
  .light-graph-labels,
  .light-graph {
    width: 60vw !important;
    height: 30vw !important;
  }
  .stats,
  .light-stats {
    justify-content: space-around;
  }
  .stats :nth-child(1) {
    margin-right: 100px;
  }
  .stats :nth-child(3) {
    margin-left: 100px;
  }
  .light-stats :nth-child(1) {
    margin-right: 50px;
  }
  .light-stats :nth-child(3) {
    margin-left: 50px;
  }
  .stats .divider,
  .light-stats .divider {
    top: 50%;
    left: 14%;
    right: 14%;
    height: 2px;
  }
  .time-selector {
    width: 60vw;
  }
  .profile-form,
  .login-form {
    width: 35vw;
  }
  .profile-button-bottom,
  .bottomLight {
    width: 15vw;
  }
  .remote-call-section {
    width: 50vw;
  }
  .remote-call-section__title {
    font-size: 30px !important;
  }
  .remote-call-section__console-display {
    height: 25vh !important;
  }
  .arrow img {
    width: 2.5vw;
    height: 2.5vw;
  }
  .remote-call-button,
  .dissconect,
  .logout {
    width: 15vw !important;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --fScale: 0.45;
  }
  .tileGrid {
    gap: calc(var(--fScale) * 2vw);
    padding: calc(var(--fScale) * 2vw);
    margin: calc(var(--fScale) * 2vw);
  }
  .tileGrid .tile1,
  .tileGrid .tile2 {
    width: 42vw;
    height: 12vw;
  }
  .tileGrid .tile3,
  .tileGrid .tile5,
  .tileGrid .tile6 {
    height: 12vw;
    width: 20vw;
  }
  .tileGrid .tile4 {
    height: 25vw;
    width: 20vw;
  }
  .text-container {
    margin-top: calc(var(--fScale) * 3vw);
  }
}
@media screen and (min-width: 1506px) {
  :root {
    --fScale: 0.34;
  }
  .tileGrid .tile img {
    height: 2vw;
  }
  .tileGrid {
    padding: calc(var(--fScale) * 1vw);
    margin: calc(var(--fScale) * 1vw);
  }
  .tileGrid .tile1,
  .tileGrid .tile2 {
    width: 39vw;
    height: 8vw;
  }
  .tileGrid .tile3,
  .tileGrid .tile5,
  .tileGrid .tile6 {
    height: 8vw;
    width: 19vw;
  }
  .tileGrid .tile4 {
    height: 17vw;
    width: 19vw;
  }
  #tankGraph,
  .graph-labels,
  .tank-graph,
  #lightGraph,
  .light-graph-labels,
  .light-graph {
    width: 50vw !important;
    height: 40vh !important;
  }
  .stats,
  .light-stats {
    justify-content: space-around;
  }
  .text-container {
    margin-top: 25px;
  }
  .light-stats :nth-child(1) {
    margin-left: 70px;
  }
  .light-stats :nth-child(3) {
    margin-right: 70px;
  }
  .stats :nth-child(1) {
    margin-right: 0px;
  }
  .stats :nth-child(3) {
    margin-left: 15px;
  }
  .stats .divider,
  .light-stats .divider {
    top: 50%;
    left: 20%;
    right: 20%;
    height: 2px;
  }
  .time-selector {
    width: 50vw;
  }
  .profile-form,
  .login-form {
    width: 25vw;
  }
  .profile-button-bottom,
  .bottomLight {
    width: 15vw;
  }
  .profile-form h2 {
    margin-bottom: 80px !important;
  }
  .light-button {
    width: 15vw;
  }
  .remote-call-section {
    width: 50vw;
  }
  .remote-call-section__console-display {
    height: 30vh !important;
  }
  .invite-button {
    width: 20vw !important;
  }
  .arrow img {
    width: 2vw;
    height: 2vw;
  }
  .remote-call-button,
  .dissconect,
  .logout {
    width: 15vw !important;
  }
}
.tileGrid {
  display: grid;
  gap: 1vw;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto repeat(2, 1fr);
  justify-items: center;
  align-items: center;
  font-size: 125%;
  align-items: center;
}

.tile {
  border-radius: calc(var(--fScale) * 3vw);
  padding: calc(var(--fScale) * 4vw);
  overflow: hidden;
  background-color: #fff;
  color: #666669;
}
.tile img {
  height: 8vw;
}

.tile2 {
  background-color: #e19be5;
}

.tile1,
.tile2,
.tile3,
.tile4,
.tile5,
.tile6 {
  cursor: pointer;
}

.tileGrid2 {
  display: grid;
  gap: 1vw;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  grid-area: 3/1/5/3;
}

.tileGrid .tile1 {
  grid-area: 1/1/2/3;
}

.tileGrid .tile2 {
  grid-area: 2/1/3/3;
}

.tileGrid2 .tile3 {
  grid-area: 3/1/4/2;
  margin-top: -2vw;
}

.tileGrid2 .tile4 {
  grid-area: 3/2/5/3;
  margin-top: -2vw;
}

.tileGrid2 .tile5 {
  grid-area: 4/1/5/2;
}

.text-container {
  display: flex;
  color: #666669;
}

/*
.menu-item {
  background-color: #ffffff;
  color: #3a1b59;
  padding: 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.menu-item .text-container {
  display: flex;
  width: 100%;
  color: #666669;
  font-weight: 500;
  font-size: 24px;
  margin-top: 0px;
}
.menu-item:hover {
  background-color: #cccccc;
}
.menu-item img {
  width: 30px;
  height: auto;
  margin-bottom: 40px;
}
.menu-item h3 {
  color: grey;
}
*/
.tank-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tank-header {
  margin: 0px 50px 45px 50px;
  color: #e19be5;
  font-size: 20px;
}

.tank-down {
  margin-top: 30px;
}

.stats {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  width: 85%;
  margin: 0 auto 20px auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 5px;
}

.stat .value {
  font-size: 30px;
  position: relative;
}

.stats .stat p {
  margin: 5px 0;
  font-size: 16px;
}

.stats .divider {
  position: absolute;
  height: 1px;
  background: #e19be5;
  transform: translateY(-50%);
}

.tank-graph {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 50vh;
  width: 100%;
  margin: 25px auto 20px auto;
}

.graph canvas {
  display: flex;
  justify-content: center;
  align-items: center;
}

.graph-labels {
  position: absolute;
  width: 100%;
  height: 100%;
}

.graph-labels .top-left {
  position: absolute;
  top: -14px;
  left: 1px;
  background-color: #2b193c;
  color: #e56be7;
  font-size: 16px;
  font-weight: 500;
}

.graph-labels .bottom-right {
  position: absolute;
  bottom: -14px;
  right: 1px;
  background-color: #2b193c;
  color: #e56be7;
  font-size: 16px;
  font-weight: 500;
}

.tank-button {
  margin-top: 25px;
  padding: 10px 30px;
  background-color: #e19be5;
  border: none;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  width: auto;
  min-width: 300px;
  text-align: center;
}

/*Tank Settings Page*/
.tankSettings-container {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.tank-settings-content {
  width: 100%;
  max-width: 600px;
  padding: 0 2.5rem 2.5rem 2.5rem;
  color: white;
  text-align: center;
}

.head-text {
  color: #e19be5;
  margin-bottom: 50px;
}

.info {
  margin-bottom: 1rem;
}

.info h2 {
  font-size: 2rem;
  color: #ffffff;
  display: flex;
}

.tank-settings-text {
  display: flex;
  margin-bottom: 3px;
  font-size: 15px;
}

.tank-small-text {
  font-size: 15px;
}

.tank-big-text {
  font-size: 30px;
}

hr {
  border: none;
  border-bottom: 1px solid #e19be5;
  margin: 0;
}

.raw-values {
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
}

.maintenance {
  margin-top: 50px;
  margin-bottom: 30px;
}

.maintenance p {
  display: flex;
  color: #ffffff;
  font-size: 15px;
}

.maintenance .text-big {
  font-size: 20px;
  font-weight: 300;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

button {
  width: 50%;
  padding: 10px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
}

.open-valve {
  background-color: #e19be5;
  color: white;
  font-size: 18px;
}

.recalibrate {
  background-color: transparent;
  color: #e19be5;
  border: 1px solid #e19be5;
  font-size: 18px;
}

/*Light Page*/
.light-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 70px;
}

.light-header {
  margin: 0px 50px 43px 50px;
  color: #e19be5;
  font-size: 20px;
}

.light-stats {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  width: 85%;
  margin: 0 auto 20px auto;
}

.stat {
  text-align: center;
  margin-top: 5px;
}

.stat .value {
  font-size: 30px;
  position: relative;
}

.light-stats .stat p {
  margin: 5px 0;
}

.light-stats .divider {
  position: absolute;
  background: #e19be5;
  height: 1px;
  transform: translateY(-50%);
}

.light-graph {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 25vw;
  width: 50vw;
  max-width: 70vw;
  margin: 25px auto 20px auto;
}

.light-graph canvas {
  display: flex;
  justify-content: center;
  align-items: center;
}

.light-graph-labels {
  position: absolute;
  width: 100%;
  height: 100%;
}

.light-graph-labels .top-left {
  position: absolute;
  top: -14px;
  left: 1px;
  background-color: #2b193c;
  color: #e56be7;
  font-size: 16px;
  font-weight: 500;
}

.light-graph-labels .bottom-right {
  position: absolute;
  bottom: -14px;
  right: 1px;
  background-color: #2b193c;
  color: #e56be7;
  font-size: 16px;
  font-weight: 500;
}

.light-button {
  padding: 10px 20px;
  background-color: #e19be5;
  border: none;
  border-radius: 20px;
  color: white;
  cursor: pointer;
}

.light-down {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.time-selector {
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 1px;
  margin: 10px 0;
  color: #2c223a;
  font-size: 20px;
}

.time-selector .arrow {
  background-color: transparent;
  border: none;
  color: #d992f2;
  cursor: pointer;
  flex: 0 0 30px;
  padding: 0;
  margin: 0;
  font-size: 24px;
  font-weight: lighter;
}

.arrow img {
  color: #d992f2;
  padding-top: 5px;
}

.time-selector .time {
  flex: 3;
  text-align: center;
  font-size: 1.2rem;
  color: #d992f2;
}

.time-selector .label {
  text-align: center;
  font-size: 1.2rem;
  color: #2c223a;
  font-weight: 500;
}

.light-button {
  padding: 7px 20px;
  background-color: #e19be5;
  border: none;
  border-radius: 20px;
  color: white;
  cursor: pointer;
  margin-top: 60px;
}

.profile-container {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  width: 100%;
}

.profile-form h2 {
  color: #e19be5;
  font-size: 30px;
  display: flex;
  text-align: center;
  justify-content: center;
  margin-bottom: 50px;
}

.profile-form label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
}

.profile-form input[type=text],
.profile-form input[type=email] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #2c223a;
  border-radius: 0px;
}

.profile-container .logout {
  width: 100%;
  padding: 10px;
  border: none;
}

.profile-container .remote-call-button {
  width: 100%;
  padding: 10px;
  border: none;
  cursor: pointer;
  background-color: #e19be5;
  color: white;
  display: block;
  margin: 20px auto;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
}

.profile-container .dissconect {
  width: 100%;
  padding: 10px;
  border: none;
  cursor: pointer;
  background-color: #e19be5;
  color: white;
  display: block;
  margin: 20px auto;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
}

.profile-container .dissconect,
.profile-container .remote-call-button {
  background-color: #e19be5;
  color: #ffffff;
  border: none;
}

.profile-container .logout {
  background-color: #2b193c;
  color: #e19be5;
  border: 1px solid #e19be5;
}

.profile-button-bottom {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.profile-button-bottom .remote-call-button,
.profile-button-bottom .dissconect,
.profile-button-bottom .logout {
  width: 15vw;
  margin: 10px auto;
}

.input-container {
  position: relative;
}

.input-container input {
  width: 100%;
  background-color: white;
}

.edit-link {
  position: absolute;
  right: 0px;
  bottom: -10px;
  color: white;
  font-size: 14px;
  text-decoration: underline;
}

/*User Management Page*/
.user-management {
  margin-bottom: 70px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.user-list {
  flex: 1;
  padding: calc(var(--fScale) * 2vw) 0;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.user-management h2 {
  color: #e19be5;
  font-size: 30px;
  display: flex;
  text-align: center;
  justify-content: center;
  margin-bottom: 24px;
}

.dropdown-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.dropdown-menu label {
  margin-bottom: 5px;
  color: #fefefe;
  font-size: 20px;
}

.dropdown {
  display: flex;
  border-radius: 0px;
  height: 40px;
  padding: 10px;
  position: relative;
  background-color: white;
  color: black;
  font-size: 16px;
}

.dropdown::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  background-color: #c389c9; /* Custom arrow color */
  clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  transform: translateY(-50%);
  pointer-events: none;
}

.admin-select-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.list-title {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px;
  color: #fefefe;
  font-size: 20px;
}

.user-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 5px 3px 0px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 4px;
}

.user-name {
  margin-right: 3px;
  padding: 0 3px;
}

.user-role {
  font-size: 13px;
  color: #ccc;
  padding: 0 3px;
}

.remove-btn {
  background-color: transparent;
  padding: 0;
  margin: 0;
  color: white;
  font-size: 20px;
  cursor: pointer;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.remove-btn .remove-icon {
  width: 15px;
  height: 15px;
}

.invite-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.invite-container label {
  display: flex;
}
.invite-container p {
  display: flex;
  margin-top: 35px;
  margin-bottom: 5px;
  font-size: calc(var(--fScale) * 3vw);
}
.invite-container input {
  width: 100%;
  padding: 10px;
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
  background-color: #ffffff;
  font-size: 17px;
  display: block;
  margin: 15px auto;
}

.invite-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px auto 25px auto; /* Centers the button horizontally */
  background-color: #e19be5;
  color: white;
  font-size: 18px;
  width: 35vw;
  padding: 9px 10px;
}

/*Remote Procedure Call Page*/
.remote-call-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.remote-call-section {
  /* Container width set to 50% of viewport width */
  padding: 0 30px;
  background-color: #2b193c; /* Dark purple background */
  border-radius: 10px;
  text-align: center;
}

.remote-call-section__title {
  font-size: 30px;
  color: #e19be5;
  display: flex;
  justify-content: center;
  margin: 50px 0;
}

.remote-call-section__output-title,
.remote-call-section__input-title {
  font-size: 20px; /* Larger font size for the console labels */
  color: #fff;
  display: block;
  margin-bottom: 10px;
  text-align: left;
}

.remote-call-section__console-display {
  width: 100%;
  height: 40vh;
  background-color: #d1d0d0;
  padding: 15px;
  resize: none;
  border-radius: 0px;
  font-size: 16px;
  color: #000;
  border: none;
  overflow-y: auto;
  margin-bottom: 20px;
}

.remote-call-section__console-input {
  margin-bottom: 30px; /* Space between input and button */
}

.remote-call-section__input-field {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 0px;
  border: none;
  background-color: #fff;
  color: #000;
  box-sizing: border-box;
}

.remote-call-section__button {
  width: 150px;
  padding: 10px 15px;
  background-color: #d992f2;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.remote-call-section__button:hover {
  background-color: #c27dd8; /* Darker pink on hover */
}

.time-display {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  font-weight: normal;
}

.time-slider-container {
  width: 100%;
  margin: 20px auto;
  padding: 10px 0;
}

.time-slider {
  position: relative;
  width: 100%;
  height: 20px;
  background: #000;
  border-radius: 4px;
  min-height: 16px;
  margin-top: 80px;
  border: 1px solid gray;
}

.ambient-bar,
.grow-bar {
  position: absolute;
  height: 100%;
  top: 0;
  transition: all 0.2s ease;
  border-radius: 4px;
}

.ambient-bar {
  background: #fff;
}

.grow-bar {
  background: #e19be5;
}

.handle {
  position: absolute;
  width: 20px;
  height: auto;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.icon-handle {
  filter: brightness(1.2);
  transition: all 0.2s ease;
}

.grow-time-color {
  color: #e19be5;
}

#ambient-time {
  margin-right: 10px;
}

.light-stats .stat:first-child .value::after {
  content: "";
  position: absolute;
  right: -35px;
  top: 80%;
  width: 30px;
  height: 4px;
  background-color: #e19be5;
  transform: translateY(-50%);
}
.light-stats .stat:last-child .value::after {
  content: "";
  position: absolute;
  right: -35px;
  top: 80%;
  width: 30px;
  height: 1.5px;
  background-color: #e19be5;
  transform: translateY(-50%);
}

.email-placeholder::-moz-placeholder {
  font-size: 0.9vw;
}

.email-placeholder::placeholder {
  font-size: 0.9vw;
}

.remote-call-button,
.dissconect,
.logout {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  font-size: inherit;
}

.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input[type=password],
.password-wrapper input[type=text] {
  width: 100%;
  padding: 1rem 2rem 1rem 0.75rem;
  margin-bottom: 1rem;
  border: none;
  box-sizing: border-box;
  border-radius: 0px;
}

.password-wrapper .toggle-visibility {
  position: absolute;
  top: 38%;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.password-wrapper .toggle-visibility:hover {
  opacity: 1;
}/*# sourceMappingURL=greenloop.css.map */