@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;700&display=swap');

/*  RESETS  */

article, header, footer, div, section, span, label,
audio, video, canvas, form, main, em, b, p, i, a,
h1, h2, h3, h4, h5, h6, input, meter, ul, li, dt,
aside, address, html, body, dd, dl, figcaption, q,
figure, fieldset, legend, img, nav, select, option,
ol, small, strong, sub, sup, textarea, time, button {
    margin: 0;
    padding: 0;
    font-kerning: none;
    font-family: 'Lexend', sans-serif;
}

/*  END: RESETS  */

/*  UTILITIES  */

.bold { font-weight: 700; }

.no_display { display: none; }

.display_block { display: block; }

.float_left { float: left; }

.float_right { float: right; }

.clear_left { clear: left; }

.clear_right { clear: right; }

.full_width { width: 100%; }

.half_width { width: 50%; }

.full_height { height: 100% !important; }

.half_height { height: 50%; }

.no_margin { margin-top: unset !important; }

.unset_border { border: unset !important; }

.margin_top_20 { margin-top: 20px; }

.margin_left_20 { margin-left: 20px; }

.margin_right_20 { margin-right: 20px; }

.relative_position { position: relative; }

.light_grey_bg { background-color: #F0F0F0; }

.border_top_white { border-top: 1px solid #fff; }

.border_top_black { border-top: 1px solid #000; }

.half_container {
    width: 50%;
    height: 100%;
}

.third_container {
    width: 33.33%;
    height: 100%;
}

.two_thirds_container {
    width: 66.66%;
    height: 100%;
}

.quarter_container {
    width: 25%;
    height: 100%;
}

.three_quarter_container {
    width: 75%;
    height: 100%;
}

.forty_percent_container {
    width: 40%;
    height: 100%;
}

.sixty_percent_container {
    width: 60%;
    height: 100%;
}

.centered_980 {
    width: auto;
    height: auto;
    margin: 0 auto;
    margin-top: 20px;
    max-width: 980px;
    padding-bottom: 20px;
    border-radius: 9px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
    border: 1px solid #a0a0a0;
}
.centered_980_chubb {
    width: auto;
    height: 600px;
    margin: 0 auto;
    margin-top: 20px;
    max-width: 980px;
    padding-bottom: 20px;
    border-radius: 9px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
    border: 1px solid #a0a0a0;
    overflow-y: scroll;
}
.no_select {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

/*  END: UTILITIES  */

/*  GLOBAL ELEMENTS */

body {
    overflow: hidden;
}

.sub_nav { background: #f2cd60; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; }

.loading_icon {
    width: 50px;
    height: 50px;
    margin-top: 25px;
    margin-left: 145px;
    background: url(../images/icons/loading.svg) no-repeat;
    background-position: center;
    background-size: contain;
    -o-background-size: contain;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    -webkit-animation: spin 3s linear infinite;
    -moz-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.main_nav {
    width: auto;
    height: 400px;
    color: #fff;
    min-width: 300px;
    max-width: calc(((100% - 80px) * .25) + 40px);
    right: calc((((100% - 80px) * .25) * -1) + -200px);
    top: 60px;
    z-index: 2;
    position: fixed;
    background-color: #000;
    transition-duration: .35s;
    transition-property: right;
    transition-timing-function: ease-out;
}

.main_nav[data-menu-status="open"] { right: 0; }

.hamburger_nav a,
.hamburger_nav a:link,
.hamburger_nav a:visited {
    width: 100%;
    height: 50px;
    color: #fff;
    display: block;
    line-height: 50px;
    text-indent: 75px;
    text-decoration: none;
    transition-duration: .35s;
    transition-property: text-indent, background, background-size, background-position;
    transition-timing-function: ease-out;
}

.hamburger_nav a:hover { text-indent: 150%; }

.hamburger_nav a[data-menu-link="dashboard"] {
    background: url(../images/icons/dashboard-white.svg) no-repeat;
    background-position: 25px center;
    background-size: 22px 22px;
}

.hamburger_nav a[data-menu-link="dashboard"]:hover {
    background: url(../images/icons/dashboard-white.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

.hamburger_nav a[data-menu-link="health"] {
    background: url(../images/icons/health.svg) no-repeat;
    background-position: 25px center;
    background-size: 22px 22px;
}

.hamburger_nav a[data-menu-link="health"]:hover {
    background: url(../images/icons/health.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

.hamburger_nav a[data-menu-link="config"] {
    background: url(../images/icons/config-white.svg) no-repeat;
    background-position: 25px center;
    background-size: 22px 22px;
}

.hamburger_nav a[data-menu-link="config"]:hover {
    background: url(../images/icons/config-white.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

.hamburger_nav a[data-menu-link="tracing"] {
    background: url(../images/icons/tracing-white.svg) no-repeat;
    background-position: 25px center;
    background-size: 22px 22px;
}

.hamburger_nav a[data-menu-link="tracing"]:hover {
    background: url(../images/icons/tracing-white.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

.hamburger_nav a[data-menu-link="metrics"] {
    background: url(../images/icons/metrics-white.svg) no-repeat;
    background-position: 25px center;
    background-size: 22px 22px;
}

.hamburger_nav a[data-menu-link="metrics"]:hover {
    background: url(../images/icons/metrics-white.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

.hamburger_nav a[data-menu-link="star"] {
    background: url(../images/icons/star-white.svg) no-repeat;
    background-position: 25px center;
    background-size: 22px 22px;
}

.hamburger_nav a[data-menu-link="star"]:hover {
    background: url(../images/icons/star-white.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

.control_container {
    width: calc(20% - 1px);
    height: 100%;
    min-height: 100%;
    float: left;
    clear: left;
    background-color: #F0F0F0;
    border-right: 1px #000 solid;
}

.control_btn {
    width: calc(100% - 40px);
    height: 50px;
    color: #000;
    outline: none;
    cursor: pointer;
    font-size: .75vw;
    margin-top: 25px;
    font-weight: 400;
    margin-left: 20px;
    text-align: right;
    padding-right: 20px;
    border: 1px #000 solid;
    text-transform: uppercase;
}

.feedback_container {
    width: 80%;
    height: 100%;
    float: left;
}

.panel_heading_container {
    width: 100%;
    height: 50px;
    margin-top: 25px;
}

.heading_wrapper {
    width: 50%;
    height: 100%;
    float: left;
    clear: left;
}

.updated_time_wrapper {
    width: 50%;
    height: 100%;
    float: left;
}

.time_wrapper {
    width: auto;
    height: 100%;
    float: right;
    margin-right: 20px;
}

.updated_time_controls {
    width: 48px;
    height: 24px;
    float: left;
    clear: left;
    margin-top: 13px;
    margin-right: 20px;
}

.updated_time_timestamp {
    width: 24px;
    height: 24px;
    float: left;
    clear: left;
    cursor: pointer;
    border: 1px solid #000;
    border-top-left-radius: 9px;
    border-bottom-left-radius: 9px;
    background: #fff url(../images/icons/calendar.svg) no-repeat;
    background-position: center;
    background-size: 12px;
    transition-duration: .35s;
    transition-property: background;
    transition-timing-function: ease-out;
}

.updated_time_timestamp[data-status="active"] {
    background: #28E056 url(../images/icons/calendar-white.svg) no-repeat;
    background-position: center;
    background-size: 12px;
}

.updated_time_countdown {
    width: 24px;
    height: 24px;
    float: left;
    cursor: pointer;
    border: 1px solid #000;
    border-top-right-radius: 9px;
    border-bottom-right-radius: 9px;
    background: url(../images/icons/hourglass.svg) no-repeat;
    background-position: center;
    background-size: 12px;
    transition-duration: .35s;
    transition-property: background;
    transition-timing-function: ease-out;
}

.updated_time_countdown[data-status="active"] {
    background: #28E056 url(../images/icons/hourglass-white.svg) no-repeat;
    background-position: center;
    background-size: 12px;
}

.panel_heading_container h3 {
    font-size: 1.35vw;
    font-weight: 700;
    line-height: 50px;
    text-indent: 20px;
    font-variant: small-caps;
}

.panel_heading_container label {
    width: calc(100% - 52px);
    min-width: 260px;
    font-size: 12px;
    font-weight: 700;
    line-height: 50px;
    text-align: right;
}

.panel_heading_container label span,
.panel_heading_container label time {
    font-weight: 400;
    font-kerning: none;
}

.panel_icon {
    width: 50px;
    height: 50px;
    float: left;
    clear: left;
    margin-left: 20px;
}

.panel_icon[data-context="system"] {
    background: url(../images/icons/cpu.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

.panel_icon[data-context="memory"] {
    background: url(../images/icons/memory.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

.panel_icon[data-context="server"] {
    background: url(../images/icons/server.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

.panel_icon[data-context="heap"] {
    background: url(../images/icons/heap.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

.panel_icon[data-context="os"] {
    background: url(../images/icons/cpu.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

.panel_icon[data-context="network"] {
    background: url(../images/icons/network.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

.panel_icon[data-context="nodejs"] {
    background: url(../images/logo/nodejs.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

.panel_container {
    width: calc(100% - 40px);
    height: calc(100% - 107px);
    margin-left: 20px;
}

.panel_pager {
    width: 100%;
    height: 32px;
    background-color: #F0F0F0;
    border-top: 1px solid #000;
}

.panel_trigger {
    width: 24px;
    height: 24px;
    outline: none;
    cursor: pointer;
    margin-top: 4px;
    margin-left: 20px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-color: #F0F0F0;
    border: 1px solid #000;
    transition-duration: .35s;
    transition-property: background-color;
    transition-timing-function: ease-out;
}

.panel_trigger:hover,
.panel_trigger[data-status="active"] {
    background-color: #28E056;
}

.view_panel {
    width: 100%;
    height: 100%;
}

/*  END: GLOBAL ELEMENTS  */

/*  HEADER  */

header {
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    position: fixed;
}

header a.logo {
    width: 350px;
    height: 50px;
    margin-top: 5px;
    margin-left: 20px;
    word-wrap: normal;
    display: inline-block;
    text-decoration: none;
    background: url(../images/logo/ech-icon.svg) no-repeat;
    background-position: 0 center;
    background-size: 50px 50px;
    -o-background-size: 50px 50px;
    -moz-background-size: 50px 50px;
    -webkit-background-size: 50px 50px;
}

header h1 {
    color: #000;
    font-size: 24px;
    line-height: 50px;
    margin-left: 60px;
    font-variant: small-caps;
}

.nav_btn_container {
    width: 20%;
    height: 100%;
    float: right;
    margin-right: 20px;
}

.nav_menu_btn {
    width: 32px;
    height: 32px;
    float: right;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 14px;
    background: url(../images/icons/menu.svg) no-repeat;
    background-position: center;
    background-size: contain;
}

/*  END: HEADER  */

/*  MAIN CONTENT  */

main {
    width: 100%;
    height: calc(100% - 95px);
    position: fixed;
    top: 60px;
}

.page_content {
    width: 100%;
    height: 100%;
}

.content_header {
    width: 100%;
    height: 35px;
    background-color: #000;
}

.content_header h2 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 35px;
    padding-left: 20px;
    display: inline-block;
    text-transform: uppercase;
}

.content_container {
    width: 100%;
    height: calc(100% - 35px);
}

/*  END: MAIN CONTENT  */

/*  FOOTER  */

footer {
    width: 100%;
    height: 35px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #000;
}

footer small {
    width: 100%;
    color: #fff;
    font-size: 11px;
    line-height: 35px;
    text-align: center;
    display: inline-block;
}

/*  END: FOOTER  */

/*  VIEW LOADER  */

.view_loader {
    width: 100%;
    height: calc(100% - 60px);
    position: fixed;
    top: 60px;
    left: 0;
    opacity: 1;
    z-index: 10;
    background: #000;
    transition-duration: .35s;
    transition-property: opacity;
    transition-timing-function: ease-out;
}

.view_loader[data-status="hidden"] { opacity: 0; }

.view_loader_icon {
    width: 320px;
    height: 320px;
    margin: 0 auto;
    margin-top: 100px;
    background: url(../images/icons/loading-white.svg) no-repeat;
    background-position: center;
    background-size: contain;
    -o-background-size: contain;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    -webkit-animation: spin 3s linear infinite;
    -moz-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.lbl_loading {
    width: 100%;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-top: 50px;
    text-align: center;
    display: inline-block;
    letter-spacing: .05em;
    animation: flash 1s infinite;
    -moz-animation: flash 1s infinite;
    -webkit-animation: flash 1s infinite;
    animation-direction: alternate-reverse;
    -moz-animation-direction: alternate-reverse;
    -webkit-animation-direction: alternate-reverse;
}

/*  END: VIEW LOADER  */

/*  PIE CHART  */

.pie_chart_widget {
    width: 340px;
    height: 200px;
    margin-top: 20px;
}

.pie_chart {
    width: 198px;
    height: 200px;
    margin-left: 20px;
    border-radius: 50%;
    border: 1px solid #000;
    transition-duration: .25s;
    transition-property: background-image, background;
    transition-timing-function: ease-out;
}

.inner_circle {
    width: 132px;
    height: 132px;
    margin-top: 34px;
    margin-left: 34px;
    border-radius: 50%;
    background-color: #fff;
}

.pie_chart_widget .large_num {
    width: 100%;
    height: 132px;
    color: #000;
    font-size: 28px;
    font-weight: 700;
    margin-top: unset;
    line-height: 132px;
}

.pie_chart_widget label {
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
    display: inline-block;
}

/*  END: PIE CHART  */

/*  CAROUSEL  */

.carousel {
    width: calc(100% - 40px);
    height: 100%;
    overflow: hidden;
    margin-left: 20px;
    position: relative;
}

.carousel_content {
    height: 100%;
    max-height: 100%;
    position: absolute;
    display: inline-block;
}

.pager_arrow {
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    z-index: 3;
    cursor: pointer;
    position: absolute;
    text-decoration: none;
    top: calc((100% - 50px) / 2);
}

.pager_left {
    left: 0;
    background: url(../images/icons/arrow-left.svg) no-repeat;
    background-position: left;
    background-size: contain;
}

.pager_right {
    right: 0;
    background: url(../images/icons/arrow-right.svg) no-repeat;
    background-position: right;
    background-size: contain;
}

.carousel_shader {
    width: 250px;
    height: calc(100% - 2px);
    z-index: 2;
    position: absolute;
}

.shader_left {
    left: 0;
    background-image: linear-gradient(to right, #f0f0f0 , transparent);
}

.shader_right {
    right: 0;
    background-image: linear-gradient(to right, transparent , #f0f0f0);
}

.carousel_tile {
    width: auto;
    height: calc(100% - 40px);
    min-width: 150px;
    max-width: 500px;
    float: left;
    margin-top: 20px;
    margin-right: 50px;
    overflow: hidden;
    border: 1px solid #000;
}

.carousel_tile:first-child { clear: left; }

.carousel_tile_header {
    width: calc(100% - 40px);
    height: 50px;
    margin-left: 20px;
    border-bottom: 1px solid #000;
}

.carousel_tile_sub_header {
    width: calc(100% - 40px);
    height: 30px;
    margin-left: 20px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.carousel_tile_header h5,
.carousel_tile_header h6 {
    font-size: 14px;
    font-weight: 700;
    line-height: 50px;
}

.carousel_tile_sub_header h6 {
    line-height: 30px;
    text-transform: uppercase;
}

.carousel_data_row {
    width: calc(100% - 40px);
    height: 30px;
    margin-left: 20px;
    display: inline-block;
}

.carousel_data_row label {
    font-size: 12px;
    line-height: 30px;
}

/*  END: CAROUSEL  */

/*  BROWSER SCROLLBAR  */

::-webkit-scrollbar {
    width: 10px;
    position: fixed;
    top: 0;
    right: 0;
}

::-webkit-scrollbar-track {
    background: #F0F0F0;
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    background-color: #000;
}

::-webkit-scrollbar-corner {
    background: none;
    background-color: transparent;
}

/*  END: BROWSER SCROLLBAR  */

/*  ANIMATION  */

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }

@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }

@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } }

@-moz-keyframes flash {
    from { opacity: 1; }
    to { opacity: 0; }
}

@-webkit-keyframes flash {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes flash {
    from { opacity: 1; }
    to { opacity: 0; }
}

/*  END: ANIMATION  */

@media (max-width: 1025px) {

    .control_btn {
        font-size: 0;
    }

}

@media (max-width: 980px) {

    .panel_heading_container h3 {
        font-size: 18px;
        line-height: unset;
        text-align: center;
        text-decoration: underline;
    }

    .heading_wrapper {
        width: 100%;
        height: 50%;
        float: left;
    }

    .updated_time_wrapper {
        width: 100%;
        height: 50%;
        float: left;
    }

    .time_wrapper {
        width: calc(100% - 40px);
        margin-left: 20px;
    }

    .updated_time_controls {
        margin-top: unset;
    }

    .panel_heading_container label {
        width: unset;
        min-width: unset;
        line-height: unset;
        text-align: center;
    }

    .panel_icon { display: none; }

}