  .funkBulletin{
    position: relative;
    margin-right: 30px;
  }
  
  .funkBulletin .icon_wrap i{
    cursor: pointer;  
    font-size: 30px;
  }
  
  .funkBulletin .icon_wrap:hover{
    color: #3b80f9;
  }

  .funkBulletin .bulletinMenu{
    position: absolute;
    top: 48px;
    right: -15px;
    user-select: none;
    background: #fff;
    border: 1px solid #c7d8e2;
    width: 350px;
    height: auto;
    display: none;
    border-radius: 3px;
    box-shadow: 10px 10px 35px rgba(0,0,0,0.125),
                -10px -10px 35px rgba(0,0,0,0.125);
    z-index: 1000;
  }
  
  .funkBulletin .bulletinMenu:before{
      content: "";
      position: absolute;
      top: -20px;
      right: 15px;
      border: 10px solid;
      border-color: transparent transparent #fff transparent;
  }
  
  .funkBulletin .bulletinMenu li {
      border-bottom: 1px solid #f1f2f4;
      padding: 10px 20px;
      display: flex;
      align-items: center;
  }
    
  .funkBulletin .bulletinMenu li .notify_data{
    margin: 0 15px;
    width: 185px;
  }
  
  .funkBulletin .bulletinMenu li .notify_data .title{
    color: #000;
    font-weight: 600;
  }
  
  .funkBulletin .bulletinMenu li .notify_data .sub_title{
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 5px;
  }
  
  .funkBulletin .bulletinMenu li .notify_status p{
    font-size: 12px;
  }
  
  .funkBulletin .bulletinMenu li.success .notify_status p{
    color: #47da89;
  }
  
  .funkBulletin .bulletinMenu li.failed .notify_status p{
    color: #fb0001;
  }
  
  .funkBulletin .bulletinMenu li.show_all{
    padding: 20px;
    display: flex;
    justify-content: center;
  }
  
  .funkBulletin .bulletinMenu li.show_all p{
    font-weight: 700;
    color: #3b80f9;
    cursor: pointer;
  }
  
  .funkBulletin .bulletinMenu li.show_all p:hover{
    text-decoration: underline;
  }

  .funkBulletin.active .bulletinMenu{
  display: block;
}

  .badge {
    display: inline-block;
    position: absolute;
    top:-.75rem;
    right:-1rem;  
    padding: .35em .65em;
    font-size: .4em;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

.bg-red {
    background: rgba(255,0,0,1);
    color: #ffffff;
}

.bg-green {
    background: rgba(60,179,0,1);
    color: #ffffff;
}

.bg-yellow {
    background: rgba(255,217,0,1);
    color: #000;
}
