html {
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  height: 100%;
  display: block;
  position: relative;
  margin: 0;
  min-width: 320px;
  background: #e7f2ff;
  color: #374151;
  font-family:
    'Inter',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol';
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

#site {
  display: flex;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  justify-content: stretch;
  min-height: 100%;
}

.main_box {
  padding: 10px;
  display: flex;
  position: relative;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  align-items: stretch;
  background: #f9fafb;
}

.header_box {
  display: block;
  position: relative;
  flex-grow: 0;
  height: 60px;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  z-index: 10;
}

.header {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  box-sizing: border-box;
  height: 60px;
  padding: 0;
  background-color: #ffffff;
  color: #000c3f;
  transition:
    height 0.4s,
    background-color 0.3s,
    box-shadow 0.3s;
  transition-delay: 0.2s;
  box-shadow:
    15px 10px 22px rgba(0, 0, 0, 0.04),
    0 10px 20px rgba(0, 0, 0, 0.05);
}

.navigation {
  display: flex;
  position: relative;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  padding: 0 24px;
  background-color: #ffffff;
  transition: 0.3s;
  z-index: 2;
}

.identity {
  display: flex;
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  align-items: center;
  width: 244px;
  margin-right: 24px;
  color: inherit;
}

.logo {
  display: block;
  position: relative;
  width: 108px;
  height: 32px;
  margin-right: 24px;
  background: url('/ico_logo.svg') 0 50% no-repeat;
  background-size: contain;
  cursor: pointer;
  z-index: 5;
}

.card {
  margin-top: 20%;
  margin-right: auto;
  margin-left: auto;
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 50%;
  padding: 10px 32px 32px;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.04),
    0 10px 20px rgba(0, 0, 0, 0.06);
}

.button {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  align-items: center;
  align-content: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #ffffff;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  vertical-align: middle;
  transition: 0.3s;
  cursor: pointer;
  -moz-appearance: none;
  background: #fa621c;
  background: linear-gradient(to right bottom, #ed942d, #fa621c);
  background-size: 100% 100%;
  -webkit-appearance: none;
  appearance: none;
  text-decoration: none;
  padding: 8px 16px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

.bottom_box {
  display: block;
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%;
  max-width: 1570px;
  margin: auto auto 0;
  font-size: 14px;
  line-height: 20px;
}

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

.copyright {
  margin-right: 20px;
}

.menu {
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}

li {
  display: block;
  position: relative;
  padding-left: 10px;
  margin-left: 9px;
  text-align: center;
}

#loader {
  display: none;
}
