@import "../node_modules/react-vis/dist/styles";

html, body, #root {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font: 12px Roboto, 'Helvetica Neue', Helvetica, sans-serif;
    line-height: 1.2em;
    /*font-weight: 300;*/
}



.react-contextmenu {
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 16px;
    color: #373a3c;
    text-align: left;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
    outline: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease !important;
}

.react-contextmenu.react-contextmenu--visible {
    opacity: 1;
    pointer-events: auto;
}

.react-contextmenu-item {
    padding: 3px 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #373a3c;
    text-align: inherit;
    white-space: nowrap;
    background: 0 0;
    border: 0;
    cursor: pointer;
}

.react-contextmenu-item.react-contextmenu-item--active,
.react-contextmenu-item.react-contextmenu-item--selected {
    color: #fff;
    background-color: #20a0ff;
    border-color: #20a0ff;
    text-decoration: none;
}

.react-contextmenu-item.react-contextmenu-item--disabled,
.react-contextmenu-item.react-contextmenu-item--disabled:hover {
    color: #878a8c;
    background-color: transparent;
    border-color: rgba(0,0,0,.15);
}

.react-contextmenu-item--divider {
    margin-bottom: 3px;
    padding: 2px 0;
    border-bottom: 1px solid rgba(0,0,0,.15);
    cursor: inherit;
}
.react-contextmenu-item--divider:hover {
    background-color: transparent;
    border-color: rgba(0,0,0,.15);
}

.react-contextmenu-item.react-contextmenu-submenu {
    padding: 0;
}

.react-contextmenu-item.react-contextmenu-submenu > .react-contextmenu-item {
}

.react-contextmenu-item.react-contextmenu-submenu > .react-contextmenu-item:after {
    content: "▶";
    display: inline-block;
    position: absolute;
    right: 7px;
}

.example-multiple-targets::after {
    content: attr(data-count);
    display: block;
}


.Resizer {
    background: #000000;
    opacity: 1;
    z-index: 1;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-background-clip: padding;
    -webkit-background-clip: padding;
    background-clip: padding-box;
}

.Resizer:hover {
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

.Resizer.horizontal {
    height: 10px;
    margin: -5px 0;
    border-top: 5px solid rgba(200, 200, 200, 0.3);
    border-bottom: 5px solid rgba(200, 200, 200, 0);
    cursor: row-resize;
    width: 100%;
}

.Resizer.horizontal:hover {
    border-top: 5px solid rgba(100, 100, 100, 0.6);
    border-bottom: 5px solid rgba(100, 100, 100, 0.6);
}

.Resizer.vertical {
    width: 10px;
    margin: 0 -5px;
    border-left: 5px solid rgba(200, 200, 200, 0.3);
    border-right: 5px solid rgba(200, 200, 200, 0);
    cursor: col-resize;
}

.Resizer.vertical:hover {
    border-left: 5px solid rgba(100, 100, 100, 0.6);
    border-right: 5px solid rgba(100, 100, 100, 0.6);
}
.Resizer.disabled {
    cursor: not-allowed;
}
.Resizer.disabled:hover {
    border-color: transparent;
}


.node {
    cursor: pointer;
}

.label {
    font: 12px "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-anchor: middle;
    user-select: none;
}

.label,
.node--root {
    pointer-events: none;
}


.node:hover {
    stroke: red;
    opacity: 1;
    stroke-width: 1px   ;
}

.node-selected,.node-selected:hover {
    stroke: orange;
    opacity: 1;
    stroke-width: 1px;
}


.node-selected-sub,.node-selected-sub:hover {

    stroke: teal;
    opacity: 1;
    stroke-width: 1px;
}

.tooltip-circle-packing {
    color: #333333;
    position: absolute;
    width: 20em;
    height: 4em;
    padding: 0.5em;
    background: #FFFFFF;
    border: 0px;
    border-radius: 8px;
    pointer-events: none;
}

.tooltip-circle-packing-title {
   color: #222222;
    font-size: 1.5em;
    padding-bottom: 1em;

}
