:root {
  --preload-color: #d3d3d3;
  --preload-white: #ffffff;
  --bg-page: #d3d7e1;
}

.__preloader {
  min-height: 100vh;
  background-color: #eeeff4;
  animation: fade 0.5s linear infinite alternate;
}

.__preloader header {
  background-color: var(--preload-white);
  border-bottom: 1px solid var(--bg-page);
}

.__preloader .__container {
  padding: 0 20px;
  max-width: 1920px;
  margin: 0 auto;
}

.__preloader .__wrapper {
  height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.__preloader div {
  display: flex;
  gap: 40px;
}

.__preloader .__logo {
  width: 120px;
  height: 24px;
  background-color: var(--preload-color);
}

.__preloader .__text {
  width: 120px;
  height: 24px;
  background-color: var(--preload-color);
}

.__preloader aside {
  position: fixed;
  width: 54px;
  height: calc(100vh - 54px);
  background-color: var(--preload-white);
}

.__preloader ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-top: 15px;
  padding-inline-start: 0;
  list-style: none;
}

.__preloader li,
.__preloader .__icon {
  width: 24px;
  height: 24px;
  background-color: var(--preload-color);
}

.__preloader .__inner {
  display: flex;
  flex-direction: column;
  gap: 100px;
  width: 100%;
  padding: 30px;
  padding-left: 55px;
}

.__preloader section .__inner div {
  height: 250px;
  background-color: var(--preload-white);
  border-radius: 4px;
}

@keyframes fade {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .__preloader aside,
  .__preloader .__left,
  .__preloader .__text {
    display: none;
  }

  .__preloader .__right {
    width: 100%;
  }

  .__preloader .__icon--third {
    margin-right: auto;
  }

  .__preloader .__inner {
    gap: 30px;
  }

  .__preloader .__inner {
    padding-left: 30px;
  }
}
