/* -force_new_hash- */
@font-face {
  font-family: "Segoe UI";
  src: local("Segoe UI Light");
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: "Segoe UI";
  src: local("Segoe UI Semilight");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Segoe UI";
  src: local("Segoe UI");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Segoe UI";
  src: local("Segoe UI Semibold");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Segoe UI";
  src: local("Segoe UI Bold");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Segoe UI";
  src: local("Segoe UI Light Italic");
  font-style: italic;
  font-weight: 200;
}
@font-face {
  font-family: "Segoe UI";
  src: local("Segoe UI Semilight Italic");
  font-style: italic;
  font-weight: 300;
}
@font-face {
  font-family: "Segoe UI";
  src: local("Segoe UI Italic");
  font-style: italic;
  font-weight: 400;
}
@font-face {
  font-family: "Segoe UI";
  src: local("Segoe UI Semibold Italic");
  font-style: italic;
  font-weight: 600;
}
@font-face {
  font-family: "Segoe UI";
  src: local("Segoe UI Bold Italic");
  font-style: italic;
  font-weight: 700;
}
body,
input,
select,
button {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Web", sans-serif;
}

/* ---- V2 ----- */
html {
  font-size: 16px;
}

body {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  background: #f3f2f1;
}

html.uiv2 {
  font-size: calc(1em * .625);
  -ms-high-contrast-adjust: none;
  -ms-overflow-style: scrollbar;
}
html.uiv2.edge {
  font-size: 62.5%;
  -ms-content-zooming: none;
  touch-action: none;
}
html.uiv2 body {
  background-color: #f7f7f7;
  font-size: 1.4rem;
  line-height: 1.2857;
}

#rootView {
  min-height: calc(100vh - 4rem);
  display: -webkit-box;
  display: flex;
  color: #252424;
  padding: 2rem 3rem;
}

#rootViewV2 {
  margin: 0;
  background-color: #f7f7f7;
  min-height: 100vh;
  display: -webkit-box;
  display: flex;
}

#mobileRootViewV2 {
  min-height: calc(100vh - 4rem);
  display: -webkit-box;
  display: flex;
  color: #252424;
  padding: 2rem 3rem;
}

a {
  color: #5b5fc7;
  text-decoration: none;
  font-weight: bold;
}
a:hover, a:focus {
  text-decoration: underline;
}

h1 {
  font-size: 1.5em;
}

@media only screen and (max-width: 767px) {
  #rootView {
    padding: 1rem 1rem;
  }

  #mobileRootViewV2 {
    padding: 1rem 1rem;
  }
}
@media screen and (max-width: 350px) {
  html:not(.uiv2) {
    font-size: 12px;
  }

  #rootView {
    min-height: calc(100vh - 2rem);
  }
}
/* IE default flex-shrink behavior is different from other browsers, to unify it, we are adding this */
* {
  flex-shrink: 0;
}
.busy-animation {
  display: inline-block;
}

.ts-spinner-internal {
  overflow: hidden;
}

.ts-spinner-internal.size-1x {
  height: 2.4rem;
  width: 2.4rem;
}

.ts-spinner-internal.size-1x .spinner-animate {
  width: 2.4rem;
  height: 146.4rem;
  -webkit-animation: 2s steps(60) both infinite translate-small;
          animation: 2s steps(60) both infinite translate-small;
}

.ts-spinner-internal.size-2x {
  height: 3.6rem;
  width: 3.6rem;
}

.ts-spinner-internal.size-2x .spinner-animate {
  width: 3.6rem;
  height: 219.6rem;
  -webkit-animation: 2s steps(60) both infinite translate-medium;
          animation: 2s steps(60) both infinite translate-medium;
}

.ts-spinner-internal.size-3x {
  height: 7.2rem;
  width: 7.2rem;
}

.ts-spinner-internal.size-3x .spinner-animate {
  width: 7.2rem;
  height: 439.2rem;
  -webkit-animation: 2s steps(60) both infinite translate-large;
          animation: 2s steps(60) both infinite translate-large;
}

.ts-spinner-container {
  overflow: hidden;
  position: relative;
  opacity: 0;
  -webkit-animation: 0.3s 1.5s ease-out both fade-spinner-in;
          animation: 0.3s 1.5s ease-out both fade-spinner-in;
}

.ts-spinner-container {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

@-webkit-keyframes translate-small {
  to {
    -webkit-transform: translate3d(0, -144rem, 0);
            transform: translate3d(0, -144rem, 0);
  }
}

@keyframes translate-small {
  to {
    -webkit-transform: translate3d(0, -144rem, 0);
            transform: translate3d(0, -144rem, 0);
  }
}
@-webkit-keyframes translate-medium {
  to {
    -webkit-transform: translate3d(0, -216rem, 0);
            transform: translate3d(0, -216rem, 0);
  }
}
@keyframes translate-medium {
  to {
    -webkit-transform: translate3d(0, -216rem, 0);
            transform: translate3d(0, -216rem, 0);
  }
}
@-webkit-keyframes translate-large {
  to {
    -webkit-transform: translate3d(0, -432rem, 0);
            transform: translate3d(0, -432rem, 0);
  }
}
@keyframes translate-large {
  to {
    -webkit-transform: translate3d(0, -432rem, 0);
            transform: translate3d(0, -432rem, 0);
  }
}
@-webkit-keyframes fade-spinner-in {
  to {
    opacity: 1;
  }
}
@keyframes fade-spinner-in {
  to {
    opacity: 1;
  }
}
.view {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
.view .column {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
.view .body {
  -webkit-box-flex: 1;
          flex: 1;
  text-align: center;
}
.view .centered {
  display: -webkit-box;
  display: flex;
  align-content: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  text-align: center;
}
.view .fillSpace {
  -webkit-box-flex: 1;
          flex: auto;
}
/* fonts sized defined here works only with UI v2, where rem=10px */
/* 14 / 18 */
/* 18px */
/* 12 / 16 */
/* 32 / 40 */
/* 24 / 32 */
/* 18 / 20 */
/* mobile sizes */
/* 17 / 22 */
/* 28 / 38 */
.button {
  cursor: pointer;
  height: 2rem;
  min-width: 7rem;
  border: 0;
  position: relative;
  border-radius: 0.2rem;
  max-width: 20rem;
  padding: 0px 1.25rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0.2rem 0.4rem -0.075rem;
  background-color: white;
}
.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 0.1rem solid transparent;
  border-radius: 0.2rem;
}
.button:not(.primary)::after {
  border-color: #e1dfdd;
}
.button:not(.primary):hover {
  background: #edebe9;
}
.button:not(.primary):hover::after {
  border-color: #c8c6c4;
}
.button:not(.primary):active, .button:not(.primary):focus {
  background: #e1dfdd;
  box-shadow: none;
  color: #252423;
}
.button:not(.primary):active::after, .button:not(.primary):focus::after {
  border-color: #c8c6c4;
}
.button.primary {
  background-color: #5b5fc7;
  border-color: transparent;
  color: white;
  box-shadow: 0 0.2rem 0.4rem -0.075rem rgba(0, 0, 0, 0.25);
}
.button.primary:hover {
  background-color: #444791;
}
.button.primary:active, .button.primary:focus {
  background: #2f2f4a;
  box-shadow: none;
}
.button .buttonText {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  font-weight: 600;
}
.button.mobile {
  width: 100%;
  max-width: none;
  height: auto;
  padding: 1.7rem;
  margin-top: 1.2rem;
  margin-bottom: 2.4rem;
  border-radius: 0.4rem;
  box-shadow: none;
  display: -webkit-box;
  display: flex;
  font-size: 1.4rem;
  line-height: 1.2857;
}
.button.mobile::after {
  border-radius: 0.4rem;
}
.button.mobile .buttonText {
  font-weight: normal;
  margin: 0 auto;
}
.button.mobile:not(.primary) {
  color: #5b5fc7;
}
.button.mobile:not(.primary)::after {
  border-color: #5b5fc7;
}
/* ---- V2 ----- */
/* fonts sized defined here works only with UI v2, where rem=10px */
/* 14 / 18 */
/* 18px */
/* 12 / 16 */
/* 32 / 40 */
/* 24 / 32 */
/* 18 / 20 */
/* mobile sizes */
/* 17 / 22 */
/* 28 / 38 */
.footer {
  font-size: 0.8rem;
}
.footer a {
  font-weight: normal;
}

@media screen and (max-width: 350px) {
  footer {
    width: calc(100vw - 2rem);
  }
}
/* UI v2 */
.disclaimer {
  margin-bottom: 6.4rem;
  text-align: center;
  color: #979593;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.disclaimer .view {
  display: block;
}
.disclaimer a {
  font-weight: normal;
  outline: none;
  color: #979593;
  margin: 1rem;
}

@media screen and (max-width: 1002px) {
  .disclaimer {
    margin-bottom: 6.4rem;
    margin-top: 3.2rem;
  }
}
@media screen and (max-height: 600px) and (min-width: 1002px) {
  .disclaimer {
    margin-bottom: 2rem;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation: fadeIn 2s 1;
          animation: fadeIn 2s 1;
}
/* fonts sized defined here works only with UI v2, where rem=10px */
/* 14 / 18 */
/* 18px */
/* 12 / 16 */
/* 32 / 40 */
/* 24 / 32 */
/* 18 / 20 */
/* mobile sizes */
/* 17 / 22 */
/* 28 / 38 */
.installPrompt {
  width: 16rem;
  box-shadow: 0 1rem 2rem 0 rgba(22, 35, 58, 0.24);
  background-color: #5b5fc7;
  color: white;
  border-radius: 0.2rem;
  padding: 0 1rem;
  position: absolute;
  text-align: left;
}
.installPrompt.bottom {
  bottom: 2rem;
}
.installPrompt.bottom::after {
  content: " ";
  position: absolute;
  left: 50%;
  border-top: 0.8rem solid #5b5fc7;
  border-right: 0.8rem solid transparent;
  border-left: 0.8rem solid transparent;
  border-bottom: none;
}
.installPrompt.bottom.upper {
  bottom: 10rem;
}
.installPrompt.left {
  left: 2rem;
}
.installPrompt.top {
  top: 2rem;
}
.installPrompt.center {
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.installPrompt p.title {
  font-weight: bold;
}
.installPrompt .msg {
  font-size: smaller;
}

.ltr .installPrompt.left {
  left: 2rem;
}
.ltr .installPrompt.right {
  right: 2rem;
}

.rtl .installPrompt.right {
  left: 2rem;
}
.rtl .installPrompt.left {
  right: 2rem;
}

/* UI v2 */
html.uiv2 .installPrompt {
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25);
  width: 28rem;
  padding: 0 1.6rem;
  border-radius: 0.3rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0.8rem 1rem -0.2rem;
}
html.uiv2 .installPrompt .title {
  font-size: 1.8rem;
  line-height: 2rem;
  margin: 1.6rem auto 0.8rem;
}
html.uiv2 .installPrompt .msg {
  font-size: 1.2rem;
  line-height: 1.6rem;
  margin: 0.8rem auto 1.6rem;
}
html.uiv2 .installPrompt.bottom::after {
  border-top-width: 0.6rem;
  left: calc(50% - 0.8rem);
}
html.uiv2 .installPrompt.top::after {
  border-bottom-width: 0.6rem;
}
html.uiv2 .installPrompt.left {
  left: 3.2rem;
}
html.uiv2 .installPrompt.left::after {
  border-top-width: 0.6rem;
  left: calc(10% - 1.2rem);
}
/* ---- V2 ----- */
.joinView .header {
  display: -webkit-box;
  display: flex;
  align-self: flex-start;
}
.joinView .header .logo {
  height: 1.2rem;
}
.joinView h1.title {
  align-self: stretch;
}
.joinView p.noSupport {
  margin-bottom: 0;
}
.joinView .partyImage {
  width: 25rem;
}
@media only screen and (max-width: 767px) {
  .joinView .partyImage {
    width: 20rem;
  }
}
@media screen and (max-width: 350px) {
  .joinView .partyImage {
    width: 15rem;
  }
}
.joinView .buttonsContainer {
  display: -webkit-box;
  display: flex;
}
.joinView .buttonsContainer .button {
  margin: 0.5rem;
  position: relative;
}
.joinView .buttonsContainer .button:hover .tooltip {
  display: block;
}
.joinView .tooltip {
  position: absolute;
  background: #fff;
  display: none;
  border-radius: 0.2rem;
  bottom: 2.8rem;
  padding: 0.6rem 1.4rem;
  max-width: 100%;
  overflow: visible;
  width: 100%;
  white-space: normal;
  font-weight: 600;
  font-size: 0.8rem;
  left: -1.4rem;
  box-shadow: 0 0.2rem 0.4rem -0.075rem rgba(0, 0, 0, 0.25);
  text-align: left;
}
.joinView .tooltip:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  border-left: 0.7rem solid transparent;
  border-right: 0.7rem solid transparent;
  border-top: 0.7rem solid #fff;
  left: calc(50% - 1.2rem);
  bottom: -0.7rem;
}
@media only screen and (max-width: 767px) {
  .joinView .buttonsContainer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}
.joinView .desktopMessage {
  text-align: center;
  font-size: 0.9rem;
}
.joinView .launchLink {
  display: inline-block;
  position: relative;
}
.joinView .launchLink:hover .tooltip {
  display: block;
}
.joinView .launchLink .tooltip {
  bottom: 2rem;
}
.joinView .tryEdgeAgain {
  margin-top: 0;
  font-size: 14px;
  margin-bottom: 20px;
}
.joinView .havingProblems {
  margin-top: -10px;
}
.appStoreButton img {
  width: 10rem;
}
.spacer {
  -webkit-box-flex: 1;
          flex: 1;
}
/* ---- V2 ----- */
.joinMobileView {
  color: #6f6d6d;
}
@media screen and (min-width: 768px) and (min-height: 1024px) {
  .joinMobileView .spacer {
    -webkit-box-flex: 0;
            flex: 0;
  }
}
.joinMobileView .logo {
  width: 18rem;
}
.joinMobileView .message {
  width: 18rem;
  margin: 1rem auto 1rem auto;
  font-size: 1.2rem;
}
.joinMobileView .message.bold {
  font-size: 1.4rem;
  font-weight: bold;
}
.joinMobileView .illustration {
  margin: 1rem;
  width: 18rem;
}
.joinMobileView .legalNotice {
  font-size: 0.8rem;
  opacity: 0.8;
  width: 18rem;
}
/* ---- V2 ----- */
/* fonts sized defined here works only with UI v2, where rem=10px */
/* 14 / 18 */
/* 18px */
/* 12 / 16 */
/* 32 / 40 */
/* 24 / 32 */
/* 18 / 20 */
/* mobile sizes */
/* 17 / 22 */
/* 28 / 38 */
.modernMobileView {
  max-width: 28.6rem;
  margin: 0 auto;
  color: #6f6d6d;
}
@media screen and (min-width: 768px) and (min-height: 1024px) {
  .modernMobileView .spacer {
    -webkit-box-flex: 0;
            flex: 0;
  }
}
.modernMobileView h1 {
  font-size: 2.8rem;
  line-height: 3.8rem;
  color: #5b5fc7;
  font-weight: normal;
  width: 28.6rem;
  margin: 0.6rem 0 2.4rem;
}
.modernMobileView .message {
  width: 28.6rem;
  font-size: 1.7rem;
  line-height: 2.2rem;
  color: #6f6d6d;
}
.modernMobileView .illustration {
  width: 20rem;
  margin-bottom: 2.4rem;
}
@media screen and (min-device-width: 400px) {
  .modernMobileView .illustration {
    width: 28rem;
  }
}
.modernMobileView .legalNotice {
  font-size: 0.8rem;
  opacity: 0.8;
  width: 28.6rem;
}
[dir="ltr"] .modernMobileView .checkboxContainer {
  text-align: left;
}
[dir="rtl"] .modernMobileView .checkboxContainer {
  text-align: right;
}
.modernMobileView .checkboxContainer {
  margin-top: 1.6rem;
  font-size: 1.2rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
          align-items: flex-start;
}
.modernMobileView .checkbox {
  margin-right: 0.8rem;
}
/* ---- V2 ----- */
/* fonts sized defined here works only with UI v2, where rem=10px */
/* 14 / 18 */
/* 18px */
/* 12 / 16 */
/* 32 / 40 */
/* 24 / 32 */
/* 18 / 20 */
/* mobile sizes */
/* 17 / 22 */
/* 28 / 38 */
.modernSimplifiedMobileView {
  max-width: 28.6rem;
  margin: 0 auto;
  color: #6f6d6d;
}
@media screen and (min-width: 768px) and (min-height: 1024px) {
  .modernSimplifiedMobileView .spacer {
    -webkit-box-flex: 0;
            flex: 0;
  }
}
.modernSimplifiedMobileView h1 {
  font-size: 2.2rem;
  line-height: 2.6rem;
  color: #252424;
  font-weight: normal;
  width: 28.6rem;
  margin: 6rem 0;
}
.modernSimplifiedMobileView a {
  font-weight: normal;
}
.modernSimplifiedMobileView .message {
  font-size: 1.2rem;
  font-size: 1.7rem;
  line-height: 2.2rem;
  color: #6f6d6d;
}
.modernSimplifiedMobileView .getHelpJoining {
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #6f6d6d;
  font-weight: 400;
}
.modernSimplifiedMobileView .illustration {
  width: 24rem;
}
@media screen and (min-device-width: 400px) {
  .modernSimplifiedMobileView .illustration {
    width: 28rem;
  }
}
.modernSimplifiedMobileView .legalNotice {
  font-size: 0.8rem;
  opacity: 0.8;
  width: 28.6rem;
}
[dir="ltr"] .modernSimplifiedMobileView .checkboxContainer {
  text-align: left;
}
[dir="rtl"] .modernSimplifiedMobileView .checkboxContainer {
  text-align: right;
}
.modernSimplifiedMobileView .checkboxContainer {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
          align-items: center;
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #6f6d6d;
  font-weight: 400;
}
.modernSimplifiedMobileView .checkbox {
  margin-right: 1.2rem;
}
.modernSimplifiedMobileView .modalDialogOuterContainer {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
}
.modernSimplifiedMobileView .dialogBoxContainer {
  width: 24rem;
  color: #252423;
  background-color: #f7f7f7;
  border-radius: 1rem;
  text-align: center;
  padding-top: 1.5rem;
}
.modernSimplifiedMobileView .dialogBoxHeader {
  font-size: 1.7rem;
  line-height: 2.2rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
}
.modernSimplifiedMobileView .dialogBoxDetails {
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 400;
  padding-bottom: 1.5rem;
  padding: 0 1rem 1.5rem 1rem;
}
.modernSimplifiedMobileView .dialogBoxButtonsConatiner {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  border: 0rem;
}
.modernSimplifiedMobileView .dialogBoxButton {
  -webkit-box-flex: 1;
          flex: 1;
  height: 3.5rem;
  background-color: #f7f7f7;
  padding-bottom: 1rem;
  border: 0;
  border-top: 0.1rem solid #e1dfdd;
  color: #5b5fc7;
}
.modernSimplifiedMobileView .dialogBoxContinueButton {
  border-bottom-left-radius: 1rem;
  font-weight: 400;
}
.modernSimplifiedMobileView .dialogBoxCancelButton {
  border-bottom-right-radius: 1rem;
  border-left: 0.1rem solid #e1dfdd;
  font-weight: 600;
}
/* ---- V2 ----- */
/* fonts sized defined here works only with UI v2, where rem=10px */
/* 14 / 18 */
/* 18px */
/* 12 / 16 */
/* 32 / 40 */
/* 24 / 32 */
/* 18 / 20 */
/* mobile sizes */
/* 17 / 22 */
/* 28 / 38 */
.modernMobileContactSyncView {
  max-width: 28.6rem;
  margin: 0 auto;
  color: #6f6d6d;
}
@media screen and (min-width: 768px) and (min-height: 1024px) {
  .modernMobileContactSyncView .spacer {
    -webkit-box-flex: 0;
            flex: 0;
  }
}
.modernMobileContactSyncView h1 {
  font-size: 2.8rem;
  line-height: 3.8rem;
  color: #5b5fc7;
  font-weight: normal;
  width: 28.6rem;
  margin: 0.6rem 0 2.4rem;
}
.modernMobileContactSyncView .message {
  width: 24.6rem;
  font-size: 1.7rem;
  line-height: 2.2rem;
  color: #6f6d6d;
  padding-left: 30px;
  padding-right: 30px;
}
.modernMobileContactSyncView .illustration {
  margin-top: 2.4rem;
  width: 14.6rem;
  margin-bottom: 2.4rem;
}
@media screen and (min-device-width: 400px) {
  .modernMobileContactSyncView .illustration {
    width: 18rem;
  }
}
.modernMobileContactSyncView .label {
  text-align: left;
  font-weight: 600;
}
.modernMobileContactSyncView .legalNotice {
  font-size: 0.8rem;
  opacity: 0.8;
  width: 28.6rem;
}
/* ---- V2 ----- */
/* fonts sized defined here works only with UI v2, where rem=10px */
/* 14 / 18 */
/* 18px */
/* 12 / 16 */
/* 32 / 40 */
/* 24 / 32 */
/* 18 / 20 */
/* mobile sizes */
/* 17 / 22 */
/* 28 / 38 */
.modernMobileCommunityJoinView {
  max-width: 28.6rem;
  margin: 0 auto;
  color: #6f6d6d;
}
@media screen and (min-width: 768px) and (min-height: 1024px) {
  .modernMobileCommunityJoinView .spacer {
    -webkit-box-flex: 0;
            flex: 0;
  }
}
.modernMobileCommunityJoinView h1 {
  font-size: 2.8rem;
  line-height: 3.8rem;
  color: #5b5fc7;
  font-weight: normal;
  width: 28.6rem;
  margin: 0.6rem 0;
}
.modernMobileCommunityJoinView a {
  font-weight: normal;
}
.modernMobileCommunityJoinView .message {
  width: 28.6rem;
  font-size: 1.7rem;
  line-height: 2.2rem;
  color: #6f6d6d;
}
.modernMobileCommunityJoinView .illustration {
  width: 20rem;
  margin: 1rem 0;
}
@media screen and (min-device-width: 400px) {
  .modernMobileCommunityJoinView .illustration {
    width: 28rem;
  }
}
.modernMobileCommunityJoinView .legalNotice {
  font-size: 0.8rem;
  opacity: 0.8;
  width: 28.6rem;
}
/* fonts sized defined here works only with UI v2, where rem=10px */
/* 14 / 18 */
/* 18px */
/* 12 / 16 */
/* 32 / 40 */
/* 24 / 32 */
/* 18 / 20 */
/* mobile sizes */
/* 17 / 22 */
/* 28 / 38 */
/* ---- V2 ----- */
.btn {
  min-height: 10.4rem;
  border: none;
  padding: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.btn .img {
  width: 4rem;
  height: 4rem;
  margin: auto 3.2rem;
}
.btn div.img {
  background-color: lightgray;
}
.btn .text {
  text-align: left;
  width: calc(42rem - 13.6rem);
}
.btn.primary {
  position: relative;
  background: white;
  border-radius: 0.4rem;
  box-shadow: 0 0.16rem 0.36rem 0 rgba(0, 0, 0, 0.13), 0 0.03rem 0.09rem 0 rgba(0, 0, 0, 0.11);
  cursor: pointer;
  -webkit-box-flex: 1;
          flex: 1 1 0;
}
.btn.primary:hover {
  box-shadow: 0 0.06rem 0.18rem 0 rgba(0, 0, 0, 0.11), 0 0.32rem 0.72rem 0 rgba(0, 0, 0, 0.13);
  background-color: #FAF9F8;
}
.btn.primary:focus {
  box-shadow: 0 0.16rem 0.36rem 0 rgba(0, 0, 0, 0.13), 0 0.03rem 0.09rem 0 rgba(0, 0, 0, 0.11);
  background-color: #FAF9F8;
  outline: none;
}
.btn.primary:focus:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0.4rem;
  border: 0.1rem solid #5b5fc7;
}
.btn.primary + .btn.primary {
  margin-top: 0.8rem;
}
.btn.primary .text {
  margin: 3.2rem 0;
}
.btn.primary h3 {
  color: #252423;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2rem;
  margin: 0;
  margin-bottom: 0.5rem;
}
.btn.primary p {
  color: #605e5c;
  font-size: 1.4rem;
  line-height: 1.2857;
  margin: 0;
}
.btn.primary.primaryAnimated {
  background-color: transparent;
  box-shadow: none;
}
.btn.primary.primaryAnimated .textTransition {
  -webkit-animation: fadeInOut 0.3s;
          animation: fadeInOut 0.3s;
}
@-webkit-keyframes fadeInOut {
  0%, 100% {
    opacity: 1;
  }
  30%, 50% {
    opacity: 0;
  }
}
@keyframes fadeInOut {
  0%, 100% {
    opacity: 1;
  }
  30%, 50% {
    opacity: 0;
  }
}
.btn.secondary {
  background-color: transparent;
  color: #605e5c;
  font-size: 1.4rem;
  line-height: 1.2857;
}
.btn.secondary + .btn.secondary {
  border-top: 0.1rem solid #e1dfdd;
}
.btn.secondary:last-of-type {
  margin-bottom: -3.2rem;
  /* This effectively negate a bottom margin on container if last element is SECONDARY button. */
}
.btn.secondary .text {
  margin: 2.4rem 0;
}
.btn.secondary a {
  color: #5b5fc7;
  font-weight: normal;
  outline: none;
}
/* fonts sized defined here works only with UI v2, where rem=10px */
/* 14 / 18 */
/* 18px */
/* 12 / 16 */
/* 32 / 40 */
/* 24 / 32 */
/* 18 / 20 */
/* mobile sizes */
/* 17 / 22 */
/* 28 / 38 */
/* ---- V2 ----- */
.modernViewContainer {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-height: 100vh;
}
.modernViewContainer .logo {
  position: absolute;
  top: 4.2rem;
  left: 4.2rem;
  width: 4.8rem;
  height: 4.8rem;
}
.modernViewContainer #container {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
          flex: 1 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 1002px) {
  html.uiv2 body {
    height: -webkit-fill-available;
    height: -moz-available;
    height: stretch;
  }
  html.uiv2 .modernViewContainer {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    min-height: 100vh;
  }
  html.uiv2 .modernViewContainer .logo {
    position: static;
    position: initial;
    margin: 4.2rem;
    top: auto;
    left: auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 0;
            flex: 0;
  }
  html.uiv2 .modernViewContainer #container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    display: -webkit-box;
    display: flex;
  }
}
/* fonts sized defined here works only with UI v2, where rem=10px */
/* 14 / 18 */
/* 18px */
/* 12 / 16 */
/* 32 / 40 */
/* 24 / 32 */
/* 18 / 20 */
/* mobile sizes */
/* 17 / 22 */
/* 28 / 38 */
/* ---- V2 ----- */
#textbox {
  text-align: left;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  color: #605e5c;
  font-size: 1.4rem;
  line-height: 1.2857;
}
#textbox h1 {
  color: #252424;
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 4rem;
  margin: 0;
}
#textbox p {
  color: #252424;
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin: 0;
}
#textbox .variant10Header {
  font-weight: normal;
}

@media screen and (max-width: 1002px) {
  #textbox p {
    margin-bottom: 0;
  }
}
/* fonts sized defined here works only with UI v2, where rem=10px */
/* 14 / 18 */
/* 18px */
/* 12 / 16 */
/* 32 / 40 */
/* 24 / 32 */
/* 18 / 20 */
/* mobile sizes */
/* 17 / 22 */
/* 28 / 38 */
/* ---- V2 ----- */
#launching {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
}
#launching h1 {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 3.2rem;
}

@media screen and (max-width: 1002px) {
  #launching {
    padding-top: 0;
  }
}
/* fonts sized defined here works only with UI v2, where rem=10px */
/* 14 / 18 */
/* 18px */
/* 12 / 16 */
/* 32 / 40 */
/* 24 / 32 */
/* 18 / 20 */
/* mobile sizes */
/* 17 / 22 */
/* 28 / 38 */
.unsupported {
  max-width: 61rem;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
}
.unsupported img {
  width: 27.8rem;
  height: 27.8rem;
}
.unsupported .textBox {
  margin-bottom: 3.2rem;
}
.unsupported .textBox h1 {
  font-size: 3.2rem;
  line-height: 4rem;
}
.unsupported .textBox p {
  color: #605e5c;
}
.unsupported .learnMore {
  border: 0.1rem solid #e1dfdd;
  border-radius: 0.2rem;
  cursor: pointer;
  color: #252423;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0.28rem 0.56rem -0.105rem;
  max-width: 28rem;
  min-width: 11.8rem;
  margin: 0;
  padding: 0 2rem;
  outline: none;
  height: 3.2rem;
  font-size: 1.4rem;
  line-height: 1.2857;
  font-weight: 600;
}
.unsupported .learnMore:hover {
  background-color: #edebe9;
  border-color: #c8c6c4;
}
.unsupported .learnMore:focus {
  border: 0.1rem solid #e1dfdd;
  outline-width: 0;
  position: relative;
}
.unsupported .learnMore:focus::before {
  border: 0.1rem solid white;
  left: -0.1rem;
  bottom: -0.1rem;
  right: -0.1rem;
  top: -0.1rem;
  border-radius: 0.2rem;
  z-index: 1;
  pointer-events: none;
  position: absolute;
  content: "";
}
.unsupported .learnMore:focus::after {
  border: 1px solid black;
  left: -0.1rem;
  bottom: -0.1rem;
  right: -0.1rem;
  top: -0.1rem;
  border-radius: 0.2rem;
  z-index: 1;
  pointer-events: none;
  position: absolute;
  content: "";
}
.unsupported .learnMore:active {
  border-color: #c8c6c4;
  box-shadow: none;
  -webkit-animation-timing-function: cubic-bezier(0.78, 0, 0.22, 1);
          animation-timing-function: cubic-bezier(0.78, 0, 0.22, 1);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 100ms;
          animation-duration: 100ms;
  -webkit-animation-name: button_animation;
          animation-name: button_animation;
}

@-webkit-keyframes button_animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.96);
            transform: scale(0.96);
  }
}

@keyframes button_animation {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.96);
            transform: scale(0.96);
  }
}
/* fonts sized defined here works only with UI v2, where rem=10px */
/* 14 / 18 */
/* 18px */
/* 12 / 16 */
/* 32 / 40 */
/* 24 / 32 */
/* 18 / 20 */
/* mobile sizes */
/* 17 / 22 */
/* 28 / 38 */
/* ---- V2 ----- */
.modernViewRenderer {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}
.modernViewRenderer .content {
  width: 42rem;
  text-align: center;
  padding: 3.2rem 0;
}
.modernViewRenderer #buttonsbox {
  -webkit-box-pack: start;
          justify-content: flex-start;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
.modernViewRenderer .vl {
  border-left: 0.1rem solid #e1dfdd;
  width: 0;
  margin: 0.5rem 6.4rem;
}

@media screen and (max-width: 1002px) {
  .modernViewRenderer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .modernViewRenderer .vl {
    display: none;
  }
}
/* fonts sized defined here works only with UI v2, where rem=10px */
/* 14 / 18 */
/* 18px */
/* 12 / 16 */
/* 32 / 40 */
/* 24 / 32 */
/* 18 / 20 */
/* mobile sizes */
/* 17 / 22 */
/* 28 / 38 */
/* ---- V2 ----- */
.container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  min-height: 100vh;
}
.container .header {
  display: -webkit-box;
  display: flex;
  align-self: center;
  margin: 3rem auto;
}
.container .header .logo {
  height: 1.8rem;
}
.container .communityImage {
  width: 30rem;
  margin: 3rem auto;
}
.container .details .title {
  align-self: stretch;
  font-size: 1.5rem;
  font-weight: bold;
  color: #5b5fc7;
  margin: 1rem;
}
.container .details .description {
  text-align: center;
  font-size: 1.125rem;
  opacity: 0.9;
  width: 23rem;
  margin: 1rem;
}
.container .details .buttonsContainer .appStoreButton {
  margin: 1rem;
}
.container .details .buttonsContainer .appStoreButton img {
  width: 10rem;
}
.container .details .buttonsContainer .appStoreButton #googleStoreImg {
  width: 11rem;
}
.container .notices {
  margin: 3rem auto;
}
.container .legalNotice {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.8;
  width: 28rem;
  align-self: center;
  margin: 0.2rem;
}
.container .disclaimer {
  font-size: 0.8rem;
}
@media screen and (max-width: 350px) {
  .container .partyImage {
    width: 15rem;
  }
}
@media only screen and (max-width: 767px) {
  .container .description {
    font-size: 1.4rem;
    line-height: 1.2857;
  }
  .container .legalNotice {
    width: auto;
  }
}

/*# sourceMappingURL=launcher.6e6e6c160f952a7c483b.css.map*/