html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body{
    position: fixed;
}

#root{
    height: 100%;
    width: 100%;
}

html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}

.a-hidden
{
    text-decoration: none;
    color: inherit;
}

/*a, a:hover, a:visited, a:link, a:active*/
/*{*/
/*    !*text-decoration: none;*!*/
/*    color: -webkit-link;*/
/*}*/

.custom_modal {
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}


.d-flex{
    display: flex;
}

.d-none{
    display: none;
}