.start-menu {
    width: 30vw;
    height: 60vh;
    background-color: var(--primary-color);
    border-radius: 10px;
    position: absolute;
    top: 33%;
    animation: 0.5s slide-up;
    visibility: hidden;
    z-index: 999;
}

.close {
    animation: 0.5s slide-down;
    z-index: 1 !important;
}

@keyframes slide-up {
    from {
      top: 100%;
      height: 60vh;
      z-index: 1;
    }
    to {
      top: 33%;
      height: 60vh;
        z-index: 999;
    }
  }

  @keyframes slide-down {
    from {
      top: 33%;
      height: 60vh;
    }
    to {
      top: 100%;
      height: 60vh;
    }
  }

.start-menu-search {
    width: 70%;
    height: 3vh;
    background-color: rgb(49, 49, 49);
    color: white;
    border: none;
    border-radius: 15px;
    margin: 1vh 13%;
    text-align: center;
}

.start-menu-search:focus {
    outline: none;
}

.pinned-text {
    color: white;
    font-size: 1vw;
    margin-left: 3vw;
    margin-top: 3vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

.pinned-start {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.pinned-app {
    width: 5vw;
    border-radius: 10px;
    margin-left: 2vw;
}

.pinned-app:hover {
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
}

.pinned-app-icon {
    width: 4vw;
    margin-left: 0.5vw;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

.pinned-app-name {
    font-size: 0.8vw;
    color: white;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 0;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}