@-webkit-keyframes updated {
  0% {
    background: #1bc3ff; }
  100% {
    background: #fff; } }
@-moz-keyframes updated {
  0% {
    background: #1bc3ff; }
  100% {
    background: #fff; } }
@-o-keyframes updated {
  0% {
    background: #1bc3ff; }
  100% {
    background: #fff; } }
@keyframes updated {
  0% {
    background: #1bc3ff; }
  100% {
    background: #fff; } }
* {
  box-sizing: border-box; }

body {
  font-family: monospace;
  font-size: 16px; }
  @media all and (max-width: 640px) {
    body {
      font-size: 15px; } }

html, body {
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none; }

body,
input,
button {
  background: #181f2c;
  color: #fff; }

h1 {
  margin: 10px 0 15px;
  font-size: 26px;
  line-height: 30px; }

.container {
  max-width: 440px;
  padding-left: 5px;
  padding-right: 5px; }

.pointer {
  cursor: pointer; }

.clearfix:after {
  display: table;
  content: '';
  clear: both; }

.text-red {
  color: #ff007a; }

.text-green {
  color: #8ec919; }

.text-blue {
  color: #1bc3ff; }

.form-modal {
  display: none; }
  .form-modal--open {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    z-index: 99999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(24, 31, 44, 0.3); }
    .form-modal--open .form-modal__top-btn {
      display: block;
      position: absolute;
      top: 0;
      height: 24px;
      width: 30px;
      text-align: center;
      line-height: 24px;
      font-weight: 800;
      cursor: pointer; }
      .form-modal--open .form-modal__top-btn--close-modal {
        background: #ff007a;
        right: 0; }
      .form-modal--open .form-modal__top-btn--open-alert {
        background: darkorange;
        right: 35px;
        font-size: 12px; }
        .form-modal--open .form-modal__top-btn--open-alert.alert-open {
          background: #8ec919; }
      .form-modal--open .form-modal__top-btn--add-alert {
        background: #8ec919;
        right: 70px; }

.modal-inner {
  display: block;
  position: relative;
  width: 300px;
  max-width: 100%;
  border: 1px solid #464f65;
  background: rgba(24, 31, 44, 0.3);
  overflow-x: hidden; }

.controller--form {
  position: relative;
  width: 300px;
  max-width: 100%;
  padding: 10px;
  transition: all linear .2s;
  background: #181f2c; }
  .controller--form label {
    font-size: 10px;
    line-height: 12px;
    color: #c6c6c6; }
  .controller--form input[type="text"],
  .controller--form input[type="password"],
  .controller--form input[type="number"] {
    display: block;
    height: 24px;
    line-height: 24px;
    margin-bottom: 6px;
    margin-top: 2px;
    width: 100%;
    padding: 0 5px;
    font-size: 14px;
    background: #242e42;
    color: #fff;
    border: 1px solid #3d4d6d; }
  .controller--form select {
    font-size: 14px;
    background: #242e42;
    color: #fff;
    border: 1px solid #3d4d6d;
    margin-bottom: 10px;
    max-width: 90px; }
  .controller--form button {
    display: block;
    width: calc(50% - 3px);
    border: none;
    color: #000;
    background: #8ec919; }
    .controller--form button.btn-first {
      float: left;
      margin-right: 6px; }
    .controller--form button.loading {
      opacity: .3; }
  .controller--form #delete_coin {
    background: #ff007a;
    display: none; }
    .controller--form #delete_coin.open {
      display: block; }
  .controller--form .form-btn {
    display: inline-block;
    padding: 0 6px;
    height: 18px;
    margin-left: 5px;
    line-height: 18px;
    min-width: 20px;
    text-align: center;
    background: #242e42;
    color: #c6c6c6;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px; }
  .controller--form--coin {
    float: left;
    margin-left: 0; }
    .controller--form--coin.closed {
      margin-left: -300px; }
  .controller--form--alert {
    float: right;
    margin-right: 0; }
    .controller--form--alert.closed {
      margin-right: -300px; }
    .controller--form--alert .alert-field-wrap {
      display: block;
      position: relative; }
      .controller--form--alert .alert-field-wrap input {
        width: calc(72% - 90px);
        float: left;
        margin-right: 6px; }
        .controller--form--alert .alert-field-wrap input:first-child {
          width: 28%;
          padding-left: 15px; }
        .controller--form--alert .alert-field-wrap input:before {
          display: inline-block;
          content: '$'; }
      .controller--form--alert .alert-field-wrap span {
        display: block;
        float: left;
        width: 22px;
        border: 1px solid #464f65;
        margin-right: 6px;
        height: 24px;
        line-height: 22px;
        margin-top: 2px;
        text-align: center;
        font-size: 12px;
        cursor: pointer; }
        .controller--form--alert .alert-field-wrap span.delete-alert-group {
          border: 1px solid red;
          margin-right: 0; }
        .controller--form--alert .alert-field-wrap span.percent {
          border: 1px solid rgba(0, 0, 0, 0);
          width: 10px;
          margin: 0;
          position: absolute;
          top: 3px;
          left: 3px;
          color: #ff7c00; }

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  .modal-inner {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0); }

  .controller--form {
    background: rgba(255, 255, 255, 0); } }
.coin {
  display: block;
  position: relative;
  padding: 5px 8px;
  border: 1px solid #464f65;
  margin-bottom: 10px;
  border-radius: 3px;
  outline: none;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  /*a {
      float: right;
  }*/ }
  .coin.is-doubled {
    border-left-width: 3px; }
  .coin:hover, .coin:active {
    color: #fff;
    border-color: #657292; }
  .coin.positive .coin__current-price,
  .coin.positive .coin__percent {
    color: #8ec919; }
  .coin.negative .coin__current-price,
  .coin.negative .coin__percent {
    color: #ff007a; }
  .coin.active {
    border-color: #1bc3ff; }
  .coin.sold {
    border-color: rgba(255, 255, 255, 0.3); }
  .coin.info {
    border-color: #a0a9bd; }
  .coin.info-long {
    border-color: #673ab7; }
  .coin.pending {
    border-color: darkorange; }
  .coin.long {
    border-color: #8c8fff; }
  .coin__date {
    font-size: 10px;
    line-height: 12px;
    float: right;
    color: deepskyblue;
    border: 1px solid rgba(0, 0, 0, 0);
    padding: 1px 2px;
    border-radius: 3px; }
    .coin__date--has-alert {
      border-color: deepskyblue; }
  .coin.coin--head {
    background: rgba(255, 255, 255, 0.04);
    margin-top: 10px;
    font-weight: 900;
    line-height: 26px;
    font-size: 14px; }
    .coin.coin--head.coin--active {
      color: #1bc3ff;
      background: rgba(27, 195, 255, 0.04);
      border-left: 5px solid #1bc3ff; }
    .coin.coin--head.coin--sold {
      color: #fff;
      background: rgba(255, 255, 255, 0.04);
      border-left: 5px solid #fff; }
    .coin.coin--head.coin--info {
      color: #a0a9bd;
      background: rgba(160, 169, 189, 0.04);
      border-left: 5px solid #a0a9bd; }
    .coin.coin--head.coin--info-long {
      color: #854bec;
      background: rgba(103, 58, 183, 0.04);
      border-left: 5px solid #854bec; }
    .coin.coin--head.coin--pending {
      color: darkorange;
      background: rgba(255, 140, 0, 0.04);
      border-left: 5px solid darkorange; }
    .coin.coin--head.coin--long {
      color: #8c8fff;
      background: rgba(140, 143, 255, 0.04);
      border-left: 5px solid #8c8fff; }
    .coin.coin--head.coin--custom-msg {
      color: #fff; }
    .coin.coin--head .arrow {
      float: right;
      display: inline-block;
      width: 24px;
      margin-right: -4px;
      background: #374155;
      text-align: center;
      border-radius: 3px;
      cursor: pointer; }
      .coin.coin--head .arrow.closed {
        background: white;
        color: #000;
        content: '&#x25BC;'; }
  .coin > div {
    float: left;
    margin-right: 15px; }
    .coin > div.coin__start-price, .coin > div.coin__current-price {
      margin-right: 0; }
    .coin > div.coin__symbol {
      color: #f3ba08; }
    .coin > div.coin__exchange {
      max-height: 20px;
      margin-top: -3px;
      margin-left: -7px;
      margin-right: 2px; }

.menu-bar {
  display: block;
  position: relative;
  width: 100%;
  padding: 5px 5px 3px;
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 10px; }
  .menu-bar .logo {
    display: inline-block;
    width: 30px;
    height: 24px;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    color: #000;
    background: #8ec919;
    border-radius: 3px; }
  .menu-bar .menu {
    display: block;
    width: calc(100% - 30px);
    float: right;
    margin: 0;
    text-align: right;
    list-style-type: none; }
    .menu-bar .menu > li {
      display: inline-block; }
      .menu-bar .menu > li .item {
        line-height: 24px;
        text-decoration: none;
        color: #fff; }
        .menu-bar .menu > li .item:hover, .menu-bar .menu > li .item.active {
          color: #8ec919; }
        .menu-bar .menu > li .item.add_coin {
          color: #ff7c00; }
          .menu-bar .menu > li .item.add_coin:hover, .menu-bar .menu > li .item.add_coin.active {
            color: #ff7c00; }
        .menu-bar .menu > li .item.menu-button {
          display: inline-block;
          position: relative;
          background: #62676f;
          min-width: 24px;
          text-align: center;
          border-radius: 3px;
          color: #ffffff;
          transition: all .2s linear; }
          .menu-bar .menu > li .item.menu-button:hover, .menu-bar .menu > li .item.menu-button.active {
            color: #000;
            background: #8ec919; }
          .menu-bar .menu > li .item.menu-button .submenu {
            display: none;
            position: absolute;
            margin: 0;
            padding: 7px 0 0;
            right: -5px;
            top: 24px;
            color: #fff;
            z-index: 9999;
            list-style-type: none;
            text-align: left; }
            .menu-bar .menu > li .item.menu-button .submenu li {
              border-bottom: 1px solid #4a4e54;
              background: #62676f; }
              .menu-bar .menu > li .item.menu-button .submenu li a {
                display: block;
                white-space: nowrap;
                color: #fff;
                padding: 0 10px; }
                .menu-bar .menu > li .item.menu-button .submenu li a:hover {
                  text-decoration: none;
                  background: #7a808a; }
              .menu-bar .menu > li .item.menu-button .submenu li.active a {
                color: #8ec919; }
          .menu-bar .menu > li .item.menu-button.item-sortby:hover .submenu {
            display: block; }

.percent-bar {
  display: block;
  position: absolute;
  content: '';
  bottom: -2px;
  left: 0;
  height: 2px;
  background: #8ec919; }
  .percent-bar.top {
    background: #1bc3ff; }
  .percent-bar.in-list {
    bottom: -1px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px; }
  .percent-bar.negative {
    background: #ff007a; }
    .percent-bar.negative.top {
      background: #7f00ff; }

.button-green {
  display: inline-block;
  text-decoration: none;
  outline: none;
  background: #8ec919;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  padding: 0 20px;
  color: #000;
  border-radius: 3px;
  vertical-align: top; }
  .button-green:hover {
    text-decoration: none; }

.exchanges {
  display: block;
  margin: 0;
  padding: 0;
  list-style-type: none;
  height: 26px; }
  .exchanges li {
    display: block;
    float: left;
    margin-right: 5px;
    cursor: pointer;
    font-size: 11px;
    height: 26px;
    border: 1px solid #3d4d6d;
    border-radius: 5px;
    padding: 0 5px 0 0; }
    .exchanges li.current-cex {
      border-color: #a4a4a4;
      border-style: dashed; }
    .exchanges li:last-child {
      margin-right: 0; }
    .exchanges li span {
      display: inline-block;
      line-height: 26px;
      vertical-align: top; }

.form-col-6 {
  display: block;
  width: 50%;
  float: left; }
  .form-col-6--first {
    padding-right: 5px; }
  .form-col-6--second {
    padding-left: 5px; }

.form-col-12 {
  display: block;
  width: 100%;
  margin-bottom: 5px; }

.reload-page-changed {
  color: black;
  background: yellow;
  padding: 4px 10px;
  line-height: 20px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 900; }

/*# sourceMappingURL=wallet.css.map */
