
/* Toaster */
.toasted-container {
  .toasted.toasted-primary {
    min-width: 200px;
    min-height: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.15);
    @include normal-font;
    font-weight: bold;

    &.google-export{
      padding: 20px;
      padding-right: 35px;
      .close-toast{
        position:absolute;
        top:0;
        right: 0;
        background: url("../icons/reject.svg") no-repeat center;
        background-size: contain;
        width: 5px;
        height: 5px;
        margin-right: 10px;
        margin-top: 8px;
      }
    }
    &.success {
      background-color: $base-bg-color;
      color: $base-color;
      line-height: 22px;
    }
    &.error {
      background-color: $base-bg-color;
      color: $red;
      border: none;
      line-height: 22px;
    }
  }
}