:root {
  --preloader-background-color: #ebebeb;
  --preloader-text-color: #212121;
  --preloader-paper-color: #f5f5f5;
}

#preloader {
  --preloader-initial-font-family: 'Roboto', sans-serif;
  --preloader-left-area-width: 336px;

  font-family: var(--preloader-initial-font-family);
  font-size: 14px;

  width: 100%;
  height: 100%;

  position: relative;
  display: grid;
  grid-template-columns: var(--preloader-left-area-width) 1fr;
  grid-template-rows: minmax(0, 1fr);

  color: var(--preloader-text-color);
  background-color: var(--preloader-background-color);
}

.preloader__sidebar {
  height: 100%;
  width: 320px;
  background-color: var(--preloader-paper-color);
}

.preloader__inner {
  width: 100%;
  display: grid;
  grid-template-rows: 80px 1fr;
}

.preloader__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preloader__breadcrumbs {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
  height: 24px;
}

.preloader__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.preloader__main {
  width: 100%;
  height: 100%;
  background-color: var(--preloader-paper-color);
}
