/* line 1, ../../../Documents/GitHub/port2/public/style/scss.scss */
:root {
  --icon-size: 24px;
}

/* line 7, ../../../Documents/GitHub/port2/public/style/scss.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* line 15, ../../../Documents/GitHub/port2/public/style/scss.scss */
nav {
  z-index: 99999999999999999999;
  position: fixed;
  bottom: 3rem;
  right: 50%;
  transform: translate(50%);
  width: 350px;
  height: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 10px;
  padding: 0 15px;
  background: #110338;
  box-shadow: 0 6.7px 5.3px rgba(0, 0, 0, 0.12), 0 22.3px 17.9px rgba(0, 0, 0, 0.08), 0 100px 80px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* line 31, ../../../Documents/GitHub/port2/public/style/scss.scss */
nav ul {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 37, ../../../Documents/GitHub/port2/public/style/scss.scss */
nav ul li {
  list-style: none;
  width: var(--icon-size);
  height: var(--icon-size);
}

/* line 42, ../../../Documents/GitHub/port2/public/style/scss.scss */
nav ul li a {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* line 48, ../../../Documents/GitHub/port2/public/style/scss.scss */
nav ul li a svg {
  fill: #fff;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  transition: opacity 100ms ease;
  pointer-events: none;
}

/* line 58, ../../../Documents/GitHub/port2/public/style/scss.scss */
nav ul li a.active svg {
  opacity: 1;
}

/* line 66, ../../../Documents/GitHub/port2/public/style/scss.scss */
nav .tubelight {
  position: absolute;
  left: 0px;
  top: 0px;
  transform: translateX(-50%);
  width: 45px;
  height: 5px;
  border-radius: 5px;
  background: #ffffff;
  transition: left 400ms ease;
  z-index: 10;
}

/* line 78, ../../../Documents/GitHub/port2/public/style/scss.scss */
nav .tubelight .light-ray {
  left: -30%;
  top: 5px;
  width: 160%;
  height: 80px;
  clip-path: polygon(5% 100%, 25% 0px, 75% 0px, 95% 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) -50%, rgba(255, 255, 255, 0) 90%);
  pointer-events: none;
}

/* line 91, ../../../Documents/GitHub/port2/public/style/scss.scss */
.support {
  position: fixed;
  right: 10px;
  bottom: 10px;
  padding: 10px;
  display: flex;
}

/* line 98, ../../../Documents/GitHub/port2/public/style/scss.scss */
.support a {
  margin: 0 10px;
  color: #222;
  font-size: 1.8rem;
  backface-visibility: hidden;
  transition: all 150ms ease;
}

/* line 105, ../../../Documents/GitHub/port2/public/style/scss.scss */
.support a:hover {
  transform: scale(1.1);
}

/*# sourceMappingURL=scss.css.map */
.extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.button-container {
  display: flex;
  justify-content: flex-end;
}

.showMore, .showLess {
  color: #9f90ea;
  padding: 10px;
  display: inline-block;
}
