@keyframes loading {
  0% {
    background-position: 50% 100%;
  }

  33% {
    background-position: 50% 100%;
  }

  100% {
    background-position: 50% 0%;
  }
}

.skeleton {
  color: transparent;
  fill: transparent;
  background-image: linear-gradient(rgba(240, 240, 240, 1), rgba(240, 240, 240, 1), rgba(240, 240, 240, 0.3), rgba(240, 240, 240, 1), rgba(240, 240, 240, 1));
  background-size: 300% 300%;
  background-clip: content-box;
  background-attachment: fixed;
  user-select: none;
  animation: loading 1.5s cubic-bezier(0, 0, 0.58, 1) infinite;
  background-size: 300% 300%;
  background-clip: content-box;
  background-attachment: fixed;
  user-select: none;
  animation: 1.5s cubic-bezier(0, 0, 0.58, 1) 0s infinite normal none running loading;
}

.header-container-placeholder {
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 501;
}

.header-sticky-placeholder {
  padding: 0 16px
}

.header__logo-placeholder {
  position: relative;
  height: 48px;
  display: block;
  margin: auto;
  min-height: 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  box-sizing: border-box;
}

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

.logo-container {
  width: 112px;
  height: 32px;
  margin: 0;
  display: inline-block;
}

.btn-container {
  height: 32px;
  width: 130px;
  margin: 0;
  display: inline-block;
}

.btn-container:nth-child(1) {
  margin-right: 16px;
}

.btn-container:nth-child(2) {
  height: 20px;
  width: 20px
}

#spacer-placeholder {
  margin-top: 64px;
}


#nav-placeholder {
  width: 100%;
  height: 96px;
}

@media (min-width: 948px) {
  #spacer-placeholder {
    margin-top: 116.5px;
  }

  .header__logo-placeholder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1134px;
    height: 64px;
  }

  .logo-container {
    width: 113.5px;
    height: 28px;
  }

  .btn-container {
    width: 114px
  }

  .btn-container:nth-child(2) {
    height: 32px;
    width: 140px
  }
}

@media (min-width: 1280px) {
  #nav-placeholder {
    height: 64px;
  }
}