@import "constants.css";
@import "colors.css";

body{
    margin: 0;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: "PT_Root_UI", Arial,sans-serif;
    background: #eeeeee;
}

:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 5px;

}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #333333;
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);

}

html{
    overflow-y:scroll;
}

a{
    text-decoration: none;
    color: var(--colorWhite);
}

.container{
    display: flex;
    height: 100vh;
    /* width: 100vw; */
    flex-direction: column;
    padding-left: 60px;
    padding-right: 60px;
}

.space_horizontal{
    min-width: 20px;
    width: 100%;
}

.space_vertical{
    min-height: 20px;
    height: 100%;
}

.loading_container{
    position: fixed;
    top: 40%;
    left: calc(50% - 25px);
    z-index: 99;
}

.loading_icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 19px 0 black;
}