.lql__list {
  display: table;
  width: 100%;
  min-width: 180px;
}

[data-size="s"] .lql__list,
[data-size="xs"] .lql__list {display: block;}

.lql__row {display: table-row;}

[data-size="s"] .lql__row,
[data-size="xs"] .lql__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end; /* i.e. stick to bottom */
}

.lql__cell {
  display: table-cell;
  padding: 10px;
  box-sizing: border-box;
  vertical-align: middle;
}
[data-size="s"] .lql__cell,
[data-size="xs"] .lql__cell {display: block;}

.lql__name {
  width: 40%;
  padding-left: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-size="m"] .lql__name {padding-right: 5px;}
[data-size="s"] .lql__name,
[data-size="xs"] .lql__name {
  width: 50%;
}
[data-size="xs"] .lql__name {
  width: 100%;
  padding-left: 10px;
  padding-bottom: 0;
}

.lql__price {
  width: 10%;
  text-align: right;
}
[data-size="xl"] .lql__price,
[data-size="l"] .lql__price {
  min-width: 101px; /* 7 digits for Bitcoin & Etherium */
}
[data-size="m"] .lql__price {
  padding-left: 5px;
  padding-right: 5px;
  min-width: 85px; /* 7 digits for Bitcoin & Etherium */
}
[data-size="s"] .lql__price {
  width: 25%;
  padding-left: 0;
  padding-right: 5px;
}
[data-size="xs"] .lql__price {
  width: 50%;
  text-align: left;
  padding-top: 5px;
  padding-bottom: 5px;
}

.lql__percent {
  width: 10%;
  text-align: right;
}

[data-size="m"] .lql__percent {
  padding-left: 5px;
  padding-right: 5px;
}
[data-size="s"] .lql__percent {
  width: 25%;
  padding-left: 5px;
  padding-right: 20px;
  text-align: right;
}
[data-size="xs"] .lql__percent {
  width: 50%;
  text-align: right;
  padding-top: 5px;
  padding-bottom: 5px;
}

.lql__buttons {
  width: 10%;
  padding-right: 20px;
  text-align: right;
}
[data-size="s"] .lql__buttons,
[data-size="xs"] .lql__buttons {
  width: 100%;
  padding-top: 0;
}
[data-size="s"] .lql__buttons {
  padding-left: 20px;
}
[data-size="xs"] .lql__buttons {padding-right: 10px;}

.lql__buttons-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

a.lql__btn {
  flex-grow: 1;
  flex-basis: 50%;
  padding: 6px 10px;
  box-sizing: border-box;
  border-radius: 4px;
  text-align: center;
  white-space: nowrap;
}

.lql__btn:nth-child(n + 2) {margin-left: 7px;}
[data-size="m"] .lql__btn:nth-child(n + 2),
[data-size="s"] .lql__btn:nth-child(n + 2),
[data-size="xs"] .lql__btn:nth-child(n + 2) {margin-left: 5px;}

.lql__btn:nth-last-child(n + 2) {margin-right: 7px;}
[data-size="m"] .lql__btn.lql__btn:nth-last-child(n + 2),
[data-size="s"] .lql__btn.lql__btn:nth-last-child(n + 2),
[data-size="xs"] .lql__btn.lql__btn:nth-last-child(n + 2) {margin-right: 5px;}

[data-size="xl"] .lql__btn,
[data-size="l"] .lql__btn {
  padding-left: 20px;
  padding-right: 20px;
}

.lql__list {
  --background: #fff;
  --font: #222;
  --green: #408700;
  --red: #ea5724;
}

.lql__list {
  color: var(--font);
  font-size: 18px;
}
[data-size="m"] .lql__list,
[data-size="s"] .lql__list,
[data-size="xs"] .lql__list {font-size: 16px;}

.lql__row {background-color: var(--background);}
.lql__row--odd {background-color: #f6f6f6;}

.lql__list .lql__header {display: none;}

.lql__name-item {font-weight: 700;}

.lql__list a.lql__name-link { /* intencify the specifity for "just in case" */
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.lql__price--red {animation: negative 1s ease;}
.lql__price--green {animation: positive 1s ease;}

@keyframes positive {
  from { background-color: #a6cf9d; }
  to { background-color: transparent; }
}
@keyframes negative {
  from { background-color: #f2a2a2; }
  to { background-color: transparent; }
}

.lql__percent--green {color: var(--green);}
.lql__percent--red {color: var(--red);}

.lql__list a.lql__btn { /* intencify the specifity for "just in case" */
  color: var(--background);
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
  text-decoration: none;
}

a.lql__btn--buy {background-color: var(--green);}
a.lql__btn--sell {background-color: var(--red);}
a.lql__btn--buy:hover,
a.lql__btn--sell:hover {opacity: 0.9;}




/*# sourceMappingURL=live-quotes-list.1.2.0.css.map*/