.acc-block {
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.233);
    cursor: pointer;
  }
  
  .acc-title {
    font-size: 50px;
    text-align: center;
  }
  
  .acc-holder {
    margin: 0 50px;
  }
  
  .acc-no {
    color: #eb4f1a;
    font-size: 50px;
  }
  
  .acc-toggle-icon {
    color: #383838;
    font-size: 50px;
  }
  
  .list-holder {
    padding: 0;
    margin: 10px 0;
  }
  
  .list {
    padding: 4px 0;
    list-style: none;
    text-align: center;
    font-size: 20px;
  }
  
  .list:first-child {
    padding-top: 40px;
  }
  
  .list:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
  }
  
  [data-collapsible] {
    cursor: pointer;
  }
  
  .heightZero {
    height: 0px;
  }
  
  table {
    width: 100%;
    text-align: center;
    line-height: 40px;
  }
  
  th {
      width: 25%;
  }
  
  
  
  /*
      Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically.
      */
  @media only screen and (max-width: 760px),
    (min-device-width: 768px) and (max-device-width: 1024px) {
    /* Force table to not be like tables anymore */
    table,
    thead,
    tbody,
    th,
    td,
    tr {
      display: block;
    }
  
    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
      position: absolute;
      top: -9999px;
      left: -9999px;
    }
  
    tr {
      margin: 0 0 1rem 0;
    }
  
    tr:nth-child(odd) {
      background: #ccc;
    }
  
    td {
      /* Behave  like a "row" */
      border: none;
      border-bottom: 1px solid #eee;
      position: relative;
      padding-left: 50%;
    }
  
    td:before {
      /* Now like a table header */
      position: absolute;
      /* Top/left values mimic padding */
      top: 0;
      left: 6px;
      width: 45%;
      padding-right: 10px;
      white-space: nowrap;
    }
  
    /*
        Label the data
    You could also use a data-* attribute and content for this. That way "bloats" the HTML, this way means you need to keep HTML and CSS in sync. Lea Verou has a clever way to handle with text-shadow.
        */
    td:nth-of-type(1):before {
      content: "Name";
    }
    td:nth-of-type(2):before {
      content: "Department/Institute";
    }
    td:nth-of-type(3):before {
      content: "Course";
    }
    td:nth-of-type(4):before {
      content: "Batch";
    }
    td:nth-of-type(5):before {
      content: "Wars of Trek?";
    }
    td:nth-of-type(6):before {
      content: "Secret Alias";
    }
    td:nth-of-type(7):before {
      content: "Date of Birth";
    }
    td:nth-of-type(8):before {
      content: "Dream Vacation City";
    }
    td:nth-of-type(9):before {
      content: "GPA";
    }
    td:nth-of-type(10):before {
      content: "Arbitrary Data";
    }
  }
  
  @media only screen and (max-width: 414px) {
    .acc-block {
      font-size: 20px;
      padding: 10px;
    }
    .list-holder .list {
      font-size: 20px;
    }
    .list:first-child {
      padding-top: 10px;
    }
  
    .list:last-child {
      padding-bottom: 10px;
    }
  
    .acc-title,
    .acc-no,
    .acc-toggle-icon {
      font-size: 15px;
      text-align: center;
    }
  
    .acc-title {
      margin: 0 10px;
    }
  
    .acc-block {
      width: 100%;
      height: 100px;
      display: flex;
      justify-content: space-between;
      padding: 10px;
      align-items: center;
      border-bottom: 1px solid rgba(0, 0, 0, 0.233);
      cursor: pointer;
    }
  
    .acc-holder {
      margin: 0px 10px;
    }
  
    .list {
      padding: 4px 0;
      list-style: none;
      text-align: center;
      font-size: 15px !important;
    }
  }
  
  @media only screen and (max-width: 638px) and (min-width: 415px) {
    .acc-block {
      font-size: 20px;
      padding: 10px;
    }
    .list-holder .list {
      font-size: 20px;
    }
    .list:first-child {
      padding-top: 10px;
    }
  
    .list:last-child {
      padding-bottom: 10px;
    }
  
    .acc-title,
    .acc-no,
    .acc-toggle-icon {
      font-size: 18px;
      text-align: center;
    }
  
    .acc-title {
      margin: 0 10px;
    }
  
    .acc-block {
      width: 100%;
      height: 100px;
      display: flex;
      justify-content: space-between;
      padding: 10px;
      align-items: center;
      border-bottom: 1px solid rgba(0, 0, 0, 0.233);
      cursor: pointer;
    }
  
    .acc-holder {
      margin: 0px 10px;
    }
  
    .list {
      padding: 4px 0;
      list-style: none;
      text-align: center;
      font-size: 15px !important;
    }
  }
  
  @media only screen and (max-width: 834px) and (min-width: 639px) {
    .acc-block {
      font-size: 20px;
      padding: 10px;
    }
    .list-holder .list {
      font-size: 20px;
    }
    .list:first-child {
      padding-top: 10px;
    }
  
    .list:last-child {
      padding-bottom: 10px;
    }
  
    .acc-title,
    .acc-no,
    .acc-toggle-icon {
      font-size: 15px;
      text-align: center;
    }
  
    .acc-title {
      margin: 0 10px;
    }
  
    .acc-block {
      width: 100%;
      height: 100px;
      display: flex;
      justify-content: space-between;
      padding: 10px;
      align-items: center;
      border-bottom: 1px solid rgba(0, 0, 0, 0.233);
      cursor: pointer;
    }
  
    .acc-holder {
      margin: 0px 30px;
    }
  
    .list {
      padding: 4px 0;
      list-style: none;
      text-align: center;
      font-size: 15px !important;
    }
  }
  
  @media only screen and (max-width: 1220px) and (min-width: 835px) {
    .acc-block {
      font-size: 30px;
      padding: 30px;
    }
    .list-holder .list {
      font-size: 20px;
    }
    .list:first-child {
      padding-top: 10px;
    }
  
    .list:last-child {
      padding-bottom: 10px;
    }
  
    .acc-title,
    .acc-no,
    .acc-toggle-icon {
      font-size: 25px;
      text-align: center;
    }
  
    .acc-title {
      margin: 0 10px;
    }
  
    .acc-block {
      width: 100%;
      height: 100px;
      display: flex;
      justify-content: space-between;
      padding: 20px;
      align-items: center;
      border-bottom: 1px solid rgba(0, 0, 0, 0.233);
      cursor: pointer;
    }
  
    .acc-holder {
      margin: 0px 50px;
    }
  
    .list {
      padding: 4px 0;
      list-style: none;
      text-align: center;
      /* font-size: 15px !important; */
    }
  }
  
  @media only screen and (max-width: 1820px) and (min-width: 1366px) {
  }
  