.order.book {
}

.order.book .asks,
.order.book .bids {
  height: 59vh;
  margin: 0 0 4px 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

.order.book .asks {
  background: #f9f3f3;
  border: 1px solid #f3e8e8;
}

.order.book .asks .item:hover {
  background: #f3e8e8;
  cursor: pointer;
}

.order.book .bids {
  background: #f6fbf8;
  border: 1px solid #ddd;
}

.order.book .bids .item:hover {
  background: #e3f3e9;
  cursor: pointer;
}

.order.book .item , .fills .item {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  padding: 0.5rem 0;
  font-size: 0.87rem;
  color: #444;
  display: flex;
}

.order.book .item div {
  flex: 1;
  margin: 0 1rem;
}

.order.book .item .amount {
  text-align: right;
}

.order.book .item .meta {
    text-align: right;
}

.ui.console {
  border: 1px solid #ddd;
  height: 300px;
  box-shadow: 10px 10px 10px #ddd;
  font-size: 0.87rem;
  color: #555;
  overflow-x: hidden;
  overflow-y: scroll;
}

.ui.console .message {
  border-bottom: 1px solid #ccc;
  padding: 0.5rem;
  cursor: pointer;
}

.ui.console .message:hover {
  background: #eee;
}

.ui.console .failure.message {
  background: #ffe5e5;
}

.ui.console .failure.message:hover {
  background: #eacaca;
}

.ui.console .message .title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.ui.console .failure.message .title {
  color: #c74b4b;
}

.ui.markets {
  margin-top: 1rem;
  border: 1px solid #ddd;
}

.ui.markets .item {
  display: flex;
  padding: 0.5rem;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size: 0.8rem;
}

.ui.markets .item:hover {
  background: #eee;
}

.ui.markets .item div {
  flex: 1;
}

.ui.markets .item div.price {
  text-align: right;
}

.inline.field label {
  width: 20% !important;
}

.inline.field input {
  width: 40% !important;
}

.hidden {
  display: none;
}

.ui.markets .item.selected {
  background: #f1fff4;
  font-weight: bold;
  color: #146914;
}

.ui.line.break {
  margin: 1.5em 0 1.5em 0;
}

input[readonly] {
  color: #888 !important;
}

.error.segment {
  background: #fbf2f2;
}

a[data-listing-name] {
  color: #346ba9 !important;
  font-size: 0.5em !important;
  text-transform: uppercase !important;
  font-weight: bold !important;
}


.fills {
  height: 764px;
  overflow: auto;
}

.fills .item.ask {
  color: rgb(197, 36, 98)
}

.fills .item.bid {
  color: rgb(8, 161, 115)
}

.fills .item div {
  display: flex;
}

.fills .item .price {
  flex: 2
}

.fills .item .amount {
  flex: 2
}

.fills .item .meta {
  flex: 2
}


.borderless.table {
  border: none!important
}

.open.orders.segment {
  padding: 0!important;
  height: 250px;
  overflow: auto;
}