@font-face {
    font-family: "Dosis Book";
    src: url(../../fonts/Dosis-Book.ttf);
}
body {
  margin: 5px 0 0;
  overflow: hidden;
  height: 44px;
  font-family: 'Dosis', sans-serif;
  background-color: #fff;
  border-bottom: 1px solid #000;
}
a {
  text-decoration: none;
  color: rgba(0,0,0,.7);
  transition-property: color .1s linear 0s;
  -moz-transition: color .1s linear 0s;
  -webkit-transition: color .1s linear 0s;
  -o-transition: color .1s linear 0s;
}
a:hover {
  color: #000;
}

.logo img {
  border: 0;
  height: 30px;
  width: auto;
}
.logo {
  position: absolute;
  top: 10px;
  left: 8px;
  z-index: 99999;
}
.logo:hover {
  color: #fff;
  opacity: .9;
}
.logo > span {
  font-family: "Dosis Book";
  position: relative;
  left: 1px;
}
.category {
  display: none;
  position: absolute;
  width: 100%;
  height: 40px;
  overflow: hidden;
}

.category-inner {
  text-align: center;
  margin: 0 auto;
  padding: 0;
  font-size: 15px;
  position: relative;
  width: 75%;
  top: 0;
}

.category:active {
  display: block;
}
.category li {
  display: inline-block;
  margin: 0;
  padding: 0 11px;
  text-transform: uppercase;
  line-height: 40px;
}
.category-name {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
  line-height: 40px;
  padding: 0 15px;
  text-align: center;
  margin: auto;
  display: block;
}
.next, .previous {
  position: absolute;
  top: 0;
  width: 11px;
  height: 40px;
  display: inline-block;
  vertical-align: top;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 14px;

  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.next {
  right: 0;
  background-image: url('../../img/buzzabar-arrow-right1.png');
}
.previous {
  left: 0;
  background-image: url('../../img/buzzabar-arrow-left1.png');
}
.mobile {
  display: none;
}
.more-blogs {
  text-align: center;
  display: block;
  text-transform: uppercase;
  line-height: 40px;
  text-decoration: underline !important;
  font-size: 12px;
}
div.navigation {
  padding: 0 15px;
  top: 0;
  right: 20px;
  max-width: 115px;
  width: 100%;
}
@media screen and (min-width: 1249px) {
  div.navigation {
    position: absolute;
  }
}
@media screen and (max-width: 1249px) {
  .logo, .category-name {
    display: none;
  }
  div.navigation {
      position: initial!important;
  }
  div.navigation .previous {
      left: 5px;
  }
  div.navigation .next {
      right: 20;
  }
  .category-inner {
    width: 90%;
  }

}

@media screen and (max-width: 1000px) {
  .logo {
    display: block;
  }
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
}

@media screen and (max-width: 450px) {
  .more-blogs {
    text-align: right;
    margin-right: 8px;
  }
}