@import url("https://fonts.googleapis.com/css2family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  /* COLORS */

  /* UNIVERSAL HEIGHT/WIDTH */
  --nav-width: 78px;
  --nav-hover-width: 250px;
  --footer-height: 400px;
  --bullet-height: 33px;

  /* LOGIN FOOTER HEIGHT */
  --footer-login-height: 100px;

  /* BUTTONS */
  --buttonHeight: 50px;
  --buttonWidth: 75px;

  --resultHeight: 100px;

  /* MARGIN */
  --login-margin: 0.6rem;

  /* ROCKET ANIMATION */
  --rocket-animation-duration-1: 5000ms;
}

/*! UNIVERSAL HTML */
html {
  scroll-behavior: smooth;
}

/*! UNIVERSAL BODY */
body {
  background-color: #2f303b;

  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;

  overflow-x: hidden;
}

/*! UNIVERSAL * */
* {
  padding: 0;
  margin: 0;
}

/*! UNIVERSAL MAIN */
/* #region MAIN */
main {
  display: flex;
  flex-direction: column;

  overflow: hidden;

  min-height: calc(100vh - var(--footer-height));

  position: relative;

  background-color: #2f303b;
}
/* #endregion MAIN */
/* #region MAIN SECTION */
main > section {
  height: 100%;

  margin-left: var(--nav-width);

  background-color: #2f303b; /* #01c3ff hsl(164, 82%, 39%)  #e8f7dd */
}
/* #endregion MAIN SECTION */

/*! UNIVERSAL NAV */
/* #region NAV */
nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%;

  position: fixed;

  z-index: 1500;

  background-image: linear-gradient(to bottom, #262320, #21222d);

  user-select: none;
}

nav:hover {
  transition: 300ms;
  width: var(--nav-hover-width);
}

/** NAV CLASSES */
/*? Used in js */
.collaps {
  transition: 1000ms;

  width: var(--nav-width);
}

/*? Used in js */
.menuopen {
  width: var(--nav-hover-width);
}
.menuopen p {
  display: block;

  opacity: 1;
}

/*? Used in php */
.menuclosed {
  transition: 1000ms;
  width: var(--nav-width);
}
/* #endregion NAV */
/* #region NAV SECTION */
/*? Show Menu  */
nav section {
  display: flex;
  align-items: center;

  margin: 0.7rem 1.4rem;
}

/** SECTION CLASSES */
/*? Used on Div Section 2 */
.dashedBorder {
  border-top: 1px dashed #3e3e3d;
  border-bottom: 1px dashed #3e3e3d;
}
/* #endregion NAV SECTION */
/* #region NAV SECTION .LOGO */
.logo {
  display: flex;
  align-items: center;
  height: 62px;
}
nav:hover .logo {
  justify-content: flex-start;
}
/* #endregion NAV SECTION .LOGO */

/* #region NAV .DISPLAY-IMAGE-CENTER */

.display-image-center {
  height: 54px;
}
.display-image-center {
  height: 30px;
  width: 30px;

  padding: 0.1rem;

  display: flex;
  align-items: center;
}
/* #endregion NAV .DISPLAY-IMAGE-CENTER */

nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  width: 205px;
}

nav li {
  display: flex;
  align-items: end;

  height: 32px;
  width: 100%;

  margin: 0.7rem 0;
}

nav img {
  height: 30px;

  color: #6a6a6a;
}

nav,
nav a {
  color: #6a6a6a;
  text-decoration: none;
}

nav a {
  display: flex;
  align-items: center;

  width: 100%;

  border-radius: 10px;
}

nav a:hover {
  border-top: 2px solid #484948;

  color: #dbdbdb;
  background-color: #2c2c2c;

  opacity: 0;

  animation: textAnimation 50ms linear;

  animation-fill-mode: both;
}

nav a p {
  opacity: 0;
  display: none;
  margin-left: 0.3rem;
}

nav:hover a p {
  display: flex;
  animation: textAnimation 500ms linear;

  animation-fill-mode: both;
}
@keyframes textAnimation {
  to {
    opacity: 1;
  }
}

/* #region NAV SPAN .BULLETS */
nav span {
  display: flex;

  height: var(--bullet-height);
  width: 100%;

  background-color: #2a2b2e;
}

.bullet {
  display: flex;
  align-items: center;
  justify-content: center;

  height: var(--bullet-height);
  width: 75px;

  position: absolute;
}
.bullet div {
  height: 7px;
  width: 7px;

  margin: 0 0.15rem;

  border-radius: 50%;
}

.bullet div:nth-of-type(1) {
  background-color: #fe7235; /* #fd6058 */
}
.bullet div:nth-of-type(2) {
  background-color: #ffa835; /* #ffc12e */
}
.bullet div:nth-of-type(3) {
  background-color: #01c3ff; /* #28c942 */
}
.bullet div:nth-of-type(4) {
  background-color: #0077ff;
}
/* #endregion NAV SPAN .BULLET */

/* TODO NOT WORKING */
/*! SETTINGS.PHP */
/* #region SETTINGS */
input[type="checkbox"] {
  position: relative;
  width: 80px;
  height: 40px;
  -webkit-appearance: none;
  background: #c6c6c6;
  outline: none;
  border-radius: 20px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.5;
}

input:checked[type="checkbox"] {
  background: #03a9f4;
}

input[type="checkbox"]:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  top: 0;
  left: 0;
  background-color: #fff;
  transform: scale(1.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

input:checked[type="checkbox"]:before {
  left: 40px;
}
/* #endregion SETTINGS */
/* #region .LIGHTMODE */
.light-mode nav {
  background-image: linear-gradient(to bottom, #f0e4d7, #f0e4d7);
}

.light-mode .bullet,
.light-mode footer {
  background-color: #f0e4d7;
}

.light-mode main,
.light-mode main > section {
  background-color: white;
}
/* #endregion LIGHTMODE */

.active {
  color: #dbdbdb;
}

.imageGreyDisplay {
  display: none;
}

.imageWhite {
  display: none;
}

.imageWhiteDisplay {
  display: block;
}

a:hover .imageGrey {
  display: none;
}

a:hover .imageWhite {
  display: block;
}

.activeBorder {
  height: 30px;

  border-top: 2px solid #676767;

  background-color: #3b3b3b;
  border-radius: 10px;
  color: #dbdbdb;
}

/* Carousel */
.imageGallery {
  background-color: #000;
}

.imageGallery main > section {
  text-decoration: none;
  color: #eee;
}

.imageGallery .carousel {
  position: relative;
  width: 100%;
  height: calc(100vh);
  overflow: hidden;
}

.imageGallery .carousel ul {
  list-style-type: none;
}

.imageGallery .carousel .list .item {
  position: absolute;
  inset: 0 0 0 var(--nav-width);
  height: calc(100vh);
}

.imageGallery .carousel .list .item img {
  width: 100%;
  height: calc(100vh);
  object-fit: cover;
}

.imageGallery .carousel .list .item .content {
  position: absolute;
  top: 7rem;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 30%;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #0004;
}

.imageGallery .carousel .list .item .content .author {
  font-weight: bold;
  letter-spacing: 10px;
}

.imageGallery .carousel .list .item .content .title,
.imageGallery .carousel .list .item .content .topic {
  font-weight: bold;
  font-size: 5em;
  line-height: 1.3em;
}

.imageGallery .carousel .list .item .content .topic {
  color: #f1683a;
}

.imageGallery .carousel .list .item .content .button {
  display: grid;
  grid-template-columns: repeat(2, 130px);
  grid-template-rows: 40px;
  gap: 5px;
  margin-top: 20px;
}

.imageGallery .carousel .list .item .content button {
  border: none;
  background-color: #eee;
  letter-spacing: 3px;
  font-weight: 500;
}

.imageGallery .carousel .list .item .content button:nth-child(2) {
  background-color: transparent;
  color: #eee;
  border: 1px solid #eee;
}

/* Thumbnail */
.imageGallery .thumbnail {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: max-content;
  z-index: 100;
  display: flex;
  gap: 20px;
}

.imageGallery .thumbnail .item {
  width: 150px;
  height: 220px;
  flex-shrink: 0;
  position: relative;
}

.imageGallery .thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.imageGallery .thumbnail .item .content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

.imageGallery .thumbnail .item .content .title {
  font-weight: bold;
}

/* Arrows */
.imageGallery .arrows {
  position: absolute;
  top: 80%;
  right: 52%;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}

.imageGallery .arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0004;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: large;
  transition: 0.5s;
  z-index: 100;
}

.imageGallery .arrows button:hover {
  background-color: #eee;
  color: #555;
}

.imageGallery .carousel .list .item:nth-child(1) {
  z-index: 1;
}

.imageGallery .carousel .list .item:nth-child(1) .author,
.imageGallery .carousel .list .item:nth-child(1) .title,
.imageGallery .carousel .list .item:nth-child(1) .topic,
.imageGallery .carousel .list .item:nth-child(1) .des,
.imageGallery .carousel .list .item:nth-child(1) .buttons {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 1.5s 1s linear 1 forwards;
}

@keyframes showContent {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.imageGallery .carousel .list .item:nth-child(1) .title {
  animation-delay: 1.2s;
}
.imageGallery .carousel .list .item:nth-child(1) .topic {
  animation-delay: 1.4s;
}
.imageGallery .carousel .list .item:nth-child(1) .des {
  animation-delay: 1.6s;
}
.imageGallery .carousel .list .item:nth-child(1) .buttons {
  animation-delay: 1.8s;
}

/* Effect next click */
.imageGallery .carousel.next .list .item:nth-child(1) img {
  width: 150px;
  height: 220px;
  position: absolute;
  left: 50%;
  bottom: 50px;
  border-radius: 20px;
  animation: showImage 0.5s linear 1 forwards;
}

@keyframes showImage {
  to {
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;
  }
}

.imageGallery .carousel.next .thumbnail .item:nth-last-child(1) {
  width: 0;
  overflow: hidden;
  animation: showThumbnail 0.5s linear 1 forwards;
}

@keyframes showThumbnail {
  to {
    width: 150px;
  }
}

.imageGallery .carousel.next .thumbnail {
  transform: translateX(150px);
  animation: transformThumbnail 0.5s linear 1 forwards;
}

@keyframes transformThumbnail {
  to {
    transform: translateX(0);
  }
}

/* Effect prev click */
.imageGallery .carousel.prev .list .item:nth-child(2) {
  z-index: 2;
}

.imageGallery .carousel.prev .list .item:nth-child(2) img {
  position: absolute;
  bottom: 0;
  left: 0;
  animation: outImage 0.5s linear 1 forwards;
}

@keyframes outImage {
  to {
    width: 150px;
    height: 220px;
    border-radius: 20px;
    left: 50%;
    bottom: 50px;
  }
}

.imageGallery .carousel.prev .thumbnail .item:nth-child(1) {
  width: 0;
  overflow: hidden;
  opacity: 1s;
  animation: showThumbnail 0.5s linear 1 forwards;
}

.imageGallery .carousel.prev .list .item:nth-child(2) .author,
.imageGallery .carousel.prev .list .item:nth-child(2) .title,
.imageGallery .carousel.prev .list .item:nth-child(2) .topic,
.imageGallery .carousel.prev .list .item:nth-child(2) .des,
.imageGallery .carousel.prev .list .item:nth-child(2) .buttons {
  animation: contentOut 0.5s 1s linear 1 forwards;
}

@keyframes contentOut {
  to {
    transform: translatey(-150px);
    filter: blur(20px);
    opacity: 0;
  }
}

.imageGallery .carousel.next .arrows button,
.imageGallery .carousel.prev .arrows button {
  pointer-events: none;
}

/* Time */
.imageGallery .time {
  margin-left: var(--nav-width);
  width: 0;
  height: 3px;
  background-color: #f1683a;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
}

.imageGallery .carousel.next .time,
.imageGallery .carousel.prev .time {
  width: 100%;
  animation: timeRunning 2s linear 1 forwards;
}

@keyframes timeRunning {
  to {
    width: 0;
  }
}

@media screen and (max-width: 678px) {
  .imageGallery .carousel .list .item .content {
    padding-right: 0;
  }

  .imageGallery .carousel .list .item .content .title {
    font-size: 30px;
  }
}

.imageGallery main > section {
  margin: 0;
  width: 100%;
  background-color: #000;
}

.imageGallery .videopreview {
  display: flex;
  justify-content: flex-end;
  padding-top: 5rem;
  overflow: hidden;
}

.imageGallery video {
  /* width: calc(100% - 55px); */
  border: none;
  cursor: pointer;
  transform: translateX(10px);
}

.imageGallery .lightbox {
  padding-top: 4rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.imageGallery .lightbox ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  width: 100%;

  margin-left: var(--nav-width);
  gap: 1rem;

  list-style-type: none;
}

.imageGallery .lightbox li {
  /* width: calc(24% - 6rem); */
  width: calc(33% - 6rem);
  cursor: pointer;
}

.imageGallery .lightbox img {
  width: 100%;
  /* height: calc(45vh); */
  height: calc(100vh);
  object-fit: cover;
}

.imageGallery .overlay {
  position: fixed;
  display: flex;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: hsl(0, 0%, 10%, 0.9);
}

.imageGallery .overlay .imageContainer {
  position: relative;
}

.imageGallery .overlay img {
  height: 90vh;
}

.imageGallery .overlay .closeIcon {
  height: 30px;
  width: 30px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  margin: 0.7rem;
}

.imageGallery .overlay .rightArrow,
.imageGallery .overlay .leftArrow {
  display: flex;
  transition: 100ms;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100%;
  width: 100px;
  cursor: pointer;
  background-color: #21222d;
}

.imageGallery .overlay .rightArrow img,
.imageGallery .overlay .leftArrow img {
  width: 30px;
  height: 30px;
}

.imageGallery .overlay .rightArrow {
  right: 0;
}

.imageGallery .overlay .leftArrow {
  left: 0;
}
.imageGallery .overlay .leftArrow img {
  transform: scale(-1);
}

.imageGallery .overlay .rightArrow:hover,
.imageGallery .overlay .leftArrow:hover {
  transition: 100ms;
  background-color: #2d2f3f;
}

.imageGallery .overlay .container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imageGallery main > section:last-of-type img {
  width: 100%;
  object-fit: cover;
  display: none;
}

.display-settings {
  display: none;

  width: var(--nav-hover-width);

  position: relative;
}

.display-settings .closeIcon {
  height: 30px;
  width: 30px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  margin: 0.7rem;
}

.delete {
  display: flex;
  justify-content: center;
  align-items: center;

  color: white;
  background-color: rgb(178, 21, 21);
}

.delete:hover {
  background-color: red;

  border: none;
}

/*! TODO.PHP */

.todo > section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.todoAddTask {
  user-select: none;
  background-color: hsl(206, 88%, 67%);
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  width: 80px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
}

.custom-select {
  appearance: none; /* Removes default styles */
  /* border: 1px solid #ccc; */
  background-color: #fff;
  font-size: 16px;
  user-select: none;
  /* background-color: hsl(206, 88%, 67%); */
  padding: 0.3rem 0.6rem;
  border: none;
  border-radius: 5px;
  width: 100px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#sortForm {
  position: relative;
}

.select-arrow {
  position: absolute;
  width: 13px;
  top: 32%;
  right: 7px;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.select-arrow-animation {
  transform: rotate(90deg);
}

.custom-select option {
  padding: 10px;
  font-size: 16px;
  border: none;
  background-color: #fff;
}

.todoAddTask:hover {
  background-color: hsl(206, 64%, 54%);
}

.todoAddTask:active {
  transform: scale(0.9);
}

.todoMenu {
  display: none;
  position: absolute;
  z-index: 5;
  width: 400px;
  height: 50px;
  background-color: hsl(0, 0%, 31%);
  /* background-color: blue; */
  top: 50%;
  left: calc(50% + 125px);
  transform: translate(-50%, -50%);
  padding: 2rem;
  border-radius: 5px;
}

.todoCheckbox .todoToggle-display-flex {
  display: flex;
}

.todoToggle-display-flex {
  display: flex;
}

/* .todoChecked {
  opacity: 0.5;
  text-decoration: line-through;
} */

.toggle-checkbox {
  opacity: 0.5;
  text-decoration: line-through;
}

.toggle-checkbox img {
  width: 25px;
  height: 25px;
}

.todoCheckbox img {
  display: none;
}

.todoOutput {
  display: flex;
  flex-direction: column;
  background-color: hsl(0, 4%, 16%);
  /* background-color: #0077ff; */
  user-select: none;
  padding: 1rem;
  border-radius: 5px;
  gap: 1rem;
  width: 400px;
}

.todoOutput li {
  background-color: hsl(0, 0%, 24%);
  /* background-color: #01c3ff; */
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0.6rem;
}
.todoOutput li > div {
  display: flex;
}

.todoOutput li > div:first-of-type {
  width: 100%;
}

.todoOutput li p {
  line-height: 30px;
  color: white;
  /* color: #6a6a6a; */
  padding: 0 0.3rem;
  word-wrap: anywhere;
  width: 100%;
}

.todoOutput button {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 30px;
  width: 30px;

  margin-right: 0.3rem;
}

.todoOutput button img {
  width: 25px;
  height: 25px;
}

.todo-display-edit {
  display: none;
  position: absolute;
  background-color: #0077ff;
  top: 50%;
  left: calc(50% + 125px);
  transform: translate(-50%, -50%);
  padding: 2rem;
}
.todo-display-flex {
  display: flex;
}

.todoCheckboxColor {
  /* background-color: hsl(0, 0%, 31%); */
  /* background-color: #03a9f4; */
}

.todoOutput button {
  border: none;
  border-radius: 2px;
}

.todoContainer > div:first-of-type {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.todoOutput article {
  width: 85%;
}

.todoOutput button {
  cursor: pointer;
}

.index {
  flex-direction: row;
}

/*! INDEX ROCKET */
/* #region INDEX SECTION */
.index > section {
  width: 100%;
}
/* #endregion INDEX SECTION */
/* #region INDEX ASIDE */

aside {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: 350px;

  margin-top: 1rem;

  position: relative;
}

/* #endregion INDEX ASIDE */
/* #region ROCKET */
.rocket {
  transform: translateY(9px);
}

.rocket-flames {
  position: absolute;
  z-index: 5;

  transform: translateY(31px);

  /* opacity: 0.5; */
}

.rocket-launch {
  animation: rocket-launch-animation var(--rocket-animation-duration-1);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(1, 0.1, 0.9, 1);
  /* (1, 0.1, 0.9, 1) */
  /* (0.1, 0.7, 1, 0.1) */
}

@keyframes rocket-launch-animation {
  0% {
  }
  100% {
    transform: translateY(-130%);
  }
}
/* #endregion ROCKET */
/* #region ROCKET LAUNCH BUTTON*/
.launch-button {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 300px;
  height: 30px;

  position: relative;
  z-index: 5;

  color: #fe7235;
  background-color: #3a3b40;

  border-bottom: 1px solid #21222d;

  cursor: pointer;
}
/* #endregion ROCKET LAUNCH BUTTON*/
/* #region ROCKET POP */

.pop {
  display: none;

  width: 100px;

  position: absolute;

  z-index: 1000;

  opacity: 0.5;
}

.pop-vroom {
  width: 150px;

  bottom: 0;
  left: 0;

  transform: translate(17px, -17px);
}

.pop-beep {
  width: 110px;

  top: 0;
  right: 0;

  transform: translate(-10px, 194px);
  /* transform: translate(-10px, 166px); */
}

.pop-bump {
  width: 200px;

  bottom: 0;
  right: 0;

  transform: translate(-77px, 48px);
}

.pop-animation {
  display: block;

  animation-name: pop-add-opacity;
  animation-fill-mode: both;

  animation-duration: 100ms;
}

@keyframes pop-add-opacity {
  0% {
  }
  100% {
    opacity: 1;
  }
}

.pop-animation-remove-opacity {
  display: block;
  animation-name: pop-remove-opacity-slowly;
  animation-fill-mode: both;
  animation-duration: 4s; /* Bestem varigheden af animationen */
}

@keyframes pop-remove-opacity-slowly {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.screen-shake {
  animation: shake 1.2s ease-in-out;
}

@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  10%,
  90% {
    transform: translate(-5px, 0);
  }
  20%,
  80% {
    transform: translate(5px, 0);
  }
  30%,
  50%,
  70% {
    transform: translate(-5px, 0);
  }
  40%,
  60% {
    transform: translate(5px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* #endregion ROCKET POP */

/*! LOGIN.PHP  */
/* #region LOGIN */
.login main {
  display: flex;
  justify-content: center;
  align-items: center;

  min-height: calc(100vh - var(--footer-login-height));
}

.login section {
  height: auto;

  margin: 0;

  position: absolute;
}

.login form {
  display: flex;
  flex-direction: column;

  padding: var(--login-margin);

  background-color: hsl(0, 0%, 91%);

  border-radius: 5px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.35);
}

.login form input {
  height: 40px;
  width: 300px;

  padding-left: var(--login-margin);
  margin: calc(var(--login-margin) / 2);

  background-color: hsl(45, 3%, 95%);

  border-radius: 5px;
  border: none;
}

.login form input:last-of-type {
  padding: 0 var(--login-margin);
  margin-top: calc(var(--login-margin) * 2);

  cursor: pointer;
}

.login form input:last-of-type:hover {
  background-color: hsl(0, 0%, 80%);
}

.login p {
  margin: calc(var(--login-margin) / 2);
}
/* #endregion LOGIN */
/* #region LOGIN FOOTER */
.login footer {
  height: var(--footer-login-height);

  background-color: hsl(0, 0%, 91%);
}

.login footer > * {
  display: none;
}
/* #endregion LOGIN FOOTER*/

/*! UNIVERSAL FOOTER */
/* #region FOOTER */
footer {
  display: flex;
  flex-direction: column;

  height: var(--footer-height);
  width: 100%;

  background-color: #292a36;
}

footer a {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 30px;

  text-decoration: none;

  margin-left: var(--nav-width);

  color: #fe7235;
  background-color: #3a3b40;
}
/* #endregion FOOTER */
/* #region DIV SECTION FOOTER */
footer div {
  --footer-padding: 1rem;

  display: flex;

  height: 100%;

  gap: 0.7rem;

  margin: 0 var(--footer-padding) 0
    calc(var(--nav-width) + var(--footer-padding));
}

footer section {
  width: calc(33%);

  background-color: #21222d;
}
/* #endregion DIV SECTION FOOTER */

/*! UNIVERSAL CLASSES */
/* #region CLASSES*/
.display-none {
  display: none;
}

.display-flex {
  display: flex;
}

.display-hidden {
  opacity: 0;
}
/* #endregion CLASSES */
