body {
  margin: 0;
  padding: 0;
  background-size: cover;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: AlwynNew, Helvetica Neue, -apple-system, sans-serif;
}

#root,
body {
  height: 100vh;
  overflow: hidden;
}

#root {
  display: flex;
  justify-content: center;
}

a {
  color: #2ae8f0;
  text-decoration: none;
}

.RoundedInput {
  background-color: #404c6e;
  height: 50px;
  color: #fff;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 17px;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 20px;
  font-family: AlwynNew, Helvetica Neue, -apple-system, sans-serif;
  box-sizing: border-box;
}

.RoundedInput:last-of-type {
  margin-bottom: 2px;
}

.RoundedInput::-webkit-input-placeholder {
  color: #92a2d6;
  opacity: 1;
}

.RoundedInput::-moz-placeholder {
  color: #92a2d6;
  opacity: 1;
}

.RoundedInput:-ms-input-placeholder {
  opacity: 1;
}

.RoundedInput::-ms-input-placeholder {
  opacity: 1;
}

.RoundedInput::placeholder {
  color: #92a2d6;
  opacity: 1;
}

.RoundedInput:-ms-input-placeholder {
  color: #92a2d6;
}

.RoundedInput::-ms-input-placeholder {
  color: #92a2d6;
}

.InputError {
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  line-height: 20px;
  color: #ff1d25;
  min-height: 20px;
}

.App {
  display: flex;
  flex-direction: column;
  max-width: 1100px;
  height: 100%;
  width: 100%;
}

.NavBar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #1c243b;
  height: 100px;
  flex-shrink: 0;
}

.NavBar__logo {
  height: 48px;
}

.NavBar--is-centered {
  justify-content: center;
}

.NavBar--is-centered .NavBar__logo {
  height: 38px;
}

.NavBar__account {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

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

.NavBar__wallet-title {
  font-size: 14px;
  font-weight: 400;
  color: #8a8fb5;
  margin-right: 6px;
}

.NavBar__wallet-address {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.NavBar__wallet-copy-address-icon {
  cursor: pointer;
  margin-left: 6px;
  margin-top: 2px;
}

.NavBar__wallet-copy-address-icon img {
  height: 19px;
}

.NavBar__logout {
  color: #8a8fb5;
  margin-top: 6px;
  cursor: pointer;
  -webkit-transition: opacity, 0.2s, ease-in-out;
  transition: opacity, 0.2s, ease-in-out;
}

.TabBar {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 70px;
  background-color: #242b45;
  padding-left: 29px;
  padding-right: 29px;
}

.TabBar--is-centered {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

.TabBar--is-centered .TabBarItem {
  margin-left: 25px;
  margin-right: 25px;
}

.TabBar--is-condensed .TabBarItem__title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #92a2d6;
}

.TabBar--is-condensed .TabBarItem {
  margin-left: 16px;
  margin-right: 16px;
}

.TabBarItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 70px;
  margin-right: 50px;
  cursor: pointer;
  text-decoration: none;
}

.TabBarItem__icon,
.TabBarItem__icon-active {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}

.TabBarItem__icon-active {
  display: none;
}

.TabBarItem__title {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #8a8fb5;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  cursor: pointer;
  margin-top: 2px;
}

.TabBarItem--is-active .TabBarItem__title,
.TabBarItem:hover .TabBarItem__title {
  color: #fff;
}

.TabBarItem--is-active .TabBarItem__icon-active {
  display: inline-block;
}

.TabBarItem--is-active .TabBarItem__icon {
  display: none;
}

.Pages {
  display: flex;
  flex: 1 1;
}

.Pages--wallet {
  margin-top: 15px;
}

.WalletPage {
  display: flex;
  flex-direction: row;
  flex: 1 1;
  height: 100%;
}

.WalletPage__master-view {
  width: 362px;
}

.WalletPage__detail-view {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  background-color: #242b45;
  padding-left: 32px;
  padding-right: 32px;
  overflow-y: auto;
  position: relative;
}

.WalletPage__detail-view-spinner {
  align-self: center;
  margin-top: 15px;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.WalletPage__header-buttons {
  display: flex;
  flex-direction: row;
  flex: 1 1;
  justify-content: flex-end;
  margin-left: 12px;
}

@media only screen and (max-width: 1000px) {
  .WalletPage__master-view {
    width: 300px;
  }
}

.WalletTokenList__ethereum-balances-toggle {
  display: block;
  margin-top: 12px;
  color: #fff;
  margin-left: 21px;
  font-size: 13px;
  cursor: pointer;
}

.WalletTokenList__ethereum-balances-warning {
  display: block;
  margin-top: 12px;
  margin-left: 21px;
  font-size: 13px;
  color: #ed1e5c;
  max-width: 290px;
}

.WalletTokenListItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
  padding-left: 22px;
  padding-right: 22px;
  border-bottom: 1px solid rgba(75, 81, 110, 0.5);
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  text-decoration: none;
  position: relative;
}

.WalletTokenListItem__active-indicator {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  background: #1bded0;
  background: -webkit-linear-gradient(top, #22abe3, #1bded0);
  background: -webkit-gradient(linear,
      left bottom,
      left top,
      from(#22abe3),
      to(#1bded0));
  background: -webkit-linear-gradient(bottom, #22abe3, #1bded0);
  background: linear-gradient(0deg, #22abe3 0, #1bded0);
  background-size: 100%;
  display: none;
}

.WalletTokenListItem__token-container {
  display: flex;
  flex-direction: row;
}

.WalletTokenListItem__token-balance-container {
  display: flex;
  flex-direction: column;
}

.WalletTokenListItem__token-icon {
  width: 40px;
  height: 40px;
  margin-right: 17px;
}

.WalletTokenListItem__token-name {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  color: #92a2d6;
  text-decoration: none;
}

.WalletTokenListItem__token-balance {
  font-size: 19px;
  font-weight: 400;
  line-height: 21px;
  color: #fff;
  text-decoration: none;
}

.WalletTokenListItem__action-buttons {
  display: flex;
  flex-direction: row;
  margin-left: 58px;
  margin-top: 20px;
}

.WalletTokenListItem__action-buttons .GhostButton:first-child {
  margin-right: 12px;
}

.WalletTokenListItem--is-active,
.WalletTokenListItem:hover {
  background-color: #242b45;
}

.WalletTokenListItem--is-active .WalletTokenListItem__active-indicator {
  display: block;
}

.PageHeader {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 70px;
  border-bottom: 1px solid #3b4263;
}

.PageHeader__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
  color: #565d8a;
  letter-spacing: 1.5px;
}

.PageHeader--is-sticky {
  top: 0;
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  background-color: #242b45;
}

.EthereumTransactionListItem,
.TransactionList {
  display: flex;
  flex-direction: column;
}

.EthereumTransactionListItem {
  border-bottom: 1px solid #4b516e;
  padding-top: 15px;
  padding-bottom: 15px;
  min-height: 102px;
  cursor: pointer;
  padding-right: 10px;
  -webkit-transition: background-color, 0.3s, ease-in-out;
  transition: background-color, 0.3s, ease-in-out;
}

.EthereumTransactionListItem * {
  cursor: pointer;
}

.EthereumTransactionListItem:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.EthereumTransactionListItem__top-container {
  display: flex;
  flex: 1 1;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 22px;
}

.EthereumTransactionListItem__middle-container {
  display: flex;
  flex: 2 1;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}

.EthereumTransactionListItem__bottom-container {
  justify-content: space-between;
  width: 100%;
  height: 22px;
}

.EthereumTransactionListItem__address-container,
.EthereumTransactionListItem__bottom-container {
  display: flex;
  flex: 1 1;
  flex-direction: row;
  align-items: center;
}

.EthereumTransactionListItem__address-prefix {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  color: #92a2d6;
  margin-right: 5px;
  height: 16px;
}

.EthereumTransactionListItem__address {
  font-size: 18px;
  font-weight: 100;
  line-height: 18px;
  color: #fff;
  height: 18px;
  padding-right: 5px;
  text-overflow: ellipsis;
}

.EthereumTransactionListItem__amount-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.EthereumTransactionListItem__amount {
  font-size: 28px;
  font-weight: 100;
  line-height: 28px;
  height: 28px;
  color: #fff;
  text-align: right;
  margin-left: 15px;
}

.EthereumTransactionListItem__date {
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  color: #7a88b5;
  height: 14px;
}

.EthereumTransactionListItem__token-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 19px;
}

.EthereumTransactionListItem__token-symbol {
  font-size: 15px;
  font-weight: 300;
  line-height: 15px;
  color: #92a2d6;
  height: 15px;
}

.EthereumTransactionListItem__token-icon {
  height: 18px;
  width: 18px;
  margin-left: 5px;
}

@media only screen and (max-width: 1000px) {
  .EthereumTransactionListItem__amount {
    font-size: 20px;
  }
}

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

.TransactionStatus__dot {
  height: 10px;
  width: 10px;
  border-radius: 5px;
  background-color: #92a2d6;
  margin-right: 6px;
}

.TransactionStatus__text {
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
  height: 10px;
  color: #92a2d6;
  text-transform: uppercase;
}

.TransactionStatus--is-inbound .TransactionStatus__dot {
  background-color: #10edbd;
}

.TransactionStatus--is-inbound .TransactionStatus__text {
  color: #10edbd;
}

.ERC20Badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #576991;
  height: 16px;
  padding-left: 3px;
  padding-right: 3px;
  border-radius: 1px;
}

.ERC20Badge__text {
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  color: #1c243b;
  text-transform: uppercase;
  margin-top: 2px;
}

.ThetaTransactionListItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #4b516e;
  padding-top: 15px;
  padding-bottom: 15px;
  min-height: 102px;
  cursor: pointer;
  padding-right: 10px;
  -webkit-transition: background-color, 0.3s, ease-in-out;
  transition: background-color, 0.3s, ease-in-out;
}

.ThetaTransactionListItem__left-container {
  display: flex;
  flex-direction: column;
  flex: 1 1;
}

.ThetaTransactionListItem__right-container {
  display: flex;
  flex-direction: column;
}

.ThetaTransactionListItem * {
  cursor: pointer;
}

.ThetaTransactionListItem:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.ThetaTransactionListItem__top-container {
  display: flex;
  flex: 1 1;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 22px;
}

.ThetaTransactionListItem__middle-container {
  display: flex;
  flex: 2 1;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}

.ThetaTransactionListItem__bottom-container {
  justify-content: space-between;
  width: 100%;
  height: 22px;
}

.ThetaTransactionListItem__address-container,
.ThetaTransactionListItem__bottom-container {
  display: flex;
  flex: 1 1;
  flex-direction: row;
  align-items: center;
}

.ThetaTransactionListItem__address-prefix {
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  color: #92a2d6;
  margin-right: 5px;
  height: 16px;
}

.ThetaTransactionListItem__address {
  font-size: 18px;
  font-weight: 100;
  line-height: 18px;
  color: #fff;
  height: 18px;
  padding-right: 5px;
  text-overflow: ellipsis;
}

.ThetaTransactionListItem__amount-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-left: 15px;
}

.ThetaTransactionListItem__amount {
  font-size: 28px;
  font-weight: 100;
  line-height: 28px;
  height: 28px;
  color: #fff;
  text-align: right;
}

.ThetaTransactionListItem__amount-icon {
  height: 20px;
  margin-left: 6px;
}

.ThetaTransactionListItem__date {
  font-size: 14px;
  font-weight: 300;
  line-height: 14px;
  color: #7a88b5;
  height: 14px;
}

.ThetaTransactionListItem__token-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 19px;
}

.ThetaTransactionListItem__token-symbol {
  font-size: 15px;
  font-weight: 300;
  line-height: 15px;
  color: #92a2d6;
  height: 15px;
}

.ThetaTransactionListItem__token-icon {
  height: 18px;
  width: 18px;
  margin-left: 5px;
}

@media only screen and (max-width: 1000px) {
  .ThetaTransactionListItem__amount {
    font-size: 20px;
  }
}

.EmptyState {
  display: flex;
  flex-direction: column;
  padding: 30px 15px;
  align-self: center;
  align-items: center;
  justify-content: center;
  flex: 1 1;
}

.EmptyState__icon {
  width: 80px;
  height: 80px;
  align-self: center;
}

.EmptyState__title {
  font-size: 21px;
  color: #404c6e;
  text-align: center;
  margin-top: 8px;
}

.GhostButton {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 40px;
  border: 1px solid #687399;
  border-radius: 4px;
  padding-left: 16px;
  padding-right: 16px;
  cursor: pointer;
  box-sizing: border-box;
}

.GhostButton:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.GhostButton__icon {
  height: 22px;
  margin-right: 8px;
}

.GhostButton__title {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  cursor: pointer;
}

.SettingsPage {
  display: flex;
  flex-direction: row;
  flex: 1 1;
}

.SettingsPage__detail-view {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  background-color: #242b45;
  padding-left: 32px;
  padding-right: 32px;
  overflow-y: auto;
  position: relative;
}

.SettingsSection {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.SettingsSection__title {
  font-size: 24px;
  font-weight: 100;
  color: #fff;
  margin-bottom: 15px;
}

.SettingsSection__content {
  max-width: 400px;
}

.InputTitle {
  font-size: 16px;
  font-weight: 400;
  color: #7a88b5;
  margin-bottom: 6px;
}

.GradientButton {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 4px;
  padding-left: 16px;
  padding-right: 16px;
  cursor: pointer;
  text-decoration: none;
  background: #29b3eb;
  background: -webkit-linear-gradient(left, #29b3eb, #21edba);
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(#29b3eb),
      to(#21edba));
  background: linear-gradient(90deg, #29b3eb 0, #21edba);
  background-size: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.GradientButton:hover {
  box-shadow: 0 0 25px rgba(33, 237, 186, 0.5);
}

.GradientButton:active {
  box-shadow: 0 0 25px rgba(33, 237, 186, 0.25);
}

.GradientButton--is-disabled {
  background: #404c6e !important;
  box-shadow: none !important;
  cursor: not-allowed;
  pointer-events: none;
}

.GradientButton__title {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  cursor: inherit;
  text-decoration: none;
}

.OnboardingPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1;
}

.OnboardingPage__wrapper {
  display: flex;
  flex-direction: column;
  max-width: 560px;
  height: 550px;
}

.OnboardingPage__image {
  height: 360px;
}

.OnboardingPage__title {
  color: #92a2d6;
  margin-bottom: 6px;
}

.OnboardingPage__description,
.OnboardingPage__title {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.OnboardingPage__description {
  color: #fff;
}

.OnboardingPage__footer {
  margin-top: auto;
  height: 75px;
}

.OnboardingPage__footer,
.OnboardingPage__restore-button {
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.OnboardingPage__restore-button {
  display: block;
  margin-top: 18px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.CreateWalletPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1;
}

.CreateWalletPage__wrapper {
  display: flex;
  flex-direction: column;
  max-width: 430px;
  width: 100%;
  height: 550px;
}

.CreateWalletPage__title {
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  line-height: 28px;
  min-height: 28px;
  color: #fff;
  margin-bottom: 10px;
}

.CreateWalletPage__subtitle {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #8a8fb5;
  margin-top: 16px;
}

.CreateWalletPage__subtitle a {
  margin-left: 6px;
}

.ChoosePasswordCard {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #242f4b;
  min-height: 435px;
}

.ChoosePasswordCard__content {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  padding: 0 17px 17px;
  width: 100%;
  margin-left: auto;
  max-width: 360px;
  margin-right: auto;
}

.ChoosePasswordCard__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.ChoosePasswordCard__footer {
  margin-top: auto;
}

.ChoosePasswordCard__title {
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  line-height: 26px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ChoosePasswordCard__subtitle {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 20px;
  color: #92a2d6;
}

.ChoosePasswordCard__inputs {
  display: flex;
  flex-direction: column;
}

.ChoosePasswordCard__password-input {
  background-color: #404c6e;
  height: 50px;
  color: #fff;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 17px;
  width: calc(100% - 24px);
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 20px;
  font-family: AlwynNew, Helvetica Neue, -apple-system, sans-serif;
}

.ChoosePasswordCard__password-input:last-of-type {
  margin-bottom: 2px;
}

.ChoosePasswordCard__error {
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  line-height: 20px;
  color: #ff1d25;
  min-height: 20px;
}

::-webkit-input-placeholder {
  color: #92a2d6;
  opacity: 1;
}

::-moz-placeholder {
  color: #92a2d6;
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

::placeholder {
  color: #92a2d6;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #92a2d6;
}

::-ms-input-placeholder {
  color: #92a2d6;
}

.ChoosePasswordCard__message-wrapper {
  display: flex;
  flex: 1 1;
  margin-top: 10px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.ChoosePasswordCard__message {
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  line-height: 16px;
  color: #92a2d6;
  margin-left: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
}

.MnemonicWarningCard {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #242f4b;
  min-height: 435px;
}

.MnemonicWarningCard__content {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  padding: 0 17px 17px;
  margin-left: auto;
  width: 100%;
  max-width: 360px;
  margin-right: auto;
}

.MnemonicWarningCard__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 17px;
}

.MnemonicWarningCard__footer {
  margin-top: auto;
}

.MnemonicWarningCard__title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 26px;
  color: #fff;
  text-transform: uppercase;
}

.MnemonicWarningCard__subtitle {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 20px;
  color: #92a2d6;
}

.MnemonicWarningCard__warning-title {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  line-height: 20px;
  color: #ff1d25;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}

.MnemonicWarningCard__warning-body {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  line-height: 20px;
  color: #92a2d6;
  max-width: 310px;
}

.MnemonicWarningCard__warning {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  align-items: center;
}

.MnemonicWarningCard__icon {
  height: 116px;
  width: auto;
  align-self: center;
}

.MnemonicCard {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #242f4b;
  min-height: 435px;
}

.MnemonicCard__content {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  padding: 0 17px 17px;
  margin-left: auto;
  width: 100%;
  max-width: 360px;
  margin-right: auto;
}

.MnemonicCard__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 17px;
}

.MnemonicCard__footer {
  margin-top: auto;
}

.MnemonicCard__title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 26px;
  color: #fff;
  text-transform: uppercase;
}

.MnemonicCard__subtitle {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 20px;
  color: #92a2d6;
}

.MnemonicCard__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.MnemonicCard__instructions {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 20px;
  color: #fff;
  margin-bottom: 30px;
}

.MnemonicCard__phrase-container {
  text-align: center;
  position: relative;
  background: #404c6e;
  padding: 20px;
  border-radius: 4px;
}

.MnemonicCard__phrase-container p {
  line-height: 25px;
  font-size: 18px;
  word-spacing: 6px;
  font-weight: 900;
  color: #fff;
  margin: 0;
}

.MnemonicCard__view-private-key {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  margin-top: 8px;
  cursor: pointer;
}

.WalletCreationCompleteCard {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #242f4b;
  min-height: 435px;
}

.WalletCreationCompleteCard__content {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  padding: 0 17px 17px;
  margin-left: auto;
  width: 100%;
  max-width: 360px;
  margin-right: auto;
}

.WalletCreationCompleteCard__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 17px;
}

.WalletCreationCompleteCard__footer {
  margin-top: auto;
}

.WalletCreationCompleteCard__title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 26px;
  color: #fff;
  text-transform: uppercase;
}

.WalletCreationCompleteCard__subtitle {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 20px;
  color: #92a2d6;
}

.WalletCreationCompleteCard__success-title {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  line-height: 20px;
  color: #1bded0;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}

.WalletCreationCompleteCard__success-body {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  line-height: 20px;
  color: #92a2d6;
}

.WalletCreationCompleteCard__success {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  align-items: center;
}

.WalletCreationCompleteCard__icon {
  height: 116px;
  width: auto;
  align-self: center;
}

.UnlockWalletPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1;
}

.UnlockWalletPage__wrapper {
  display: flex;
  flex-direction: column;
  max-width: 440px;
  width: 100%;
  height: 550px;
}

.UnlockWalletPage__title {
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  line-height: 28px;
  min-height: 28px;
  color: #fff;
  margin-bottom: 10px;
}

.UnlockWalletPage__subtitle {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #8a8fb5;
  margin-top: 16px;
}

.UnlockWalletPage__subtitle a {
  margin-left: 6px;
}

.UnlockWalletCard {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #242f4b;
  min-height: 435px;
}

.UnlockWalletCard__content {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  padding: 0 17px 17px;
}

.UnlockWalletCard__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50px;
  margin-bottom: 17px;
}

.UnlockWalletCard__footer {
  margin-top: auto;
}

.UnlockWalletCard__title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 26px;
  color: #fff;
  text-transform: uppercase;
}

.UnlockWalletCard__subtitle {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 20px;
  color: #92a2d6;
}

.UnlockWalletCard__tab-bar {
  width: calc(100% + 34px);
  background-color: transparent;
}

.UnlockWalletCard__warning {
  display: flex;
  align-self: center;
  flex: 1 1;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  color: #ed1e5c;
  max-width: 330px;
}

.UnlockWalletViaKeystoreFile {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  min-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.UnlockWalletViaKeystoreFile__footer {
  margin-top: auto;
}

.UnlockWalletViaKeystoreFile__file-input {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  border: 1px dashed #697399;
  border-radius: 4px;
  padding-left: 16px;
  padding-right: 16px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-bottom: 20px;
  position: relative;
  box-sizing: border-box;
  font-size: 17px;
  color: #92a2d6;
}

.UnlockWalletViaKeystoreFile__file-input--has-file {
  border: 1px solid #1bded0;
  color: #1bded0;
}

.UnlockWalletViaKeystoreFile__file-input--has-file:after {
  content: "";
  display: block;
  position: absolute;
  height: 20px;
  width: 20px;
  left: 12px;
  background-image: url(../img/icons/checkmark-green@2x.html);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 20px 20px;
}

.UnlockWalletViaKeystoreFile__file-input:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.UnlockWalletViaKeystoreFile__file-input input[type="file"] {
  display: none;
}

.UnlockWalletViaKeystoreFile__title {
  font-size: 19px;
  font-weight: 300;
  text-align: center;
  line-height: 22px;
  color: #fff;
  margin-bottom: 15px;
}

.UnlockColdWalletLedger__select,
.UnlockWalletViaKeystoreFile__password-input {
  background-color: #404c6e;
  height: 50px;
  color: #fff;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 17px;
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  font-family: AlwynNew, Helvetica Neue, -apple-system, sans-serif;
}

.UnlockColdWalletLedger__select {
  width: 100%;
  margin-bottom: 18px;
  text-align: center;
}

.UnlockWalletViaMnemonicPhrase {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  min-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.UnlockWalletViaMnemonicPhrase__footer {
  margin-top: auto;
}

.UnlockWalletViaMnemonicPhrase__title {
  font-size: 19px;
  font-weight: 300;
  text-align: center;
  line-height: 22px;
  color: #fff;
  margin-bottom: 15px;
}

.UnlockWalletViaMnemonicPhrase__mnemonic {
  background-color: #404c6e;
  outline: none !important;
  border: none !important;
  color: #fff;
  padding: 12px;
  font-size: 17px;
  height: 70px;
  resize: none;
  border-radius: 4px;
}

.UnlockWalletViaMnemonicPhrase__mnemonic-instructions {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  margin-top: 6px;
  margin-bottom: 20px;
  text-align: center;
  color: #92a2d6;
}

.UnlockWalletViaMnemonicPhrase__password-input {
  background-color: #404c6e;
  height: 50px;
  color: #fff;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 17px;
  padding-left: 12px;
  padding-right: 12px;
  font-family: AlwynNew, Helvetica Neue, -apple-system, sans-serif;
  box-sizing: border-box;
}

.UnlockWalletViaPrivateKey {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  min-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.UnlockWalletViaPrivateKey__footer {
  margin-top: auto;
}

.UnlockWalletViaPrivateKey__title {
  font-size: 19px;
  font-weight: 300;
  text-align: center;
  line-height: 22px;
  color: #fff;
  margin-bottom: 15px;
}

.UnlockWalletViaPrivateKey__private-key {
  background-color: #404c6e;
  outline: none !important;
  border: none !important;
  color: #fff;
  padding: 12px;
  font-size: 17px;
  height: 70px;
  resize: none;
  border-radius: 4px;
}

.UnlockWalletViaPrivateKey__private-key-instructions {
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  margin-top: 6px;
  margin-bottom: 20px;
  text-align: center;
  color: #92a2d6;
}

.UnlockWalletViaPrivateKey__password-input {
  background-color: #404c6e;
  height: 50px;
  color: #fff;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 17px;
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  font-family: AlwynNew, Helvetica Neue, -apple-system, sans-serif;
}

.UnlockWalletViaColdWallet {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  min-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.UnlockWalletViaColdWallet__footer {
  margin-top: auto;
}

.UnlockWalletViaColdWallet__title {
  font-size: 19px;
  font-weight: 300;
  text-align: center;
  line-height: 22px;
  color: #fff;
  margin-bottom: 0;
}

.HardwareOptionButton {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 50px;
  border: 1px solid #687399;
  border-radius: 4px;
  padding-left: 16px;
  padding-right: 16px;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  color: #fff;
  margin-top: 22px;
}

.HardwareOptionButton:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.HardwareOptionButton__icon {
  height: 22px;
  margin-right: 8px;
  position: absolute;
  left: 8px;
}

.HardwareOptionButton__title {
  font-size: 17px;
  font-weight: 400;
  color: inherit;
  cursor: pointer;
}

.HardwareOptionButton--is-selected {
  border: 1px solid #1bded0;
  color: #1bded0;
}

.DropZone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999999;
  width: 100%;
  height: 100%;
  background: rgba(28, 36, 59, 0.93);
  -webkit-transition: visibility 175ms, opacity 175ms;
  transition: visibility 175ms, opacity 175ms;
  padding: 20px;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
}

.DropZone:after {
  content: "";
  display: block;
  width: 360px;
  height: 360px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  box-sizing: border-box;
  z-index: 0;
  border: 6px dashed rgba(112, 119, 163, 0.5);
  border-radius: 30px;
  align-self: center;
}

.DropZone__icon {
  height: 90px;
  margin-bottom: 20px;
}

.DropZone__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.DropZone--is-active {
  visibility: visible;
  opacity: 1;
}

.OfflinePage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1;
}

.OfflinePage__wrapper {
  display: flex;
  flex-direction: column;
  max-width: 430px;
  width: 100%;
  height: 550px;
}

.OfflinePage__title {
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  line-height: 28px;
  min-height: 28px;
  color: #fff;
  margin-bottom: 10px;
}

.OfflineCard {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #242f4b;
  min-height: 435px;
}

.OfflineCard__content {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  padding: 0 17px 17px;
  margin-left: auto;
  width: 100%;
  max-width: 360px;
  margin-right: auto;
}

.OfflineCard__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-bottom: 17px;
}

.OfflineCard__footer {
  margin-top: auto;
}

.OfflineCard__title {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}

.OfflineCard__message,
.OfflineCard__title {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  line-height: 20px;
  color: #92a2d6;
}

.OfflineCard__body {
  display: flex;
  flex-direction: column;
  flex: 1 1;
  align-items: center;
}

.OfflineCard__icon {
  height: 116px;
  width: auto;
  align-self: center;
}

.ReceiveModal {
  display: flex;
  flex-direction: column;
  background-color: #242f4b;
  width: 500px;
  min-height: 540px;
  padding: 20px;
  box-sizing: border-box;
}

.ReceiveModal__title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.ReceiveModal__public-address-title {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #92a2d6;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ReceiveModal__public-address {
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  color: #fff;
}

.ReceiveModal__buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.ReceiveModal__qr {
  display: flex;
  align-self: center;
  width: 160px;
  height: 160px;
}

.ModalOverlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(28, 36, 59, 0.75);
  cursor: pointer;
}

.Modal {
  cursor: auto;
}

.Modal:focus {
  outline: none;
}

.Modal__close-button {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 24px;
  cursor: pointer;
  background: #242f4b;
  pointer-events: none;
}

.Modal__close-button,
.Modal__close-button img {
  height: 48px;
  width: 48px;
}

.SendModal {
  display: flex;
  flex-direction: column;
  background-color: #242f4b;
  width: 500px;
  min-height: 540px;
  padding: 20px;
  box-sizing: border-box;
}

.SendModal__title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

.TxForm input,
.TxForm select {
  width: 100%;
}

.TxForm__entire-balance {
  display: flex;
  align-self: flex-start;
  text-align: left;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  margin-left: 12px;
}

.TxForm__fee-container {
  margin-top: 20px;
  height: 105px;
  margin-bottom: 20px;
}

.TxForm__fee-container,
.TxForm__tx-fee-container {
  display: flex;
  flex-direction: column;
}

.TxForm__gas-details-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
}

.TxForm__toggle-gas-details {
  font-size: 13px;
  color: #fff;
  margin-left: 12px;
  cursor: pointer;
}

.FormInputContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

.FormInputContainer__title {
  display: flex;
  flex-direction: row;
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
  color: #92a2d6;
}

.FormInputContainer__input-container {
  display: flex;
  flex: 1 1;
  width: 100%;
}

.FormInputContainer__error {
  font-size: 13px;
  font-weight: 400;
  color: #ff1d25;
  min-height: 15px;
  margin-top: 4px;
}

.BottomBorderInput {
  height: 34px;
  outline: none;
  border: none;
  border-bottom: 1px solid #687399;
  font-size: 17px;
  font-weight: 300;
  background-color: transparent;
  color: #fff;
  border-radius: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #fff url(../img/icons/arrow-down@2x.html) no-repeat;
  background-size: 20px;
  background-position: right 10px center;
  padding-right: 30px;
}

select::-ms-expand {
  display: none;
}

.ValueWithTitle {
  display: flex;
  flex-direction: column;
  flex: 1 1;
}

.ValueWithTitle__title {
  font-size: 18px;
  color: #92a2d6;
}

.ValueWithTitle__title,
.ValueWithTitle__value {
  font-weight: 400;
  line-height: 21px;
  text-align: left;
}

.ValueWithTitle__value {
  font-size: 17px;
  color: #fff;
}

.PrivateKeyModal {
  display: flex;
  flex-direction: column;
  background-color: #242f4b;
  width: 450px;
  height: 500px;
  padding: 20px;
  box-sizing: border-box;
}

.PrivateKeyModal__title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin-bottom: 6px;
}

.PrivateKeyModal__instructions {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 20px;
  color: #92a2d6;
}

.PrivateKeyModal__private-key {
  background-color: #404c6e;
  outline: none !important;
  border: none !important;
  color: #fff;
  padding: 12px;
  font-size: 17px;
  height: 45px;
  resize: none;
  border-radius: 4px;
  margin-top: 35px;
  margin-bottom: 45px;
}

.PrivateKeyModal .GradientButton {
  align-self: center;
  min-width: 200px;
}

.SendConfirmationModal {
  display: flex;
  flex-direction: column;
  background-color: #242f4b;
  width: 500px;
  min-height: 540px;
  padding: 20px;
  box-sizing: border-box;
}

.SendConfirmationModal__title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  display: none;
}

.SendConfirmationModal__amount-title {
  font-size: 13px;
  font-weight: 600;
  color: #92a2d6;
  text-align: center;
  line-height: 24px;
  text-transform: uppercase;
}

.SendConfirmationModal__amount {
  font-size: 41px;
  font-weight: 300;
  color: #fff;
  line-height: 50px;
}

.SendConfirmationModal__token-name {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.SendConfirmationModal__to-title {
  font-size: 13px;
  font-weight: 600;
  color: #92a2d6;
  text-align: center;
  line-height: 24px;
  text-transform: uppercase;
}

.SendConfirmationModal__to {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 20px;
}

.SendConfirmationModal__rows {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  border-top: 1px solid #687399;
  margin-bottom: auto;
}

.SendConfirmationModal__row {
  display: flex;
  flex-direction: row;
  flex: 1 1;
  justify-content: space-between;
  align-items: center;
  min-height: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #687399;
}

.SendConfirmationModal__row-title {
  font-size: 13px;
  font-weight: 600;
  color: #92a2d6;
  text-align: left;
  line-height: 22px;
  text-transform: uppercase;
}

.SendConfirmationModal__row-value {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-align: left;
  line-height: 22px;
}

.SendConfirmationModal__password-container {
  display: flex;
  flex-direction: column;
  padding-top: 25px;
  padding-bottom: 30px;
}

.SendConfirmationModal__password-title {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 16px;
  margin-bottom: 5px;
  text-align: center;
}

@media only screen and (max-height: 650px) {
  .SendConfirmationModal {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

.ColdWalletSelectorModal {
  display: flex;
  flex-direction: column;
  background-color: #242f4b;
  width: 500px;
  min-height: 540px;
  padding: 20px;
  box-sizing: border-box;
}

.ColdWalletSelectorModal__title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  margin-bottom: 6px;
}

.ColdWalletSelectorModal__rows {
  display: flex;
  flex-direction: column;
  margin-bottom: auto;
}

.ColdWalletSelectorModal__header-address,
.ColdWalletSelectorModal__header-balance {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-align: left;
  line-height: 40px;
  text-transform: uppercase;
}

.ColdWalletSelectorModal__row {
  display: flex;
  flex-direction: row;
  flex: 1 1;
  align-items: center;
  min-height: 53px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #687399;
  cursor: pointer;
}

.ColdWalletSelectorModal__row:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.ColdWalletSelectorModal__row-address {
  font-size: 13px;
  font-weight: 600;
  color: #92a2d6;
  text-align: left;
  line-height: 40px;
  flex: 1 1;
}

.ColdWalletSelectorModal__amount-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-left: 15px;
}

.ColdWalletSelectorModal__amount {
  font-size: 16px;
  font-weight: 100;
  line-height: 20px;
  height: 20px;
  color: #fff;
  text-align: right;
}

.ColdWalletSelectorModal__amount-icon {
  height: 16px;
  margin-left: 6px;
}

.ColdWalletSelectorModal__footer {
  display: flex;
  flex-direction: row;
  flex: 1 1;
  justify-content: space-between;
  align-items: center;
  min-height: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #687399;
}

.ColdWalletSelectorModal__footer-button {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-align: left;
  line-height: 30px;
  cursor: pointer;
}

.ColdWalletSelectorModal__footer-button:hover {
  color: hsla(0, 0%, 100%, 0.8);
}

.ColdWalletSelectorModal__checkmark-icon {
  height: 20px;
  margin-right: 10px;
  margin-left: 10px;
}

.UnsupportedDevice {
  display: none;
  justify-content: center;
  align-items: center;
  background-color: #1c243b;
  position: absolute;
  z-index: 1000000000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.UnsupportedDevice__content {
  display: flex;
  flex-direction: column;
  max-width: 374px;
  box-sizing: border-box;
  padding: 10px;
}

.UnsupportedDevice__logo {
  height: 34px;
  align-self: center;
}

.UnsupportedDevice__title {
  font-size: 23px;
  font-weight: 100;
  line-height: 36px;
  margin-top: 32px;
  text-align: center;
  color: #fff;
  margin-bottom: 22px;
}

.UnsupportedDevice__app-store-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  cursor: pointer;
}

.UnsupportedDevice__app-store-badge img {
  height: 54px;
  align-self: center;
}

@media only screen and (max-width: 800px) {
  .UnsupportedDevice {
    display: flex;
  }
}

.Alert {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #242f4b;
  padding: 12px;
  min-width: 500px;
  box-sizing: border-box;
  min-height: 60px;
  box-shadow: 0 0 56px 2px rgba(0, 0, 0, 0.2);
}

.Alert__icon {
  width: 24px;
  align-self: center;
}

.Alert__message {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding-left: 12px;
  padding-right: 12px;
  color: #fff;
  flex: 1 1;
}

.Alert__close-button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: #fff;
  outline: none;
}

.Alert__close-button img {
  width: 16px;
}

/*# sourceMappingURL=main.ba3fecb7.chunk.css.map */
.containerz {
  height: 150px;
  width: 150px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.containerz::after {
  content: "Successful!";
  color: #29b3eb;
  align-items: center;
  display: flex;
  width: 100%;
  font-weight: 700;
  position: absolute;
  justify-content: center;
}

.boxz {
  position: relative;
  height: 50px;
  width: 40px;
  animation: box 5s infinite linear;
}

.borderz {
  background: #007298;
  position: absolute;
}

.borderz.one {
  height: 4px;
  top: 0;
  left: 0;
  animation: border-one 5s infinite linear;
}

.borderz.two {
  top: 0;
  right: 0;
  height: 100%;
  width: 4px;
  animation: border-two 5s infinite linear;
}

.borderz.three {
  bottom: 0;
  right: 0;
  height: 4px;
  width: 100%;
  animation: border-three 5s infinite linear;
}

.borderz.four {
  bottom: 0;
  left: 0;
  height: 100%;
  width: 4px;
  animation: border-four 5s infinite linear;
}

.line {
  height: 4px;
  background: #007298;
  position: absolute;
  width: 0%;
  left: 25%;
}

.line.one {
  top: 25%;
  width: 0%;
  animation: line-one 5s infinite linear;
}

.line.two {
  top: 45%;
  animation: line-two 5s infinite linear;
}

.line.three {
  top: 65%;
  animation: line-three 5s infinite linear;
}

@keyframes border-one {
  0% {
    width: 0;
  }

  10% {
    width: 100%;
  }

  100% {
    width: 100%;
  }
}

@keyframes border-two {
  0% {
    height: 0;
  }

  10% {
    height: 0%;
  }

  20% {
    height: 100%;
  }

  100% {
    height: 100%;
  }
}

@keyframes border-three {
  0% {
    width: 0;
  }

  20% {
    width: 0%;
  }

  30% {
    width: 100%;
  }

  100% {
    width: 100%;
  }
}

@keyframes border-four {
  0% {
    height: 0;
  }

  30% {
    height: 0%;
  }

  40% {
    height: 100%;
  }

  100% {
    height: 100%;
  }
}

@keyframes line-one {
  0% {
    left: 25%;
    width: 0;
  }

  40% {
    left: 25%;
    width: 0%;
  }

  43% {
    left: 25%;
    width: 50%;
  }

  52% {
    left: 25%;
    width: 50%;
  }

  54% {
    left: 25%;
    width: 0%;
  }

  55% {
    right: 25%;
    left: auto;
  }

  63% {
    width: 10%;
    right: 25%;
    left: auto;
  }

  100% {
    width: 10%;
    right: 25%;
    left: auto;
  }
}

@keyframes line-two {
  0% {
    width: 0;
  }

  42% {
    width: 0%;
  }

  45% {
    width: 50%;
  }

  53% {
    width: 50%;
  }

  54% {
    width: 0%;
  }

  60% {
    width: 50%;
  }

  100% {
    width: 50%;
  }
}

@keyframes line-three {
  0% {
    width: 0;
  }

  45% {
    width: 0%;
  }

  48% {
    width: 50%;
  }

  51% {
    width: 50%;
  }

  52% {
    width: 0%;
  }

  100% {
    width: 0%;
  }
}

@keyframes box {
  0% {
    opacity: 1;
    margin-left: 0px;
    height: 50px;
    width: 40px;
  }

  55% {
    margin-left: 0px;
    height: 50px;
    width: 40px;
  }

  60% {
    margin-left: 0px;
    height: 35px;
    width: 50px;
  }

  74% {
    msthin-left: 0;
  }

  80% {
    margin-left: -50px;
    opacity: 1;
  }

  90% {
    height: 35px;
    width: 50px;
    margin-left: 50px;
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}