/* LEFT SIDE */

.names {
    width: 50vw;
    padding-top: 56px;
    background-color: #E0E0E0;
    float: left;
}

.names li {
    height: 72px;
    line-height: 72px;
    padding-left: 32px;
    padding-right: 32px;
    justify-content: space-between;
    display: flex;
}

/* name and role*/

.left_name {
    text-transform: uppercase;
    width: fit-content;
    display: inline-block;
}

a.name{
    color: #252525;
    border: 2px solid #252525;
    border-radius: 18px;
    text-decoration: none;
    padding-left: 8px;
    padding-right: 8px;
    cursor: pointer;
}

a.name:hover{
    background-color:#EF8354;
    color: #252525;
    box-shadow: 0 0px 8px 8px #EF8354;
    border: 2px solid transparent;
}

a.name_tutor{
    color: #252525;
    border: 2px solid #252525;
    border-radius: 18px;
    text-decoration: none;
    padding-left: 8px;
    padding-right: 8px;
    cursor: pointer;
}

a.name_tutor:hover{
    background-color:#CB5CFF;
    color: #252525;
    box-shadow: 0 0px 8px 8px #CB5CFF;
    border: 2px solid transparent;
}

.right_role {
    text-transform: uppercase;
    width: fit-content;
    display: inline-block;
    text-align: right;
}


/* LINES */

.hr_student{
    padding: 0px;
    margin: 0px;
    background-color:#EF8354 ;
    border-color:#EF8354 ;
    color:#EF8354;
    filter: blur(2px);
}

.hr_tutor{
    padding: 0px;
    margin: 0px;
    background-color:#CB5CFF;
    border-color:#CB5CFF;
    color:#CB5CFF;
    filter: blur(2px);
}


/* RIGHT SIDE */

.expanded {
    width: 50vw;
    top: 56px;
    background-color: #EF8354;
    margin-left: 50vw;
    height: calc(100vh - 56px);
    overflow-y: hidden;
    position: fixed;
    overflow-y: scroll;
    display: none;
}

.expanded.tutor {
    background-color: #CB5CFF;
}

.expanded#empty {
    background-color: #EF8354;
    display: block;
}

h2 {
    padding-bottom: 16px;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 32px;
    font-weight: 600;
}

h3 {
    font-family: "Junicode";
    text-transform: uppercase;
    line-height: 150%;
    padding-top: 32px;
    padding-left: 32px;
    padding-right: 32px;
}

p{
    padding-left: 32px;
    padding-right: 40px;
    line-height: 150%;
    max-width: 750px;
}

.name1_expanded p {
    padding-left: 32px;
    padding-right: 32px;
    line-height: 150%;
}

a.inside_expansion{
    color:black;
    text-decoration: none;
    padding-left: 32px;
    line-height: 150%;
    display: block;
}

a.inside_expansion:hover{
    color:#E0E0E0;
}

p:nth-last-child(1) {
    padding-bottom: 40px;
}

li.query_separation {
    display: none;
  }