/* CSS */
.btn-custom {
    align-items: center;
    appearance: none;
    background-color: #fff;
    border-radius: 24px;
    border-style: none;
    box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
    box-sizing: border-box;
    color: #3c4043;
    cursor: pointer;
    display: inline-flex;
    fill: currentcolor;
    font-family: "Google Sans",Roboto,Arial,sans-serif;
    font-size: 14px;
    font-weight: 500;
    min-height: 48px;
    justify-content: center;
    letter-spacing: .25px;
    line-height: normal;
    max-width: 100%;
    overflow: visible;
    padding: 8px 24px;
    position: relative;
    text-align: center;
    text-transform: none;
    transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1),opacity 15ms linear 30ms,transform 270ms cubic-bezier(0, 0, .2, 1) 0ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: auto;
    will-change: transform,opacity;
    z-index: 0;
  }
  
  .btn-custom:hover {
    background: #F6F9FE;
    color: #174ea6;
  }
  
  .btn-custom:active {
    box-shadow: 0 4px 4px 0 rgb(60 64 67 / 30%), 0 8px 12px 6px rgb(60 64 67 / 15%);
    outline: none;
  }
  
  .btn-custom:focus {
    outline: none;
    border: 2px solid #4285f4;
  }
  
  .btn-custom:not(:disabled) {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
  }
  
  .btn-custom:not(:disabled):hover {
    box-shadow: rgba(60, 64, 67, .3) 0 2px 3px 0, rgba(60, 64, 67, .15) 0 6px 10px 4px;
  }
  
  .btn-custom:not(:disabled):focus {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
  }
  
  .btn-custom:not(:disabled):active {
    box-shadow: rgba(60, 64, 67, .3) 0 4px 4px 0, rgba(60, 64, 67, .15) 0 8px 12px 6px;
  }
  
  .btn-custom:disabled {
    box-shadow: rgba(60, 64, 67, .3) 0 1px 3px 0, rgba(60, 64, 67, .15) 0 4px 8px 3px;
  }

  .btn-spinner {
    display: inline-flex;
    align-items: center;
    cursor: wait;
  }
  
  .spinner {
    --size: 1.25em;
    --offset-r: calc(var(--size) * -1);
    --offset-l: 0;
    /* --opacity: 0; */
    position: relative;
    /* display: inline-flex; */
    height: var(--size);
    width: var(--size);
    margin-top: calc(var(--size) * -0.5);
    margin-right: var(--offset-r);
    margin-bottom: calc(var(--size) * -0.5);
    margin-left: var(--offset-l);
    box-sizing: border-box;
    border: 0.125em solid rgba(255, 255, 255, 0.333);
    border-top-color: white;
    border-radius: 50%;
    opacity: var(--opacity);
    transition: 0.25s;
    --width: 1em;
    --offset-r: 0.333em;
    --offset-l: -0.333em;
    --opacity: 1;
    animation: 0.666s load infinite;
  }
  
  .spinner-blue {
    --size: 1.25em;
    --offset-r: calc(var(--size) * -1);
    --offset-l: 0;
    /* --opacity: 0; */
    position: relative;
    /* display: inline-flex; */
    height: var(--size);
    width: var(--size);
    margin-top: calc(var(--size) * -0.5);
    margin-right: var(--offset-r);
    margin-bottom: calc(var(--size) * -0.5);
    margin-left: var(--offset-l);
    box-sizing: border-box;
    border: 0.125em solid rgba(255, 255, 255, 0.333);
    border-top-color: var(--color-background-custom-blue);
    border-radius: 50%;
    opacity: var(--opacity);
    transition: 0.25s;
    --width: 1em;
    --offset-r: 0.333em;
    --offset-l: -0.333em;
    --opacity: 1;
    animation: 0.666s load infinite;
  }

  @keyframes load {
    to {
      transform: rotate(360deg);
    }
  }