#loginButton{
    margin: 3px;
    background-color: rgb(247, 247, 247);
    border:none;
    padding:10px 25px;
    border-radius: 5px;
    position: absolute;
    right: 30px;
    transition: all 500ms;
}
#loginButton:hover{
    background-color: rgb(220,220,220);
}
.model_button{
    background-color: transparent;
    transition: all 500ms;
    border-radius: 5px;
    color:rgb(80, 80, 80);
    padding:10px 15px;
    cursor: pointer;
}
.delete_model {
    position: absolute;
    right: 40px;
    margin-top:-2.25px;
    color:rgb(230, 51, 51);
    display: none;
    padding:7.5px;
    border-radius: 5px;
}
.model_button:hover{
    background-color: rgb(220, 220, 220);
}
.model_button:hover > .delete_model{
    display: inline-block;
}
.delete_model:hover{
    background-color: rgb(199, 199, 199);
}
#accountModels{
    display: none;
    position: absolute;
    width: 300px;
    padding: 25px;
    background: #fafafa;
    z-index: 9999;
    top:0px;
    left: 0px;
    height: 100%;
}
#accountModels.show{
    display: block;
   
    animation: come_left 250ms linear 1 ;
}
#accountModels.close{
    animation: come_right 250ms linear 1 ;
    display: block;
}
@keyframes come_left {
    0%{
        left:-300px;
    }
    100%{
        left: 0px;
    }
}
@keyframes come_right {
    0%{
        left: 0px;
    }
    100%{
        left:-300px;
    }
}
#myAccount{
    position: absolute;
    top:15px;
    left: 15px;
    padding:10px 15px;
    border:none;
    font-size: 24px;
}
#closeNavbar{
    font-size: 32px;
    -webkit-text-stroke: 3px white;
    position: absolute;
    right: 25px;
    margin-top: 2px;
    cursor: pointer;
}
#loading{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#loading.show{
    display: flex;
}

.model_button.selected{
    background-color: rgb(210, 210, 210);
}
#model_name_element{
    position: absolute;
    margin-left: 100px;
}
.exit_account{
    position: absolute;
    bottom: 30px;
    cursor: pointer;
    width: calc(100% - 50px);
    padding:10px 15px; 
    border-radius: 5px;
}
.exit_account:hover{
    background-color: rgb(220, 220, 220);
}
#model_arka.close{
    display: none;
}
#model_arka_hover{
    display: none;
    position: absolute;
    fill: red;
    stroke: red;
    top: -70px;
    left: 20px;
    z-index: 1;
}
#model_arka_hover.open{
    display: block;
}