@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;1,100;1,400&display=swap");
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  min-width: 350px;
  min-height: max(350px, 100vh);
  min-height: max(350px, 100dvh);
  box-sizing: border-box;
  font-family: "lato", Helvetica, sans-serif;
  background-color: var(--white);
  color: var(--dark-blue);
}
@media (max-width: 56.25em) {
  body {
    gap: 1.5625rem;
  }
}

main {
  position: relative;
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
@media (max-width: 56.25em) {
  main {
    gap: inherit;
  }
}

select {
  background-color: inherit;
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/lato-light-iArSMxs.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lato-regular-CzNc_Ij.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/lato-bold-5CmM-eX.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
h1,
h2,
h3 {
  font-weight: 400;
  margin: 0;
}

h1 {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.09375rem;
  text-align: center;
}

h2 {
  text-transform: uppercase;
  text-align: center;
}

a {
  text-decoration: none;
  color: inherit;
  text-align: center;
  cursor: pointer;
}

i {
  font-style: normal;
  color: var(--dark-grey);
  font-size: 0.625rem;
}

p {
  margin: 0;
  font-weight: 300;
}

:root {
  --dark-blue: hsl(216, 48%, 14%);
  --medium-blue: hsl(221, 10%, 38%);
  --light-blue: hsl(216, 48%, 58%);
  --light-grey: hsl(0, 0%, 94%);
  --medium-grey: hsl(0, 0%, 70%);
  --dark-grey: hsl(0, 0%, 54%);
  --white: hsl(0, 0%, 100%);
  --light-red: hsl(0, 100%, 94%);
  --medium-red: hsl(0, 67%, 59%);
  --dark-red: hsl(0, 56%, 39%);
  --light-yellow: hsl(48, 100%, 94%);
  --medium-yellow: hsl(48, 100%, 70%);
  --dark-yellow: hsl(48deg 81% 48%);
  --light-green: hsl(120, 100%, 94%);
  --medium-green: hsl(120, 48%, 58%);
  --dark-green: hsl(120, 56%, 44%);
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  margin: 25px 10px;
  user-select: none;
  scale: 0.8;
  position: relative;
  min-width: max-content;
  text-align: center;
  height: min(40vh, 21.875rem);
  min-height: 13.125rem;
  aspect-ratio: 27/40;
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
  padding-bottom: 1.5625rem;
  border-radius: 2.1875rem;
  overflow: hidden;
  transition: all 200ms ease-in-out;
}
.card__profil {
  font-size: 1.5rem;
  text-align: center;
  width: 90%;
  box-sizing: border-box;
  overflow-wrap: break-word;
}
.card__last-name {
  text-transform: uppercase;
  font-weight: 700;
}
.card__banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 200ms ease-in-out;
  height: 33%;
  width: 100%;
  background-color: var(--light-grey);
}
.card__social-network {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 70%;
  margin: 0.3125rem 0;
}
.card__picture {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: filter 0.1s ease-in-out;
  height: 70%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
}
.card__picture.overlay--active {
  filter: blur(1px) brightness(0.8);
}
.card__picture__overlay {
  position: absolute;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
  height: 30%;
}
.card__picture__overlay.overlay--active {
  opacity: 1;
}
.card__description {
  margin: 0;
  font-size: 0.875rem;
  width: 75%;
  overflow: hidden;
  text-align: justify;
  word-wrap: break-word;
  flex-grow: 1;
  box-sizing: border-box;
}
.card::after {
  content: "";
  position: absolute;
  bottom: 0.75rem;
  height: 0.25rem;
  width: 2.5rem;
  border-radius: 0.125rem;
  background-color: var(--dark-blue);
}
.card--middle {
  scale: 1;
}
@media (max-width: 43.75em) {
  .card--middle {
    scale: 0.8;
  }
}
.card--hover {
  cursor: pointer;
}
.card:hover {
  cursor: pointer;
}

.social-network {
  transition: all 150ms;
  width: 1.5625rem;
  height: 1.5625rem;
  background-color: var(--dark-blue);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.social-network__icon {
  width: 50%;
  aspect-ratio: 1/1;
}
.social-network:hover {
  filter: invert(1);
  scale: 1.2;
}
.social-network--invisible {
  display: none;
}

.carousel {
  position: relative;
  width: 80%;
}
.carousel__slider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  padding: 0 45%;
  gap: 3.125rem;
  overflow-x: scroll;
  scrollbar-width: none;
}
.carousel__slider::-webkit-scrollbar {
  display: none;
}
@media (max-width: 43.75em) {
  .carousel__slider {
    gap: 0;
  }
}
.carousel::after, .carousel::before {
  content: "";
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 2.5rem;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, var(--white) 100%);
  z-index: 1;
}
@media (max-width: 43.75em) {
  .carousel::after, .carousel::before {
    display: none;
  }
}
.carousel::before {
  left: 0;
  background: linear-gradient(to left, transparent 0%, var(--white) 100%);
}
@media (max-width: 43.75em) {
  .carousel {
    width: 100%;
  }
}

.scrollbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 90%;
}
.scrollbar__max, .scrollbar__min {
  font-weight: 700;
  color: var(--dark-grey);
}
.scrollbar__cursor {
  width: 70%;
  appearance: none;
  background: var(--light-grey);
  height: 0.5rem;
  border-radius: 20px;
}
.scrollbar__cursor::-webkit-slider-runnable-track {
  cursor: pointer;
  height: 0.5rem;
  background: var(--light-grey);
  border-radius: 0.25rem;
}
.scrollbar__cursor::-moz-range-thumb {
  width: 1.25rem;
  height: 1.25rem;
  background: var(--dark-grey);
  border-radius: 50%;
  border: 0;
}
.scrollbar__cursor::-webkit-slider-thumb {
  -webkit-appearance: none;
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--dark-grey);
  border-radius: 50%;
  top: -50%;
}

.navbar {
  width: 15.625rem;
  height: 4.375rem;
  box-sizing: border-box;
  padding: 0.3125rem 1.25rem;
  margin: 0 12.5rem;
  border-radius: 2.5rem;
  transition: all 0.7s;
  box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.navbar__icon {
  z-index: 1;
  height: 1.25rem;
  aspect-ratio: 1/1;
}
@media (max-width: 43.75em) {
  .navbar__icon {
    display: none;
  }
}
.navbar__icon:hover {
  cursor: pointer;
}
.navbar__searchbar--open {
  width: calc(15.625rem + 12.5rem);
  margin-right: 12.5rem;
  margin-left: 0;
}
@media (max-width: 43.75em) {
  .navbar__searchbar--open {
    width: 90%;
    margin: 0;
  }
}
.navbar__filter--open {
  width: calc(15.625rem + 12.5rem);
  margin-left: 12.5rem;
  margin-right: 0;
}
@media (max-width: 43.75em) {
  .navbar__filter--open {
    width: 90%;
    margin: 0;
  }
}
.navbar__searchbar--open:is(.navbar__filter--open) {
  width: calc(15.625rem + 12.5rem * 2);
  margin: 0;
}
@media (max-width: 43.75em) {
  .navbar__searchbar--open:is(.navbar__filter--open) {
    width: 90%;
    margin: 0;
  }
}
.navbar .searchbar,
.navbar .filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 0px;
  overflow: hidden;
  box-sizing: border-box;
  animation-name: inputClosing;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
}
.navbar .searchbar--open,
.navbar .filter--open {
  animation-name: inputOpening;
}
@media (max-width: 43.75em) {
  .navbar .searchbar,
  .navbar .filter {
    width: 80%;
    animation: 0;
  }
}
@media (max-width: 43.75em) {
  .navbar .filter {
    width: auto;
    order: -1;
  }
}
.navbar .searchbar input {
  border: 1px solid var(--dark-blue);
  border-radius: 1.875rem;
  padding-left: 0.625rem;
  height: 2.3125rem;
  width: 90%;
}
@media (max-width: 43.75em) {
  .navbar .searchbar input {
    box-sizing: border-box;
    width: 9.625rem;
    height: 2.96875rem;
  }
  .navbar .searchbar input::placeholder {
    text-transform: Uppercase;
    text-align: center;
    color: var(--dark-blue);
  }
}
@media (max-width: 43.75em) {
  .navbar .searchbar {
    width: auto;
  }
}
.navbar .searchbar input:focus {
  outline: none;
  border-width: 2px;
}
@media (max-width: 43.75em) {
  .navbar {
    gap: 0.3125rem 0.625rem;
    box-shadow: none;
    width: 90%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: max-content;
    padding: 0.625rem 0;
  }
}
@keyframes inputOpening {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes inputClosing {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}

.spinner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 0.3125rem;
}
@media (max-width: 43.75em) {
  .spinner {
    width: 70%;
    padding: 0.625rem 1.875rem;
    justify-content: space-around;
    border-radius: 3.125rem;
  }
}
.spinner__container-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  cursor: alias;
  width: 5rem;
}
.spinner__dates--start {
  color: var(--dark-grey);
}
.spinner__dates--end {
  font-weight: 700;
}
.spinner__selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem 0.625rem;
}
@media (max-width: 43.75em) {
  .spinner__selector {
    flex-direction: row;
  }
}
.spinner__down, .spinner__up {
  box-sizing: border-box;
  width: 1.25rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width: 43.75em) {
  .spinner__down, .spinner__up {
    width: 1.875rem;
  }
}
.spinner__down {
  border: 1px solid var(--dark-blue);
}

.btn {
  border: 0;
  border-radius: 1.875rem;
  padding: 0.9375rem 1.5625rem;
  margin: 0.625rem 0;
  text-align: center;
}
.btn--primary {
  background-color: var(--dark-blue);
  color: var(--white);
}
.btn--secondary {
  border: 1px solid var(--dark-blue);
  background-color: var(--white);
  color: var(--dark-blue);
}
.btn--danger {
  background-color: var(--dark-red);
  color: var(--white);
}
.btn:hover {
  cursor: pointer;
}

.popup {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 13vh;
  left: 1.25rem;
  z-index: 10;
  transform: translateX(-140%);
  padding: 0.625rem;
  gap: 0.625rem;
  border-radius: 0.3125rem;
  transition: translate 0.8s ease-in-out;
}
.popup--error {
  background: var(--light-red);
  border: var(--dark-red) 5px solid;
  border-width: 0 0 5px 0;
}
.popup--success {
  background: var(--light-green);
  border: var(--dark-green) 0px solid;
  border-width: 0 0 0 5px;
}
.popup--visible {
  left: 1.25rem;
  translate: 140% 0;
}
@media (max-width: 43.75em) {
  .popup--visible {
    translate: 0 100%;
  }
}
.popup__close-button {
  width: 1.25rem;
  height: 1.25rem;
}
.popup__close-button:hover {
  cursor: pointer;
}
@media (max-width: 43.75em) {
  .popup {
    transform: translateY(-100%);
    top: 0;
    left: 10%;
    right: 10%;
    border-width: 0 0 5px 0;
    flex-direction: column;
    border-radius: 0 0 1.25rem 1.25rem;
  }
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem 2.1875rem;
  width: 100%;
  min-height: 5rem;
  padding: 0 3.125rem;
  box-sizing: border-box;
}
.header__title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.header__logo {
  height: 3.125rem;
  aspect-ratio: 1/1;
}
.header__login {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: inherit;
  flex-wrap: wrap;
  margin-left: auto;
}
.header__login > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6.25rem;
}
.header__login-picture {
  border-radius: 50%;
  height: 3.125rem;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 3px solid transparent;
  box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
  transition: scale 0.15s ease-in-out;
}
.header__login-picture:active {
  scale: 0.95;
}
.header__login-link {
  height: 100%;
  color: var(--dark-grey);
  transition: color 0.3s ease;
}
.header__login-link:hover {
  color: var(--dark-blue);
}
@media (max-width: 51.875em) {
  .header__login {
    justify-content: space-evenly;
    width: 90%;
    margin: 0;
  }
}
@media (max-width: 51.875em) {
  .header {
    box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
    justify-content: center;
    padding: 1.25rem 0;
  }
}

/*# sourceMappingURL=tree.output.css.map */
