﻿module{
    display: none;
}

* {
    box-sizing: border-box;
}

html, body {
    position: relative;
    height: 100vh;
    font-size: 14px;
    overflow-y: auto;
}
body {
    overflow-y: scroll;
}


[hidden] {
    display: none !important;
}




.middle-align {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}


.middle-align-abs {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}


.context-menu-list.context-menu-root {
    font-size: 13px;
}

.menu-label {
    font-weight: bolder !important;
}

.column {
    padding: 3px 0px 3px 0px;
}

.clickable{
    cursor: pointer;
    user-select: none;

    :hover{
        outline: 1px solid orange;
    }

    :active {
        color: red;
    }
}