/* [project]/src/components/Tooltip/Tooltip.module.css [app-client] (css) */
.Tooltip-module__4iOEcW__container {
  display: inline-block;
  position: relative;
}

.Tooltip-module__4iOEcW__tooltip {
  z-index: 999;
  pointer-events: none;
  border: 1px solid;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: max-content;
  min-width: 150px;
  max-width: 300px;
  margin-bottom: 10px;
  padding: 5px 10px;
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.Tooltip-module__4iOEcW__tooltip.Tooltip-module__4iOEcW__visible {
  animation: .2s ease-out Tooltip-module__4iOEcW__reveal-up;
  display: flex;
}

.Tooltip-module__4iOEcW__tooltip:after {
  content: "";
  border-style: solid;
  border-width: 8px 8px 0;
  border-color: var(--tooltip-arrow-border-color);
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes Tooltip-module__4iOEcW__reveal-up {
  0% {
    opacity: 0;
    transform: translateX(-50%)translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%)translateY(0);
  }
}

.Tooltip-module__4iOEcW__text {
  text-align: center;
}

/* [project]/src/components/Code/Code.module.css [app-client] (css) */
.Code-module__utbJbG__code {
  color: var(--color-text-dark);
  background-color: var(--color-surface-darkest);
  cursor: pointer;
  border-radius: 3px;
  padding: 0 5px;
  display: inline-block;
}

/* [project]/src/components/layout/Header/Header.module.css [app-client] (css) */
.Header-module__85i50G__header {
  width: var(--width);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  height: 75px;
  margin: 0 auto;
  display: flex;
}

.Header-module__85i50G__nav {
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  display: flex;
}

.Header-module__85i50G__logo {
  border-radius: 0;
  width: 50px;
  height: 50px;
}

.Header-module__85i50G__list, .Header-module__85i50G__dropdown {
  z-index: 999;
  visibility: hidden;
  background-color: var(--color-surface-dark);
  flex-direction: column;
  gap: 5px;
  width: 100%;
  height: 100%;
  padding: 0 15px 15px;
  display: flex;
  position: absolute;
  left: 0;
}

.Header-module__85i50G__list {
  top: 75px;
}

.Header-module__85i50G__dropdown {
  top: 0;
}

.Header-module__85i50G__list.Header-module__85i50G__active, .Header-module__85i50G__dropdown.Header-module__85i50G__active {
  visibility: visible;
  animation: .2s ease-out Header-module__85i50G__reveal-right;
}

.Header-module__85i50G__item {
  width: 100%;
  list-style-type: none;
}

.Header-module__85i50G__item:not(:last-child) {
  border-bottom: 1px solid var(--color-surface);
}

.Header-module__85i50G__link, .Header-module__85i50G__button {
  text-wrap: nowrap;
  cursor: pointer;
  width: 100%;
  color: var(--color-text);
  background-color: var(--color-surface-dark);
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
  padding: 15px;
  display: flex;
}

.Header-module__85i50G__button.Header-module__85i50G__active {
  color: var(--color-text-light);
}

.Header-module__85i50G__link:hover, .Header-module__85i50G__button:hover {
  color: var(--color-text-light);
  background-color: var(--color-surface);
  text-decoration: none;
}

.Header-module__85i50G__hamburger {
  width: 43px;
  height: 43px;
  color: var(--color-text);
  background: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.Header-module__85i50G__hamburger:hover {
  color: var(--color-text-light);
  background-color: var(--color-surface);
}

@keyframes Header-module__85i50G__reveal-right {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 768px) {
  .Header-module__85i50G__list {
    visibility: visible;
    flex-direction: row;
    width: fit-content;
    height: auto;
    padding: 0;
    position: static;
  }

  .Header-module__85i50G__dropdown {
    border: 1px solid var(--color-surface);
    border-radius: 5px;
    width: max-content;
    height: auto;
    padding: 5px;
    top: calc(100% + 10px);
  }

  .Header-module__85i50G__dropdown.Header-module__85i50G__active {
    animation: .2s ease-out Header-module__85i50G__reveal-up;
  }

  .Header-module__85i50G__dropdown .Header-module__85i50G__item:not(:last-child) {
    border-bottom: 1px solid var(--color-surface);
  }

  .Header-module__85i50G__item {
    position: relative;
  }

  .Header-module__85i50G__item.Header-module__85i50G__back {
    display: none;
  }

  .Header-module__85i50G__list .Header-module__85i50G__item {
    border-bottom: none;
  }

  .Header-module__85i50G__link, .Header-module__85i50G__button {
    background: none;
    margin-bottom: 0;
    padding: 10px;
  }

  .Header-module__85i50G__dropdown .Header-module__85i50G__item:not(:last-child) .Header-module__85i50G__link, .Header-module__85i50G__dropdown .Header-module__85i50G__item:not(:last-child) .Header-module__85i50G__button {
    margin-bottom: 5px;
  }

  .Header-module__85i50G__dropdown .Header-module__85i50G__link:hover, .Header-module__85i50G__dropdown .Header-module__85i50G__button:hover {
    background-color: var(--color-surface);
  }

  .Header-module__85i50G__link:hover, .Header-module__85i50G__button:hover {
    background: none;
  }

  .Header-module__85i50G__hamburger {
    display: none;
  }

  @keyframes Header-module__85i50G__reveal-up {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* [project]/src/components/layout/Main/Main.module.css [app-client] (css) */
.Main-module__0L3xna__main {
  flex-direction: column;
  gap: 150px;
  margin-bottom: 150px;
  display: flex;
}

.Main-module__0L3xna__main.Main-module__0L3xna__margin-top {
  margin-top: 75px;
}

/* [project]/src/components/layout/Footer/Footer.module.css [app-client] (css) */
.Footer-module__hP-FLq__footer {
  width: var(--width);
  border-top: 1px solid var(--color-surface);
  flex-direction: column;
  gap: 30px;
  margin: auto auto 0;
  padding: 30px 0;
  display: flex;
}

.Footer-module__hP-FLq__links {
  text-wrap: nowrap;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  display: grid;
}

.Footer-module__hP-FLq__links ul {
  padding: 0;
}

.Footer-module__hP-FLq__links li {
  list-style-type: none;
}

.Footer-module__hP-FLq__copyright {
  align-items: center;
  column-gap: 10px;
  display: flex;
}

.Footer-module__hP-FLq__image {
  border-radius: 0;
  width: 40px;
  height: 40px;
}

@media (min-width: 768px) {
  .Footer-module__hP-FLq__footer {
    flex-direction: row;
    justify-content: space-between;
  }
}

/*# sourceMappingURL=src_components_4eabb5d4._.css.map*/