.component-toolbar {
  background-color: #212121;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.24), 0 0 2px 0 rgba(0, 0, 0, 0.12);
  color: #ffffff;
  position: relative;
  z-index: 10;

  .zapLogo {
    height: 85%;
  }
  .header-icons {
    display: flex;
  }

  .toolbar-container {
    padding: 5px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    .toolbar-top-icons {
      font-size: 18px;
      font-weight: 500;
      a {
        color: white;
      }
    }
  }
  .ovl {
    background-color: rgba(0,0,0,0.2);
    height: 100vh;
    width: 100vw;
    z-index: 0;
    position: fixed;
    left: 0;
    top: 0;
  }


  .links {
    position: absolute;
    top: 0;
    left: -100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #d8d8d8;
    justify-content: flex-start;
    transition: left 0.3s;
    min-width: 350px;
    width: 25vw;
    overflow: scroll;

    &.show {
      position: fixed;
      left: 0;
    }

    .black-bar {
      background-color: #212121;
      min-height: 100px;
      color: white;
      .toolbar-icon {
        background-color: white;
        color: #212121;
      }
    }

    a {
      text-decoration: none;
      min-height: 60px;
      text-align: left;
      width: 100%;
      color: #4d4d4d;
      display: flex;
      align-items: center;
      padding: 0 20px;
      font-weight: 600;
      font-size: 14px;
      .toolbar-icon {
        height: 35px;
        width: 35px;
        border-radius: 50%;
        background-color: #212121;
        display: flex;
        color: white;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
        font-size: 16px;
      }
    }
  }
  @media screen and (max-device-width: 480px) {
    .toolbar-container {
      padding: 15px;
      font-size: 18px;
      .toolbar-top-icons {
        display: none;
      }
    }
    .header-icons {
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .logo {
      display: flex;
      align-items: flex-end;
    }
    .mobile-menu {
      display: block;
    }
    .zapLogo {
      height: 20px;
    }
    .links {
      min-width: auto;
      width: 75vw;
    }
  }
}
