html {
    height: 100%;
}

.nasdaq-view-body {
    height: 100%;
    background-color: #f4f4f5;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 9pt;
    overflow: hidden;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
}

.nasdaq-view-body-dark {
    background-color: #3b4148;
}

.nasdaq-view-body-grey {
    background-color: #e9e9e9;
}

.nasdaq-view-splitter-left {
    position: absolute;
    cursor: ew-resize;
    border-right: 1px solid #d3d3d3;
}

.nasdaq-view-splitter-left-dark {
    border-right: 1px solid #2d2d2d;
}

.nasdaq-view-splitter-left-grey {
    border-right: 1px solid #ffffff;
}

.nasdaq-view-splitter-left:hover {
    background: #d3d3d3;
    border-right: 1px;
}

.nasdaq-view-splitter-left-dark:hover {
    background: #2d2d2d;
}

.nasdaq-view-splitter-left-grey:hover {
    background: #c0c0c0;
}

.nasdaq-view-splitter-right {
    position: absolute;
    cursor: ew-resize;
    border-left: 1px solid #d3d3d3;
}

.nasdaq-view-splitter-right-dark {
    border-left: 1px solid #2d2d2d;
}

.nasdaq-view-splitter-right-grey {
    border-left: 1px solid #ffffff;
}

.nasdaq-view-splitter-right:hover {
    background: #d3d3d3;
    border-right: 1px;
}

.nasdaq-view-splitter-right-dark:hover {
    background: #2d2d2d;
}

.nasdaq-view-splitter-right-grey:hover {
    background: #c0c0c0;
}

.nasdaq-view-splitter-top {
    position: absolute;
    cursor: ns-resize;
    border-bottom: 1px solid #d3d3d3;
}

.nasdaq-view-splitter-top-dark {
    border-bottom: 1px solid #2d2d2d;
}

.nasdaq-view-splitter-top-grey {
    border-bottom: 1px solid #ffffff;
}

.nasdaq-view-splitter-top:hover {
    background: #d3d3d3;
    border-right: 1px;
}

.nasdaq-view-splitter-top-dark:hover {
    background: #2d2d2d;
}

.nasdaq-view-splitter-top-grey:hover {
    background: #c0c0c0;
}

.nasdaq-view-splitter-bottom {
    position: absolute;
    cursor: ns-resize;
    border-top: 1px solid #d3d3d3;
}

.nasdaq-view-splitter-bottom-dark {
    border-top: 1px solid #2d2d2d;
}

.nasdaq-view-splitter-bottom-grey {
    border-top: 1px solid #ffffff;
}

.nasdaq-view-splitter-bottom:hover {
    background: #d3d3d3;
    border-right: 1px;
}

.nasdaq-view-splitter-bottom-dark:hover {
    background: #2d2d2d;
}

.nasdaq-view-splitter-bottom-grey:hover {
    background: #c0c0c0;
}

.nasdaq-view-app-header {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    background: #1D1E25;
}

.nasdaq-view-app-title {
    line-height: 40px;
    color: #ffffff;
    flex-grow: 1;
    white-space: nowrap;
    margin-left: 3px;
}

.nasdaq-view-frame-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.nasdaq-view-frame {
    display: flex;
    flex: 1;
    background-color: #ffffff;
}

.nasdaq-view-frame-dark {
    background-color: #2e3339;
}

.nasdaq-view-frame-grey {
    background-color: #e9e9e9;
}

.nasdaq-view-gray-border {
    border: 2px solid #d3d3d3;
}

.nasdaq-view-gray-border-dark {
    border: 2px solid #2d2d2d;
}

.nasdaq-view-gray-border-grey {
    border: 2px solid #2d2d2d;
}

.nasdaq-view-content-frame {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
}

.nasdaq-view-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.nasdaq-view-header-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    min-height: 28px;
}

.nasdaq-view-header-grid-control {
    display: flex;
    flex-direction: row;
    min-height: 28px;
}

.nasdaq-view-header-left {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    overflow: hidden;
}

.nasdaq-view-header-right {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap-reverse;
}

.nasdaq-view-header-ruler {
    background-color: #d5d6d8;
    min-height: 1px;
    margin: 0 0 -1px 0;
    border: none;
    z-index: 1;
}

.nasdaq-view-header-ruler-dark {
    background-color: #d5d6d8;
}

.nasdaq-view-header-ruler-grey {
    background-color: #ffffff;
}

.nasdaq-view-grid-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
}

.nasdaq-view-display-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    overflow-x: auto;
}

.nasdaq-view-tabs {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.nasdaq-tab-active {
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    color: #000000;
    background-color: #ffffff;
    border-color: #003860;
    border-radius: 3px 3px 0 0;
    border-width: 1px 1px 0 1px;
    margin: 0 -0.5px -2px -0.5px;
    padding: 1px 6px 3px 6px;
    z-index: 1;
    outline: none;
}

.nasdaq-tab-active-dark {
    color: #ffffff;
    background-color: #2e3339;
    border-color: #e36f1e;
}

.nasdaq-tab-active-grey {
    color: #000000;
    background-color: #ffffff;
    border-color: #003860;
}

.nasdaq-tab-inactive {
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    color: #000000;
    background-color: #eeeeee;
    border-color: #003860;
    border-radius: 3px 3px 0 0;
    border-width: 1px 1px 0 1px;
    margin: 0 -0.5px 0 -0.5px;
    padding: 1px 6px 1px 6px;
    z-index: 1;
    outline: none;
}

.nasdaq-tab-inactive-dark {
    color: #ffffff;
    background-color: #000000;
    border-color: #e36f1e;
}

.nasdaq-tab-inactive-grey {
    color: #000000;
    background-color: #eeeeee;
    border-color: #003860;
}

.nasdaq-tab-active-wizard {
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    color: #444444;
    background-color: #ffffff;
    border-width: 4px 0 0 0;
    border-color: #444444;
    margin: 0 1px 0 1px;
    padding: 1px 6px 3px 6px;
    z-index: 1;
    outline: none;
}

.nasdaq-tab-active-wizard-dark {
    color: #bbbbbb;
    background-color: #2E3339;
    border: 0 solid #bbbbbb;
    border-top-width: 4px;
}

.nasdaq-tab-active-wizard-grey {
    color: #444444;
    background-color: #ffffff;
    border: 0 solid #444444;
    border-top-width: 4px;
}

.nasdaq-tab-inactive-wizard {
    display: flex;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    color: #bbbbbb;
    background-color: #ffffff;
    border-width: 4px 0 0 0;
    border-color: #bbbbbb;
    margin: 0 1px 0 1px;
    padding: 1px 6px 3px 6px;
    z-index: 1;
    outline: none;
}

.nasdaq-tab-inactive-wizard-dark {
    color: #666666;
    background-color: #2E3339;
    border: 0 solid #666666;
    border-top-width: 4px;
}

.nasdaq-tab-inactive-wizard-grey {
    color: #bbbbbb;
    background-color: #ffffff;
    border: 0 solid #bbbbbb;
    border-top-width: 4px;
}

.nasdaq-view-sub-view {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 1px #888888;
    background-color: #ffffff;
    max-width: 50%;
}

.nasdaq-view-sub-view-dark {
    border: 1px #787878;
    background-color: #2e3339;
}

.nasdaq-view-sub-view-grey {
    border: 1px #888888;
    background-color: #ffffff;
}

.nasdaq-view-title {
    color: #1D1E25;
    display: flex;
    align-items: center;
    margin: 5px;
    font-size: 14pt;
}

.nasdaq-view-title-dark {
    color: #ffffff;
}

.nasdaq-view-title-grey {
    color: #000000;
}

.nasdaq-view-popup {
    left: 5px;
    top: 5px;
    right: 5px;
    bottom: 5px;
    overflow: hidden;
    position: absolute;
    z-index: 2;
    background-color: #ffffff;
}

.nasdaq-view-popup-dark {
    background: #2e3339;
}

.nasdaq-view-popup-grey {
    background: #e9e9e9;
}

.nasdaq-view-popup-resize {
    border-color: #ffa500;
}

.nasdaq-view-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.nasdaq-view-progress-div {
    position: relative;
    height: 0;
    width: 0;
    left: 50%;
    top: 50%;
}

.nasdaq-view-progress-circle {
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    -webkit-animation: nasdaq-view-progress-rotate 2s linear infinite;
    animation: nasdaq-view-progress-rotate 2s linear infinite;
}

@-webkit-keyframes nasdaq-view-progress-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes nasdaq-view-progress-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.tab-content {
    display: flex;
    box-shadow: none;
    border-bottom: 1px solid #d5d6d8;
    padding: 20px 10px 10px;
    flex-grow: 1;
}

.nav-tabs {
    border-bottom: 2px solid #d5d6d8;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-tabs:before,
.nav-tabs:after {
    content: " ";
    display: table;
}

.nav-tabs:after {
    clear: both;
}

.nav-tabs-tab {
    float: left;
    margin: 0 10px -2px 0;
    font-family: "SourceSansPro", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-tabs-link {
    display: block;
    padding: 8px 15px;
    line-height: 1.25em;
    height: 100%;
    cursor: pointer;
    outline: none;
}

.nav-tabs-link:hover {
    border-bottom: 2px solid #4cd0eb;
}

.inactive {
    color: #6B6d75;
    border-bottom: 2px solid #d5d6d8;
}

.active {
    color: #0094b3;
    border-bottom: 2px solid #0094b3;
}

