.sidebar .widget .categories li {
    padding: 15px 0;
  }

  .sidebar .widget {
    padding: 0 15px;
  }

  .shape-ex1 {
    font-size: 18px;
    display: grid;
    vertical-align: middle;
    position: relative;
  }

  .shape-ex1:after {
    content: '';
    width: 0%;
    height: 1px;
    border-bottom: 1px dashed rgb(255, 198, 0);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .8s ease;
  }

  .shape-ex1:hover::after {
    width: 100%;
  }

  /*button*/
  .button-52 {
    font-size: 16px;
    font-weight: 200;
    letter-spacing: 1px;
    padding: 0px 20px 5px;
    outline: 0;
    border: 1px solid #e3e3e3;
    cursor: pointer;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }

  .button-52:after {
    content: "";
    background-color: rgba(255, 200, 0, 0.5);
    width: 100%;
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 7px;
    left: 7px;
    transition: 0.2s;
  }

  .button-52:hover:after {
    top: 0px;
    left: 0px;
  }