@import '../var';

.cl-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  display: flex;
  color: $color-white;
  z-index: 3001;
  font-size: 12px;
  line-height: 1.2;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translate3d(-50%, -50%, 0);
  background-color: rgba(39, 39, 39, .7);
  
  &-wrapper {
    transition: opacity .2s;
  }
  
  &__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    background: transparent;
  }
  
  &--text {
    padding: 12px;
    min-width: 200px;
  }
  
  &--default {
    width: 100px;
    min-height: 90px;
    padding: 10px;
    
    .cl-toast__icon {
      font-size: 50px;
    }
    
    .cl-loading {
      margin: 10px 0 5px;
    }
    
    .cl-toast__text {
      font-size: 14px;
      padding-top: 10px;
    }
  }
}

.cl-toast-fade-enter, .cl-toast-fade-leave-to {
  // opacity: 0;
}