
.livewire-top-menu  {
    width: 300px;
}
.livewire-top-menu * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
  }
  
  .livewire-top-menu  .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin: 0 auto;
    font-family: "Orbitron", sans-serif;
  }
  
  .livewire-top-menu  ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
  }
  
  .livewire-top-menu .menu-item {
    /* background: #444; */
    /* padding: 1em 0.5em; */
    padding: 25px 10px 29px 10px;
    position: relative;
    /* border-bottom: 5px solid #999; */
    margin: 0 0.1em;
    transition: border-bottom 0.23s ease-in-out, background 0.23s linear;
    cursor: pointer;
    /* min-width: 8em; */
    text-align: center;
  }
  .livewire-top-menu .menu-item[aria-haspopup=true] {
    border-bottom-color: #fc9b1b;
  }
  .livewire-top-menu .menu-item:hover, .livewire-top-menu .menu-item:focus-within {
    border-bottom-color: #91d36b;
    background: #eee;
  }
  .livewire-top-menu .menu-item:hover 
  .sub-menu,.livewire-top-menu 
  .menu-item:hover .sub-menu:hover, 
  .menu-item:focus-within .sub-menu, 
  .menu-item:focus-within 
  .sub-menu:hover {
    visibility: visible;
    opacity: 1;
    display: flex;
  }
  
  .livewire-top-menu .sub-menu {
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    margin-top: 1em;
    visibility: hidden;
    display: none;
    opacity: 0;
    color:white;
    background:#fff;
    
    /* background: rgb(39, 39, 39); */
  }



  .livewire-top-menu .menu-item-admin-name{
      min-width:130px;
  }
  .livewire-top-menu .sub-menu .menu-item {
    margin: 0.1em 0;
    padding: 1em;
    width: 10em;
    text-align: center;
    z-index: 2;
    border-top:1px solid #7FB0DA;
  }

  .livewire-top-menu .sub-menu .menu-item:hover {
    background:#eee;
  }

  .livewire-top-menu .sub-menu .menu-item:last-child {
    border-bottom:1px solid #7FB0DA;
  }
  
  .livewire-top-menu a {
    color: #7FB0DA;
    text-decoration: none;
    text-transform: uppercase;
  }
  .livewire-top-menu a:focus {
    outline: none;
  }
  
  /* @media (max-width: 690px) {
    .livewire-top-menu .menu {
      width: 95%;
      font-size: 16px;
    }
  
    .livewire-top-menu .menu-item {
      margin: 0.1em;
    }
    .livewire-top-menu .menu-item:nth-child(1) {
      order: 0;
    }
    .livewire-top-menu .menu-item:nth-child(2) {
      order: 1;
    }
    .livewire-top-menu .menu-item:nth-child(3) {
      order: 3;
    }
    .livewire-top-menu  .menu-item:nth-child(4) {
      order: 4;
    }
    .livewire-top-menu .menu-item:nth-child(5) {
      order: 2;
    }
  }
  @media (max-width: 480px) {
    .livewire-top-menu .menu {
      font-size: 12px;
    }
  } */


  .daterangepicker .ranges .range_inputs>div{
    float: left;
    width: 100%;
    padding-left: 0px !important;
  }

  .daterangepicker .ranges input[type="text"]{
    min-width: 100%;
  }