/* CSS Document */
.disable {
  pointer-events: none;
  filter: grayscale(1);
  opacity: 0.5;
}

.ie8_message, .ie7_message {
  display: none;
}

.ie8 .ie8_message, .ie7 .ie7_message {
  display: block;
}

html {
  height: 100%;
}

body {
  font-size: 14px;
  font-family: "Rubik", Arial, sans-serif;
  color: #5d5d5d;
  background-color: #f1f1f1;
}

body.dashboard_body::-webkit-scrollbar {
  width: 0 !important;
}

body.dashboard_body {
  overflow: -moz-scrollbars-none;
}

body.dashboard_body {
  -ms-overflow-style: none;
}

legend, p, td, li, .btn {
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Arial, sans-serif;
  font-weight: 300;
  color: #2d2d2d;
}

body.body_login .login_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: -1;
}

a, td, th, p, h1, h2, h3, h4, h5, .btn {
  font-family: "Rubik", Arial, sans-serif;
}

b {
  font-weight: bold;
}

p {
  font-weight: 400;
}

/* DEFAULT TYPO */
a, a:hover {
  text-decoration: none;
  color: #a88e5b;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

h5 {
  font-size: 1em;
}

blockquote {
  border: 0;
  padding: 0;
  margin: 0;
}

a:hover {
  color: initial;
}

/* END DEFAULT TYPO */
/* HELPERS */
/* colors */
.color_trans {
  color: transparent;
}

.bg_color_trans {
  background-color: transparent;
}

.color_white {
  color: white;
}

.bg_color_white {
  background-color: white;
}

.color_hover_white:hover {
  color: white;
}

.color_red {
  color: red;
}

.bg_color_red {
  background-color: red;
}

.color_hover_red:hover {
  color: red;
}

.color_orange {
  color: #df6718;
}

.bg_color_orange {
  background-color: #df6718;
}

.color_hover_orange:hover {
  color: #df6718;
}

.color_green {
  color: green;
}

.bg_color_green {
  background-color: green;
}

.color_hover_green:hover {
  color: green;
}

.color_gray {
  color: gray;
}

.bg_color_gray {
  background-color: gray;
}

.color_hover_gray:hover {
  color: gray;
}

.color_yellow {
  color: yellow;
}

.bg_color_yellow {
  background-color: yellow;
}

.color_hover_yellow:hover {
  color: yellow;
}

.color_blue {
  color: #1a4277;
}

.bg_color_blue {
  background-color: #1a4277;
}

.color_hover_blue:hover {
  color: #163864;
}

/* end colors */
.toggle_content {
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}

.toggle_content.is_visible {
  visibility: visible;
  opacity: 1;
}

.pointer {
  cursor: pointer;
}

.body_wrapper {
  width: 100%;
}

.btn, .forms .btn {
  white-space: nowrap;
  border-radius: 8px;
  padding: 0.6em 0.8em;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  -moz-transition: 0.5s all;
  -webkit-transition: 0.5s all;
  position: relative;
  color: white;
  background: gray;
  overflow: hidden;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}

.btn:hover, .forms .btn:hover {
  background: #383838;
  color: white;
}

.btn:active, .forms .btn:active {
  color: white;
}

/*.btn:hover::after{
	content:'';
	top:0;
	right:0;
	bottom:0;
	left:0;
	background:rgba(0,0,0,0.2);
	border-radius:300px;
	-moz-border-radius:300px;
	-webkit-border-radius:300px;
	width:100%;
	height:100%;
	position:absolute;
}

.btn:active::after{
	content:'';
	top:0;
	right:0;
	bottom:0;
	left:0;
	background:rgba(0,0,0,0.5);
	border-radius:300px;
	-moz-border-radius:300px;
	-webkit-border-radius:300px;
	width:100%;
	height:100%;
	position:absolute;
}*/
.btn-red, .forms .btn-red {
  background: #de2c3b;
}

.btn-red:hover, .forms .btn-red:hover {
  background: #a9232e;
  background: #de2c3b;
}

.btn-green, .forms .btn-green {
  background: #2c9f42;
}

.btn-green:hover, .forms .btn-green:hover {
  background: #1d6b2c;
  background: #2c9f42;
}

.btn-orange, .forms .btn-orange {
  background: #F27826;
}

.btn-orange:hover, .forms .btn-orange:hover {
  background: #d56b21;
}

.btn-blue, .forms .btn-blue {
  background: #2575ed;
}

.btn-blue:hover, .forms .btn-blue:hover {
  background: #1a55ad;
  background: #2575ed;
}

table .btn, .forms table .btn {
  padding: 0.35em 0.6em;
}

.clear {
  clear: both;
}

.clear_small {
  margin-bottom: 0.8em;
}

.inline {
  display: inline !important;
}

.desktop-hide {
  display: none;
}

.more {
  overflow: hidden;
  overflow-y: auto;
  min-height: 545px;
  height: 545px;
  position: relative;
  border: 1px solid #ddd;
  border-left: none;
}

.more table.table-bordered tr:first-child td {
  border-top: 0;
}

.analysis .more {
  border: none;
}

.read_more_pre_button {
  position: absolute;
  bottom: 2px;
  right: 2px;
}

.help_bar {
  position: fixed;
  width: 100%;
  bottom: 0;
  min-height: 1.65em;
  line-height: 1.65em;
  background: grey;
  text-align: right;
  padding: 0 10px;
  color: white;
  z-index: 999999999;
}

/* END HELPERS */
/* FORMS DEFAULTS */
.forms select {
  font-size: 1em;
  padding: 7px;
  background-color: white;
}

.forms select.width-100 {
  width: 99.9% !important;
}

.forms select.input-success {
  border-color: #18a011 !important;
  -webkit-box-shadow: 0 0 0 2px rgba(24, 160, 17, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2) inset !important;
  box-shadow: 0 0 0 2px rgba(24, 160, 17, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2) inset !important;
}

.forms select.input-error {
  border-color: #da3e5a !important;
  -webkit-box-shadow: 0 0 0 2px rgba(218, 62, 90, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2) inset !important;
  box-shadow: 0 0 0 2px rgba(218, 62, 90, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2) inset !important;
}

.forms select.font_size_select {
  min-width: 54px;
}

.forms fieldset {
  padding: 0.8em;
  background-color: white;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 1px solid #ccc;
}

.forms fieldset legend {
  background-color: white !important;
}

input, textarea, select {
  vertical-align: middle;
}

.chosen-single {
  font-weight: 400;
}

.forms input[type=text], .forms input[type=password], .forms input[type=email], .forms input[type=url], .forms input[type=phone], .forms input[type=tel], .forms input[type=number], .forms input[type=datetime], .forms input[type=date], .forms input[type=month], .forms input[type=color], .forms input[type=time], .forms input[type=search], .forms input[type=range], .forms input[type=file], .forms input[type=datetime-local], .forms textarea, .forms select {
  border-radius: 3px;
  border: 1px solid #ccc;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.forms table td input[type=text], .forms table td input[type=password], .forms table td input[type=email], .forms table td input[type=url], .forms table td input[type=phone], .forms table td input[type=tel], .forms table td input[type=number], .forms table td input[type=datetime], .forms table td input[type=date], .forms table td input[type=month], .forms table td input[type=color], .forms table td input[type=time], .forms table td input[type=search], .forms table td input[type=range], .forms table td input[type=file], .forms table td input[type=datetime-local], .forms table td textarea, .forms table td select {
  margin-top: 0;
}

label {
  font-weight: 600;
  cursor: pointer;
}

.forms-desc {
  font-weight: 400;
}

input.input-error, select.input-error {
  background: rgb(255, 230, 230);
}

span.k-dropdown {
  border: 1px solid #CCC;
}

.k-autocomplete .k-input,
.k-dropdown-wrap .k-input,
.k-multiselect-wrap .k-input,
.k-numeric-wrap .k-input,
.k-picker-wrap .k-input,
.k-selectbox .k-input,
.k-textbox > input {
  line-height: 1.77em;
}

/* END FORMS */
/* Tables */
table tr td {
  background: white;
}

table th, table td {
  padding: 0.4em;
  vertical-align: middle;
  font-weight: 400;
}

table th {
  padding: 0.7em 0.4em;
}

table tr td:first-of-type {
  text-align: left;
}

table tr td:first-of-type.text-right {
  text-align: right;
}

table tr.alt td {
  background: #e2e2e2;
}

.table_no_padding {
  margin: 0;
}

.table_no_padding tr td {
  padding: 0 !important;
  border: 0 !important;
}

.table-transparent tr td {
  background: transparent;
}

.chart_settings_table td {
  white-space: nowrap;
  text-align: center;
}

table.chart_settings_table tr td.text-centered {
  text-align: center;
}

table.table-bordered th, table.table-bordered td {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-right: 0px solid #ddd;
  border-left: 0px solid #ddd;
  font-weight: 400;
}

table.table-bordered td:first-of-type {
  border-left: 1px solid #ddd;
}

table.table-bordered td:last-of-type {
  border-right: 1px solid #ddd;
}

table.table-bordered thead tr th, table.table-bordered thead tr td {
  border: 0;
  background-color: #626262;
  color: white;
  font-weight: 300;
}

table.table-bordered thead:first-child tr:first-child th:first-of-type {
  border: 1px solid #626262;
  border-bottom: 0;
}

table.table-bordered thead:first-child tr:not(:first-child) th:first-of-type {
  border-left: 1px solid #626262;
}

table.table-bordered thead:first-child tr:not(:first-child) th:last-of-type {
  border-right: 1px solid #626262;
}

table.table-hovered tbody tr:hover td {
  background-color: #e8e8e8;
}

table.analysis_table th, table.analysis_table td {
  padding: 0 0.4em;
}

table.analysis_table th:first-of-type {
  border-radius: 0 0 0 0;
  -webkit-border-radius: 0 0 0 0;
}

table.analysis_table th:last-of-type {
  border-radius: 0 0 0 0;
  -webkit-border-radius: 0 0 0 0;
}

table.small_font, table.small_font th, table.small_font td {
  font-size: 0.9em !important;
}

.k-chart-tooltip td {
  background: initial;
}

/* end tables */
/* MISC */
.open_another_graph {
  position: fixed;
  width: 200px;
  top: 40%;
  right: 20%;
  z-index: 0;
}

.key_box {
  width: 10px;
  height: 10px;
  display: inline;
  margin-left: 10px;
}

.info_flyout {
  position: absolute;
  background: white;
  border: 1px solid #a3a3a3;
  padding: 10px;
  bottom: 0;
  left: 90%;
  width: 300px;
  display: none;
}

.back-to-top:hover {
  background-color: rgba(135, 135, 135, 0.5);
}

.ui-tooltip {
  background: #e87e12;
  color: white;
  box-shadow: none;
  -webkit-box-shadow: none;
  border: 1px solid #CCC;
  border-width: 1px !important;
  font-size: 1em !important;
  wwidth: 100%;
}

/*table sorter */
.tablesorter-header {
  background-repeat: no-repeat;
  background-position: 100% 50%;
}

.tablesorter-header.tablesorter-header,
.tablesorter-header {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAJCAMAAADq3ZdEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ4IDc5LjE2NDAzNiwgMjAxOS8wOC8xMy0wMTowNjo1NyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIxLjEgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjA3QjNGMjM1N0RGNTExRUJCM0VEOTQ1NTMyRjkxMERCIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjA3QjNGMjM2N0RGNTExRUJCM0VEOTQ1NTMyRjkxMERCIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDdCM0YyMzM3REY1MTFFQkIzRUQ5NDU1MzJGOTEwREIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDdCM0YyMzQ3REY1MTFFQkIzRUQ5NDU1MzJGOTEwREIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4/b51+AAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAAtSURBVHjaYmCEAwZsTAYGBkxRBgYkYQZkQbgwkmGMmObiUIvVXBxuQGECBBgAPX0AntcZ25oAAAAASUVORK5CYII=");
}

.tablesorter-header.sorter-false {
  background-image: none;
}

.tablesorter-header.tablesorter-headerAsc {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAECAMAAABWQ4SaAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ4IDc5LjE2NDAzNiwgMjAxOS8wOC8xMy0wMTowNjo1NyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIxLjEgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkVCOTgyOTBDN0RGNDExRUJBQTBGRkFGNDc2NDM4OTVFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkVCOTgyOTBEN0RGNDExRUJBQTBGRkFGNDc2NDM4OTVFIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RUI5ODI5MEE3REY0MTFFQkFBMEZGQUY0NzY0Mzg5NUUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RUI5ODI5MEI3REY0MTFFQkFBMEZGQUY0NzY0Mzg5NUUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5G9HMMAAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAAfSURBVHjaYmCEAAYIgPEYkYUZ0UUZkQSRRJGZAAEGAAssAEVLHmATAAAAAElFTkSuQmCC");
}

.tablesorter-header.tablesorter-headerDesc {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAECAMAAABWQ4SaAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ4IDc5LjE2NDAzNiwgMjAxOS8wOC8xMy0wMTowNjo1NyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIxLjEgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkY0RDNFNUU3N0RGNDExRUJBMEFBQTRBNDVGNDVEMTk4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkY0RDNFNUU4N0RGNDExRUJBMEFBQTRBNDVGNDVEMTk4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RjREM0U1RTU3REY0MTFFQkEwQUFBNEE0NUY0NUQxOTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RjREM0U1RTY3REY0MTFFQkEwQUFBNEE0NUY0NUQxOTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4P2heEAAAABlBMVEX///////9VfPVsAAAAAnRSTlP/AOW3MEoAAAAfSURBVHjaYmCEAwZsTAYGBkxRBgYkYQZkQbgwQIABAAzkAEUxwIjxAAAAAElFTkSuQmCC");
}

/*page and inner tabs */
.page_tab_buttons {
  position: absolute;
  left: -1px;
  top: -30px;
}

.page_tab_button {
  float: left;
  font-size: 0.9em;
  background: white;
  border: 1px solid #ccc;
  padding: 0 5px;
  margin-right: 5px;
  height: 30px;
  line-height: 30px;
  z-index: 99;
}

.page_tab_button.active {
  border-bottom: none;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  margin-top: -10px;
  padding: 0 5px;
  /* border: 1px solid #df6718; */
  /* border: 1px solid #df6718; */
  border-bottom: 0;
  color: #df6718;
}

.page_tab {
  display: none;
}

.page_tab.active {
  display: block;
}

.inner_tab_button {
  cursor: pointer;
  padding: 0.5em;
  font-size: 1.2em;
}

.inner_tab_button:hover {
  background: #ffcdad;
}

.inner_tab_button.active {
  color: white;
  background: #df6718;
}

.inner_tab_button:not(.active) {
  background-color: #7d3711;
}

.inner_tab {
  display: none;
}

.inner_tab.active {
  display: block;
}

/* END MISC */
/* Login */
.login_message {
  width: 100%;
  color: white;
}

.login_box {
  background-color: white;
  min-width: 265px;
  max-width: 322px;
}

.login_box_inner {
  padding: 1.65em;
}
.login_box_inner p {
  margin-top: 0.6rem;
  text-align: center;
}
.login_box_inner p a {
  color: #1a4277;
}

/* End Login */
/* Content */
.main_content {
  padding-top: 20px;
  padding-left: 20px;
}

.main_content h1 {
  color: #173f97;
  border-bottom: 1px solid #173f97;
}

.header_sapcer {
  height: 30px;
  width: 100%;
}

.int_dash_nav {
  color: white;
  height: 30px;
  line-height: 30px;
  background: #1A4277;
  font-size: 12px;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  white-space: nowrap;
}

.int_dash_nav a {
  color: white;
}

.int_dash_nav .btn {
  height: 30px;
  line-height: 30px;
  padding-top: 0;
  padding-bottom: 0;
  background: #1A4277;
  color: white;
  border: 0;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}

/* To prevent normal button behaviour */
.int_dash_nav .btn:hover::after {
  content: none;
}

/* To prevent normal button behaviour */
.int_dash_nav .btn:active::after {
  content: none;
}

.int_dash_nav .btn:hover {
  color: white;
}

.int_dash_nav .btn.active {
  background: rgb(223, 103, 24);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(223, 103, 24)), to(rgb(249, 175, 5)));
  background: -o-linear-gradient(bottom, rgb(223, 103, 24) 0%, rgb(249, 175, 5) 100%);
  background: linear-gradient(0deg, rgb(223, 103, 24) 0%, rgb(249, 175, 5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#df6718",endColorstr="#f9af05",GradientType=1);
}

.int_dash_nav h1 {
  line-height: 30px;
  font-size: 1em;
  padding: 0 1em;
}

.export_graph, .export_table {
  cursor: pointer;
}

/* END: content */
/* Sidebar */
.sidebar {
  background-color: white;
  border-right: 2px solid black;
  padding: 10px;
  height: 100% !important;
  position: fixed;
  top: 30px;
  left: -300px;
  width: 300px;
  z-index: 99999;
  text-align: center;
  overflow-y: auto;
  -o-transition: left 0.2s ease;
  transition: left 0.2s ease;
  -moz-transition: left 0.2s ease;
  -webkit-transition: left 0.2s ease;
}

.sidebar img {
  max-height: 100px;
  max-width: 95%;
}

.sidebar span.key_box {
  display: inline-block;
}

.sidebar span.info_flyout {
  display: none;
}

/* animations */
.sidebar.sidebar_open {
  left: 0px;
}

/* Dashboard Sidebar */
.sidebar ul {
  margin: 0;
  list-style-type: none;
  padding: none;
}

.sidebar ul li {
  display: block;
  list-style-type: none;
  padding: 1em;
  border-bottom: 1px solid #d0d0d0;
  cursor: pointer;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
}

.sidebar ul li:first-of-type {
  border-top: 1px solid #d0d0d0;
}

.sidebar ul li:hover {
  background: #f5f5f5;
}

.sidebar ul:first-of-type li i {
  display: inline-block;
  margin-top: 0.4em;
}

.sidebar_over, .sidebar_under {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 298px;
  height: 100%;
  background: white;
  -o-transition: left 0.2s ease;
  transition: left 0.2s ease;
  -moz-transition: left 0.2s ease;
  -webkit-transition: left 0.2s ease;
}

.sidebar_over {
  z-index: 999;
  border-right: 2px solid black;
}

/*animations*/
.sidebar_over.sidebar_over_closed {
  left: -300px;
}

.sidebar_under {
  z-index: 99;
}

.sidebar_under_div {
  padding: 0 10px 10px 10px;
  display: none;
}

.sidebar_dashboards .btn, .sidebar_add_to_dashboard .btn {
  margin-bottom: 1em;
}

.add_dashboard_box {
  padding: 10px;
  background: #f5f5f5;
  border: 1px solid #ccc;
}

.sidebar_card_controller {
  padding: 5px 10px 10px 10px;
  border: 1px solid #eee;
  border-bottom: 0;
  font-size: 0.8em;
  line-height: 1.2;
  text-align: left;
  font-weight: bold;
}

.sidebar_card_controller:last-of-type {
  border-bottom: 1px solid #eee;
}

.sidebar_card_controller:hover {
  border: 1px solid #bad3ff;
  background: #f5f5f5;
}

.sidebar_card_controller .table-simple tr td {
  padding: 0;
  background: transparent;
}

.sidebar_card_controller .table-simple input {
  width: 50px;
  margin-left: 5px;
  padding: 0.1em;
}

/* Dash add buttons */
.sidebar_add_to_dashboard button {
  display: table-cell;
  vertical-align: middle;
  height: 75px;
}

/* Interrogate BTN's */
.sidebar .btn.int_btn {
  text-align: center;
  height: auto;
  width: 100%;
  -webkit-transition: width 0.1s; /* Safari */
  -o-transition: width 0.1s;
  transition: width 0.1s;
  background-color: gray;
  color: white;
  margin-bottom: 0.8em;
  border: 0;
}

.sidebar .btn.int_btn .fa-eye {
  display: none;
}

.sidebar .btn.int_btn.active {
  background-color: #1cc47b;
}

.sidebar .btn.int_btn.active .fa-eye-slash {
  display: none;
}

.sidebar .btn.int_btn.active .fa-eye {
  display: inline;
}

.sidebar .btn.int_btn.disabled {
  background-color: gray;
}

.sidebar .btn.int_btn.disabled .fa-eye {
  display: none;
}

.sidebar .btn.int_btn.disabled .fa-eye-slash {
  display: inline;
}

.sidebar .btn.int_btn.hoverable:hover {
  width: 105%;
}

/* End Sidebar */
/* DASHBOARD */
#dashboard_pane_boundary {
  overflow: auto;
}

.dashboard {
  position: relative;
  background: #ffffff; /*default for presentation mode if no brand */
}

.dashboard .settings_drop_button, .dashboard .export_graph, .dashboard .export_table {
  display: none !important;
}

.dashboard .main_content {
  padding: 0;
}

.pane_wrapper {
  position: relative;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}

/*animations*/
.pane_wrapper.pane_wrapper_sidebar_open {
  margin-left: 295px;
}

.pane {
  width: 49.99%;
  float: left;
  padding-right: 25px;
}

.dashboard .pane {
  width: auto;
  position: absolute;
  padding: 0;
  bbackground: white;
  min-height: 50px;
  min-width: 50px;
  bbox-sizing: content-box;
}

.dashboard .pane.hovered {
  -webkit-box-shadow: 0px 0px 0px 1px rgb(186, 211, 255);
  box-shadow: 0px 0px 0px 1px rgb(186, 211, 255);
}

.dashboard.nohover .pane.hovered,
.dashboard.nohover .control_wrapper.hovered,
.dashboard.nohover .gfx_wrapper.hovered,
.dashboard.nohover .gauge_wrapper.hovered {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.dashboard .pane.hovered .ui-resizable-handle,
.more .ui-resizable-handle,
.dashboard .pane.hovered .settings_drop_button,
.dashboard .pane.hovered .export_table,
.dashboard .pane.hovered .export_graph {
  display: block !important;
  z-index: 999;
  background: white;
  padding: 0 5px;
}

.pane.full_width {
  width: 99.99%;
}

.unique_graph_wrapper {
  position: relative;
  padding: 12.5px;
  margin-bottom: 25px;
  min-height: 300px;
  min-width: 450px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.interrogate .pane .unique_graph_wrapper {
  background: white;
}

.dashboard .pane .unique_graph_wrapper {
  min-height: 25px;
  min-width: 25px;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
  border: 0px solid #cccccc;
  width: 100%;
}

.dashboard .settings_drop_button {
  position: absolute;
  right: 56px;
  width: 28px;
}

.dashboard .settings_drop_button_table {
  right: 28px;
  width: 28px;
}

.dashboard .export_graph {
  position: absolute;
  right: 28px;
}

.dashboard .export_table {
  position: absolute;
  right: 0px;
}

.dashboard .export_table_table {
  right: 0px;
  width: 28px;
}

.graph_no_show {
  display: none;
}

.dashboard .graph_no_show {
  display: block;
}

.graph_no_show .chart_div {
  /*so that redraw effects animation works... */
  opacity: 0;
}

.dashboard .chart_div {
  /*so that redraw effects animation works... */
  opacity: 1;
}

.settings_drop_button, .expand-window {
  font-size: 0.6em;
}

.dashboard .settings_drop_button, .dashboard .expand-window {
  font-size: 1em;
}

.edit_chart_label, .edit_chart_label_close, .edit_chart_label_submit {
  color: gray;
  font-size: 0.65em;
}

.edit_chart_label_submit {
  color: #1cc47b;
}

.edit_chart_label_close {
  color: #ff7663;
}

.window_title {
  display: inline;
}

.window_title_edit {
  display: none;
}

.forms .window_title_edit input[type=text] {
  display: inline-block;
}

.graph_settings {
  font-size: 14px;
  position: fixed;
  color: initial !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.5);
}

.graph_settings * {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
supported by Chrome, Opera and Firefox */
}

.graph_settings.hovered {
  opacity: 0.2;
}

.graph_settings.hovered .settings_scroll_container {
  display: none;
}

.graph_settings_inner {
  -moz-box-shadow: 0 5px 30px rgba(50, 50, 50, 0.2);
  -webkit-box-shadow: 0 5px 30px rgba(50, 50, 50, 0.2);
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  font-size: 0.9em;
  padding: 1em;
  z-index: 999999;
  height: 100%;
  width: 390px;
  right: 0;
  position: absolute;
  top: 0;
  bottom: 0;
}

.settings_scroll_container, .gauge_scroll_container, .control_scroll_container, .gfx_scroll_container {
  width: 100%;
  height: 94%;
  overflow-y: auto;
  overflow-x: hidden;
}

.settings_scroll_container::-webkit-scrollbar {
  width: 0 !important;
}

.settings_scroll_container {
  overflow: -moz-scrollbars-none;
}

.settings_scroll_container {
  -ms-overflow-style: none;
}

.gauge_scroll_container::-webkit-scrollbar {
  width: 0 !important;
}

.gauge_scroll_container {
  overflow: -moz-scrollbars-none;
}

.gauge_scroll_container {
  -ms-overflow-style: none;
}

.control_scroll_container::-webkit-scrollbar {
  width: 0 !important;
}

.control_scroll_container {
  overflow: -moz-scrollbars-none;
}

.control_scroll_container {
  -ms-overflow-style: none;
}

.gfx_scroll_container::-webkit-scrollbar {
  width: 0 !important;
}

.gfx_scroll_container {
  overflow: -moz-scrollbars-none;
}

.gfx_scroll_container {
  -ms-overflow-style: none;
}

.graph_settings .btn.active {
  background-color: #dbdada;
}

.graph_settings .settings_tab_switch {
  padding: 0.5em;
  background: transparent;
  text-align: center;
}

.graph_settings .settings_tab_switch:hover {
  background: #df6718;
  color: white;
}

.graph_settings .settings_tab_switch.active {
  background: #df6718;
  color: white;
}

.graph_settings_tab {
  display: none;
}

.graph_settings_tab.active {
  display: block;
}

.widget_header {
  margin: 0;
  background: white;
  width: 100%;
  border: 1px solid #ccc;
  padding: 0.4em;
}

.widget_inner {
  margin: 0;
  background: white;
  border: 1px solid #ccc;
  padding: 1em;
}

.widget_header + .widget_inner {
  border-top-width: 0px;
}

.widget_inner + .widget_header {
  border-top-width: 0px;
}

.settings_switcher_div {
  margin-top: 0.7em;
  cursor: pointer;
}

.settings_toggle_button {
  font-size: 1.2em;
  cursor: pointer;
}

.settings_preview_hover {
  display: inline-block;
  line-height: 2.5;
  width: 3em;
  text-align: center;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.settings_preview_hover:hover {
  background: gray;
}

.settings_auto_update {
  display: inline-block;
  line-height: 2.5;
}

.answers_2_div, .answers_1_div, .benchmark_div, .variable_search_1_div, .variable_search_2_div {
  display: none;
}

.sp-replacer {
  padding: 6px; /*To make spectrum box same size as select */
  min-width: 54px;
}

.tc-theme-container {
  list-style-type: none;
  margin: 0 auto;
}

.tc-color {
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(255, 255, 255, 0.1);
  border-style: solid;
  border-width: 1px;
  display: inline-block;
  height: 23px;
  width: 23px;
  zoom: 1;
}

.tc-theme {
  display: inline-block;
  margin-right: 50px;
}

.tc-theme a {
  display: inline-block;
  width: auto;
}

.tc-theme .tc-link {
  border: 1px solid #fff;
  color: #4f4f4f;
  padding: 10px;
}

.tc-theme .tc-link:hover {
  background: #F8F8F8;
  text-decoration: none;
}

.tc-theme .tc-link.active {
  background: #F8F8F8;
  border: 1px solid black;
}

.tc-theme .tc-theme-name {
  display: block;
  padding: 0;
  width: auto;
}

.fa-toggle-on {
  color: green;
}

.fa-toggle-off {
  color: red;
}

.graphs_settings_graph_settings .fa-toggle-on {
  color: green;
}

.graphs_settings_graph_settings .fa-toggle-off {
  color: red;
}

.show_chart_div {
  ooverflow: hidden;
  position: relative;
}

.global_base_low_warning {
  text-align: center;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  color: white;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  font-size: 1.5em;
}

.interrogate .global_base_low_warning {
  max-height: 540px !important;
}

.dashboard .global_base_low_warning {
  top: 20px;
}

.chart_gauge_table td .mce-tinymce {
  border-width: 0px !important;
}

.control_loading_anim {
  font-size: 5em;
  color: white;
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  text-align: center;
}

.settings_loading_overlay {
  display: none;
  height: 0;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.2);
  line-height: 100%;
  text-align: center;
}

/* Jquery UI */
.dashboard .ui-resizable-n,
.dashboard .ui-resizable-s,
.more .ui-resizable-s {
  width: 30%;
  background: white;
  border-radius: 10px;
  border: 1px solid gray;
  left: 35%;
  height: 10px;
  display: none !important;
}

.more .ui-resizable-s {
  bottom: 0;
  position: absolute;
}

.resizable-helper {
  border: 1px dashed orange;
  z-index: 999999 !important;
}

.dashboard .ui-resizable-e, .dashboard .ui-resizable-w {
  height: 30%;
  background: white;
  border-radius: 10px;
  border: 1px solid gray;
  top: 35%;
  width: 10px;
  display: none !important;
}

.dashboard .pane:hover .ui-resizable-n,
.dashboard .pane:hover .ui-resizable-s,
.more .ui-resizable-s,
.dashboard .pane:hover .ui-resizable-e,
.dashboard .pane:hover .ui-resizable-w,
.dashboard .control_wrapper:hover .ui-resizable-n,
.dashboard .control_wrapper:hover .ui-resizable-s,
.dashboard .control_wrapper:hover .ui-resizable-e,
.dashboard .control_wrapper:hover .ui-resizable-w,
.dashboard .gfx_wrapper:hover .ui-resizable-n,
.dashboard .gfx_wrapper:hover .ui-resizable-s,
.dashboard .gfx_wrapper:hover .ui-resizable-e,
.dashboard .gfx_wrapper:hover .ui-resizable-w,
.dashboard .gauge_wrapper:hover .ui-resizable-n,
.dashboard .gauge_wrapper:hover .ui-resizable-s,
.dashboard .gauge_wrapper:hover .ui-resizable-e,
.dashboard .gauge_wrapper:hover .ui-resizable-w {
  display: block !important;
}

/* dash controls*/
.dashboard .control_wrapper {
  min-height: 50px;
  min-width: 100px;
  position: absolute;
  background-color: white;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; /*needed for resiazeable to work correctly!! */
}

.dashboard .control_wrapper.hovered {
  -webkit-box-shadow: 0px 0px 0px 1px rgb(186, 211, 255);
  box-shadow: 0px 0px 0px 1px rgb(186, 211, 255);
}

.control_inner {
  padding: 7px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.dashboard .control_wrapper_flyout {
  font-size: 14px;
  position: absolute;
  right: -1px;
  top: 0;
  z-index: 9999;
  background: white;
  color: initial !important;
  display: none;
  width: 4em;
  text-align: center;
}

.dashboard .control_wrapper.hovered .control_wrapper_flyout {
  display: block;
}

.dashboard.nohover .control_wrapper.hovered .control_wrapper_flyout {
  display: none;
}

.dashboard .control_slider_wrapper {
  position: relative;
  width: 90%;
  height: 20px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 auto;
}

.dashboard .control_slider_line {
  position: absolute;
  width: 98%;
  left: 1%;
  height: 1px;
  background: #ccc;
  top: 10px;
}

.dashboard .control_slider_pointer {
  position: absolute;
  height: 20px;
  width: 4%;
  background: white;
  border: 1px solid gray;
  left: 0;
}

.control_image_select_image.active {
  border: 1px solid #ccc;
}

/* dash gfx*/
.dashboard .gfx_wrapper {
  min-height: 25px;
  min-width: 25px;
  position: absolute;
  background-color: white;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; /*needed for resiazeable to work correctly!! */
}

.dashboard .gfx_wrapper.hovered {
  -webkit-box-shadow: 0px 0px 0px 1px rgb(186, 211, 255);
  box-shadow: 0px 0px 0px 1px rgb(186, 211, 255);
}

.gfx_inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gfx_inner * {
  margin-bottom: 0 !important;
}

.dashboard .gfx_wrapper_flyout {
  font-size: 14px;
  position: absolute;
  right: -1px;
  top: 0;
  background: white;
  display: none;
  width: 4em;
  text-align: center;
}

.dashboard .gfx_wrapper.hovered .gfx_wrapper_flyout {
  display: block;
}

.dashboard.nohover .gfx_wrapper.hovered .gfx_wrapper_flyout {
  display: none;
}

/* Dash Gauges */
.dashboard .gauge_wrapper {
  min-height: 100px;
  min-width: 100px;
  position: absolute;
  background-color: white;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; /*needed for resiazeable to work correctly!! */
}

.dashboard .gauge_wrapper.hovered {
  -webkit-box-shadow: 0px 0px 0px 1px rgb(186, 211, 255);
  box-shadow: 0px 0px 0px 1px rgb(186, 211, 255);
}

.dashboard .gauge_wrapper_flyout {
  font-size: 14px;
  position: absolute;
  right: -1px;
  top: 0;
  background: white;
  display: none;
  width: 4em;
  text-align: center;
}

.dashboard .gauge_wrapper.hovered .gauge_wrapper_flyout {
  display: block;
}

.dashboard.nohover .gauge_wrapper.hovered .gauge_wrapper_flyout {
  display: none;
}

/* EN Graph Settings */
/* LICENSE ADMIN */
.forms fieldset.fieldset_tabbed {
  position: relative;
  z-index: 99;
  border-width: 1px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  background: white;
}

.account_page {
  padding: 0 1em;
}

.account_page .logout_button {
  margin-left: 1em;
}

.account_page .header_logo {
  height: 35px;
  margin-left: 1em;
}

.purchase_total, .upgrade_total {
  color: green;
}

.purchase_total span, .upgrade_total span {
  font-size: 3em;
}

.project_dropdown_wrapper {
  position: relative;
}

.project_dropdown {
  display: none;
  background: white;
  max-height: 300px;
  width: 100%;
  min-width: 300px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 0.5em;
  top: 100%;
  right: 0;
  position: absolute;
  z-index: 99999;
}

.account_folder_button {
  font-size: 1.5em;
  padding: 0.5em;
  cursor: pointer;
  border: 1px solid #ddd;
}

.variable_selector {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}

tr.project_variable_active td,
th.project_variable_active,
td.project_variable_active,
label.project_variable_active {
  font-weight: bold !important;
  background: #df6718;
  color: white;
}

tr.project_variable_active:hover td,
th.project_variable_active:hover,
td.project_variable_active:hover {
  color: #50443d;
}

/* END LICENSE ADMIN */
/* Edit Project */
.edit_project_timeout_modal {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 9999999;
}

/* Derived */
.new_answer_div, .new_answer_div_scalar_net {
  border-bottom: 1px solid grey;
  margin-bottom: 0.5em;
}

/*Hide remove item button when looking at currrent derived var structure */
.derived_duplicate_structure .btn-red {
  display: none;
}

/* Brands */
.brand_circle {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 1px solid black;
}

/* analysis */
#analysis_form .unit-25:nth-child(1) {
  bbackground: #fbfbfb;
}

#analysis_form .unit-25:nth-child(2) {
  bbackground: #efefef;
}

#analysis_form .unit-25:nth-child(3) {
  bbackground: #e3e3e3;
}

#analysis_form .unit-25:nth-child(4) {
  bbackground: #d6d6d6;
}

.analysis_label, .banner_label, .filter_label {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
  padding: 0.3em;
  padding-left: 0.9em;
  font-weight: normal;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

.analysis_label:first-child, .banner_label:first-child, .filter_label:first-child {
  border-top: 1px solid #e0e0e0;
}

.analysis_expand, .banner_expand, .filter_expand {
  display: none;
}

@media only screen and (max-width: 767px) {
  .desktop-hide {
    display: initial;
  }
  .mobile_hide {
    display: none;
  }
  .right {
    float: right;
  }
  /*sizes*/
  .int_dash_nav {
    min-width: 400px;
  }
  .graph_settings_tab .width-30,
  .graph_settings_tab .width-10 {
    width: 100%;
  }
  .mobile-clear-both {
    clear: both;
  }
}
@media only screen and (max-width: 1200px) {
  .unique_graph_wrapper {
    width: 97.6%;
  }
}

/*# sourceMappingURL=style.css.map */
