body{
    background-color: rgb(35, 35, 35);
}

a{
    text-decoration: none;
}


.pages{
    position: absolute;
    width: calc(85% - 3px);
    height: calc(100% - 152px);
    top: 0;
    right: 0;
    display: none;
}

.visable{
    display: flex;
}


.hidescroll::-webkit-scrollbar {
    display: none;
}
  
.hidescroll{
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.popup{
    display: none;
    position: absolute;
    width: 240px;
    min-height: 200px;
    top: 100px;
    left: 1000px;
    background-color: rgb(44, 44, 44);
    z-index: 9999;
    border-radius: 5px;
    flex-direction: column;
}
.popup div{
    padding: 10px;
    font-size: 15px;
    color: aliceblue;
    font-family: Helvetica Neue,helvetica,arial,Hiragino Kaku Gothic Pro,Meiryo,MS Gothic;
    padding-left: 20px;
}
.popup hr{
    width: 95%;
}
.popup div:hover{
    background-color: rgb(59, 59, 59);
    border-radius: 5px;
}