.announcement--root {
  border-bottom: 1px solid #333;
}
.announcement--slide {
  animation: fadeIn 0.8s ease-in-out;
}
.announcement--wrapper {
  height: 40px;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media only screen and (max-width: 767px) {
  .announcement--wrapper {
    height: 32px;
  }
}