/* custom scrollbars */

::-webkit-scrollbar {
    display: block;
}

#element {
    scrollbar-width: none;
}

* {
    box-sizing: border-box;
    scrollbar-width: none;
    /* font-family: Courier, monospace; */
}

body {
    padding: 0;
    margin: 0;
    font-size: 85%;
    hyphens: auto;
    background-color: #ccc;
    font-family: Courier, monospace;
}

/* this helps removing the spin box from the input field */

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield;
    /* Firefox */
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding: 0.5rem;
    margin: 0.5rem 0;
    text-align: center;
    border-radius: 0px;
    border: solid 2px #000;
    background-color: #fff;
    box-shadow: #f00 3px 3px;
    text-transform: uppercase;
    font-family: Courier, monospace;
}

button {
    font-family: Courier, monospace;
}

p {
    margin: 0;
    padding: 0.5rem 0 0.5rem 0;
    border: 0;
    font-size: 1rem;
    font: inherit;
    vertical-align: baseline;
}

.title {
    font-size: 2rem;
}

.rotated-title {
    width: 100vh;
    font-size: 2rem;
    transform: rotate(90deg);
    transform-origin: bottom left;
}

.box {
    background-color: #ccc;
    border: solid 2px #000;
    box-shadow: #00f 3px 3px;
    margin-top: 1rem;
}

.btn {
    cursor: pointer;
    padding: 0.5rem;
    margin: 0.5rem 0;
    text-align: center;
    width: max-content;
    border-radius: 0px;
    border: solid 2px #000;
    background-color: #fff;
    box-shadow: #00f 3px 3px;
    text-transform: uppercase;
    font-family: Courier, monospace;
    font-size: 0.85rem;
}

.btn:hover {
    background-color: #ff0;
    border-radius: 50px;
}

.menu {
    position: fixed;
    left: 0px;
    width: 200px;
    height: 100vh;
    padding: 0.5rem;
    border-right: solid 2px #000;
}

.statistics {
    padding: 0.25rem;
}

.main {
    position: fixed;
    left: 200px;
    width: calc(100% - 400px);
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* filter: blur(1px); */
}

.abm {
    /* position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

.data-viz {
    position: fixed;
    right: 0px;
    width: 200px;
    height: 100vh;
    border-left: solid 2px #000;
    background-color: rgba(204, 204, 204, 0.65);
    overflow-y: scroll;
}

#drag-bar {
    cursor: ew-resize;
    position: fixed;
    position: fixed;
    right: 198px;
    width: 0px;
    height: 100vh;
    border-left: solid 2px #0f0;
}


/*tool tip hel styling*/

[data-title] {
    /* position: relative; */
    cursor: help;
}

.help-tip {
    /* content: attr(data-title); */
    z-index: 99999999999;
    display: none;
    position: fixed;
    max-width: 250px;
    padding: 0.25rem;
    /* border-radius: 2px; */
    background: #cccd;
    color: #00f;
    font-size: 12px;
    /* font-family: sans-serif; */
    box-shadow: #f00 3px 3px;
}


.description-container {

    position: fixed;
    z-index: 99999999999999999;
    background-color: #ccca;
    width: 100%;
    height: 100vh;
    display: flex;
    overflow-y: scroll;
    cursor: url("../close.png"), not-allowed;
}

.model-description {
    cursor: default;
    width: 75%;

    margin: auto;
}

.model-description p, .model-description li {
    background-color: #ddd;
}

.model-description code {
    color: #f33;
}