.dashboard-alignment-assist {
    position: absolute;
    cursor: move;
}
.custom-dashboard {
    position: relative;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                        supported by Chrome, Edge, Opera and Firefox */
}
.custom-dashboard > .chart-div {
    min-width: 10%;
    min-height: 80px;
    width: 20%;
    height: 200px;
    overflow: hidden;
    position: absolute;
    padding: 3px;
}
.custom-dashboard > .chart-div.selected {
    background-color: #3f70e38c;
    opacity: 0.6;
    z-index: 10;
}
.custom-dashboard > .chart-div.selected > div {
    opacity: 0.6;
}
.custom-dashboard > .chart-div > .resize-handle-skin {
    height: 6px;
    position: absolute;
    width: 6px;
    right: 7px;
    bottom: 7px;
    border-bottom: 2px solid #ffffff88;
    border-right: 2px solid #ffffff88;
    display: none;
}
.custom-dashboard > .chart-div > .resize-handle {
    height: 15px;
    position: absolute;
    width: 15px;
    cursor: se-resize;
    right: 3px;
    bottom: 3px;
}
.custom-dashboard > .chart-div:hover .resize-handle-skin {
    display: inherit;
}

.custom-dashboard > .chart-div::-webkit-resizer {
    background-color: transparent;
}
.custom-dashboard > .chart-div > .chart-inner {
    border-radius: 2px;
    background-color: #181b1f;
    border: 1px solid #232323;
    height: max-content;
    height: 100%;
    position: relative;
}
.custom-dashboard > .chart-div > .chart-inner > .chart-header {
    background-color: transparent;
    height: 25px;
    color: #ffffffaa;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
}
.custom-dashboard > .chart-div > .chart-inner > .chart-header:hover {
    background-color: #ccccdc29 !important;
    cursor: move;
}

.custom-dashboard > .chart-div > .chart-inner > .chart-content {
    background-color: #181b1f;
    height: calc(100% - 25px);
    color: #ffffffaa;
    text-align: center;
    font-size: 12px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    overflow: hidden;
}
.custom-dashboard > .shadow-chart {
    background-color: #3f70e38c;
    min-width: 5%;
    min-height: 20px;
    position: fixed;
    border-radius: 2px;
    position: absolute;
}

.custom-dashboard > .select-shadow {
    background-color: #3f70e38c;
    opacity: 0.6;
    position: fixed;
    border-radius: 2px;
    position: absolute;
    z-index: 20;
}

#content {
    overflow: hidden;
}