
  /* common post sidebar section title  */

  .widget .widgettitle{
    position: relative;
}

.widget .widgettitle::before{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: rgba(0, 0, 0, 0.226);
}

.widget .widgettitle::after{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 2px;
    width: 15%;
    background: #1091FF;
    transition: all linear 0.3s;;
}
.widget:hover .widgettitle::after{
    width: 100%;
}
