.gp-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.gp-container-col {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}

.gp-20 {
  height: 20px;
  width: 20px;
}

.gp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: #212529;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 1px solid #f0f0f0;
  border-radius: 0.375rem;
  margin-bottom: 1.875rem;
}

.gp-card-body {
  flex: 1 1 auto;
  padding: 1.5rem;
  font-size: 13px;
}

.gp-card-header {
  padding: 0 0 20px;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
}

.gp-patient-summary {
  overflow: hidden;
}

.gp-patient-summary h3,
.gp-documents-header h3 {
  font-size: 17px;
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.gp-documents-header h3 {
  color: #3e3e3e;
  font-weight: 700;
  margin-bottom: 0;
}

.gp-patient-info {
  margin-top: 15px;
}

.gp-patient-info ul {
  list-style: none;
  font-size: .875rem;
  margin: 0;
  padding: 0;
	margin-bottom: 15px;
}

.gp-patient-info ul li {
  position: relative;
  font-size: .875rem;
  font-weight: 500;
  color: #272b41;
  text-transform: capitalize;
}

.gp-patient-info ul li span {
  color: #757575;
  float: right;
  font-weight: 400;
}

.gp-documents-header {
  text-align: left;
  padding: 0 0 20px 0;
}

.gp-documents-content {
  padding-top: 20px;
}

.gp-documents-content .gp-card {
  margin-bottom: 0;
}

.gp-documents-content .gp-container {
  gap: 15px;
}

.gp-documents-content .gp-card-body {
  padding: 0;
}

table.gp-table {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  color: #272b41;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
}

.gp-table th,
.gp-table tr,
.gp-table td {
  border: 0;
}

.gp-table th {
	text-align: left;
}

.gp-table tr td {
  border-top: 1px solid #e2e5e8;
  white-space: nowrap;
  padding: 1rem 0.75rem;
}

.gp-table tr td:last-child {
  text-align: right;
}

.gp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  background-color: #009efb;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.gp-btn:hover,
.gp-btn:focus {
  color: #ffffff;
  background-color: #047cc3;
}

.logout__btn {
    padding: 0.25rem 1.5rem;
    background-color: red;
    width: auto;
    color: #ffffff;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    font-size: 0.875rem;
	border-radius: 0.25rem;
}

@media (min-width: 768px) {
  .gp-btn {
    display: inline-flex;
  }
  .gp-col-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
  }
  .gp-col-7 {
    flex: 0 0 auto;
    width: 50%;
    flex-grow: 1;
  }
  .gp-table tr th:first-child,
  .gp-table tr td:first-child {
    padding-left: 1.5rem;
  }
}

@media (min-width: 992px) {
  .gp-col-5 {
      flex: 0 0 auto;
      width: 33.33333333%;
  }
}

@media (min-width: 1200px) {
  .gp-col-5 {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media screen and (max-width: 767px) {
	
	.gp-container {
		flex-direction: column-reverse;
	}
  .gp-table {
    border: 0;
  }

  .gp-table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  .gp-table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  .gp-table td {
    display: block;
    font-size: 0.75rem;
    text-align: right;
  }

  .gp-table tr td:first-child {
    border-top: 0;
  }
  
  .gp-table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .gp-table td:last-child {
    border-bottom: 0;
  }
}