.hello-bar {
  background-color: #48687d;
}

.hello-bar__inner {
  background-color: #24323b;
  color: white;
  padding: 1rem 1.25rem;
  text-align: center;
}
#js-yearend-hello a {
	//text-decoration: underline;
}
.hello-bar__inner a {
  color: #f5eabe;
  font-weight: normal;
  text-decoration: underline;
}

.hello-bar--yearend {
  background-color: #11171b;
}

.hello-bar--yearend .hello-bar__inner {
  -webkit-animation: home-campaign-201812-showbar 1s ease 0.5s;
          animation: home-campaign-201812-showbar 1s ease 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  color: white;
  background-color: #9c171e;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
}

.hello-bar--yearend a {
  color: white;
}

.hello-bar__close {
  overflow: hidden;
  height: 2.5rem;
  width: 2.5rem;
  background: none;
  box-shadow: none;
  position: absolute;
  top: 0;
  right: 0;
  border:none;
}

@media (min-width: 60em) {
  .hello-bar__close {
    height: 3.125rem;
    width: 3.125rem;
  }
}

.hello-bar__close:hover {
  background: none;
  opacity: 0.5;
}

.hello-bar__close span {
  position: absolute;
  top: -999rem;
  left: -999rem;
}

.hello-bar__close::before {
  content: "×";
  font-size: 28px;
  font-size: 1.75rem;
  position: absolute;
  display: block;
  color: white;
  top: 0;
  padding-top: 0.25rem;
  line-height: 1;
  left: 0;
  right: 0;
  text-align: center;
}

@media (min-width: 60em) {
  .hello-bar__close::before {
    padding-top: 0.5rem;
  }
}

@-webkit-keyframes home-campaign-201812-showbar {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-5rem);
            transform: translateY(-5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes home-campaign-201812-showbar {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-5rem);
            transform: translateY(-5rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}