.reports {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.reports-main-container {
  /*display: none;*/
  width: 100%;
  padding: 40px 40px 40px 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* table container */
.reports-list-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: left;
  margin: 20px 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*
========================================================
                        Tablet
========================================================
*/
@media only screen and (max-width: 768px) {
  .reports-main-container {
    padding: 0px 20px 20px 20px;
  }

  .reports-list-container {
    margin: 20px 0px;
  }
}
