/*--------------------------------------------------------------
Easy Sticky Notifcation Bar
--------------------------------------------------------------*/
.do-esnb-wrapper {
  background: #ecebda;
  border-bottom: 1px solid #ccc;
  color: #000;
  height: 46px;
  overflow: hidden;
  padding: 0;
  position: fixed;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}

.do-esnb-wrapper:before, .do-esnb-wrapper:after,
.do-esnb-wrapper .do-esnb-inside:before,
.do-esnb-wrapper .do-esnb-inside:after {
  content: " ";
  display: table;
}

.do-esnb-wrapper:after,
.do-esnb-wrapper .do-esnb-inside:after {
  clear: both;
}

.do-esnb-notification {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: normal;
  overflow: hidden;
  padding: 8px 0 0;
}

.do-esnb-notification a.do-esnb-notification-link, .do-esnb-notification a.do-esnb-notification-link:visited {
  color: #000;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
}

.do-esnb-notification a.do-esnb-notification-link:hover, .do-esnb-notification a.do-esnb-notification-link:focus, .do-esnb-notification a.do-esnb-notification-link:active {
  color: #666;
}

.do-esnb-notification a.do-esnb-button, .do-esnb-notification a.do-esnb-button:visited {
  color: #fff;
  display: inline-block;
  background: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  margin: 0 0 0 5px;
  padding: 6px 8px;
  text-decoration: none;
  border-radius: 2px 2px 2px 2px;
}

.do-esnb-notification a.do-esnb-button:hover, .do-esnb-notification a.do-esnb-button:focus, .do-esnb-notification a.do-esnb-button:active {
  background: #666;
}

/*--------------------------------------------------------------
Admin Bar
--------------------------------------------------------------*/
body.do-esnb {
  margin-top: 46px !important;
}

body.admin-bar .do-esnb-wrapper {
  top: 32px !important;
}

@media screen and (max-width: 782px) {
  body.do-esnb {
    margin-top: 46px !important;
  }
  body.admin-bar .do-esnb-wrapper {
    top: 46px !important;
  }
}
