
html,body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

:root{
    --bg-color: rgb(18, 18, 18);
    --bg-color-second: rgb(29,29,29);
    --color: rgb(210, 210, 210);
    --color-second: rgb(210, 210, 210);
    --log-type-generic: #ff0000;
    --primary-color: rgb(129, 195, 199);
    --danger-color:rgb(228, 114, 114);
}
.button-img{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: var(--bg-color-second);
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    font-family: consolas;
    font-weight: bolder;
    font-size: 17px;
    line-height: 15px;
    border: 1px solid black;
}
.button-img:hover{
    background-color: #bebebe;
}
.button-img:active{
    background-color: #ffffff;
}
.button-img[disabled]{
    background-color: #bdbdbd;
    color: color-mix(in srgb, var(--bg-color-second), white)
}
.button-img img{
    height: 20px;
    margin-right: 10px;
}
.in-a{
    background-color: rgb(0,0,0);
    color: var(--color-second);
    border: 1px solid var(--color-second);
}
.hidden{
    display: none !important;
}
/*<---========Modal=======--->*/
.modal{
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
}
.modal-content{
    min-height: 200px;
    min-width: 200px;
    background: white;
    border-radius: 10px;
}
/*<---========Burger_menu=======--->*/

.burger-menu{
    width: 50px;
    height: 20px;
    cursor: pointer;
    display: flex;
    position: relative;
    z-index: 2;
    margin-top: 25px;
    margin-left: 25px;   
}
.burger-menu span{
    position: absolute;
    background-color: #222;
    width: 100%;
    height: 20%;
    transition: all .4s;
    border-radius: 100px;
}
.burger-menu span[i="1"]{
    top:0;
}
.burger-menu span[i="2"]{
    top:40%;
    opacity: 1;
    transition: all .4s;
}
.burger-menu span[i="3"]{
    bottom: 0;
}

.burger-menu.close span{
    transition: all .4s;
}
.burger-menu.close span[i="1"]{
    top: 40%;
    transform: rotate(45deg);
}
.burger-menu.close span[i="2"]{
    opacity: 0;
    transform: all .4s;
}
.burger-menu.close span[i="3"]{
    bottom: 40%;
    transform: rotate(-45deg);
}
.navigation{
    position: absolute;
    margin-top: -55px;
    padding-top: 55px;
    padding-right: 10px;
    height: 100%;
    transition: all .4s;
    border-right: 3px solid #222;
    color: white;
    backdrop-filter: blur(2px);
    background: linear-gradient(33deg, #22222268,#33333368)
}
.navigation a{
    color:white;
}
.navigation.close{
    margin-left: -250px;
}

hspan{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.danger{
    background-color: var(--danger-color);
    /* color: var(--danger-color) */
}
.danger:hover{
    background-color: color-mix(in srgb, var(--danger-color), white)
}
.danger:active{
    background-color: var(--danger-color);
}
/*<----Loading screen*/
.loading-screen{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color-second);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.loader {
    border: 6px solid var(--bg-color-second); /* Light grey */
    border-top: 6px solid var(--danger-color); /* Blue */
    border-radius: 50%;
    width: 80px;
    aspect-ratio: 1;
    animation: load-spin 0.5s linear infinite;
  }
  
  @keyframes load-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }


  /*<---========Notifications=======--->*/
notification-list{
    position: fixed;
    right: 5;
    top: 5;
}
notification{
    transform: translate(105%,0);
    display: flex;
    flex-direction: column;
    min-width: 100px;
    min-height: 50px;
    margin-bottom: 10px;
    transition: all 0.25s ease-in;
    padding: 6px;
    border-radius: 8px;
}
notification[state="showed"]{
    transform: translate(0,0);
}
notification[state="removing"]{
    transform: translate(105%,0);
}
notification h2{
    margin: 0;
}
notification p{
    margin: 0;
}