/*=---------------------------------------
 SMM font
---------------------------------------=*/

@font-face {
    font-family: "SMM";
    src: url('../fonts/smm.ttf')
}

/*=---------------------------------------
 SMM font
---------------------------------------=*/

@font-face {
    font-family: "POP";
    src: url('../fonts/joy.ttf')
}


/*=---------------------------------------
 GLOBAL STYLES
---------------------------------------=*/

* {
    margin: 0;
    padding: 0;
}

body, html, div#root {
    background: #000000;
    font-family: "POP";
    font-size: 12pt;
    height: 100%;
}


/*=---------------------------------------
 Application & sections
---------------------------------------=*/

div#application {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-content: stretch;
}

div.section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0px 10px;
}

div.section .chart {
    border: solid 1px #476EA5;
    padding: 10px;
    margin: 10px;
    min-width: 600px;
    flex-basis: auto;
    flex-grow: 1;
}

div.centeredMessage {
    display: block;
    position: absolute;
    height: 50px;
    width: 400px;
    text-align: center;
    font-size: 48pt;
    color: #a0a0a0;
    text-shadow: 5px 5px 10px rgba(0,0,0,0.6);
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -200px;
}

/*=---------------------------------------
 Common panel styles
---------------------------------------=*/

div.panel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 200px;
    margin-left: -25%;
    margin-top: -100px;
    background-color: #101010;
    border: solid 1px #000000;
    border-radius: 2px;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.6);
    text-align: center;
}

div.panel span {
    display: inline-block;
    line-height: 200px;
    font-size: 48pt;
}

/*=---------------------------------------
 Navigation bar
---------------------------------------=*/

div.navigationBarWrapper {
    background: #404040;
    height: 50px;
    width: 100%;
    z-index: 1000;
    /* border-bottom: solid 2px #476EA5; */
    box-shadow: 0px 5px 10px rgba(0,0,0,0.6);
}

div.navigationBar {
    display: flex;
    height: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

div.stretcher {
    flex-grow: 1;
}

/******* Site logo *******************/

div.siteLogo {
    padding-right: 10px;
    display: flex;
    height: 100%;
    flex-direction: row;
    align-items: center;
}

div.siteLogo .siteName {
    font-size: 18pt;
    color: #808080;
}

div.siteLogo .siteVersion {
    font-size: 9pt;
    font-weight: bold;
    color: #808080;
}

div.siteLogo img {
    height: 45px;
    margin-left: 10px;
    object-fit: contain;
}

/******* navigation bar buttons ******/

div.sectionButton {
    height: 100%;
    padding: 0px 20px;
    /* background: #172333; */
    color: #a0a0a0;
    font-size: 11pt;
    /* box-sizing: border-box; */
    /* border-bottom: solid 2px #7EABE2; */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    /* box-shadow: 3px 3px 3px rgba(0,0,0,0.66); */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* background: #ff0; */
}

.sectionIcon {
    margin-right: 5px;
}

div.sectionButton:hover {
    background: #303030;
    color: #c8c8c8;
    cursor: pointer;
    text-shadow: 2px 2px 4px rgba(0,0,0,1);
    /* border-bottom: solid 3px #BBD2EE; */
    /* background: #ff0; */
}

div.sectionButton.selected {
    color: #fff;
    /* border-bottom: solid 5px #fff; */
    /* font-weight: bold; */
    text-shadow: 2px 2px 4px rgba(0,0,0,1);
    background: #202020;
}

div.separator {
    height: 100%;
    /* margin-left: 8px; */
    /* margin-right: 5px; */
    width: 2px;
    background: #505050;
}

/*=---------------------------------------
 End of File
---------------------------------------=*/