.Topsidenav
{
    height: 70px;
    width: 350px;
    z-index: 3;
    top: 0;
    background-color: #141414;
    overflow: hidden;
    padding-top: 0px;
    border-right-color: darkgray;
    border-right-width: thin;
    border-right-style: solid; 
    color:white;
    font:inherit;
    position:fixed;
    will-change: transform;
}  
.sidenav
{
    height: 100vh;
    width: 350px;
    position: fixed;
    z-index: 7;
    top: 0px;
    left: calc(100% - 350px);
    display: none;
    background-color: white;
    overflow-x: hidden;
    overflow-y: clip;
    transition: 0.5s;
    padding-top: 0px;
    border-left-color: black;
    border-left-width: thin;
    border-left-style:solid;
    font:inherit;
    will-change: transform;
} 
.Topsidenav span
{
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    font-family: 'Material Symbols Outlined';
}
.sidenav span:hover
{
    color: #FF0000;
}  
.sidenav a, .Topsidenav a {
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    font-size: 25px;
    color: white;
    display: block;
    transition: 0.3s;
   font-family: inherit;
}
.Topsidenav#words
{
    left: 50px;
    position: absolute;
    font-size: 20px;
    height: 36px;
    text-align: left;
    width: 20%;
    letter-spacing: .02em;
    padding: 8px;
    font-family: inherit;
    border:none;
    display: flex;
    justify-content: center;
    align-items: center;
}  
.Topsidenav .closebtn
{
    position: absolute;
    top: 0;
    left: 20px;
    font-size: 26px;
    width: 40px;
    height:40px;
    line-height: 40px;
    padding: 7px 0px 0px 0px;
}
.centernav
{
    height: 170px;
    width: 512px;
    position: absolute;
    z-index: 2;
    top: calc(50% - 85px);
    background-color: white;
    overflow-x: hidden;
    transition: 0s;
    padding-top: 0px;
    border-width: thin;
    border-style:solid;
    font:inherit;
    border-color:darkgray; 
    border-style:solid; 
    border-width: 1px;
    border-radius:20px;
    display:none;
    margin-left:60vh;
}
.divstyles
{
      position: fixed;
      top: 70px;
      z-index: 2;
      width: 350px;
      overflow: auto;
      display: flex;
      flex-direction: column;
}
#overlay 
{
        position: fixed;
        display: none;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(33,36,56,0.4);
        z-index: 6;
        cursor: pointer;
}
.spinner-overlay
{
    position: absolute;
    top: 9vh;
    left: 0;
    width: 100vw;
    height: 93vh;
    background-color:#0000001A;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.spinner
{
    border: 4px solid #8c9FFF;
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin 
{
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}