/* Растянуть на всю высоту */
body,
html {
  height: 100%;
}
.wrapper {
  height: auto;
  min-height: 100%;
}
.wrapper .main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.main .page__inner {
  display: flex;
  padding-bottom: 24px;
  min-height: 100%;
  flex-direction: column;
  flex: 1;
}
.page,
.main__content > div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.main .main__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.main .container {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
}
/* Растянуть на всю высоту END */
