#initial-skeleton {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
}

.skeleton-image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #eee;
  position: relative;
}

.skeleton-image-placeholder::after {
  content: '';
  position: absolute;
  left: -45%;
  height: 100%;
  width: 45%;
  background-image: linear-gradient(
    to left,
    rgba(251, 251, 251, 0.05),
    rgba(251, 251, 251, 0.3),
    rgba(251, 251, 251, 0.6),
    rgba(251, 251, 251, 0.3),
    rgba(251, 251, 251, 0.05)
  );
  background-image: -moz-linear-gradient(
    to left,
    rgba(251, 251, 251, 0.05),
    rgba(251, 251, 251, 0.3),
    rgba(251, 251, 251, 0.6),
    rgba(251, 251, 251, 0.3),
    rgba(251, 251, 251, 0.05)
  );
  background-image: -webkit-linear-gradient(
    to left,
    rgba(251, 251, 251, 0.05),
    rgba(251, 251, 251, 0.3),
    rgba(251, 251, 251, 0.6),
    rgba(251, 251, 251, 0.3),
    rgba(251, 251, 251, 0.05)
  );
  animation: loading 1s infinite;
  z-index: 45;
}

@keyframes loading {
  0% {
    left: -45%;
  }
  100% {
    left: 100%;
  }
}

#skeleton-navbar {
  box-shadow: 0px 4px 4px 0px #0000001a;
  border-bottom: 1px solid #f5f6fa;
}

#skeleton-navbar .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  max-width: 95%;
  margin: 0 auto;
  min-height: 65px;
}

#skeleton-navbar img {
  height: 48px;
}

@media screen and (max-width: 1400px) {
  #skeleton-navbar .container {
    min-height: 55px;
  }

  #skeleton-navbar img {
    height: 38px;
  }
}

@media screen and (max-width: 576px) {
  #skeleton-navbar .container {
    min-height: 35px;
  }

  #skeleton-navbar img {
    height: 26px;
  }
}

#skeleton-main > .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  max-width: 95%;
  margin: 0 auto;
  margin-bottom: 16px;
}
