wallet-selector {
  display: flex;
  justify-content: center;
  .backdrop {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.1);
  }
  .wallet-selector {
    position: absolute;
    bottom: 0;
    max-height: 90vh;
    max-width: 50rem;
    width: calc(100% + 1px);
    overflow-y: scroll;
    background: white;
    box-shadow: 0px 2px 13px 3px rgba(0, 0, 0, 0.3);
    .error {
      color: color($colors, danger);
    }
    .wallet-button {
      background: none;
      .wallet-name {
        overflow: hidden;
        text-overflow: ellipsis;
      }
    }
  }
  .title {
    >img {
      vertical-align: sub;
      margin-right: 5px;
    }
  }
  .destination-title {
    width: 100%;
    text-align: center;
    font-weight: 700;
    margin: 10px 0;
    text-transform: uppercase;
  }
  .back-button {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid color($colors, light);
    ion-icon {
      padding: 1.5rem 20px 1.5rem 20px;
      cursor: pointer;
    }
  }
  .slider {
    /* only transition on transform properties which are hardware accelerated = way better performances */
    -webkit-transition:-webkit-transform .2s ease;
    -moz-transition:   -moz-transform .2s ease;
    -ms-transition:    -ms-transform .2s ease;
    transition:        transform .2s ease;
  }
  .opened {
    /* visible */
    -webkit-transform: translate(0, 0%);
    -moz-transform: translate(0, 0%);
    -ms-transform: translate(0, 0%);
    transform: translate(0, 0%);
  }
  .closed {
    /* completely offscreen */
    -webkit-transform: translate(0, 100%);
    -moz-transform: translate(0, 100%);
    -ms-transform: translate(0, 100%);
    transform: translate(0, 100%);
  }
  .wallet-warning {
    font-size: 11px;
    color: color($colors, danger);
  }
}
