.allegati_table {
  .allegati_wrapper {
    position: relative;
    padding: 0;
    border: none!important;

    .accordion-group {
      margin: 2px!important;
      cursor: pointer;
    }
  }
  .num_allegati {
    position: absolute;
    top: 6px;
    right: 8px;
    z-index: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    @include display-flex();
    @include justify-content(center);
    @include align-items(center);
    color: $w;

    &.green {
      background-color: $green-menu;
    }
    &.orange {
      background-color: $orange-menu;
    }
  }

  .nome_file{
    @include display-flex();
    @include align-items(center);
    @include justify-content(space-between);

    .nessun_allegato {
      padding-top: 15px;
      padding-bottom: 15px;
    }

    &:not(:last-child){
      border-bottom: 1px solid #ddd;
    }
  }
}