@charset "UTF-8";
/* 
* =====================
* Tip
* https://docs.siimple.xyz/elements/tip.html
* =====================
*/
.tip {
  display: block;
  position: relative;
  border-left: 5px solid #abc;
  border-radius: 5px;
  padding: 10px 20px 10px 25px;
  background-color: #eef2f7;
  color: #546778;
}
.tip:before {
  position: absolute;
  top: 10px;
  left: -14px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  background-color: #abc;
  border-radius: 100px;
  color: #fff;
  text-align: center;
}

.tip-success {
  border-left-color: #48c78e;
}
.tip-success:before {
  content: '✔';
  background-color: #48c78e;
}

.tip-danger {
  border-left-color: #f14668;
}
.tip-danger:before {
  content: '✖';
  background-color: #f14668;
}

.tip-warning {
  border-left-color: #ffa500;
}
.tip-warning:before {
  content: '!';
  background-color: #ffa500;
}

.tip-info {
  border-left-color: #3e8ed0;
}
.tip-info:before {
  content: '?';
  background-color: #3e8ed0;
}

/*# sourceMappingURL=tip.css.map */