body, html {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.main-header {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 80px;
  position: relative;
  top: 0;
  left: 0;
  padding: 20px 10px;
  background-color: #fff;
  box-shadow: 0 2px 20px 0 rgba(0, 0, 0, .07);
  box-sizing: border-box;
  z-index: 5;
}

.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}

.logo {
  width: 125px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .logo {
    margin: 0;
  }
}

.moodboard-header__indicator {
  position: absolute;
  top: 20px;
  right: 0;
  margin-right: 10px;
  text-align: right;
  display: flex;
  align-items: center;
}

.moodboard-header__indicator svg {
  fill: #284387;
}

.moodboard-header__indicator a {
  margin-left: 10px;
  text-decoration: none;
}

.sr-only {
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.moodboard-header__indicator a:hover svg .side-1 {
  animation: d .5s ease-in-out
}

.moodboard-header__indicator a:hover svg .side-2 {
  animation: f .5s ease-in-out .1s
}

.moodboard-header__indicator a:hover svg .side-3 {
  animation: e .5s ease-in-out .2s
}

.moodboard-header__indicator a.to--moodboard:hover svg {
  animation: g .5s ease-out
}

@keyframes d {
  0% {
    fill: #fff
  }

  50% {
    fill: #707073
  }

  to {
    fill: #fff
  }
}

@keyframes e {
  0% {
    fill: #fff
  }

  50% {
    fill: #ffed00
  }

  to {
    fill: #fff
  }
}

@keyframes f {
  0% {
    fill: #fff
  }

  50% {
    fill: #2d4488
  }

  to {
    fill: #fff
  }
}

@keyframes g {
  0% {
    transform: scale(1)
  }

  25% {
    transform: scale(1.1)
  }

  50% {
    transform: scale(1)
  }

  75% {
    transform: scale(1.1)
  }

  to {
    transform: scale(1)
  }
}
