#closemenubox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mobilenavi {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 5px 10px 2px;
    background-color: rgb(24, 24, 24);
    border-style: solid;
    border-image: linear-gradient(to right, #1D2266, #BD54F2, #1D2266) 1 round;
    border-width: 0 0 2px 0;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.titlemed {
    display: none;
    padding-top: 6px;
}

.titleicon > img {
    width: 56px;
    border-radius: 50%;
    margin-left: 5px;
}

.mobilemenu {
    /* Define size, location */
    height: 100%;
    width: 320px;
    overflow: visible;
    position: fixed;
    top: 0;
    left: -320px;
    /* Background and border styles */
    background-color: rgb(34, 34, 34);
    border-radius: 0 16px 16px 0;
    box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.0);
    transition: left 0.3s, box-shadow 0.3s;
    /* FLEXBOX */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 13px;
    padding-left: 10px;
    z-index: 1;
}

.mobilemenu > a {
    text-decoration: none;
    color: white;
}

.mobile-navibutton {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: rgb(0, 0, 0, 0);
    border: none;
    font-size: 16px;
    border-radius: 999px;
    width: 300px;
    height: 50px;
    transition: 0.2s;
    color: inherit;
    font-family: 'Poppins';
    margin-top: 10px;
    padding-left: 22px;
}

.mobile-navibutton > span {
    margin-right: 25px;
    width: 24px;
}

.mobile-navibutton:hover {
    cursor: pointer;
    background-color: rgb(100, 100, 100, 0.7);
}

.hamburger {
    width: 50px;
    height: 50px;
    color: white;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.hamburger:active {
    background-color: rgba(135, 52, 177, 0.8);
    transition: 0s;
}

.hamburger > div {
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.hamburger > span {
    margin: 0;
}

.active {
    background-color: rgba(135, 52, 177, 0.8);
}

.active:hover {
    background-color: #642c80;
}