/* Navbar Hamburger
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  nav{
    background: #F2eded;
    z-index: 1;
    position: sticky;
    top: 0;
  } 
  .navbar {
    width: 100%;
    box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
  }
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
    position: fixed;
  }
  .navbar .menu-items {
    display: flex;
    border-right: 5px solid #0e2431;
  }
  .navbar .nav-container li {
    /*Menu Items*/
    list-style: none;
    text-align: left !important;
    margin-left: 16px;
  }
  .menu-items i{
    /*Space between icon and text*/
    margin-right: 16px;
  }
  .navbar .nav-container a {
    text-decoration: none;
    color: #0e2431;
    font-weight: 500;
    font-size: 2.5rem;
    padding: 0.7rem;
    display: block;
    box-sizing: border-box;
    border-bottom: 1px solid #0e2431;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
  }
  
  .navbar .nav-container a:hover{
    font-weight: bolder;
    padding-left: 24px;
  }
  
  .nav-container {
    display: block;
    position: relative;
    height: 60px;
  }
  
  .nav-container .checkbox {
    /*Solo Trigger*/
    position: absolute;
    display: block;
    height: 38px;
    width: 40px;
    top: 12px;
    left: 4px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }
  
  .nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 18px;
    left: 8px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
  }
  
  .nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }
  
  .nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  
  .nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }
  
  .navbar .menu-items {
    padding-top: 120px;
    box-shadow: inset 0 0 2000px rgba(255, 255, 255, .5);
    height: 100vh;
    /*width: auto;*/
    max-width: 512px;
    transform: translate(-200%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    text-align: center;
    
  }
  
  .navbar .menu-items li {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
  }
  
/* Right Side
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  .logo {
    position: absolute;
    top: 4px;
    right: 8px;
    font-size: 1.2rem;
    color: #0e2431;
  }
  .navbar .nav-container .logoLink{
    padding: 0;
    border: 0;
  }
  .logo_img_small {
    height: 32px;
  }
  .logo_img_large {
    height: 52px;
  }
/* Mid Buttons
  ––––––––––––––––––––––––––––––––––––––––––––––––– */
  .tool-container{
    position: absolute;
    top: 11px;
    left: 56px;
    height: 40px;
    width: 100%;
  }
  .search-field{
    float: left;
    position: relative;
    display: flex;
    margin-right: 16px;
  }
  .search{
    width: 232px; 
  }
  
  .new_btn_large{
    float: left;
    width: 128px;
  }
  .new_btn_small{
    float: left;
    /*width: 28px;*/
    margin-top: 6px;
    padding: 0 12px !important; 
    font-size: 24px !important; 
  }


  @media (min-width: 784px) {
    .new_btn_small {
        display: none !important; 
    }
    .logo_img_small {
        display: none;
    }
  }
  @media (max-width: 784px) {
    .new_btn_large {
        display: none !important;
    }
    .logo_img_large {
        display: none;
    }
  }


/* Hamburger Click Event
  ––––––––––––––––––––––––––––––––––––––––––––––––– */
  .nav-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
    /*width: fit-content;*/
    max-width: 512px;
    text-align: center;
    background: #F2eded;
    overflow-y: auto;
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }

 
  