/* [project]/src/components/AcceptTerms/index.css [app-client] (css) */
.accept-terms {
  background: var(--bg-elevated-light);
  z-index: 1;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  display: flex;
  position: absolute;
  bottom: 0;
}

@media (max-width: 768px) {
  .accept-terms {
    flex-direction: column-reverse;
    font-size: 12px;
  }
}

.accept-terms p {
  max-width: 50%;
  margin: 0;
  font-weight: 300;
}

@media (max-width: 768px) {
  .accept-terms p {
    max-width: 100%;
  }
}

.dark-theme .accept-terms {
  background: var(--bg-elevated-dark);
}

/* [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/HomePage/index.css [app-client] (css) */
.tabber-home-page {
  --star-fill: #9b9bff;
  display: flex;
}

.tabber-home-page .star svg {
  fill: var(--star-fill);
}

.tabber-home-page .content {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1750px;
  margin: auto;
  padding: 20px 68px;
  display: flex;
}

@media (min-width: 1921px) {
  .tabber-home-page .content {
    max-width: 2200px;
  }
}

@media (max-width: 768px) {
  .tabber-home-page .content {
    flex-direction: column-reverse;
    justify-content: space-evenly;
    margin: 0;
    padding: 20px;
  }
}

.tabber-home-page .content .title {
  background: var(--tabber-text-gradient);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 6.6vw;
  font-weight: 900;
}

.tabber-home-page .content .title.mobile {
  font-size: 56px;
  display: none;
}

@media (max-width: 768px) {
  .tabber-home-page .content .title.mobile {
    display: block;
  }

  .tabber-home-page .content .title:not(.mobile) {
    display: none;
  }
}

.tabber-home-page .content .left {
  flex-direction: column;
  justify-content: space-between;
  max-width: 50%;
  display: flex;
  position: relative;
}

@media (max-width: 768px) {
  .tabber-home-page .content .left {
    max-width: 100%;
  }
}

.tabber-home-page .content .left .star-1 {
  position: absolute;
  top: 60px;
  right: 10px;
}

@media (max-width: 768px) {
  .tabber-home-page .content .left .star-1 {
    top: -60px;
    left: 70px;
  }
}

.tabber-home-page .content .left .star-1 svg {
  width: 50px;
  height: 50px;
  animation: 6s ease-in-out infinite scaleStar;
}

.tabber-home-page .content .left .text {
  flex-direction: column;
  display: flex;
}

.tabber-home-page .content .left .text .subtitle {
  font-size: 3.8vw;
  font-weight: 700;
}

@media (max-width: 768px) {
  .tabber-home-page .content .left .text .subtitle {
    text-wrap: balance;
    font-size: 32px;
  }
}

.tabber-home-page .content .left .text .description {
  color: var(--grey60);
  margin-top: 1vw;
  font-size: 1.1vw;
  font-weight: 400;
}

@media (max-width: 768px) {
  .tabber-home-page .content .left .text .description {
    font-size: 18px;
  }
}

.tabber-home-page .content .left .buttons {
  flex-direction: row;
  align-items: center;
  margin-top: 1vw;
  display: flex;
}

@media (max-width: 768px) {
  .tabber-home-page .content .left .buttons {
    display: none;
  }
}

.tabber-home-page .content .image {
  width: 50%;
  margin-left: 2vw;
}

@media (max-width: 768px) {
  .tabber-home-page .content .image {
    width: 100%;
    margin-left: 0;
  }
}

.tabber-home-page .content .image .star-2 {
  justify-content: flex-end;
  margin-top: -42px;
  margin-right: -37px;
  display: flex;
}

@media (max-width: 768px) {
  .tabber-home-page .content .image .star-2 {
    margin-top: -23px;
    margin-right: -18px;
  }
}

.tabber-home-page .content .image .star-2 svg {
  width: 74px;
  height: 74px;
  animation: 6s ease-in-out infinite scaleStar;
}

@media (max-width: 768px) {
  .tabber-home-page .content .image .star-2 svg {
    width: 36px;
    height: 36px;
  }
}

.dark-theme .tabber-home-page {
  --star-fill: var(--white);
}

.dark-theme .tabber-home-page .content .left .text .title {
  background: var(--tabber-text-gradient);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.dark-theme .tabber-home-page .content .left .text .description {
  color: var(--grey50);
}

/* [project]/src/components/HomeInstall/index.css [app-client] (css) */
.tabber-home-install {
  display: flex;
}

.tabber-home-install .content {
  width: 100%;
  height: var(--content-height);
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 15vh;
  max-width: 1750px;
  margin: auto;
  padding: 20px 68px;
  display: flex;
}

@media (min-width: 1921px) {
  .tabber-home-install .content {
    max-width: 2200px;
  }
}

@media (max-width: 768px) {
  .tabber-home-install .content {
    gap: 20px;
    margin: 0;
    padding: 20px;
  }
}

.tabber-home-install .content .description {
  text-align: center;
  flex-direction: column;
  max-width: 75%;
  font-size: 1.7vw;
  font-weight: 400;
  display: flex;
}

@media (max-width: 768px) {
  .tabber-home-install .content .description {
    text-wrap: balance;
    max-width: 100%;
    font-size: 20px;
  }
}

.tabber-home-install .content .banners {
  flex-direction: row;
  justify-content: space-between;
  gap: 1.3vw;
  display: flex;
}

@media (max-width: 768px) {
  .tabber-home-install .content .banners {
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .tabber-home-install .content .banners a {
    width: calc(50% - 10px);
  }
}

.tabber-home-install .content .banners a svg {
  background-color: var(--white50);
  border-radius: 10px;
  width: 100%;
  transition: background-color .3s ease-in-out;
}

.tabber-home-install .content .banners a svg:hover {
  background-color: var(--black10);
}

.tabber-home-install .content .info {
  max-width: 75%;
  color: var(--black90);
  flex-direction: row;
  font-size: .85vw;
  display: flex;
}

@media (max-width: 768px) {
  .tabber-home-install .content .info {
    text-wrap: balance;
    text-align: center;
    max-width: 100%;
    font-size: 18px;
    display: block;
  }
}

.tabber-home-install .content .info :first-child {
  margin-right: .4vw;
}

@media (max-width: 768px) {
  .tabber-home-install .content .info :first-child {
    display: none;
  }
}

.dark-theme .tabber-home-install .content .banners a svg {
  background-color: var(--black50);
}

.dark-theme .tabber-home-install .content .banners a svg:hover {
  background-color: var(--white10);
}

.dark-theme .tabber-home-install .content .info {
  color: var(--white85);
}

/* [project]/src/components/PlusParticles/index.css [app-client] (css) */
.plus-particles {
  --opposite-side-gradient: transparent 0%, transparent 30%, #000 60%, #000 70%, transparent 100%;
  --mask-overflow-gradient: radial-gradient(ellipse 50% 40%, var(--opposite-side-gradient));
  width: 100%;
  height: 5vw;
  -webkit-mask-image: var(--mask-overflow-gradient);
  position: absolute;
  top: 0;
  left: 0;
}

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

/* [project]/src/components/HomePricingPlus/index.css [app-client] (css) */
.home-plus-container {
  flex-direction: column;
  display: flex;
}

.home-plus-container .plan-title {
  text-align: center;
  z-index: 1;
  background: var(--tabber-text-gradient);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.home-plus-container .price {
  text-align: center;
  color: var(--black75);
  margin-top: 4px;
  font-size: .73vw;
  font-weight: 300;
}

@media (max-width: 768px) {
  .home-plus-container .price {
    font-size: 12px;
  }
}

.dark-theme .home-plus-container .price {
  color: var(--white50);
}

/* [project]/src/components/HomePricing/index.css [app-client] (css) */
.tabber-home-pricing {
  display: flex;
}

.tabber-home-pricing .content {
  width: 100%;
  height: var(--content-height);
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  max-width: 1750px;
  margin: auto;
  padding: 20px 68px;
  display: flex;
}

@media (min-width: 1921px) {
  .tabber-home-pricing .content {
    max-width: 2200px;
  }
}

@media (max-width: 768px) {
  .tabber-home-pricing .content {
    margin: 0;
    padding: 20px;
  }
}

.tabber-home-pricing .content .header-text {
  text-align: center;
  flex-direction: column;
  max-width: 75%;
  font-weight: 400;
  display: flex;
}

@media (max-width: 768px) {
  .tabber-home-pricing .content .header-text {
    text-wrap: balance;
    max-width: 100%;
  }
}

.tabber-home-pricing .content .header-text .title {
  font-size: 3.3vw;
  font-weight: 900;
}

@media (max-width: 768px) {
  .tabber-home-pricing .content .header-text .title {
    font-size: 32px;
  }
}

@media (max-width: 380px) {
  .tabber-home-pricing .content .header-text .title {
    font-size: 28px;
  }
}

.tabber-home-pricing .content .header-text .description {
  font-size: 1.25vw;
  font-weight: 100;
}

@media (max-width: 768px) {
  .tabber-home-pricing .content .header-text .description {
    font-size: 24px;
  }
}

@media (max-width: 380px) {
  .tabber-home-pricing .content .header-text .description {
    font-size: 18px;
  }
}

.tabber-home-pricing .content .plans {
  flex-direction: row;
  justify-content: center;
  gap: 1.65vw;
  display: flex;
}

@media (max-width: 768px) {
  .tabber-home-pricing .content .plans {
    gap: 14px;
  }
}

.tabber-home-pricing .content .plans .plan {
  cursor: pointer;
  background: var(--tabber-element-light);
  width: 20.8vw;
  box-shadow: 0 3px 8px 0 var(--black25);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border-radius: 10px;
  flex-direction: column;
  padding: 1.25vw;
  transition: transform .3s ease-in-out, box-shadow .3s ease-in-out;
  display: flex;
  position: relative;
}

@media (max-width: 768px) {
  .tabber-home-pricing .content .plans .plan {
    width: calc(50% - 8px);
    padding: 10px;
  }
}

.tabber-home-pricing .content .plans .plan:hover {
  box-shadow: 0 3px 16px 0 var(--black25);
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .tabber-home-pricing .content .plans .plan:hover {
    transform: none;
  }
}

.tabber-home-pricing .content .plans .plan .plan-title {
  width: fit-content;
  margin: 0 auto;
  font-size: 1.65vw;
  font-weight: 900;
}

@media (max-width: 768px) {
  .tabber-home-pricing .content .plans .plan .plan-title {
    font-size: 24px;
    line-height: 1.25;
  }
}

.tabber-home-pricing .content .plans .plan .features {
  flex-direction: column;
  gap: .9vw;
  margin-top: 1vw;
  display: flex;
}

@media (max-width: 768px) {
  .tabber-home-pricing .content .plans .plan .features {
    gap: 10px;
    margin-top: 16px;
  }
}

@media (max-width: 360px) {
  .tabber-home-pricing .content .plans .plan .features {
    gap: 6px;
  }
}

.tabber-home-pricing .content .plans .plan .features .feature {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.tabber-home-pricing .content .plans .plan .features .feature .icon {
  aspect-ratio: 1;
  width: 1.35vw;
  height: 1.35vw;
  color: var(--black75);
  border: 1px solid var(--black50);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin: 2px 6px 0 0;
  display: flex;
}

@media (max-width: 768px) {
  .tabber-home-pricing .content .plans .plan .features .feature .icon {
    width: 20px;
    height: 20px;
  }
}

.tabber-home-pricing .content .plans .plan .features .feature .icon svg {
  fill: currentColor;
  width: .95vw;
  height: .95vw;
}

@media (max-width: 768px) {
  .tabber-home-pricing .content .plans .plan .features .feature .icon svg {
    width: 14px;
    height: 14px;
  }
}

.tabber-home-pricing .content .plans .plan .features .feature .text {
  flex-direction: column;
  font-size: .75vw;
  display: flex;
}

@media (max-width: 768px) {
  .tabber-home-pricing .content .plans .plan .features .feature .text {
    font-size: 12px;
  }
}

.tabber-home-pricing .content .plans .plan .features .feature .text .title {
  font-weight: 500;
}

.tabber-home-pricing .content .plans .plan .features .feature .text .description {
  color: var(--black75);
}

.tabber-home-pricing .content .plans .plan .footer {
  color: currentColor;
  border-radius: 4px;
  flex-direction: row;
  align-items: center;
  margin: auto;
  font-size: .8vw;
  display: flex;
}

@media (max-width: 768px) {
  .tabber-home-pricing .content .plans .plan .footer {
    display: none;
  }
}

.tabber-home-pricing .content .plans .plan .footer:not(a) {
  margin: .4vw;
  padding: .4vw .8vw;
}

.tabber-home-pricing .content .plans .plan .footer.active {
  background-color: var(--green);
}

.tabber-home-pricing .content .plans .plan .footer.upgrade {
  color: var(--text-light);
  background: var(--tabber-button-gradient);
}

.tabber-home-pricing .content .plans .plan .footer.upgrade:hover {
  background: var(--tabber-button-gradient-hover);
}

.dark-theme .tabber-home-pricing .content .plans .plan {
  background: var(--tabber-element-dark);
  box-shadow: 0 3px 16px 0 var(--black25);
}

.dark-theme .tabber-home-pricing .content .plans .plan:hover {
  box-shadow: 0 3px 28px 0 var(--black25);
}

.dark-theme .tabber-home-pricing .content .plans .plan .feature .icon {
  color: var(--white90);
  border-color: var(--white50);
}

.dark-theme .tabber-home-pricing .content .plans .plan .feature .text .description {
  color: var(--white50);
}

/* [project]/src/components/HomeContact/index.css [app-client] (css) */
.tabber-home-contact {
  display: flex;
}

.tabber-home-contact .content {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 75%;
  margin: auto;
  padding: 20px 68px;
  display: flex;
}

@media (max-width: 768px) {
  .tabber-home-contact .content {
    text-align: center;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 20px;
    max-width: 100%;
    margin: 0;
    padding: 20px;
  }
}

.tabber-home-contact .content .left {
  flex-direction: column;
  max-width: 50%;
  display: flex;
  position: relative;
}

@media (max-width: 768px) {
  .tabber-home-contact .content .left {
    max-width: 100%;
  }
}

.tabber-home-contact .content .left .text {
  flex-direction: column;
  display: flex;
}

.tabber-home-contact .content .left .text .title {
  font-size: 4.6vw;
  font-weight: 500;
}

@media (max-width: 768px) {
  .tabber-home-contact .content .left .text .title {
    font-size: 36px;
    line-height: 1.25;
  }
}

.tabber-home-contact .content .left .text .description {
  color: var(--grey60);
  margin-top: 1vw;
  font-size: 1.2vw;
  font-weight: 400;
}

@media (max-width: 768px) {
  .tabber-home-contact .content .left .text .description {
    font-size: 18px;
  }
}

.tabber-home-contact .content .left .buttons {
  flex-direction: row;
  align-items: center;
  margin-top: 1vw;
  display: flex;
}

@media (max-width: 768px) {
  .tabber-home-contact .content .left .buttons {
    justify-content: center;
    margin-top: 0;
  }
}

.tabber-home-contact .content .left .buttons button {
  background-color: var(--black);
  color: var(--text-light);
  cursor: pointer;
  border: none;
  border-radius: 99px;
  padding: .7vw 1.2vw;
  font-size: 1vw;
  font-weight: 100;
  transition: background-color .2s ease-in-out;
}

.tabber-home-contact .content .left .buttons button:hover {
  background-color: var(--black75);
}

@media (max-width: 768px) {
  .tabber-home-contact .content .left .buttons button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.tabber-home-contact .content .feedback {
  background: linear-gradient(180deg, var(--primary50) 0%, var(--primary10) 100%);
  box-shadow: 0 4px 4px var(--black25);
  border-radius: 20px;
  padding: 3.2vw 5.2vw;
}

@media (max-width: 768px) {
  .tabber-home-contact .content .feedback {
    padding: 20px;
  }
}

.tabber-home-contact .content .feedback form {
  background-color: var(--white90);
  border-radius: 10px;
  flex-direction: column;
  gap: .85vw;
  max-width: 22vw;
  padding: 1vw;
  display: flex;
}

@media (max-width: 768px) {
  .tabber-home-contact .content .feedback form {
    gap: 16px;
    max-width: 100%;
    padding: 16px;
  }
}

.tabber-home-contact .content .feedback form .textarea-themed > div {
  padding: 0;
}

.tabber-home-contact .content .feedback form .textarea-themed > div:before {
  border-bottom: 1px solid var(--black50);
  content: " ";
  pointer-events: none;
  transition: border-bottom-color .2s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.tabber-home-contact .content .feedback form .textarea-themed > div[class*="focused"]:before {
  border-bottom-color: #0000 !important;
}

.tabber-home-contact .content .feedback form .textarea-themed > div > textarea {
  resize: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: inherit;
  background: none;
  border: 2px solid #0000;
  border-radius: 0;
  margin-top: 16px;
  padding: 5px;
  font-family: Roboto, sans-serif;
  transition: border .2s ease-in-out;
  height: 8vw !important;
}

.tabber-home-contact .content .feedback form .textarea-themed > div > textarea:hover:not(:focus) {
  border: 2px solid var(--black);
}

.tabber-home-contact .content .feedback form .textarea-themed > div > textarea:focus {
  border: 2px solid var(--primary) !important;
}

.tabber-home-contact .content .feedback form .disclaimer {
  text-align: center;
  ruby-align: center;
  padding: 0 1.1vw;
}

.tabber-home-contact .content .feedback form .disclaimer p {
  font-size: .65vw;
}

@media (max-width: 768px) {
  .tabber-home-contact .content .feedback form .disclaimer p {
    margin: 0 6px;
    font-size: 12px;
  }
}

.dark-theme .tabber-home-contact .content .left .text .description {
  color: var(--grey50);
}

.dark-theme .tabber-home-contact .content .left .buttons button {
  background-color: var(--white);
  color: var(--text-dark);
}

.dark-theme .tabber-home-contact .content .left .buttons button:hover {
  background-color: var(--white75);
}

.dark-theme .tabber-home-contact .content .feedback {
  box-shadow: 0 4px 8px var(--black25);
}

.dark-theme .tabber-home-contact .content .feedback form {
  background-color: var(--black90);
}

.dark-theme .tabber-home-contact .content .feedback form .textarea-themed > div:before {
  border-bottom: 1px solid var(--white75);
}

.dark-theme .tabber-home-contact .content .feedback form .textarea-themed > div > textarea:hover:not(:focus) {
  border: 2px solid var(--white);
}

/* [project]/src/components/HomeAbout/index.css [app-client] (css) */
.tabber-home-about {
  display: flex;
}

.tabber-home-about .content {
  padding: 20px 68px calc(var(--footer-height)  + 40px) 68px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1750px;
  margin: 0 auto;
  display: flex;
}

@media (min-width: 1921px) {
  .tabber-home-about .content {
    max-width: 2200px;
  }
}

@media (max-width: 768px) {
  .tabber-home-about .content {
    justify-content: start;
    gap: 20px;
    margin: 0;
    padding: 20px;
  }
}

.tabber-home-about .content .paragraph {
  max-width: 75%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .tabber-home-about .content .paragraph {
    max-width: 100%;
  }
}

@media (max-height: 870px) {
  .tabber-home-about .content .paragraph:not(:first-child) {
    display: none;
  }
}

.tabber-home-about .content .paragraph:not(:last-of-type) {
  margin-bottom: 5vh;
}

@media (max-width: 768px) {
  .tabber-home-about .content .paragraph:not(:last-of-type) {
    margin-bottom: 16px;
  }
}

.tabber-home-about .content .paragraph h2 {
  text-align: center;
  margin: 0 0 1vw;
  font-size: 1.8vw;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .tabber-home-about .content .paragraph h2 {
    margin-bottom: 8px;
    font-size: 24px;
  }
}

.tabber-home-about .content .paragraph p {
  margin-bottom: 1vw;
  font-size: 1.05vw;
  font-weight: 100;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .tabber-home-about .content .paragraph p {
    margin-bottom: 8px;
    font-size: 14px;
  }
}

/* [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]/index.css [app-client] (css) */
.tabber-page path.home_page_image_svg__tab {
  animation: 8s ease-in-out infinite tabPath;
}

.tabber-page path.home_page_image_svg__tab-div {
  animation: 8s ease-in-out infinite tabDivPath;
}

.tabber-page .snap-container {
  width: 100%;
  height: var(--content-height);
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  overflow-y: scroll;
}

.tabber-page .snap-container::-webkit-scrollbar {
  display: none;
}

.tabber-page .snap-container > div {
  height: var(--content-height);
  scroll-snap-align: start;
}

.tabber-page .snap-container .content > * {
  --delay: 0;
  opacity: 0;
  transition: opacity .5s var(--delay), transform .5s var(--delay);
  transform: translate3d(0, 4rem, 0);
}

.tabber-page .snap-container .visible .content > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

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