:export {
  mobileReferenceWidth: 375;
  tabletReferenceWidth: 1280;
  desktopReferenceWidth: 1920;
  breakpointTablet: 720;
  breakpointDesktop: 1281;
  breakpointBigDesktop: 2400;
  bigDesktopCoefficient: 1.25;
}

:root {
  color-scheme: only light;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--color-paper-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: calc(4px + env(safe-area-inset-top));
}

@media (min-width: 720px) {
  .only-mobile {
    display: none !important;
  }
}
@media (max-width: 719px) {
  .only-tablet {
    display: none !important;
  }
}
@media (min-width: 1281px) {
  .only-tablet {
    display: none !important;
  }
}
@media (max-width: 1280px) {
  .only-desktop {
    display: none !important;
  }
}

@media (max-width: 719px) {
  .hidden-mobile {
    display: none !important;
  }
}
@media (min-width: 720px) and (max-width: 1280px) {
  .hidden-tablet {
    display: none !important;
  }
}
@media (min-width: 1281px) {
  .hidden-desktop {
    display: none !important;
  }
}

.smart-captcha {
  width: 100%;
}

.nowrap {
  white-space: nowrap;
}
