html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

html, body, .container, main, .main {
  height: 100%;
  margin: 0 auto;
}

main, .main {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.header {
    margin-top: 32px;
    margin-bottom: 64px;
    display: flex;
}

.header-logo {
    width: 50px;
    height: 50px;
}

.header-title {
    margin-left: 16px;
    font-size: 28px;
    line-height: 50px;
}

.content {
    display: flex;
    flex: 1;
    height: 600px;
    flex-direction: column;
    text-align: center;
}

.headline {
    margin-top:100px;
}

.headdesc {
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 50px;
    font-size: 1em;
    color: #999;
}

.col {
    margin-bottom: 20px;
}

a.btn {
    width: 80px;
    margin: auto;
}

a.link-button {
    font-size: 24px; 
    color: black; 
    text-decoration: none; 
    padding: 3px; 
    display: block; 
    text-align: center; 
    min-width: 250px;
}

.download-buttons {
    margin-bottom: 50px;
}

.show-in-mobile {
    display:none;
}

.show-in-pc {
    display: block;
}

.btn-android {
    width: auto !important;
    font-size: 18px;
    padding: 5px 15px;
}

.btn-subtitle {
    font-size: 12px;
    color: #ddd;
}

hr {
    color: #aaa;
}

.wait-list form {
    margin: 20px 300px;
}

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

.vstack {
  display: flex;
}

.lmask {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #000;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999;;
  opacity: 0.4;
}

.page-loading-warp {
    /*height:100%;*/
    display: flex;
    flex-direction: column;
    margin-top: 300px;
    justify-content: center;
    align-items: center;
}

.page-loading-text {
    margin-top: 20px;
    text-align: center;
    color: #aaa;
}

.ant-spin {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5;
    list-style: none;
    -webkit-font-feature-settings: 'tnum';
    font-feature-settings: 'tnum';
    position: absolute;
    display: none;
    color: #1890ff;
    text-align: center;
    vertical-align: middle;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
    transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
    transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
    transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86), -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.ant-spin-spinning {
    position: static;
    display: inline-block;
    opacity: 1;
}

.ant-spin-dot {
    position: relative;
    display: inline-block;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.ant-spin-dot-item {
    position: absolute;
    display: block;
    width: 9px;
    height: 9px;
    background-color: #1890ff;
    border-radius: 100%;
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    opacity: 0.3;
    -webkit-animation: antSpinMove 1s infinite linear alternate;
    animation: antSpinMove 1s infinite linear alternate;
}

.ant-spin-dot-item:nth-child(1) {
    top: 0;
    left: 0;
}

.ant-spin-dot-item:nth-child(2) {
    top: 0;
    right: 0;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.ant-spin-dot-item:nth-child(3) {
    right: 0;
    bottom: 0;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.ant-spin-dot-item:nth-child(4) {
    bottom: 0;
    left: 0;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.ant-spin-dot-spin {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: antRotate 1.2s infinite linear;
    animation: antRotate 1.2s infinite linear;
}

.ant-spin-lg .ant-spin-dot {
    font-size: 32px;
    width: 32px;
    height: 32px;
}

.ant-spin-lg .ant-spin-dot i {
    width: 14px;
    height: 14px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .ant-spin-blur {
        background: #fff;
        opacity: 0.5;
    }
}

@-webkit-keyframes antSpinMove {
    to {
        opacity: 1;
    }
}

@keyframes antSpinMove {
    to {
        opacity: 1;
    }
}

@-webkit-keyframes antRotate {
    to {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }
}

@keyframes antRotate {
    to {
        -webkit-transform: rotate(405deg);
        transform: rotate(405deg);
    }
}