.topbar-component {
  height: var(--topbar-height);
}

.topbar-component-content {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: var(--topbar-height);
  background-color: var(--primary);
}

.topbar-component-navigation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-component-navigation > .row > [class*="col-"] {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.open-sidebar-btn,
.topbar-cart-btn {
  color: #FFF;
  cursor: pointer;
}

.topbar-cart {
  position: relative;
}

.open-sidebar-btn {
  text-align: left;
  padding-left: 10px;
}

.topbar-cart-btn {
  text-align: right;
  padding-right: 10px;
}

.topbar-cart-amount {
  position: absolute;
  top: -5px;
  right: 5px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  z-index: 2;
  background-color: var(--red);
  color: #FFF;
  pointer-events: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: none;
}

.topbar-cart-amount.active {
  display: block;
}

.topbar-title {
  flex: 1;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar-title h1 {
  flex: 1;
  font-size: 16px;
  text-align: center;
  color: #FFF;
  /* opacity: 0; */
  transition: .3s ease;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -ms-transition: .3s ease;
  -o-transition: .3s ease;
}


/* FIXED */

.topbar-component.fixed .topbar-component-content {
  position: fixed;
  top: calc(var(--topbar-height) * -1);
  left: 0;
  width: 100%;
  z-index: 20;
  transition: .3s ease;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -ms-transition: .3s ease;
  -o-transition: .3s ease;
}

.topbar-component.fixed.animate .topbar-component-content {
  top: 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}