.announcement-bar {
  top: -48px;
  position: fixed;
  height: 48px;
  width: 100%;
  background-color: #0a282b;
  z-index: 100;
  text-align: center;
  padding: 10px 0;
  transition: top .3s ease;
}

.announcement-bar .announcement-bar__inner {
  position: relative;
  padding: 0 40px;
}

.announcement-bar__message {
  display: inline-block;
  font-size: 14px;
  color: #FFFFFF;
  margin: 0;
}

.announcement-bar__link:hover, 
.announcement-bar__link:hover .announcement-bar__message {
  text-decoration: underline;
}

.close-abar {
  position: absolute;
  bottom: -2px;
  right: 12px;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.close-abar:before {
  display: block;
  position: absolute;
  top: -5px;
  right: 3px;
  font-family: 'tentree_icons';
  content: '\E297';
  font-size: 30px;
  color: white;
  opacity: 0.5;
  transition: opacity .25s ease;
}

.close-abar:hover:before {
  opacity: 1;
}

body {
  position:relative;
  transition: margin-top .3s ease;
}

.site-header {
  top: 0;
  transition: top .3s ease;
}

body.announcement-adjustment {
  margin-top: 48px !important;
}

body.announcement-adjustment .announcement-bar {
  top: 0;
}

body.announcement-adjustment .snize-ac-results {
  margin-top: 47px !important;
}

body.announcement-adjustment .site-header {
  top: 48px;
}