/*======== HORIZONTAL BAR TEMPLATES ========*/
.BN-hbar {
  display: flex;
  width: 100%;
  position: fixed;
  z-index: 9999;
  left: 0;
  flex-direction: column; }
  .BN-hbar .BN-container {
    background: #22ccaa;
    display: flex;
    align-self: center; }
  .BN-hbar .BN-image {
    display: none; }
  .BN-hbar .BN-trigger {
    flex-grow: 1;
    background: transparent;
    text-align: left;
    justify-content: center;
    font-size: 16px; }
  .BN-hbar .BN-trigger * {
    margin-bottom: 0 !important;
    align-self: center; }
  .BN-hbar .BN-trigger p {
    font-size: inherit;
    color: rgba(0, 0, 0, 0.8);
    text-align: left; }
  .BN-hbar .BN-trigger button {
    margin: 0 20px !important;
    font-size: inherit;
    flex-shrink: 0; }
  .BN-hbar .BN-close {
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .BN-hbar .BN-close svg path {
    stroke: black;
    stroke-width: 3; }

/*HBAR VARIABLES*/
/*Position*/
.BN-hbar.BN-top {
  top: 0; }

.BN-hbar.BN-bottom {
  bottom: 0; }

/*Thumbnail*/
.BN-hbar.BN-thumb .BN-image {
  background-image: none !important;
  display: block;
  width: 75px;
  height: 97px;
  margin: 0 20px;
  min-width: 75px; }

.BN-hbar.BN-thumb .BN-image img {
  max-width: 100%; }

.BN-hbar.BN-thumb .BN-close {
  justify-content: flex-start; }

/*Radius*/
.BN-hbar.BN-top.BN-radius .BN-container {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px; }

.BN-hbar.BN-bottom.BN-radius .BN-container {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px; }

/*Width*/
.BN-hbar.BN-full .BN-container {
  width: 100%;
  padding: 15px 1.5%; }

.BN-hbar.BN-auto .BN-container {
  width: auto;
  padding: 15px 1.5%; }

/*Sticky*/
.BN-hbar.BN-sticky {
  position: fixed; }

.BN-hbar.BN-scroll {
  position: absolute; }

@media (max-width: 449px) {
  /*Hbar*/
  .BN-hbar .BN-trigger {
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 0;
    padding: 0; }
    .BN-hbar .BN-trigger p {
      text-align: center; }
    .BN-hbar .BN-trigger button {
      margin: 15px 0 0 0;
      width: 100%; }
  .BN-hbar .BN-close {
    display: inline;
    position: absolute;
    top: 10px;
    right: 10px;
    justify-content: flex-start;
    margin-left: 5px; }
  .BN-hbar.BN-full .BN-container {
    width: calc(100% - 60px);
    padding: 15px 30px; }
  .BN-hbar.BN-auto .BN-container {
    width: calc(98%-60px);
    padding: 15px 30px; }
  .BN-hbar.BN-thumb .BN-image {
    margin-bottom: 10px; } }
