/* navbar */
.header-item {
  font-size: 20px;
  margin: 0;
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.header-items {
  width: 100%;
  display: flex;
  justify-content: right;
  padding-right: 50px;
  margin: 5px 0 0 20px;
}

.header-item::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #581845;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.navbar-toggler{
  margin-left: auto;
}
.navbar-item .notification {
  position: relative;
  display: inline-block;
  color: white;
  font-size: 18px;
}

.navbar-item .notification i {
  margin-right: 8px;
}

.badge {
  position: absolute;
  top: 0px;
  right: -10px;
  padding: 5px 10px;
  border-radius: 50%;
  background-color: red;
  color: white;
  font-size: 12px;
}

.header-item:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.history-nav{
display: flex;
flex-wrap: wrap;
}

.navbar-custom {
 
  z-index: 10;
  /* background-color: #f3f2f2; */
  margin-bottom: 5px;
  padding: 5px 0 0 24px;
  cursor: pointer;
}
.nav-arrow-right{
  width: 30px;
  margin-right: auto;
  margin-left: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.nav-arrow-left{
  width: 30px;
  margin-left: auto;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.last-visited-pages{
  font-style: italic;
  color: black;
  margin: 0 10px
}

.header-logo {
  height: 50px;
  width: auto;
  /* border-radius: 100% */
}
.nav-disabled {
  text-decoration: line-through;
}
@media only screen and (max-width: 1000px) {
  .header-logo {
    height: 30px;
  }

  .navbar-custom {
    padding-left: 10px;
    margin: 0;
    margin-bottom: 10px;
  }

  .header-items {
    margin: 0px;
  }
  .last-visited-pages{
    font-size: 10px;
    margin: 0 5px;
  }
  .nav-arrow-right, .nav-arrow-left{
    width: 25px;
    
  }
  
}
