/*
+----------------------------------------------------------------------
|
|  Copyright 2016 by Datatek, Inc.  All rights reserved.
|
+----------------------------------------------------------------------
*/

/** Generic Styles **/

body {
	margin: 0px;
	font-family: 'Roboto', sans-serif;, sans-serif;
	color: #333;
	background-color: #f7f7f7;
}

.wait, .wait * {
	cursor: wait !important;   
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	color: #333333;
}

h1 {
	font-size: 36px;
	margin:0px;
}

h2 { 
	font-size: 30px;
	margin:0px;
}

h3 {
	font-size:24px;
}

h4 {
	font-size:20px;
}

h4 strong th {
	color: #003333;
}

h5 {
	font-size: 16px;
	margin: 10px 0px;
	color: #003333;
}

h6 {
	font-size: 16px;
	text-transform: uppercase;
}

a, a p, a p i {
	cursor: pointer;
	border-bottom:0px;
	text-decoration:none;
	color: #3060a8;
}

a:hover, a p:hover, .table_link:hover, .icon {
	color: #cc3400;
}

a p {
	padding-bottom:1px;
}

p, li {
	font-size: 15px;
	line-height: 24px;
}

.float_left {
    float: left;
    text-align: center;
}

.float_right {
    float: none;
    text-align: center;
}

.tooltip {
    position: absolute;
    z-index: 12000;
    visibility: hidden;
	padding: 8px 10px;
    background-color: #666666;
    border-radius: 15px;
    color: white;
    font-size: 14;
    max-width: 500px;
}

.tooltip p {
	color: white;
	font: 12px sans-serif;
	margin: 0px;
}

.submenu {
	position: absolute;
    z-index: 10;
    visibility: hidden;
    padding: 0px 8px;
    background-color: #FFFFFF;
    max-width: 500px;
    border: 1px solid #adadad;
}

.submenu h5 {
    border-bottom: 1px solid #adadad;
    padding-bottom: 2px;
    padding-right: 20px;
}

.submenu p {
    font-size: 14px;
    margin: 1px 0px;
}

.submenu .box_close a {
    font-size: 19px;
    padding: 8px 0px;
}
	
.clear_float {
	clear: both;
}

/* Input styling */
select, .select2, input[type=text], input[type=password] {
	padding: 10px 15px;
    border: 1px solid #adadad;
	font-family: 'Roboto', sans-serif;
    font-size: 15px;
}

.select2-container li span {
    line-height: 20px;
}

.select2-results__group {
	margin-left: 3px;
	font-weight: normal;
}

.select2-container--default .select2-selection--single {
	border: 0px;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
	color: #000;
	font-weight: bold;
}

.select2-treeview .select2-treeview-triangle{
    border-style: solid;
    width: 0px;
    height: 0px;
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
    position: relative;
}
.select2-treeview .select2-treeview-down{
    border-width: 7px 5px 0 5px;
    border-color: #888 transparent transparent transparent;
}

.select2-treeview .select2-treeview-right{
    border-color: transparent transparent transparent #888;
    border-width: 5px 0px 5px 7px;
    margin-right: 8px;
}

.select2-treeview-item{
    margin-left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 45px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], select2-results__group:hover {
	background-color: #44B2CE;
}

.select2-results__options--nested .select2-results__option {
	padding-left: 2em ;
}

.select2-results__option {
	padding: 3px;
}

input[type=button], button {
    border: 1px solid #adadad;
    padding: 10px 15px;
    margin-left: -5px;
	margin-right: 10px;
	font-weight: bold;
	font-family: 'Roboto Slab', sans-serif;
	-webkit-transition-property: box-shadow;
    transition-property: box-shadow;
}

input[type=button]:hover {
	-webkit-box-shadow: 0px 1px 10px #B1B1B1;
    box-shadow: 0px 1px 10px #B1B1B1;
	cursor: pointer;
}

.onoffswitch {
    position: relative; width: 140px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 1px solid #adadad; border-radius: 20px;
}
.onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    transition: margin 0.2s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 30px; padding: 0; line-height: 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
	color: #3060a8;
    box-sizing: border-box;
}
.onoffswitch-inner:before {
    content: "Labels Off";
    padding-left: 10px;
    background-color: #3060A8; color: #FFFFFF;
}
.onoffswitch-inner:after {
    content: "Labels On";
    padding-right: 10px;
    background-color: #FFFFFF; color: #666666;
    text-align: right;
}
.onoffswitch-switch {
    display: block; width: 18px; margin: 6px;
    background: #FFFFFF;
    position: absolute; top: 0; bottom: 0;
//    right: 93px;
    border: 1px solid #adadad; border-radius: 20px;
    transition: all 0.2s ease-in 0s; 
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; 
}


/** Page Layout **/

.container {
	width:100%;
    min-height: calc(100vh - 85px);
	display: flex;
    flex-direction: column;
}

#content { /* To make footer sticky, add this div around all the content */
	flex: 1;
	background-color: white;
}

#header {
	height: 85px;
	width: 100%;
	background: rgba(255,255,255,1);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(245,245,245,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(245,245,245,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(245,245,245,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(245,245,245,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(245,245,245,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(245,245,245,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0 );
	-webkit-box-shadow: 0px 0px 26px -6px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 26px -6px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 26px -6px rgba(0,0,0,0.75);
		
/*    position: fixed;
    top: 0px; */
	
    z-index: 50;
}

#header_center {
	width:980px;
	margin-left: auto;
	margin-right: auto;
}

#header a {
	float: left;
	border: 0px;
}

#header #logo {
    margin-top: 8px;
	margin-right: 10px;
}

#header nav a {
	color: #333333;
	font-size: 17px;
	position: relative;
	margin-top: 33px;
    padding: 0px 30px 8px 30px;
}

#header nav a.current {
	border-bottom: 2px solid #cc3400;
}

#header nav a:nth-child(1) {
	border-left: 0px;
}

#header nav a:hover {
	color: #cc3400;
}

#header nav a:active {
	top: 1px;
}

#container_header {
	background: url("../../bin/images/header_nodes.gif") #213f78;
	background-repeat: no-repeat;
    background-position: center;
	border-bottom: 7px solid #cc3400;
	color: #FFF;
}

.container_header_large {
	min-height: 270px;
}

.container_header_small {
	min-height: 100px;
}

.container_header_small #container_header_content h1 {
    position: relative;
    top: 20px;
	text-align:center;
	font-size: 40px;
}

#settings_label {
    text-align: center;
    letter-spacing: 3px;
}

#container_header_content {
	max-width:950px;
	margin-left: auto;
	margin-right: auto;
    padding-left: 10px;
}

#container_header h1 {
	color: white;
	font-size: 46px;
	font-weight: normal;
	font-family: 'Roboto Slab', serif;
    margin-bottom: 30px;
}

#container_header h5 {
	text-transform: uppercase;
	font-size: 12px;
	color: #96b3ea;
	padding-top: 60px;
	font-weight: bold;
	letter-spacing: 8px;
	margin: 0px;
}

.container_header_large h1 {
	margin-top: 39px;
}

.button {
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
    padding: 10px 15px;
	display: inline-block;
	border: 1px solid #adadad;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	margin: 0px;
	background-color: #FFF;
	white-space: nowrap;
}

.button:hover * {
	color: #cc3400;
}

.button_selected, .button_selected:hover {
	color: #000000;
}

.button:active {
	position: relative;
	top: 1px;
}

.disabled_button, .disabled_button:hover, .disabled_button:hover * {
	color: #adadad;
}

.settings_button {
	position: relative;
	width: 0px;
	height: 0px;
	float: right;
}

.settings_button .button {
	min-width: 205px;
	position: relative;
    bottom: 10px;
}

#header nav a .button:active {
    bottom: 9px;
	top: auto;
}

.section {
	background-color: white;
	border-top: 2px solid #e4e4e4;
}

.section:nth-of-type(even) {
	background-color: #f7f7f7;
}

.section:nth-of-type(even) #footer_scroll, .section:nth-of-type(even) #footer_copyright {
	background-color: #FFFFFF;
}

.section_content {
	max-width:970px;
	margin-left: auto;
	margin-right: auto;
	padding:50px 10px;
}

.section_content_large {
	max-width:90%;
}

.section_content h3 {
	margin: 0px;
	font-size: 24px;
}

#description p, #description a {
	font-size: 18px;
	font-family: 'Roboto Slab', serif;
}

#description .section_content {	
	padding-top: 20px;
}

#footer {
	text-align: center;
	border-bottom: 7px solid #cc3400;
	margin-top: -50px;
	clear: both;
}

#footer_scroll {
	background-color: #f7f7f7;
	border: 2px solid #e4e4e4;
	border-bottom: 0px;
	width: 100px;
    margin-right: auto;
    margin-left: auto;
    top: 2px;
    position: relative;
	padding-top: 6px;
}

#footer_scroll p {
    margin: 0px;
}

#footer_scroll {
    border-top-right-radius: 8em;
    border-top-left-radius: 8em;
}

#footer_copyright {
	background-color: #f7f7f7;
	border-top: 2px solid #e4e4e4;
	padding:6px;
}

#footer_copyright p {
	font-size: 14px;
}

#footer_scroll:hover i, #footer_scroll:hover p {
	color: #cc3400;
}


/** Loading Specific **/

.loading-spinner {
	z-index:100;
	position:fixed;
	top:0;
	width:100%;
	height:100%;
	background: url('../../bin/images/loading2.gif') #FFF no-repeat center;
}

.error_message {	
    text-align: center;
    margin-top: 30%;
}

.loading {
	position:relative;
	width:100%;
	height:100%;
	text-align:center;
	background: radial-gradient(transparent 15%, #AAA);
	background-size: cover;
}

.loading p {
	position:absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 32px;
	color: #000066;
	font-family: 'Roboto Slab', serif;
}

.loading img {
	margin-bottom:5px;
}

.loading_section {
	width: 100%;
	height: 75%;
	background: url('../../bin/images/loading2.gif') #FFF no-repeat center;
}

/** Graph Modal Box Styles **/

#graph_modal {
	display:none;
	z-index:1;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	height: 98%;
	width: 98%;
}

.modal_content{
  background-color:white;
  /* background-color:#f4f4f4; */
  /* margin: 20% auto; */
  width:100%;
  height:100%;
  box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2),0 7px 20px 0 rgba(0,0,0,0.17);
  animation-name:modalopen;
  animation-duration:1s;
}

.modal_header h2, .modal_footer h3{
  margin:0;
}

.modal_header{
  background:coral;
  padding:15px;
  color:#fff;
}

.modal_body{
  padding:10px 20px;
}

.modal_footer{
  background:coral;
  padding:10px;
  color:#fff;
  text-align: center;
}

.closeBtn:hover,.closeBtn:focus{
  color:#000;
  text-decoration: none;
  cursor:pointer;
}

@keyframes modalopen{
  from{ opacity: 0}
  to { opacity: 1}
}


/** Modal Box Styles **/

#lean_overlay {
    position: fixed;
    z-index:100;
    top: 0px;
    left: 0px;
    height:100%;
    width:100%;
    background: #FFF;
    display: none;
}

.modal_box {
	overflow: hidden;
	background: #FFF;
	box-shadow: 0px 0px 4px rgba(0,0,0,0.7);
    -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.7);
    -moz-box-shadow: 0 0px 4px rgba(0,0,0,0.7);
	border: #3060a8 3px solid;
}

#graph_modal_list {
	display:none;
	z-index:1;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	height: 75%;
	width: 500px;
	overflow-y: scroll;
}

#modal_box {
    width: 500px;
    padding: 10px;
    display: none;
    background: #FFF;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.7);
    -webkit-box-shadow: 0 0 4px rgba(0,0,0,0.7);
    -moz-box-shadow: 0 0px 4px rgba(0,0,0,0.7);
    max-height: 75%;
    overflow-y: scroll;
    border: #3060a8 3px solid;
}

#modal_box select {
	max-width: 100% ;
}

.modal_box_fixed {
	height: 75%;
}

#modal_box table {
	margin-bottom: 20px;
	text-align: center;
	width: 100%;
}

#modal_box table th {
	width: 50%;
}

#modal_box table td {
	width: 50%;
}

#modal_box .auto_table td, #modal_box .auto_table th {
	width: auto ;
	padding-right: 10px;
	text-align: left;
}

#modal_box .nested_table {
	margin-bottom: 0px;
	text-align: left;
	width: auto;
}

#modal_box #seg_search, #search {
    width: 280px;
}

#modal_box .table_row_item, #modal_box .table_header_item {
	width: 50%;
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;
}

#modal_box .table_row, #modal_box .table_head {
	width: 100%
}

#modal_box .table_row .details {
	clear: both;
}

#modal_box_close a, .box_close a  {
	color: #333333;
    float: right;
    font-size: 24px;
    padding: 7px 5px;
}

#modal_box_close a:hover, .box_close a:hover {
	color: #cc3400;
}

.table_link {
	cursor: pointer;
	color: #3060a8;
}

.table {
  display:table;
  font-size: 1rem;
  margin: 1rem 0.5rem;
  line-height: 1.5;
  width: 98%
}

#table_scroll {
    overflow-x: scroll;
    width: 100%;
}

#table_div {
	width: 100%;
	overflow-x: auto;
}

#table_div .table_classification {
	text-align: center;
}

#table_div .table_classification select {
	padding: 0px;
}

#table_pagitation {
	margin-top: 20px;
    margin-bottom: 10px;
	display: -webkit-flex;
	display: flex;
    flex-direction: row;
   -webkit-align-items: center;
   align-items: center;
   -webkit-justify-content: center;
   justify-content: center;
}

#table_pagitation a {
	margin: 0px 10px;
}

#table_footer {
	margin-top: 20px;
    margin-bottom: 10px;
	display: flex;
    align-items: center;
}

#table_footer a {
	margin: 4px 10px;
}

.table_row, .table_head {
  display:table-row;
  clear:both;
}

.table_head {
	font-weight: bold;
}

thead {
	background-color:rgba(255, 255, 255, 1);
}

.table_row:nth-of-type(odd), .tr_data:nth-of-type(odd) {
  background-color: #f6f6f6;
}

.table_header_item, th{
  border-bottom: 1px solid;
  margin: 0px;
  cursor: pointer;
  color: #333;
}

.table_row:nth-of-type(even) {
  background-color: #ffffff;
}
.table_row_item, .table_header_item  {
	display:table-column;
	float: left;
}

.table p {
	margin: 0px;
}

.table .details p {
	margin-left: 15px;
	color: #333333;
}

.table_sorted:before {
    display: inline-block;
    font-family: FontAwesome;
    font-weight: normal;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
	padding-right: 5px;
}

.table_sorted_desc:before {
	content: "\f175";
}

.table_sorted_asc:before {
	content: "\f176";
}

table {
	width: 100%;
	border-collapse: collapse;
}

th {
    padding: 4px;
}

td {
    padding: 2px 4px;
}

/** Summary First Page Specific **/

nav {
   display: -webkit-flex;
   display: flex;
   -webkit-flex-flow: row wrap;
   flex-flow: row wrap;
   -webkit-align-content: stretch;
   align-content: stretch;
}

nav a {
	border-bottom: 0px;
	display: -webkit-flex;
	display: flex;
}

#custom_reports .element {
    width: 300px;
	margin: 11px;
}

#custom_reports .image {
	width: 100px;
	float: left;
    margin-right: 8px;
    border: 1px solid #e4e4e4;
}

#custom_reports .content {
	width: 190px;
	float: right;
}

#custom_reports .content p {
	margin: 0px 0px 10px 0px;
}

nav .nav_item {
	width: 230px;
	background-color: #FFFFFF;
	border: 1px solid #e4e4e4;
	padding: 10px;
	margin: 20px;
	-webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
}

nav .nav_item:active {
	position: relative;
	top: 1px;
}

nav .nav_item:hover {
	-webkit-box-shadow: 0px 1px 10px #B1B1B1;
    box-shadow: 0px 1px 10px #B1B1B1;
}

nav .nav_item:hover h5{
	color: #cc3400;
}

nav .nav_item p {
	color: black;
}

nav .nav_item img {
	width: 220px;
    height: 150px;
	display: block;
	margin: 0 auto;
}

nav .nav_item h5 {
	width: 100%;
	margin-bottom: 0px;
	color: #3060a8;
}

.summary {
	padding: 10px 20px;
    width: calc(100% - 40px);
}

.flexbox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flexbox h4 {
	margin: 10px 0px;
}

.flexbox_spaced {
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: space-between;
	flex-wrap: wrap;
	margin-top: -20px;
}

.flexbox_spaced > div {
	margin-top: 20px;
}

.chart_sidebar {
	width:33%;
	position:relative;
}

.text_container {
	background-color: #f7f7f7;
	border: 1px solid #e4e4e4;
    padding: 10px;
    margin: 15px 20px 15px 0px;
}

.flexbox_autowrap{
   display: -webkit-flex;
   display: flex;
   -webkit-flex-flow: row wrap;
   flex-flow: row wrap;
   -webkit-align-items: center;
   align-items: center;
   -webkit-align-content: stretch;
   align-content: stretch;
}

.summary_element {
	width: 250px;
    margin: 10px;
    padding: 15px;
	text-align: center;
	display: -webkit-flex;
	display: flex;
    flex-direction: row;
   -webkit-align-items: center;
   align-items: center;
   -webkit-justify-content: center;
   justify-content: center;
   background-color: #f7f7f7;
   border: 1px solid #e4e4e4;
	-webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
}

.summary_element:hover {
	-webkit-box-shadow: 0px 1px 10px #B1B1B1;
    box-shadow: 0px 1px 10px #B1B1B1;
}

.summary_element * {
	-webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: color;
    transition-property: color;
}

.summary_element:hover * {
	color:#cc3400;
}

.summary_element p {
	margin: 0px;
}

.section:nth-of-type(even) .summary_element {
	background-color: white;
}

.summary_number {
	font-size:20px;
	color: #3060a8;
}

.summary_number_disp {
	font-size:16px;
	margin-left: 4px;
	color: #000000;
}

#complexity_pie svg {
    float: right;
}

#complexity_list {
    width: 100%;
	display:inline-block;
}

#complexity_list svg {
	float:left;
}

#complexity_list #complexity_table {
	width: 30%;
}

#complexity_list .table_header_item {
	border-bottom: 0px;
	text-transform: capitalize;
	padding-bottom: 6px;
	cursor: auto;
}

#complexity_list .table_row_item {
    height: 400px;
    overflow-y: scroll;
}

#complexity_list .table_row_item, #complexity_list .table_header_item {
	width: 33%;
	text-align:center;
}

#complexity_list .table_row, #complexity_list .table_head {
	width: 100%
}

#pie_table {
	display: inline-block;
	width: 20%;
	margin-right: 30px;
}

#pie_table #complexity_table {
	width: 100%;
}

#pie_table .table_row_group {	
    height: 325px;
    overflow-y: overlay;
}

#pie_table .table_row, #pie_table .table_head {
	width: 100%;
	display: inline-block;
}

#pie_table .table_row_item, #pie_table .table_header_item  {
	height: auto;
	overflow: auto;
	width: 100%;
}

/** Details Specific **/

#details_pie .pie path {
	cursor: default;
}

#details_pie_title {
	font-weight: bold;
	text-align, center;
}

#filter_list {
	padding-bottom: 20px;
}

.filter_close {
	color: #3060a8;
}

.filter_close:hover {
	color: #cc3400;
	cursor: pointer;
}

/** Other Pages Specific **/

.controls {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: distribute;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    justify-content: flex-start;
}

.controls div {
	margin: 0px 10px;
}

.controls .columns_list {
    width: 50%;
    overflow: hidden;
	flex: 1;
}

.controls .columns_list {
	list-style: none;
	margin: 10px;
    padding: 0px;
	min-height: 200px;
}

.controls .columns_list li {
	margin: 5px 0px;
    background: rgb(245, 245, 245);
    padding: 10px;
    border: 2px solid rgb(168, 168, 168);
	cursor: move;
}

.left_controls {
	left: 90%;
}

.circle {
	cursor: pointer;
}

.search_box {
	margin-bottom:10px;
	white-space: nowrap;
}

.link {
  stroke: #999;
  stroke-opacity: .2;
  stroke-width: 2;
}

#main_menu p {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.menu_disabled {
    pointer-events: none;
    cursor: default;
    color: #666;
}

.highlighted_link {
    stroke: #980404;
    stroke-opacity: 1;
}

.graph_button, .graph_list_container, .links_key {
	position: relative;
}

.links_section #sharing_controls {
    padding: 10px 0px 20px 20px;
}

.graph_button .button {
    white-space: nowrap;
    margin: 15px 15px 5px 15px;
}

.graph_button .button:active {
	top: inherit;
}

.graph_list {
    overflow-y: auto;
    padding: 0px 20px;
}

.graph_list h4 {
    margin: 0px 0px 20px 0px;
    word-wrap: break-word;
}

.graph_list ul {
	padding: 0px;
}

.graph_list li {
	list-style-type: none;
	cursor: pointer; 
	cursor: hand; 
}

.graph_list li:hover {
	color: #cc3400;
}
	
.graph_key {
    font-family: 'Roboto Slab', serif;
    font-weight: bold;
    color: #333333;
	font-size: 18px;
	margin: 10px 0px;
	color: #003333;
}

.conversion_image {
	float: right;
	padding-bottom: 20px;
}

/** Chart Pages Specific **/

.chart {
	font: 10px sans-serif;
	margin-top: 12px;
	float: left;
	overflow: visible ;
}

.axis {
	fill: black;
}

.dashboard {
	clear: both;
    display: inline-block;
}

#scatter {
    display: inline-block;
}

/* Assets Specific */

input[type=button].centered_button  {
	display:block;
	margin-left: auto;
	margin-right:auto;
	margin-top:15px;
}

.assets_div div {
	padding: 1px 15px;
}

.assets_div .highlighted {
	background: rgba(249, 238, 81, 0.50);
	border-radius: 25px;
    margin: 5px 0px;
}

/* Remaps Specific */

.remaps_checkbox {
	text-align: center ;
}

.grayed {
	color: #bbbbbb ;
}

/* Select Account Version Specific */

.a-row {
	border-collapse:  collapse;
	box-sizing:  border-box;
	cursor: pointer;
	display: block;
	height: 45px;
	background-color: #ffffff;
	border-radius:  10px;
	margin: 10px;
	border: 2px solid #e4e4e4;
	text-align:  center;
}

.a-row:hover {
	background-color: #e4e4e4;
}

.version_name {
	font-size: 18px;
	font-weight: 1000;
	line-height: 10px;
}

/** Presentation Page Specific **/

body .reveal .progress {
	background-color: #cc3400;
	height: 5px;
}

body .reveal p, body .reveal li {
	text-align: left;
	font-size: 20px;
    line-height: 30px;
}

.reveal h2 {
    font-size: 40px;
}

body .reveal .darkSlide h2 , body .reveal .darkSlide p {
	color:white;
}

.slideTwoColumn {
    display: flex;
	column-gap: 20px;
	row-gap: 20px;
	padding:20px;
}

.slideColumn {
    flex: 1;
}

body .reveal img{
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, .4);
}

.reveal.overview {
	background-color:#d7d7d7;
}

.reveal .slideColumn  .button {
	float:right;
}

.reveal pre {
  display: block;
  position: relative;
  width: 90%;
  margin: var(--r-block-margin) auto;
  text-align: left;
  line-height: 1.2em;
  word-wrap: break-word;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
  margin: 30px;
}

.reveal code {
  font-family: var(--r-code-font);
  text-transform: none;
  tab-size: 2;
}

.reveal pre code {
  display: block;
  padding: 5px;
  overflow: auto;
  max-height: 400px;
  word-wrap: normal;
}

.reveal .code-wrapper {
  white-space: normal;
}

.reveal .code-wrapper code {
  white-space: pre;
}


