/* --- table --- */
.applications__table{
  width: 100%;
  margin-bottom: 60px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}

.applications__table th,
.applications__table td{
  padding: 20px 20px;
  width: 35%;
  box-sizing: border-box;
  line-height: 1.6;
}

.applications__table th{
  text-align: left;
  background-color: #c6d5d3;
}

.applications__table td:last-child{
  width: 20%;
  text-align: center;
}

@media screen and (min-width: 767.98px) {
  .applications__table th{
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #f9f7f3;
  }

  .applications__table tr:first-child th{
    border-top: 1px solid #ccc;
  }

  .applications__table tr:last-child th{
    border-bottom: 1px solid #ccc;
  }

  .applications__table td{
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }

  .applications__table tr:first-child td{
    border-top: 1px solid #ccc;
  }

  .applications__table tr:last-child th{
    border-bottom: 1px solid #ccc;
  }

  .applications__table tr:first-child th{
    border-top-left-radius: 10px;
  }


  .applications__table tr:first-child td:last-child{
    border-top-right-radius: 10px;
  }

  .applications__table tr:last-child td:last-child{
    border-bottom-right-radius: 10px;
  }

  .applications__table tr:last-child th{
    border-bottom-left-radius: 10px;
  }

}

@media screen and (max-width: 767.98px) {

  .applications__table, .applications__table tbody, .applications__table tr{
    display: flex;
    flex-wrap: wrap;
  }

  .applications__table tr{
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
  }

  .applications__table th{
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .applications__table td{
    padding: 10px;
    width: 60%;
    box-sizing: border-box;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-bottom-left-radius: 10px;
  }

  .applications__table td:last-child{
    width: 40%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 10px;
    border-left: none;
  }

}