:local {
  .alert {
    padding: 10px;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    width: 500px;
    opacity: 0;
    transform: translate3d(0, 8px, 0);
    transform-origin: 50% 100%;
    transition: 0.2s ease-out;

    &.active {
      transform: translate3d(0, 0, 0);
      opacity: 1;
    }

    &Icon {
      margin-right: 4px;
    }

    &Text {
      font-size: 14px;
      color: #333;
    }
  }
}

:global {
  #bole-errors {
    position: absolute;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 24px;
    box-sizing: border-box;
    pointer-events: none;

    > div:not(:last-child) {
      margin-bottom: 12px;
    }
  }
}
