.main-container {
  padding-top: 100px;
  width: 100%;
}
.fixed-row {
  background-color: white;
  font-family: 'Lato', Arial, sans-serif;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1001;
}
.fixed-row.mobile {
  padding-top: 0;
  height: 100vh;
}
nav {
  width: 100%;
  display: flex;
  gap: 30px;
  margin: 30px auto;
  align-items: center;
}
nav .logo {
  flex: 2;
  width: 187px;
  height: 35px;
  margin-bottom: 4px;
}
nav div.link {
  font-weight: bold;
}
nav div.link a {
  color: #62c7f0;
}
nav div.login {
  padding: 0;
  text-align: right;
}
nav div.login .btn {
  background: #ffba5e;
  font-size: 16px;
  color: white !important;
  padding: 8px 24px !important;
  border: 1px solid #ffba5e;
}
nav div.login .btn:hover {
  color: white;
  background: #ee8528;
}
nav div ul {
  padding: 0 0 0 20px;
}
nav div a {
  white-space: nowrap;
  color: #666666;
  font-size: 16px;
  line-height: 40px;
  display: block;
  max-width: 187px;
}
@media (max-width: 990px) {
  nav div a {
    padding: 3px 0 !important;
    line-height: 1.42857143;
    font-size: 14px;
  }
}
nav div a:hover,
nav div a:focus {
  text-decoration: none;
  color: #ffba5e;
}
@media (max-width: 990px) {
  nav div {
    margin: 0 10px;
  }
}
.mobile-dummy-tile {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #32323a;
  padding: 32px 16px 16px;
  color: white;
}
.mobile-dummy-tile .tablet-container {
  width: 100%;
  max-width: 450px;
  min-height: 600px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.mobile-dummy-tile .tablet-container .logo {
  width: 250px;
  margin: 0 auto;
}
.mobile-dummy-tile .tablet-container p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 20px;
}
.mobile-dummy-tile .tablet-container .app-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 30px;
}
.mobile-dummy-tile .tablet-container .app-links img {
  width: 200px;
}
.mobile-dummy-tile .tablet-container .continue-button {
  margin: 0 auto 20px;
}
.mobile-dummy-tile .tablet-container .continue-button button {
  margin: 0 auto;
  background: none;
  border: none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-decoration: underline;
  color: #ffa960;
}
.mobile-dummy-tile .tablet-container .continue-button button:hover {
  color: #ffba5e;
}
@media (max-height: 800px) and (orientation: portrait) {
  .mobile-dummy-tile .tablet-container {
    min-height: 0;
    flex: 1 1 600px;
    gap: 20px;
  }
}
.mobile-dummy-tile .disclaimer {
  width: 100%;
  max-width: 450px;
  padding: 0;
  color: #65656b;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  position: absolute;
  bottom: 0;
}
@media (orientation: landscape) {
  .mobile-dummy-tile {
    padding-bottom: 48px;
  }
}
@media (max-width: 576px) {
  .mobile-dummy-tile {
    justify-content: space-between;
    gap: 60px;
  }
  .mobile-dummy-tile .tablet-container {
    padding: 0;
    background: none;
  }
  .mobile-dummy-tile .tablet-container .logo {
    margin: 0;
  }
  .mobile-dummy-tile .tablet-container .continue-button {
    font-size: 14px;
  }
  .mobile-dummy-tile .disclaimer {
    font-size: 10px;
    position: static;
  }
}
.hidden {
  display: none;
}
