
@import url('ams-htmlelements.css');
@import url('ams-helperclasses.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    height: 100%;
}

body {    
    margin: 0;
    padding: 0;
    display: flex;
    /*min-height: 100vh;*/
    height: 100vh;
    min-width: 1200px;
    flex-direction: column;
    background-color: #ffffff;
}

div#header {
    display:table;     
    background-repeat: no-repeat;
    background-position: left center;
    text-align: right;
    border-bottom: solid 15px;
    height: 75px;
    width: 100%;
    background-size: 170px;
    color: rgba(255, 255, 255, 1);
    border-bottom: solid 8px;
}

div#footer {
    padding: 10px 10px 10px 10px;
    background-color: rgba(53, 53, 53, 1);
    color: rgb(255, 255, 255);
}

div#contentOuter {
    display: flex;
    flex: 1;
    overflow-y: auto;
    background-color: #ececec;
}

/** this will be removed soon **/
div#sidebar {
    width: 234px;
    padding: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
}
/** this will be removed soon **/

div#mainContent {
    overflow: hidden;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 20px;
    flex: 1;
    background-color: #F2F2F2;
}

div#mainContent div#mainContentInner {
    background-color:#ffffff;
    padding: 15px
}

.animatedLoaderCircle {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #333333;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 0.5s linear infinite;
    margin-left: auto;
    margin-right: auto;
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

div.customChartToolTip {
    background-color:#000000;
    color: #ffffff;
}

div.customChartToolTip table th {
    font-size: 1em;
    padding: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
}

div.customChartToolTip table td {
    font-size: 0.9em;
    padding: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
}

div.customChartToolTip table td:first {
    width: 50px;
}
div.customChartToolTip {
    background-color:#000000;
    color: #ffffff;
}

div.customChartToolTip table th {
    font-size: 1em;
    padding: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
}

div.customChartToolTip table td {
    font-size: 0.9em;
    padding: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
}

div.customChartToolTip table td:first {
    width: 50px;
}



    



