* {
  font-family: Roboto,Open Sans,Helvetica Neue,Helvetica,Arial,sans-serif;
}

*:focus:not(:focus-visible) {
  outline: none;
}

html {
  height: 100%;
}

body {
  font-size: 14px;
  line-height: 20px;
  color: #67686F;
  background: #f6f8f9;
  margin: 0;
}

a {
  color: #36363A;
  text-decoration: none;
  font-weight: normal;
  padding-bottom: 1px;
  border-bottom: 1px solid #B5B5BA;
}

.layout-body {
  display: flex;
  flex-direction: row;
  height: 100%;
  max-height: 100vh;
}

.layout-container {
  max-height: 100vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.layout-container_wrapper {
  display: flex;
  flex-flow: column;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.layout-container_grow {
  display: flex;
  flex-flow: column;
  flex: 1;
  align-items: center;
  padding: 16px;
  padding-bottom: 8px;
}

.layout-content_spacer {
  min-height: 50vh;
  min-width: 400px;
  width: 27.8vw;
  max-width: 600px;
}

.layout-header {
  color: #140E24;
  font-size: 29px;
  font-weight: 400;
  line-height: 36px;
  margin-top: 0;
  margin-bottom: 32px;
  text-align: center;
}

.layout-header-logo {
  display: flex;
  margin: auto;
  margin-bottom: 5vh;
}

.layout-info_area {
  text-align: center;
  margin-top: 32px;
}

.text {
  line-height: 24px;  
}

p.text {
  margin: 0;
}

@keyframes rotate {
  from { rotate: 0; }
  to { rotate: 360deg; }
}

.loader {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/loader.svg);
  animation: .7s rotate linear infinite;
}