.application-launcher {
  position: relative;
  line-height: 60px;
}
.application-launcher:hover .application-launcher-icon {
  opacity: 1;
}
.application-launcher-icon {
  width: 22px;
  border-radius: 2px;
  vertical-align: middle;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
.launcher-dropdown {
  position: absolute;
  right: -200%;
  background-color: #d9d8e6;
  text-align: center;
  
  .dropdown-item {
    padding: 3vh 2vw;
    display: flex;
    flex-direction: row;
  }

  .launcher-dropdown-icon {
    margin-right: 25px;
    padding-top: 8px;
  }
}

.dark .launcher-dropdown {
  background: #272727;
  color: #FFF;
  border: 1px solid #323232;
  box-shadow: 0 4px 8px #000;
  border-radius: 3px;

  .dropdown-item {
    &:hover {
      background: #2BACCA;
    }
  }
}