/* [project]/src/components/Avatar/index.css [app-client] (css) */
.avatar-box {
  text-align: center;
  width: var(--avatar-size);
  height: var(--avatar-size);
  aspect-ratio: 1;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.avatar-box.mono {
  background-color: var(--grey50);
}

.avatar-box span {
  color: var(--white);
  -webkit-user-select: none;
  user-select: none;
  line-height: 0;
  font-size: calc(var(--avatar-size) * .666);
}

.dark-theme .avatar-box.mono {
  background-color: var(--grey25);
}

/* [project]/src/components/ProfileMenu/index.css [app-client] (css) */
.profile-container > div label {
  margin-right: 20px;
  font-weight: 500;
}

.profile-container > div button {
  font-size: inherit;
  text-align: start;
  cursor: pointer;
  color: currentColor;
  background: none;
  border: none;
  width: 100%;
  padding: 3px 0;
}

.profile-container > div .info {
  flex-direction: column;
  display: flex;
}

.profile-container > div .info .name {
  color: currentColor;
  margin-bottom: 4px;
  font-weight: 500;
}

.profile-container > div .info .email {
  color: currentColor;
  font-size: 13px;
  text-decoration: underline;
}

.profile-container > div .plus {
  background: var(--tabber-text-gradient);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  font-weight: 700;
}

.profile-container > div .field-value {
  color: currentColor;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.profile-container > div .field-value :first-child {
  margin-right: 10px;
}

.profile-container > div .field-value .active {
  color: #00bf19;
}

/* [project]/src/components/Header/index.css [app-client] (css) */
header {
  --avatar-size: 32px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1750px;
  margin: auto;
  padding: 20px 68px;
  display: flex;
}

@media (min-width: 1921px) {
  header {
    max-width: 2200px;
  }
}

@media (max-width: 768px) {
  header {
    justify-content: center;
    margin: 0;
    padding: 20px;
  }
}

header .logo {
  flex-direction: row;
  align-items: center;
  display: flex;
}

@media (max-width: 768px) {
  header .logo {
    display: none;
  }
}

header .logo .logo_mono_svg__logo-mono {
  fill: var(--black90);
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

header .logo .title {
  color: var(--black90);
  font-size: 24px;
  font-weight: 700;
}

header nav {
  flex-direction: row;
  align-items: center;
  gap: 25px;
  display: flex;
}

@media (max-width: 768px) {
  header nav {
    gap: 14px;
  }
}

header nav a {
  border-bottom: 2px solid #0000;
  padding: 4px;
  list-style: none;
  transition: border-bottom-color .2s ease-in-out;
}

header nav a:hover, header nav a.active {
  border-bottom-color: var(--primary);
}

header nav a span {
  font-size: 18px;
  font-weight: 100;
}

@media (max-width: 768px) {
  header nav a span {
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  header nav a span {
    font-size: 11px;
  }
}

header .login-buttons {
  flex-direction: row;
  align-items: center;
  display: flex;
}

@media (max-width: 768px) {
  header .login-buttons {
    display: none;
  }
}

header .login-buttons a:first-child button {
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
  background: none;
}

header .login-buttons a:first-child button:hover {
  background: var(--black10);
}

header .login-buttons a:not(:first-child) {
  margin-left: 25px;
}

header .login-buttons a button {
  width: 100px;
}

header .profile-button {
  flex-direction: row;
  align-items: center;
  display: flex;
}

header .profile-button .label {
  color: var(--white85);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  flex-direction: row;
  align-items: center;
  height: 20px;
  margin-right: 20px;
  padding: 0 10px 0 5px;
  font-size: 12px;
  display: flex;
}

header .profile-button .label:before {
  content: "";
  border-top: 10px solid #000;
  border-bottom: 10px solid #000;
  border-left: 5px solid #0000;
  display: block;
  position: relative;
  left: -10px;
}

header .profile-button .label.plus {
  background: var(--tabber-text-gradient);
  background-size: 200%;
}

header .profile-button .label.plus:before {
  border-top-color: var(--tabber-text-gradient-start);
  border-bottom-color: var(--tabber-text-gradient-start);
}

header .profile-button .label.free {
  background: var(--green);
}

header .profile-button .label.free:before {
  border-top-color: var(--green);
  border-bottom-color: var(--green);
}

header .profile-button .btn-avatar {
  width: 38px;
  height: 38px;
}

.dark-theme header .logo .logo_mono_svg__logo-mono {
  fill: var(--white90);
}

.dark-theme header .logo .title {
  color: var(--white90);
}

.dark-theme header .login-buttons a:first-child button {
  color: var(--text-light);
  border-color: var(--white);
}

.dark-theme header .login-buttons a:first-child button:hover {
  background: var(--white25);
}

/* [project]/src/components/Footer/index.css [app-client] (css) */
footer {
  transform: translate(-50%, var(--footer-height));
  background: var(--white90);
  width: 90%;
  box-shadow: 0 0 20px var(--black10);
  border-radius: 20px 20px 0 0;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  padding: 2vw 3.5vw;
  transition: transform .5s ease-in-out;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 50%;
}

@media (min-width: 1921px) {
  footer {
    max-width: 2200px;
  }
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 14px;
  }
}

footer.visible {
  transition-delay: .6s;
  transform: translate(-50%);
}

footer .copyright {
  opacity: .75;
  font-size: .63vw;
  font-weight: 400;
}

footer .copyright.mobile {
  margin-top: 14px;
  font-size: 10px;
  display: none;
}

@media (max-width: 768px) {
  footer .copyright.mobile {
    display: block;
  }

  footer .copyright:not(.mobile) {
    display: none;
  }
}

footer .left {
  flex-direction: column;
  display: flex;
}

@media (max-width: 768px) {
  footer .left {
    flex-direction: row;
    justify-content: space-between;
  }
}

footer .left .logo {
  color: var(--black90);
  flex-direction: row;
  align-items: center;
  display: flex;
}

footer .left .logo .logo_mono_svg__logo-mono {
  fill: currentColor;
  width: 1.6vw;
  height: 1.6vw;
  margin-right: .5vw;
}

@media (max-width: 768px) {
  footer .left .logo .logo_mono_svg__logo-mono {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
}

footer .left .logo .title {
  font-size: 1.3vw;
  font-weight: 700;
}

@media (max-width: 768px) {
  footer .left .logo .title {
    font-size: 18px;
  }
}

footer .left .lang {
  margin: .5vw 0;
}

@media (max-width: 768px) {
  footer .left .lang {
    margin: 8px 0;
  }
}

footer .right {
  flex-direction: row;
  flex: 1;
  justify-content: space-evenly;
  display: flex;
}

@media (max-width: 768px) {
  footer .right {
    justify-content: space-between;
  }
}

footer .right .nav {
  flex-direction: column;
  gap: .3vw;
  display: flex;
}

@media (max-width: 768px) {
  footer .right .nav {
    gap: 4px;
  }
}

footer .right .nav a {
  color: var(--black75);
  transition: color .2s ease-in-out;
}

footer .right .nav a:hover {
  color: var(--black);
  text-decoration: underline;
}

footer .right .nav a .item {
  cursor: pointer;
  width: 100%;
  font-size: .8vw;
  font-weight: 500;
}

@media (max-width: 768px) {
  footer .right .nav a .item {
    font-size: 10px;
  }
}

.dark-theme footer {
  background: var(--black90);
}

.dark-theme footer .left .logo {
  color: var(--white90);
}

.dark-theme footer .right .nav a {
  color: var(--white75);
}

.dark-theme footer .right .nav a:hover {
  color: var(--white);
}

/* [project]/src/app/[lang]/terms/index.css [app-client] (css) */


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