aside {
    position: fixed;
    display: flex;
    flex-direction: column;
    left: 0;
    background-color: #fff;
    height: 94vh;
    width: 15vw;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: 8px 0px 8px -6px rgba(34, 60, 80, 0.2);
    transition: 0.5s ease;
    overflow-y: auto;
}

aside::-webkit-scrollbar-track {
    border-radius: 12px;
    opacity: 0;
    margin: 2vh 0;
}

aside::-webkit-scrollbar {
    width: 0.6vh;
    border-radius: 12px;
}

aside::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgb(194, 194, 194);
}


.profile, .disciplines {
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    background-color: #454545;
    color: #fff !important;
    border-radius: 6px;
    font-size: 2vh;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    text-decoration: none;
}

.profile:hover, .disciplines:hover {
    background-color: #7c7c7c;;
}

.selected-section {
    background-color: #0071FF;
}

.profile span, .disciplines span {
    margin-left: 10px;
}

.discipline {
    font-size: 2.1vh;
    border-left: 4px solid black;
    padding-left: 10px;
    margin-left: 5px;
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.disciplines-list {
    display: flex;
    flex-direction: column;
}

.discipline-tasks {
    display: flex;
    flex-direction: column;
}

.task {
    text-decoration: none;
    margin-left: 20px;
    color: #727272;
    font-size: 1.9vh;
    border-left: 3px solid #727272;
    padding-left: 10px;
    cursor: pointer;
}

.hidden {
    display: none;
}

.module-details {
    display: flex;
}

.module-details li {
    margin-left: 35px;
    border-left: 3px solid #0071FF;
    padding-left: 10px;
    margin-bottom: 4px;
}

.module-details a {
    font-size: 1.8vh;
    color: #0071FF;
    text-decoration: none;
}

.subject.active .discipline{
    border-left: 4px solid #0071ff;
    color: #0071ff;
}

.version {
    margin-top: auto;
    margin-bottom: 1%;
}