:root {
    --main-bg-color: #FFFFFF;
    --main-font-color: #73879C;
    --main-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
    --aux-bg-color: #EEEEEE;
    --aux-font-color: #888888;
    --pop-box-border: 1px solid rgba(90, 115, 142, 0.2);
    --pop-box-hover: rgba(90, 115, 142, 0.2);
    --table-bg-color: #F9F9FB;
    --title-font-size: 22px;
    --title-font-weight: 500;
    --title-letter-spacing: 1.2px;
    --subtitle-font-size: 14px;
    --subtitle-font-weight: 400;
    --subtitle-border: 1px solid #DDDDDD;
    --header-action-font-color: #5A738E;
    --header-action-font-size: 12px;
    --header-action-font-weight: 300;
    --kpi-big-font-size: 32px;
    --kpi-big-font-weight: 400;
    --kpi-big-letter-spacing: 0.8px;
    --kpi-small-font-size: 10px;
    --kpi-small-font-weight: 100;
    --kpi-small-letter-spacing: 0.1px;
}


.oemm-about-logo {
    width: 128px;
    float: right;
    margin: -20px 8px 8px 20px;
    transition: opacity 1.4s ease-in;
}

.markdown ul{
    list-style: disc;
    margin-left: 20px;
}

.markdown h3 {
    margin: 40px 0 0 0;
}

.markdown blockquote {
    border-left: 4px solid rgba(0,0,0,.07);
    padding-left: 10px;
    margin-left: 20px;
}

.markdown blockquote p,
.markdown blockquote code {
    font-size: smaller !important;
}

.markdown pre code {
    display: block;
    padding: 14px;
    border-radius: 4px;
    padding-left: 36px;
}

.markdown code.language-console {
    background-color: #23282d;
    color:#AAAAAA;
}

.markdown code.language-bash {
    background-color: #23282d;
    color:#AAAAAA;
    padding-left: 36px;
}

.oemm-row {
    margin-bottom: 10px;
    width: 100%;
}

.last-row {
    margin-top: -8px;
}

.oemm-box-full-line {
    display: inline-block;
    padding: 8px;
    background-color: var(--main-bg-color);
    border-radius: 2px;
    box-shadow: var(--main-box-shadow);
}

.oemm-box-40-60-line {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    padding: 8px;
    margin-bottom: -8px;
}

.oemm-40-module {
    flex-grow: 2;
    flex-shrink: 2;
    background-color: var(--main-bg-color);
    border-radius: 2px;
    box-shadow: var(--main-box-shadow);
    margin-left: -8px;
    margin-top: -8px;
    margin-right: 10px;
    padding: 8px;
    height:290px;
    width: 38%;
}

.oemm-60-module {
    flex-grow: 3;
    flex-shrink: 3;
    background-color: var(--main-bg-color);
    border-radius: 2px;
    box-shadow: var(--main-box-shadow);
    margin-right: -8px;
    margin-top: -8px;
    padding: 8px;
    width: 58%;
}

.oemm-box-33-33-33-line {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    padding: 8px;
}

.oemm-33-module {
    background-color: var(--main-bg-color);
    border-radius: 2px;
    box-shadow: var(--main-box-shadow);
    margin-top: -8px;
    padding: 8px;
    width: 31%;
}

.oemm-33-left-module {
    flex-grow: 1;
    margin-left: -8px;
    margin-right: 10px;
}

.oemm-33-center-module {
    flex-grow: 1;
    margin-left: 0px;
    margin-right: 0px;
}

.oemm-multichart-handler {
    display: block;
    height: 300px;
}

.oemm-multichart-item {
    position: absolute;
    height: 200px;
    visibility:hidden;
    opacity:0;
    width: 94%;
    left: 2.4%;
}

.oemm-multichart-item svg {
    overflow: visible;
}

.oemm-multichart-item.active {
    visibility:visible;
    opacity:1;
    transition:visibility 0.6s linear,opacity 0.6s linear;
}

.oemm-33-right-module {
    flex-grow: 1;
    margin-left: 10px;
    margin-right: -8px;
}

.oemm-module-title-bar {
    border-bottom: var(--subtitle-border);
    margin-left: 6px;
    margin-right: 6px;
    padding-bottom: 6px;
}

.oemm-module-title {
    margin-left: 2px;
    font-size: var(--subtitle-font-size);
    font-weight: var(--subtitle-font-weight);
    color: var(--main-font-color);
}

.oemm-module-more {
    margin-right: 2px;
    float: right;
}

.oemm-module-more a:focus{
    color: transparent;
    box-shadow: none;
    outline: none;
}

.oemm-chart-button {
    cursor: pointer;
}

.oemm-chart-button.not-ready {
    filter: opacity(30%);
    pointer-events: none;
}

.oemm-chart-button img {
    padding: 3px;
    background-color: transparent;
    top: -2px;
    border-radius: 2px;
}

.oemm-chart-button.active {
    cursor: default;

}

.oemm-chart-button.active img{
    background-color: #CCCCCC;
    filter: opacity(50%) grayscale(100%);
    transition: all 0.6s linear ;
}

.oemm-module-content {
    padding: 8px;
}

.oemm-kpi-bar {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.oemm-home {
    vertical-align: text-bottom;
}

.oemm-title {
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    letter-spacing: var(--title-letter-spacing);
    color: var(--main-font-color);
    padding: 2px 8px;
    vertical-align: text-bottom;
}

.oemm-subtitle {
    font-size: var(--subtitle-font-size);
    font-weight: var(--subtitle-font-weight);
    color: var(--aux-font-color);
    vertical-align: text-bottom;
}

.oemm-site {
    font-size: var(--subtitle-font-size);
    font-weight: var(--subtitle-font-weight);
    vertical-align: baseline;
}

.oemm-site-text {
    background-color: var(--main-font-color);
    color: var(--main-bg-color);
    border-radius: 2px;
    padding: 3px 14px;
}

.oemm-site-button {
    background-color: var(--main-font-color);
    color: var(--main-bg-color);
    border-radius: 2px;
    padding: 3px 4px 3px 14px;
}

.oemm-site-button img {
    display: inline-block;
    width: 12px;
    vertical-align: text-top;
    margin-left: 6px;
}

.oemm-datepicker {
    margin-right: 8px;
    float: right;
    cursor: pointer;
    vertical-align: text-bottom;
    color: var(--header-action-font-color);
    font-size: var(--header-action-font-size);
}

.oemm-datepicker-value {
    vertical-align: text-top;
}

.oemm-switch {
    margin-right: 16px;
    float: right;
    cursor: pointer;
    vertical-align: text-bottom;
    color: var(--header-action-font-color);
    font-size: var(--header-action-font-size);
}

.oemm-switch span {
    vertical-align: middle;
}

.oemm-text-inbound-switch,
.oemm-text-outbound-switch {
    cursor: default;
}

.oemm-kpi-bar {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.oemm-kpi-large {
    flex-grow: 1;
    position: relative;
    text-align: center;
}

.oemm-kpi-large:before {
    content: "";
    position: absolute;
    left: -1px;
    top: 15%;
    height: 70%;
    vertical-align: middle;
    border-left: 2px solid var(--main-font-color);
    box-sizing: border-box;
}

.oemm-kpi-large-top-text {
    font-size: 12px;
    vertical-align: bottom;
    color: var(--main-font-color);
}

.oemm-kpi-large-bottom-text {
    font-size: 10px;
    vertical-align: bottom;
    color: var(--main-font-color);
}

.oemm-kpi-large-top {
    padding: 4px;
}

.oemm-kpi-large-middle {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 4px;
    margin-top: 8px;
}

.oemm-kpi-large-bottom {
    padding: 4px;
}

.oemm-kpi-large-middle-left {
    color: var(--main-font-color);
    font-size: var(--kpi-big-font-size);
    font-weight: var(--kpi-big-font-weight);
    letter-spacing: var(--kpi-big-letter-spacing);
}

.oemm-kpi-large-middle-right {
    color: var(--main-font-color);
    font-size: var(--kpi-small-font-size);
    font-weight: var(--kpi-small-font-weight);
    letter-spacing: var(--kpi-small-letter-spacing);
    padding-left: 4px;
    top: -5px;
    position: relative;
}

.oemm-top-line {
    margin-bottom: -8px;
}

.oemm-top-line-title {
    color: var(--aux-font-color);
}

.oemm-top-line-content {
    margin-bottom: 16px;
    margin-top: -2px;
}

.oemm-top-line-title-text {
    vertical-align: baseline;
}

.oemm-top-line-title-text a {
    text-decoration: none;
    color: var(--aux-font-color);
}

.oemm-bar-graph {
    display: inline-block;
    width: 87%;
    height: 6px;
    border-radius: 2px;
    background-color: var(--aux-bg-color);
}

.oemm-bar-graph-value {
    height: 6px;
    border-radius: 2px;
    background-color: var(--main-font-color);
}

.oemm-bar-detail {
    float: right;
    display: inline-block;
    color: var(--main-font-color);
    font-size: var(--subtitle-font-size);
    font-weight: var(--subtitle-font-weight);
    margin-top: -8px;
}

.ct-labels foreignObject:first-child {
    display: none;
}

.ct-labels .ct-horizontal {
    transform: translateX(-32px);
}

.ct-labels .ct-vertical {
    transform: translateX(-6px) translateY(6px);
}

.oemm-minor-data {
    opacity: 0.4;
}

.oemm-table {
    width:100%;
    border-spacing: 0px;
}

.oemm-table th {
    display: none;
    font-size: var(--header-action-font-size);
    color: var(--aux-font-color);
    font-weight: var(--header-action-font-weight);
    text-align: left;
}
.oemm-table td {
    color: var(--main-font-color);
}

.oemm-table tr:nth-child(even) {
    background: var(--table-bg-color);
}

.oemm-table-text a {
    text-decoration: none;
    color: var(--aux-font-color);
}

.oemm-table small {
    font-size: xx-small;
}

.oemm-pie-box {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
}

.oemm-pie-graph {
    flex-grow: 1;
    margin-right: 10%;
}

.oemm-pie-legend {
    flex-grow: 1;
    float: left;
    margin-left: 10%;
}

.oemm-pie-graph-handler {
    width: 120px;
    height: 120px;
    float:right;
}

.oemm-pie-legend-item {
    display: flex;
    color: var(--aux-font-color);
}

.oemm-map-handler {
    vertical-align: middle;
    text-align: center;
    height: 244px;
    width: 100%;
    display: inline-block;
}

button.btn {
    color: var(--main-bg-color);
    background-color: var(--header-action-font-color);
    border: none;
    border-radius: 2px;
}

@media only screen and (max-width: 300px) {
    .oemm-bar-graph {
        width: 75%;
    }
}

@media only screen and (min-width: 501px) {
    .oemm-table th {
        display: table-cell;
        padding: .25em 1em;
    }

    .oemm-table td {
        display: table-cell;
        padding: .25em .5em;
    }
}

@media only screen and (max-width: 500px) {
    .oemm-table td {
        display: block;
        padding: .25em .5em;
    }
    .oemm-about-logo {
        width: 92px;
        margin: -16px 6px 6px 16px;
    }
    .oemm-title,
    .oemm-subtitle,
    .oemm-switch {
        float: unset;
        display: block;
        padding: 2px 8px;
    }
    .oemm-switch,
    .oemm-datepicker {
        padding: 2px 8px;
    }
    .oemm-site {
        float: right;
        margin-top: 3px;
    }
}

@media only screen and (min-width: 1101px) {
    .oemm-kpi-large {
        width: 16.666%;
    }
    .oemm-kpi-large:first-child:before {
        border: none;
    }
}

@media only screen and (min-width: 501px) and (max-width: 1100px) {
    .oemm-kpi-large {
        width: 33.333%;
        margin-bottom: 14px;
    }
    .oemm-kpi-large:nth-child(3n+1):before {
        border: none;
    }
}

@media only screen and (max-width: 500px) {
    .oemm-kpi-large {
        width: 50%;
        margin-bottom: 14px;
    }
    .oemm-kpi-large:nth-child(2n+1):before {
        border: none;
    }
    .oemm-bar-graph {
        width: 80%;
    }
}

@media only screen and (max-width: 300px) {
    .oemm-kpi-large {
        min-width: 100%;
        margin-bottom: 14px;
    }

    .oemm-kpi-large:before {
        border: none;
    }

    .oemm-kpi-large-middle {
        margin-top: 0px;
    }
    .oemm-bar-graph {
        width: 70%;
    }
}

@media only screen and (max-width: 1100px) {
    .oemm-40-module {
        margin-right: -8px;
        margin-bottom: 10px;
        width: 100%;
        height: auto;
    }
    .oemm-33-module {
        margin-right: -8px;
        margin-bottom: 18px;
        margin-top: -8px;
        width: 100%;
    }
    .oemm-33-center-module,
    .oemm-33-right-module {
        margin-left: -8px;
    }
    .oemm-60-module {
        margin-left: -8px;
        margin-top: 0px;
        width: 100%;
        height: auto;
    }
    .last-row {
        margin-top: -26px;
    }
}

@media only screen and (min-width: 1801px) {
    .oemm-box {
        width: 99.5%;
    }
}

@media only screen and (max-width: 1800px) {
    .oemm-box {
        width: 99%;
    }
}

@media only screen and (max-width: 1400px) {
    .oemm-box {
        width: 98.5%;
    }
}

@media only screen and (max-width: 1000px) {
    .oemm-box {
        width: 98%;
    }
}

@media only screen and (max-width: 600px) {
    .oemm-box {
        width: 97.5%;
    }
}

@media only screen and (max-width: 450px) {
    .oemm-box {
        width: 97%;
    }
}

@media only screen and (max-width: 375px) {
    .oemm-box {
        width: 96%;
    }
}

@media only screen and (max-width: 300px) {
    .oemm-box {
        width: 95.5%;
    }
}

.oemm-select-wrapper {
    position: relative;
    display: inline-block;
    user-select: none;
}
.oemm-select-wrapper select {
    display: none;
}
.oemm-select {
    position: relative;
    display: inline-block;
}
.oemm-select-trigger {
    position: relative;
    display: block;
    cursor: pointer;
}
.oemm-options {
    z-index: 3001;
    position: absolute;
    display: block;
    width: max-content;
    margin-top: 7px;
    border: var(--pop-box-border);
    border-radius: 4px;
    box-sizing: border-box;
    background: var(--main-bg-color);
    font-size: var(--header-action-font-size);
    font-weight: var(--subtitle-font-weight);
    letter-spacing: 0px;
    color: #5A738E;
    box-shadow: var(--main-box-shadow);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.oemm-select.opened .oemm-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.oemm-options:before {
    position: absolute;
    display: block;
    content: '';
    bottom: 100%;
    left: 10px;
    width: 7px;
    height: 7px;
    margin-bottom: -3px;
    border-top: var(--pop-box-border);
    border-left: var(--pop-box-border);
    background: var(--main-bg-color);
    transform: rotate(45deg);
}
.option-hover:before {
    background: #f9f9f9;
}
.oemm-option {
    position: relative;
    display: block;
    padding: 8px 12px;
    cursor: pointer;
    margin: 8px 0px;
}

.oemm-option-subtext {
    color: var(--aux-font-color);
    margin-top: -2px;
}

.oemm-option:hover {
    background-color: var(--pop-box-hover);
}

.oemm-option.selection {
    background-color: var(--header-action-font-color);
    color: var(--main-bg-color);
}

.oemm-http {
    border-radius: 4px;
    font-size: 10px;
    padding: 2px 5px 3px 6px;
    font-weight: 600;
    color: #FFFFFF;
}

.oemm-http-0xx {
    background-color: #000000;
}

.oemm-http-1xx {
    background-color: #00008B;
}

.oemm-http-2xx {
    background-color: #0000DD;
}

.oemm-http-3xx {
    background-color: #AA22AA;
}

.oemm-http-4xx {
    background-color: #FF7A00;
}

.oemm-http-5xx {
    background-color: #FF3300;
}
