/*
 * Messagebar
 */
/*#52771B*/
/* promobar */
/*#7e3bd0*/
/*#d03bc4*/
/* media up to # */
/* media from # up */
#messagebar {
  position: fixed;
  overflow: hidden;
  z-index: 120;
  background: rgba(95, 127, 15, 0.9);
  color: #fff;
  font-weight: bold;
  box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.3);
  top: -65px;
  left: 0px;
  right: 0px;
  height: 64px;
  transition: .5s top; }
  #messagebar.visible {
    top: 0; }
  #messagebar.warn {
    background-color: red; }
  #messagebar p {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 960px;
    text-align: left;
    top: 20px;
    color: #fff;
    font-weight: bold; }
  #messagebar button {
    position: absolute;
    right: 20px;
    top: 8px;
    width: 32px;
    height: 32px;
    border: 0;
    margin: 0;
    padding: 0;
    background: none;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-indent: -9999px;
    clear: both;
    cursor: pointer; }
    #messagebar button:after, #messagebar button:before {
      position: absolute;
      content: "";
      height: 24px;
      width: 3px;
      border-radius: 4px;
      background-color: #fff;
      right: 14px; }
    #messagebar button:before {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
    #messagebar button:after {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg); }
