body {
  font-size: 13px;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}

.Page-header {
  line-height: 24px;
}

a {
  color: #0d7cc1;
  text-decoration: none;
}
.Page-navbar:before {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background: #c1210d;
  background: linear-gradient(180deg, #c1210d 26%, #eb5a41 26%, #eb5a41 47%, #881c11 47%, #881c11 68%, #a81d34 68%);
}

.Page-logo {
  width: 270px;
}
.Page-navbar {
  height: 60px;
  position: relative;
}

.Page-navbar-content {
  display: flex;
  flex-flow: row wrap;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.Page-support {
  font-size: 16px;
  margin-right: 30px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
}

.Page-support .material-icons {
  font-size: 28px;
  margin-right: 5px;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
}

.Page-main {
  padding: 50px 0 60px 0;
  background-color: #fff;
  min-height: calc(100vh - 400px);
  min-width: 320px;
}
.Page-container {
  margin: auto 20%;
  padding: 0 50px;
}

.Page-footer {
  display: block;
  color: #fff;
  background-color: #8e1230;
  padding: 45px;
  height: 140px;
}

.Page-header {
  font-weight: 300;
}

.Page-header-h1 {
  font-size: 30px;
  line-height: 53px;
  font-weight: bold;
  margin-bottom: 20px;
}

.Page-header-h2 {
  font-size: 25px;
  font-weight: 500;
  margin-top: 2.5em;
}

ul {
  padding-bottom: 20px;
}

li {
  margin-top: 16px;
}

.Page-text {
  font-size: 18px;
  letter-spacing: 0;
  text-align: justify;
}

.Button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  display: inline-flex;
  padding: 0 24px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  background-image: none;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid rgba(0, 0, 0, 0.14);
  text-transform: uppercase;
  text-decoration: none;
  text-overflow: ellipsis;
  color: rgba(0, 0, 0, 0.87);
  overflow: hidden;
  height: 42px;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.Button--primary {
  background-color: #c21b17;
  border-color: #c21b17;
  color: #fff;
  margin: 20px 0px;
}
.Button--block {
  display: inline-flex;
  width: 132px;
}

@media (max-width: 1024px) {
  .Page-text {
    margin: 10px 0px;
  }

  .Page-main {
    padding-top: 20px;
    min-height: calc(100vh - 300px);
  }
  .Page-header-h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .Page-navbar {
    height: 40px;
  }
  .Page-navbar-content {
    padding: 0 5px;
  }
  .Page-container {
    margin: auto 5%;
    padding: 0 10px;
  }
  .Page-logo {
    width: 200px;
  }
  .Page-support {
    font-size: 14px;
  }

  .Page-support .material-icons {
    font-size: 20px;
  }

  .Page-text {
    font-size: 14px;
  }
  .Page-footer {
    padding-top: 20px;
  }
}

.AppPreloader {
  z-index: 3000;
  position: relative;
  display: none;
}
.AppPreloader:after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -80px;
  margin-top: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  z-index: 6;
  animation: spin 1s linear infinite;
  box-shadow: 1px 0 0 #c21b17;
}
.AppPreloader:before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  background-size: 120px 120px;
  background: no-repeat center center rgba(255, 255, 255, 0.9) url("../images/preloader.svg");
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
