*{
    box-sizing: content-box !important;
    font-family: "Titillium Web", 'Ubuntu';
}
body{
    background-color: rgba(0,0,0,.1) !important;
}
em{
    white-space: nowrap;
}
.selected{
    background-color: rgba(0,0,0,.2);
}
.w-fc{
    width: fit-content !important;
    margin: 5px auto; 
} 
.bg-w{
    background-color: whitesmoke;
}
.header-title{
   background-color: rgba(0,0,0,.8);
   color: whitesmoke; 
   border-radius: 12px 12px 0px 0px; 
}
.logger{
    max-height: 15vh;
    overflow: scroll;
    margin: 5px auto;
    padding: 2px;
}

.dialog-container{
    position: fixed;
    height: 100%;
    width: 100%;
    min-width: 100vw;
    min-height: 100vh;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,.86);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .08s ease-in-out;
    
}

.dialog-box{
    background-color: whitesmoke;
    border-radius: 15px;
    min-width: 50%;
    max-width: 50%;
    padding: 20px;
}

.dialog-container.rise{
    opacity: 1;
    visibility: visible;
    transition: all .08s ease-in-out;
}