@import '../var';

.cl-toptip {
  &-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 5px;
    font-size: 16px;
    text-align: center;
    transition: .2s ease-out;
  }
  
  &__error {
    background-color: $red-500;
  }
  
  &__success {
    background-color: $green-500;
  }
}

.cl-toptip-fade-enter, .cl-toptip-fade-leave-active {
  transform: translate3d(0, -100%, 0);
}