.minotaure-table{
display        : flex;
flex-wrap: wrap;
justify-content: flex-end;
align-items    : center;

  position: relative;
> div{
    width: 100%;
    display        : flex;
    justify-content: flex-end;
    align-items    : center;

    border-bottom: 1px solid $lightblue;

    padding: 20px 0;
    + .minotaure-table > div{
        margin-top: 20px;
      }
    
}
 

  &__head{
    flex: 1 25%;
    a:hover h3{
        color:$red;
    }
  }
  &__body{
    flex: 1 75%;

    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;

    .btn + .btn {
        margin-left: 20px;
    }
  }
}