/*****COLORS*****/
/*@import url("//fonts.googleapis.com/css?family=Orbitron:100,400,800&subset=latin");*/
.CSSVars4LookupMain {
  color: #73A2CF;
  font-family: 'Roboto Condensed';
}
.CSSVars4LookupHighlight {
  color: #ffffcc;
}
/*****
IE8 RGB A workaround
http://stackoverflow.com/questions/3800261/ie-8-absolute-positioned-element-outside-its-parent-clipping-problem
<div class="ie_rgba_fix"></div>
@ .navbar-inner
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
@ .navbar-inverse .navbar-inner
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
*****/
.ie_rgba_fix {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff222222, endColorstr=#ff111111, GradientType=0)";
}
/*
disable clear button that IE > 9 displays in textbox
http://stackoverflow.com/a/13481578
*/
input[type=text]::-ms-clear {
  display: none;
}
/*****
 * JQUERY TABLESORTER
 * https://github.com/Mottie/tablesorter
 ****/
.table thead tr th.tablesorter-header {
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
}
th.tablesorter-header.sortAsc {
  background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);
}
th.tablesorter-header.sortDesc {
  background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);
}
th.tablesorter-header.sortNone {
  background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);
}
th.tablesorter-header.sorter-false {
  background-image: none;
}
/*****
 * JQUERY SORTABLE
 * http://johnny.github.io/jquery-sortable/
 ****/
body.dragging,
body.dragging * {
  cursor: move !important;
}
.dragged {
  position: absolute;
  opacity: 0.5;
  filter: alpha(opacity=50);
  z-index: 2000;
}
.panel-group .placeholder {
  position: relative;
  /** More li styles **/
}
.panel-group .placeholder:before {
  position: absolute;
  /** Define arrowhead **/
  content: "";
  width: 0;
  height: 0;
  margin-top: -5px;
  left: -5px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: red;
  border-right: none;
}
tr.placeholder {
  display: block;
  background: red;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
}
tr.placeholder:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left-color: red;
  margin-top: -5px;
  left: -5px;
  border-right: none;
}
.bs-callout {
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #eee;
  border-left-width: 5px;
  border-radius: 3px;
}
.bs-callout-danger {
  border-left-color: #d9534f;
}
.bs-callout-danger h3 {
  color: red;
}
#favorites-wrapper .placeholder {
  width: 4px;
  min-width: inherit;
}
#favorites-wrapper .placeholder:before {
  position: absolute;
  right: -3px;
  top: 5px;
  /** Define arrowhead **/
  content: "";
  width: 0;
  height: 0;
  margin-top: -5px;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: red;
  border-bottom: none;
  /*
	**VERTICAL**
	border-left-color:red;
	border-right: none;
	**HORIZONTAL**
	border-top-color:red;
	border-bottom: none;
	*/
}
body {
  font-family: "Roboto Condensed", sans-serif;
}
#favorites-wrapper h4 {
  color: #999999;
}
/*position:relative;*/
.degrees-90 {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.degrees-30 {
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  -o-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.ts_overlay {
  position: absolute;
  color: orangered;
  top: 100%;
  left: 0px;
  font-weight: 700;
  font-size: 1.2em;
  text-shadow: 2px 2px #000000;
  /*	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);*/
}
.symbol-item.dragged {
  position: absolute;
}
/*****
custom css for dropdown-submenu
since BS 3 drop support of submenus
http://stackoverflow.com/questions/18023493/bootstrap-3-dropdown-sub-menu-missing
*****/
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px 6px;
  border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px;
}
.dropdown-submenu:hover > a:after {
  border-left-color: #ffffff;
}
.dropdown-submenu.pull-left {
  float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}
/*****
 * ContextJS
 * http://contextjs.com/
 ****/
.dropdown-context .nav-header {
  cursor: default;
}
.dropdown-context:before,
.dropdown-context-up:before {
  position: absolute;
  top: -7px;
  left: 9px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}
.dropdown-context:after,
.dropdown-context-up:after {
  position: absolute;
  top: -6px;
  left: 10px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-left: 6px solid transparent;
  content: '';
}
.dropdown-context-up:before,
.dropdown-context-up:after {
  top: auto;
  bottom: -7px;
  z-index: 9999;
}
.dropdown-context-up:before {
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-bottom: none;
  border-left: 7px solid transparent;
}
.dropdown-context-up:after {
  border-right: 6px solid transparent;
  border-top: 6px solid #ffffff;
  border-left: 6px solid transparent;
  border-bottom: none;
}
.dropdown-context-sub:before,
.dropdown-context-sub:after {
  display: none;
}
.dropdown-context .dropdown-submenu:hover .dropdown-menu {
  display: none;
}
.dropdown-context .dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.compressed-context a {
  padding-left: 14px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 13px;
}
.compressed-context .divider {
  margin: 5px 1px;
}
.compressed-context .nav-header {
  padding: 1px 13px;
}
/******
 * twitter/typeahead.js
 * https://github.com/twitter/typeahead.js
 *
 * CSS support in bootstrap
 * https://github.com/jharding/typeahead.js-bootstrap.css
 *****/
.tt-dropdown-menu {
  margin-top: 2px;
  padding: 5px 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.tt-dropdown-menu {
  min-width: 700px;
}
#menu-quick-search {
  min-width: inherit;
}
.typeahead-search-btn {
  /* narrower to save area */
  padding-right: 6px;
  padding-left: 6px;
}
/*
#menu-quick-search input.tt-hint,
#menu-quick-search input.typeahead{
	width:170px;
}
*/
.tt-suggestion {
  /*display: block;*/
  padding: 3px 20px;
  /*z-index: 1040;*/
}
.tt-suggestion > * {
  vertical-align: middle;
}
.tt-suggestion.tt-cursor {
  color: #fff;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}
.tt-suggestion.tt-cursor a {
  color: #fff;
}
.tt-suggestion p {
  margin: 0;
}
.tt-suggestion label {
  font-weight: normal;
}
.tt-hint {
  color: #999;
}
/*
 * integrate twitter-typeahead in datatable filters 
 */
#filter-symbol-quick-search {
  padding-right: 0;
  padding-left: 0;
  position: relative;
  display: table;
  border-collapse: separate;
}
#filter-symbol-quick-search .twitter-typeahead {
  width: 100%;
}
/******
 * bootstrap datepicker
 * https://github.com/ianserlin/bootstrap-datepicker
 *****/
input.datepicker {
  width: 90px;
  padding: 1px;
}
/*************************
*configure/override BS 3 css rules
*************************/
/* reset bootstrap class in order to be configured by skin css */
.navbar-inverse {
  background-color: transparent;
  border-color: transparent;
}
.navbar-brand {
  padding-top: 5px;
  padding-bottom: 0px;
}
.panel-group {
  margin-top: 5px;
  margin-bottom: 20px;
}
#symbol-news-tab-content .popover {
  max-width: inherit;
  left: 0 !important;
}
#symbol-news-tab-content .popover-title {
  /*text-align:right;*/
  line-height: 15px;
  padding: 8px;
}
/*
.thumbnail .table{
	table-layout: fixed;	https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout
}
*/
.thumbnail {
  padding: 0px;
  margin: 1px;
}
.padLR0 {
  padding-right: 0px;
  padding-left: 0px;
}
/*
 Bootstrap box-sizing causing tooltip issues
 https://github.com/gwatts/jquery.sparkline/issues/89
 FIX: */
.jqstooltip {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  /* FF < 29 */
}
.tooltip > .tooltip-inner {
  min-width: 150px;
  max-width: 350px;
  overflow-x: hidden;
}
.thumbnail .caption {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 300;
  font-size: 1.1em;
  color: inherit;
  text-align: right;
  line-height: 1.2;
  padding: 6px;
}
.thumbnail .caption h5 {
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
  font-weight: 700;
  margin-bottom: 2px;
  margin-top: 0px;
  border-bottom: 1px solid #DDDDDD;
}
.table-bordered > thead > tr > th.th-sparklines-wrapper,
.table-bordered > tbody > tr > td.td-sparklines-wrapper {
  border-left: 0 none;
}
/*border-right:0 none;*/
.td-sparklines-wrapper,
td .sparklines-wrapper {
  width: 60px;
}
.thumbnail .sparklines-wrapper {
  height: 19px;
}
.thumbprice {
  text-align: center;
  font-weight: 700;
}
.carousel-control {
  width: 40px;
}
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  left: auto;
}
a:focus,
.btn:focus,
.btn-default:focus {
  outline: 0;
}
div.table-responsive td {
  vertical-align: middle;
  white-space: nowrap;
}
#portfolioView table,
#tsorders-contents-list-info table,
#comp-tsportf-_positions table,
#tstrades-contents-list-info table {
  margin-bottom: 0px;
  /* remove bottom margin so that .carousel-control be dynamic with the table height */
}
/*height:50px;*/
#portfolio-contents-list-info .carousel-control span {
  /*centering*/
  margin-top: -8px;
}
.table-responsive > .table > thead > tr {
  white-space: normal;
}
#favorites-wrapper .carousel-control {
  /*height:150px;*/
  height: 90px;
  top: initial;
}
/*
#pagination-ctrls .pagination{
	margin:0;
}
*/
#log-detail-level {
  width: inherit;
}
/*
 * IBSelectBox
 */
.ibselectbox ul {
  max-height: 500px;
  overflow-y: auto;
}
.ibselectbox ul.multi-select li {
  position: relative;
}
.ibselectbox ul span.check-mark {
  display: none;
}
.ibselectbox ul li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}
.ibselectbox .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}
.ibselectbox .dropdown-label {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
  white-space: nowrap;
}
/*
 * DEPRECATED!!!!!!!!!
 * derivative-options table display
 */
#underlyings-list-info [data-ib-derivative-type='option'] .hasGrid {
  padding: 0;
  white-space: nowrap;
}
#underlyings-list-info [data-ib-derivative-type='option'] .hasGrid > div {
  padding: 5px;
  overflow: hidden;
}
#underlyings-list-info [data-ib-derivative-type='option'] th.hasGrid > div {
  white-space: normal;
  /* if nowrap no need for absolute height */
  height: 65px;
}
#underlyings-list-info [data-ib-derivative-type='option'] .hasGrid > div + div {
  border-left: 1px solid #ddd;
}
@media (max-width: 699px) {
  #underlyings-list-info [data-ib-derivative-type='option'] .hasGrid > div {
    width: 55px;
    display: inline-block;
    vertical-align: top;
    /* http://stackoverflow.com/a/9273065 & http://jsfiddle.net/teokosmo/HRU4f/ */
  }
}
/***************/
.popover.trading {
  z-index: 1040;
  /*to be on top of tooltip, default from bootstrap css is 1010*/
}
.popover.trading .popover-title {
  display: none;
}
#underlyings-list-info .panel-default {
  opacity: 0;
  filter: alpha(opacity=0);
}
#underlyings-list-info .nav-pills {
  height: auto !important;
  max-height: 280px;
  overflow-y: auto;
}
#underlyings-list-info .nav > li > a:focus {
  background-color: inherit;
}
.popover.tour {
  width: 300px;
}
/*
 * form-orderentry
 */
/*white-space: normal;*/
/*padding: 0;*/
/* DISABLE because it breaks BS css	 */
/*	display: block;*/
/*width: 100%;*/
.form-orderentry .input-group .form-control.tt-query:not(:first-child):not(:last-child) {
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-top-right-radius: 4px;
  -moz-border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.form-orderentry .datepicker,
.form-orderentry input.datepicker {
  padding: 6px 12px;
}
#btn-price-up {
  position: absolute;
  right: 4px;
  top: 0px;
  z-index: 5;
}
#btn-price-down {
  position: absolute;
  right: 4px;
  top: 15px;
  z-index: 5;
}
#derivativesMarketView .nav-pills.options > li + li {
  margin-left: 0;
}
/*
* fix for IE < 10 dropdown menu rendering problems
* https://github.com/twbs/bootstrap/commit/f946ff5d254d0d8383200101f19b64bcd8ba2c58
* http://stackoverflow.com/questions/12019887/bootstrap-css-drop-down-menu-not-rendering-properly-in-ie9-what-can-be-the-issu
*/
.navbar,
.navbar-inverse {
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
/****************
****************
****************
****************
*IB custom css rules
****************
****************
****************
*****************/
.ib-form {
  margin-top: 15px;
  /* IS THIS RULE REALLY NEEDED  ????? USE APPROPRIATE TAG OR BS CLASS INSTEAD*/
  /* background-color: orange; */
}
/*	margin-bottom: 15px;*/
/* IS THIS RULE REALLY NEEDED  ????? USE APPROPRIATE TAG OR BS CLASS INSTEAD*/
/* use of class 'input-sm'
 * and of following 2 css rules
 * cause display errors in IE < 11
  height: auto;
  padding: 7px 9px;
*/
.form-signin input[type='text'],
.form-signin input[type='password'] {
  font-size: 16px;
}
/*	margin-top:0; */
/* IS THIS RULE REALLY NEEDED  ????? USE APPROPRIATE TAG OR BS CLASS INSTEAD*/
/*background-color: orange;*/
/* use BS classes : form-group*/
/*	margin-bottom: 10px; */
.ib-form .radio-inline + .radio-inline,
.ib-form .checkbox-inline + .checkbox-inline {
  /*	margin-left: 0; */
  /* IS THIS RULE REALLY NEEDED  ????? USE APPROPRIATE TAG OR BS CLASS INSTEAD*/
  background-color: orange;
}
.ib-form .radio-inline {
  /*	margin-right: 10px; */
  /* IS THIS RULE REALLY NEEDED  ????? USE APPROPRIATE TAG OR BS CLASS INSTEAD*/
  background-color: orange;
}
.ib-form .help-block {
  /*	margin:0; */
  /* IS THIS RULE REALLY NEEDED  ????? USE APPROPRIATE TAG OR BS CLASS INSTEAD*/
  background-color: orange;
}
.ib-logo-red {
  color: red;
}
.ib-logo-other {
  color: gray;
}
.ib-logo-beta {
  color: orange;
  font-size: 0.5em;
}
.ib-powered {
  font-family: 'Callibri', sans-serif;
  font-size: 0.8em;
  text-align: right;
  margin-top: -5px;
}
#ibplversion {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.6em;
}
.ib-vis-hidden {
  visibility: hidden;
}
.ib-fw-bold {
  font-weight: bold;
}
.ib-cur-pointer {
  cursor: pointer;
}
.ib-zero-opacity {
  opacity: 0;
  filter: alpha(opacity=0);
}
.col-centered {
  float: none;
  margin: 0 auto;
}
.ib-clear {
  clear: both;
}
.ib-btn-transparent {
  border: none;
  background-color: transparent;
}
/*
.table-responsive > .table > thead > tr > th.wrapped-caption,
.wrapped-caption{
	white-space: normal;
	width:60px;			 keep column narrow even if table width is great enough to have no-wrapped content in all columns 
}
*/
td.row-delimeter,
td.row-actions,
th.row-actions,
tr.clmn-captions th {
  white-space: nowrap;
  text-align: center;
}
.data {
  text-align: right;
  font-family: 'Roboto Condensed';
}
table > tfoot > tr > td {
  background-color: #9a9898;
  color: #ffffff;
}
/*
table.table th{
	font-family: @text_body_font, sans-serif;
}
*/
div.ib-left-from-actions {
  float: left;
  margin-right: 25px;
}
td > a[data-toggle='collapse'] {
  margin-left: -25px;
}
sub {
  font-size: 70%;
  bottom: inherit;
}
.form-cashdata .input-group-addon {
  width: 55%;
}
.form-cashdata input.input {
  background: inherit;
}
/*	background: orange;*/
/*    padding-right: 0px;
    padding-left: 0px;*/
#underlyings-list-info .nav > li > a {
  padding: 5px 7px;
}
.wingdings {
  font-family: "Wingdings";
}
/*
 * http://www.useragentman.com/blog/2011/12/21/cross-browser-css-cursor-images-in-depth/
 * http://www.rw-designer.com/software
 */
[data-ib-action='insert-order-no-icon'] {
  cursor: url(../img/cursor_euro.png), auto;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /*
	 * IE10+ specific styles go here,
	 * check: http://www.limecanvas.com/css-hacks-targeting-ie-10/
	 */
  [data-ib-action='insert-order-no-icon'] {
    cursor: url(assets/img/cursor_euro.cur), auto;
  }
}
div.row.bestworst-data-container > ul > li > a {
  padding-right: 5px;
}
.ib-slide-wrapper {
  position: relative;
}
[data-ib-slide] {
  position: static;
}
/*
 * valid only for inline elements in TD
 */
td[data-ib-actions] {
  white-space: nowrap;
}
td[data-ib-actions] > * {
  vertical-align: top;
}
#insert-bid-order.inactive {
  background-color: #D4E6B8;
}
#insert-ask-order.inactive {
  background-color: #FED3D5;
}
.dynDT {
  font-family: "Roboto Condensed", sans-serif;
  /*text-transform:uppercase;*/
  /*color:#b6b7aa;
	border-bottom:1px solid #a1a293;
	border-left:1px solid #a1a293;
	border-top:1px solid #818176;*/
  /*background:url(graphics/themes/default/date.png) no-repeat left bottom;*/
}
.dynDTd {
  /*border-right:1px solid #a1a293;
	text-shadow:#7c7c70 0 1px 0;
	font-size:2.43em;*/
  font-weight: bold;
  float: left;
  font-size: 1.4em;
  /*padding:4px 5px 4px 0;
	margin:0 10px 0 0;*/
  line-height: 75%;
}
.dynDTm {
  /*-ms-transform: rotate(90deg); */
  /* IE 9 */
  /*-webkit-transform: rotate(90deg); */
  /* Chrome, Safari, Opera */
  /*transform: rotate(-90deg);*/
  text-transform: uppercase;
  display: block;
  /*float:left;*/
  font-weight: bold;
  font-size: 0.7em;
  /*width:32px;*/
  line-height: 100%;
}
.dynDTy {
  /*-ms-transform: rotate(90deg); */
  /* IE 9 */
  /*-webkit-transform: rotate(90deg); */
  /* Chrome, Safari, Opera */
  /*transform: rotate(-90deg);*/
  display: block;
  font-size: 0.7em;
}
.dynDTh,
.dynDTn {
  font-weight: bold;
  line-height: 50%;
}
.dynDTh {
  font-size: 1.2em;
}
/* vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv   data dependent classes don't change ---> */
.clsinstrStatus {
  color: #aeaeae;
}
.clsinstrStatusnull {
  color: #aeaeae;
}
.clsinstrStatusR {
  color: #5A8F29;
}
.clsinstrStatusD {
  color: #FF8F00;
}
.ib-change-up {
  color: #458D37;
}
.ib-change-down {
  color: #DC0A0A;
}
.ib-change-stable {
  color: #606060;
}
/*Buy/Bid*/
.ib-order-color-b {
  color: #AFE65B;
}
.ib-order-bgcolor-b {
  background-color: #AFE65B;
}
.btn-submit-order.ib-order-bgcolor-b,
.btn-submit-order.ib-order-bgcolor-b[disabled] {
  background-color: #AFE65B;
  border-color: #AFE65B;
}
.btn-submit-order.ib-order-bgcolor-b:active,
.btn-submit-order.ib-order-bgcolor-b:hover {
  background-color: #a0d74c;
  border-color: #a0d74c;
}
/*Ask/Sell*/
.ib-order-color-a {
  color: #FE7C82;
}
.ib-order-bgcolor-a {
  background-color: #FE7C82;
}
.btn-submit-order.ib-order-bgcolor-a,
.btn-submit-order.ib-order-bgcolor-a[disabled] {
  background-color: #FE7C82;
  border-color: #FE7C82;
}
.btn-submit-order.ib-order-bgcolor-a:active,
.btn-submit-order.ib-order-bgcolor-a:hover {
  background-color: #ef6d73;
  border-color: #ef6d73;
}
/* unknown side for distribution*/
.ib-order-color-n {
  color: #0b0b0b;
}
[class^="ib-change-img-"] {
  width: 2.7em;
  height: 2.7em;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100%;
}
.ib-change-img-up {
  background-image: url(../img/change_up_x64.png);
}
.ib-change-img-down {
  background-image: url(../img/change_down_x64.png);
}
.ib-change-img-stable {
  background-image: url(../img/change_stable_x64.png);
}
/* <--- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ data dependent classes don't change  */
.ib-bottom-fixed {
  position: fixed;
  bottom: 0;
  z-index: 1030;
  /*9000*/
  width: 100%;
}
.ib-inline-block-fix {
  /*
check http://css-tricks.com/fighting-the-space-between-inline-block-elements/
for annoying spaces between symbol items
*/
  margin-right: -4px;
}
.ib-btn-actions-wrapper {
  display: inline-block;
  white-space: nowrap;
}
.ib-btn-actions,
.ib-btn-actions:hover {
  color: #888888;
  background-color: #dfdfdf;
  border-color: #dfdfdf;
  text-shadow: 0 1px 0 #fff;
  background-image: none;
  background-repeat: repeat-x;
}
.ib-btn-actions:hover {
  color: #333333;
}
/*
 * fix for favorites scrolling functionality
 * in mobile chrome when sparkline is visible in thumb
 */
.ib-fix-mobile-chrome-favorites-scrolling {
  position: static;
}
.ib-btn-actions:active,
.ib-btn-actions.active {
  background-color: #e6e6e6;
  border-color: #e0e0e0;
}
.ib-btn-actions {
  opacity: 0;
  filter: alpha(opacity=0);
}
.ib-btn-actions-wrapper-touch {
  clear: both;
  text-align: center;
  white-space: nowrap;
}
.ib-btn-actions-wrapper-touch [data-ib-action] {
  margin: 5px;
}
.ib-market-actions-wrapper {
  display: inline-block;
  vertical-align: top;
}
.ib-table-overflow {
  overflow: hidden;
}
#symbolView #symbol-intraday-tab-content .ib-intraday-wrapper {
  height: auto !important;
  max-height: 680px;
  overflow-y: auto;
}
#symbolViewTop H1 {
  font-size: 4.54em;
  /* wrap fix GC*/
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  text-align: right;
  margin-top: 0px;
  margin-bottom: 5px;
}
#symbolViewTop H3 {
  margin-top: 10px;
  margin-bottom: 1px;
  text-align: right;
}
#symbolViewTop .text-muted {
  white-space: nowrap;
  text-align: right;
}
#symbolViewTop [data-property-value="data.lastSaleTime"] {
  font-size: 0.8em;
}
.img-empty-box {
  background-image: url(/assets/img/common/box-172.png);
  /*background-position: 0 0 ;*/
  /* NOT SUPPORTED IN IE < 9, so use an image of desired size
	background-size:14px 14px;
	*/
  width: 100%;
  height: 128px;
  background-size: 64px 64px;
  background-repeat: no-repeat;
}
.actions-group {
  padding-right: 5px;
}
.panel-heading > .portfolio-heading {
  line-height: 2em;
}
.vertical-align-center {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.color-info {
  color: #5bc0de;
}
/*
#ts-portfolio-view #ts-customers-tradingaccounts-select,
#ts-portfolio-view #ts-customers-select{
	width: 250px;
	margin-bottom: 15px;
}
*/
/*
#ts-portfolio-view #ts-customers-tradingaccounts-select{
	width: 300px;
}
*/
/*
#ts-portfolio-view .ibselectbox a.btn{
	white-space: normal;
}
*/
.ibselectbox a.btn {
  white-space: normal;
}
.number_data {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  /*font-family: @text_body_font, sans-serif;*/
}
H1 {
  font-family: "Roboto Condensed", sans-serif;
}
label.code {
  min-width: 95px;
}
label.isin {
  min-width: 125px;
}
label.market {
  min-width: 50px;
}
label.name {
  width: 320px;
}
/*font:bold 12px Arial;*/
.icon-loading-small {
  background-image: url(../img/loading_x16.gif);
  background-position: 0 0 ;
  /* NOT SUPPORTED IN IE < 9, so use an image of desired size
	background-size:14px 14px;
	*/
  width: 16px;
  height: 16px;
}
.icon-delete-small,
.icon-delete-symbol-small {
  background-image: url(../img/delete_x16.gif);
  background-position: 0 0 ;
  width: 16px;
  height: 16px;
}
#input-new-portfolio-name-list {
  width: 200px;
}
#menu-quick-search form,
#add-symbol-quick-search form {
  position: relative;
}
/*
.typeahead-search-btn{
	position:absolute;
	top:6px;
	right:-12px;
}
*/
.typeahead-cancel-btn {
  z-index: 999;
  position: absolute;
  top: 6px;
  right: 40px;
}
#container-message {
  position: fixed;
  top: 100px;
  width: 400px;
  z-index: 1100;
  /*centering*/
  left: 50%;
  margin-left: -200px;
}
#favorites-wrapper,
#favorites-wrapper-toggle {
  margin: 0;
}
#favorites-wrapper-toggle {
  position: absolute;
  right: 0;
  top: -30px;
  width: 35px;
}
#favorites-btn-edit,
#favorites-btn-done {
  margin: 10px 0 0 10px;
}
.symbols-container {
  width: 100%;
  white-space: nowrap;
  text-align: center;
  overflow: hidden;
}
.symbol-item {
  display: inline-block;
  position: relative;
  min-width: 60px;
  text-align: left;
  vertical-align: bottom;
  /*http://stackoverflow.com/a/20566810/3441616*/
}
.symbol-item:focus {
  outline: 0;
}
.symbol-item-actions {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.symbol-item .expand-toggle {
  position: absolute;
  top: 1px;
  right: 1px;
  color: #333;
  font-size: 9px;
  border-radius: 10px;
  padding: 2px 4px;
}
/*	margin:10px 0;*/
/* IS THIS RULE REALLY NEEDED  ????? USE APPROPRIATE TAG OR BS CLASS INSTEAD*/
/*#quotes-wrapper .data{
	font-weight:bold;
}
*/
#go-to-top {
  opacity: 0;
  filter: alpha(opacity=0);
  bottom: 180px;
  /*to cover the possibility of opened favorites component with scrollbar*/
  right: 0px;
  position: fixed;
  z-index: 1000;
}
#go-hist-back {
  opacity: 0;
  filter: alpha(opacity=0);
  top: 0px;
  /*to cover the possibility of opened favorites component with scrollbar*/
  position: fixed;
}
#symbol-panel-head {
  overflow: hidden;
}
.ib-curtain {
  position: absolute;
  z-index: 999;
  width: 100%;
  /* set width of element 'behind curtain' */
  height: auto;
  /* set height of element 'behind curtain' */
  background-color: transparent;
  border: none;
}
/*
.portfolio-name-wrapper:after{
	clear: both;
}
.portfolio-name-wrapper{
	margin-left: 5px;
	padding-top: 0.2em;
}
*/
.modal-header.exchange-agreements-header .close {
  display: none;
}
[data-property-value='expiryDate'] {
  white-space: nowrap;
}
.debug {
  border-style: solid;
  border-width: 1px;
  background-color: red;
}
.debugformatted {
  background-color: darkcyan;
}
#MenuUsername {
  font-size: 18px;
}
/*
 * MEDIA QUERIES RULES
 * Boostrap 3.4.1
 * col-xs : 0 - 767px
 * col-sm : 768 - 991px
 * col-md : 992 - 1199px
 * col-lg : 1200px and up
 */
@media (min-width: 290px) and (max-width: 320px) {
  #symbolViewTop div:first-child {
    padding-left: 0px;
  }
  #symbolViewTop h1 {
    font-size: 26px;
  }
  #symbolViewTop h3 {
    font-size: 16px;
  }
  #symbolViewTop [data-property-value="data.tradeDate"] {
    font-size: 10px;
    white-space: nowrap;
  }
  #symbolViewTop [class^="ib-change-img-"] {
    width: 18px;
    height: 18px;
  }
  #symbolViewTop .text-muted {
    font-size: 10px;
  }
}
@media (min-width: 320px) and (max-width: 341px) {
  #symbolViewTop div:first-child {
    padding-left: 0px;
  }
  #symbolViewTop h1 {
    font-size: 27px;
  }
  #symbolViewTop h3 {
    font-size: 17px;
  }
  #symbolViewTop [data-property-value="data.tradeDate"] {
    font-size: 11px;
    white-space: nowrap;
  }
  #symbolViewTop [class^="ib-change-img-"] {
    width: 20px;
    height: 20px;
  }
  #symbolViewTop .text-muted {
    font-size: 11px;
  }
}
@media (min-width: 341px) and (max-width: 390px) {
  #symbolViewTop h1 {
    font-size: 27px;
  }
  #symbolViewTop h3 {
    font-size: 17px;
  }
  #symbolViewTop [data-property-value="data.tradeDate"] {
    font-size: 11px;
    white-space: nowrap;
  }
  #symbolViewTop [class^="ib-change-img-"] {
    width: 20px;
    height: 20px;
  }
  #symbolViewTop .text-muted {
    font-size: 11px;
  }
}
@media (min-width: 390px) and (max-width: 416px) {
  #symbolViewTop h1 {
    font-size: 27px;
  }
  #symbolViewTop h3 {
    font-size: 17px;
  }
  #symbolViewTop [data-property-value="data.tradeDate"] {
    font-size: 13px;
    white-space: nowrap;
  }
  #symbolViewTop [class^="ib-change-img-"] {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 416px) and (max-width: 520px) {
  #symbolViewTop h1 {
    font-size: 40px;
  }
  #symbolViewTop h3 {
    font-size: 20px;
  }
  #symbolViewTop [data-property-value="data.tradeDate"] {
    font-size: 13px;
  }
  #symbolViewTop [class^="ib-change-img-"] {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 520px) and (max-width: 571px) {
  #symbolViewTop h1 {
    font-size: 55px;
  }
  #symbolViewTop h3 {
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #symbolViewTop h1 {
    font-size: 3.7em;
  }
  #symbolViewTop h3 {
    font-size: 1.45em;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  #symbolViewTop h3 {
    font-size: 1.55em;
  }
}
@media (min-width: 790px) and (max-width: 810px) {
  .tradingTopMenu #MenuUsername {
    max-width: 85px;
  }
}
@media (min-width: 768px) and (max-width: 789px) {
  .tradingTopMenu #MenuUsername {
    max-width: 69px;
  }
}
@media (max-width: 767px) {
  label.isin,
  label.market,
  label.name {
    display: none;
  }
  .tt-dropdown-menu {
    min-width: 100px;
  }
  /*.typeahead-search-btn{
		left:188px;
		right:auto;
		top:16px;
	}*/
  #menu-quick-search .typeahead-cancel-btn {
    position: absolute;
    top: 16px;
    right: 40px;
  }
  /*overflow-y: inherit; ????????? teo:causes menu to be displayed outside its wrapper on top of container-main*/
  #mainMenu {
    overflow-x: hidden;
    margin-left: 15px;
    margin-right: 15px;
  }
  #favorites-btn-edit,
  #favorites-btn-done {
    margin-right: 25px;
  }
  #container-message {
    width: 200px;
    margin-left: -100px;
  }
  /* !!!! the following paddings create horiz scrollbar when narrow < 767px	
	.container, 
	{
  		padding-right: 5px;
  		padding-left: 5px;
	}
*/
}
@media (min-width: 768px) and (max-width: 991px) {
  #menu-quick-search,
  #menu-quick-search input.tt-hint,
  #menu-quick-search input.typeahead {
    width: 170px;
  }
  .nav > li > a {
    /* shrink main menu entries to make room for search*/
    padding-left: 10px;
    padding-right: 10px;
  }
  label.name {
    display: none;
  }
  .tt-dropdown-menu {
    min-width: 250px;
  }
  .tradingTopMenu .container {
    width: inherit;
  }
  .tradingTopMenu #MenuUsername {
    overflow: hidden;
  }
}
/* wide screens */
@media screen and (min-width: 1400px) {
  .container {
    width: 1370px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    width: 1570px;
  }
}
@media screen and (min-width: 1900px) {
  .container {
    width: 1870px;
  }
}
@media screen and (min-width: 2320px) {
  .container {
    width: 2290px;
  }
}
@media screen and (min-width: 2960px) {
  .container {
    width: 2930px;
  }
}
span.quote-price {
  font-weight: bold;
}
/*
 * PRICE CLASSES RULES FOR DISPLAYING IMAGES
 * CONCERNING trend & saleside
 */
span.DD[data-ib-property-sysname='price']:before {
  content: url(../img/trend/imgIdx_DD.gif);
}
span.DS[data-ib-property-sysname='price']:before {
  content: url(../img/trend/imgIdx_DS.gif);
}
span.DU[data-ib-property-sysname='price']:before {
  content: url(../img/trend/imgIdx_DU.gif);
}
span.NA[data-ib-property-sysname='price']:before {
  content: url(../img/trend/imgIdx_NA.gif);
}
span.SD[data-ib-property-sysname='price']:before {
  content: url(../img/trend/imgIdx_SD.gif);
}
span.SS[data-ib-property-sysname='price']:before {
  content: url(../img/trend/imgIdx_SS.gif);
}
span.SU[data-ib-property-sysname='price']:before {
  content: url(../img/trend/imgIdx_SU.gif);
}
span.UD[data-ib-property-sysname='price']:before {
  content: url(../img/trend/imgIdx_UD.gif);
}
span.US[data-ib-property-sysname='price']:before {
  content: url(../img/trend/imgIdx_US.gif);
}
span.UU[data-ib-property-sysname='price']:before {
  content: url(../img/trend/imgIdx_UU.gif);
}
span.projClose[data-ib-property-sysname='price']:before {
  content: url(../img/trend/projClose.gif);
}
span.projOpCl[data-ib-property-sysname='price']:before {
  font-family: FontAwesome;
  content: "\f06a\20";
  /* "\f06a ";*/
  color: orange;
  /*content: url(../img/trend/projOpCl.gif);*/
}
span.projOpen[data-ib-property-sysname='price']:before {
  font-family: FontAwesome;
  content: "\f071\20";
  color: #ffce00;
  /*	background-color: black;*/
  /*content: url(../img/trend/projOpen.gif);*/
}
span.ss-B:after {
  content: url(../img/salesides/ss-B.png);
}
span.ss-I:after {
  content: url(../img/salesides/ss-I.png);
}
span.ss-O:after {
  content: url(../img/salesides/ss-O.png);
}
span.ss-S:after {
  content: url(../img/salesides/ss-S.png);
}
span.ss-X:after {
  content: url(../img/salesides/ss-X.png);
}
/*
 * RULES FOR DISPLAYING NEWS PROVIDERS IMAGES
 */
div.provider-logo[data-ib-news-prov='ASE']:before {
  content: url(../img/newsprov/np_ASE.png);
}
div.provider-logo[data-ib-news-prov='ATHEXNOTIFY']:before {
  content: url(../img/newsprov/np_ATHEXNOTIFY.png);
}
div.provider-logo[data-ib-news-prov='ATHOTC']:before {
  content: url(../img/newsprov/np_ATHOTC.png);
}
div.provider-logo[data-ib-news-prov='EURO2DAY_CW']:before {
  content: url(../img/newsprov/np_EURO2DAY_CW.png);
}
div.provider-logo[data-ib-news-prov='EURO2DAY_MW']:before {
  content: url(../img/newsprov/np_EURO2DAY_MW.png);
}
div.provider-logo[data-ib-news-prov='NAFTEMPORIKI']:before {
  content: url(../img/newsprov/np_naftemporiki.png);
}
div.provider-logo[data-ib-news-prov='MONEWS']:before {
  content: url(../img/newsprov/np_MONEWS.png);
}
div.provider-logo[data-ib-news-prov='ANA']:before {
  content: url(../img/newsprov/np_ANA.png);
}
div.provider-logo[data-ib-news-prov='CSE']:before {
  content: url(../img/newsprov/np_CSE.png);
}
div.provider-logo[data-ib-news-prov='BUSINESSDAILY']:before {
  content: url(../img/newsprov/np_BUSINESSDAILY.png);
}
.tour-step:before {
  font-size: 1em;
  color: #606060;
  content: "\e085";
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
/*.tour-step-indicator{
	position:absolute;
	z-index: 1050;
}
.tour-step-indicator:before{
	content: "\e085";
	position: relative;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	cursor: pointer;
}*/
.tour-backdrop {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
h4.tour-step {
  display: inline-block;
  vertical-align: top;
}
.tab-content > .tab-pane > h4 {
  display: none;
}
#credit-analysis-info h4 {
  display: block !important;
}
#cash-lines-info {
  padding-top: 20px;
}
#marketView .instrstatus-wrapper {
  margin-top: -15px;
}
#btn-send-otp,
#btn-forgot-pwd,
#btn-reset-pwd,
#btn-save-change-pwd {
  float: right;
}
