
  .backend-card{
    flex-basis: 32rem;
    min-width: 33.5%;
    max-width: 45rem;
    flex-grow: 1;
    transition: opacity 0.5s ease-in-out;
  }


  .modal{
    width: calc(100% - 1rem);
    max-width: 45rem;
  }

  .input-wrap>label:first-child{
    margin-top: -0.3rem;
  }

  .input-wrap.error>label[data-error]::after{
    content: attr(data-error);
    color: #BC102C;
    font-weight: bold;
    font-size: 0.9rem;
    margin-left: 0.6rem;
  }

  .alert{
    width: calc(100% - 1rem);
    max-width: 45rem;
    position: relative;
    animation: 0.125s alert-slidein ease-out forwards;
    pointer-events: none;
    transition: margin 0.5s ease-out;
  }

  .alert.closing{
    animation: 0.5s alert-slideout ease-out forwards;
  }

  @keyframes alert-slidein {
    from {
      top: -50px;
      opacity: 0;
    }

    to {
      top: 0px;
      opacity: 1;
    }
  }

  @keyframes alert-slideout {
    from {
      top: 0px;
      opacity: 1;
    }

    to {
      top: -50px;
      opacity: 0;
    }
  }

  .async-confirm{
    max-width: 45rem;
  }

  .select-input {
    display: inline-block;
  }

  .select-input_select {
  }
