.pager {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;

  padding-top: 80px;
}

/* Pager Header. */

.pager-header {
  position: fixed;
  display: flex;
  z-index: 1000;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  top: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  height: 80px;

  padding: 0 40px;

  background: white;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.pager-header-logo {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;


  flex-direction: row;
}

.pager-header-logo img {
  position: relative;
  display: flex;

  flex-direction: row;

  width: auto;
  height: 30px;

  object-fit: contain;
  object-position: center center;
}

.pager-header-actions {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;
}

.pager-header-action {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: 35px;
  height: 35px;

  font-size: 20px;

  fill: currentColor;
  color: rgba(0, 0, 0, 0.4);

  transition: 0.3s all ease-out;
}
.pager-header-action:hover,
.pager-header-action.active {
  color: rgba(0, 0, 0, 1);
}

.pager-header-action-badge {
  position: absolute;
  display: none;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  top: 0;
  left: 0;
  transform: translate(-20%, -20%);

  height: 16px;

  padding: 0 5px;
  padding-top: 4px;

  border-radius: 100px;

  font-size: 12px;
  font-weight: 600;

  background: #FF5722;

  color: white;
}
.pager-header-action.active .pager-header-action-badge {
  display: flex;
}


/* Pager Navbar. */

.pager-navbar {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;

  width: 100%;
  height: 50px;

  padding: 0 40px;

  background: rgba(0, 0, 0, 0.03);
}

.pager-navbar-brand {
  position: relative;
  display: flex;
  flex-shrink: 0;

  align-content: center;

  flex-direction: row;
  flex-wrap: wrap;

  margin-left: 40px;

  height: 100%;

  padding: 0 20px;

  text-decoration: none;

  fill: currentColor;
  color: rgba(90, 90, 120, 1);

  opacity: 0.6;
  background: rgba(0, 0, 0, 0.05);

  transition: 0.3s all ease-out;
}
.pager-navbar-brand:hover {
  opacity: 1;
}

.pager-navbar-brand-logo {
  position: relative;
  display: flex;

  margin-left: 10px;

  width: 30px;
  height: 30px;

  border-radius: 6px;

  object-fit: cover;
  object-position: center center;
}

.pager-navbar-brand-name {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;

  padding-top: 5px;

  font-size: 12px;
  font-weight: 600;
}

.pager-navbar-menu {
  position: relative;
  display: flex;
  overflow: hidden;
  overflow-x: auto;

  flex-direction: row;

  align-items: center;
}

.pager-navbar-menu-item {
  position: relative;
  display: flex;

  align-items: center;

  flex-direction: row;

  height: 25px;

  padding: 0 15px;
  padding-top: 3px;

  border-radius: 6px;

  white-space: nowrap;

  font-size: 12px;
  font-weight: 600;

  fill: currentColor;
  color: rgba(0, 0, 0, 0.4);

  transition: 0.3s all ease-out;
}
.pager-navbar-menu-item:hover,
.pager-navbar-menu-item.active {
  font-weight: 600;
  color: black;
}
.pager-navbar-menu-item.active {
  background: rgba(0, 0, 0, 0.05);
}


































/*  */
