.fade-and-slide-down {
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  transform: translateY(50px);
  opacity: 0;
  pointer-events: none;
}

.fl-wallet.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.fl-wallet.visible {
  opacity: 1;
}

.main {
  position: relative;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: white;
}

.fl-wallet {
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}

.wallet-header {
  position: relative;
  height: 40px;
}

.modal-close {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    pointer-events: auto;
    display: inline-block;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: 0;
    height: 24px;
    max-height: 24px;
    max-width: 24px;
    min-height: 24px;
    min-width: 24px;
    outline: none;
    position: relative;
    vertical-align: top;
    width: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.modal-close:before, .modal-close:after {
    background-color: white;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform-origin: center center;
}
.modal-close:before {
    height: 2px;
    width: 50%;
}
.modal-close:after {
    height: 50%;
    width: 2px;
}
.modal-close:hover, .modal-close:focus {
    background-color: rgba(255, 255, 255, 0.3);
}

.title.is-4 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.125;
    margin-bottom: 1.5rem;
}

.field:not(:last-child) {
    margin-bottom: 1rem;
}

.label {
    color: #ccc;
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.input.is-medium {
    font-size: 1.25rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: 1px solid #555;
    background-color: #333;
    color: white;
}

.buttons {
  margin-top: 1.5rem;
}

.button.is-primary.is-medium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-color: transparent;
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    background-color: #000;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
}

.button.is-primary.is-medium img {
    height: 30px;
}

.button.is-primary.is-medium:hover {
  background-color: #111;
}

.error {
  color: #ff3860;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.error.visible {
  display: block;
}