.table__container .table__sub__header {
  width: inherit;
  padding: 20px;
  border: 1px solid #e9e9e9;
  background: #fff;
  display: flex;
  justify-content: space-between;
}
.table__container .table__sub__header .table__length label {
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
}
.table__container .table__sub__header .table__length select {
  width: 50px;
  height: 25px;
  display: inline-block;
  border-radius: 5px;
  padding-left: 3px;
  margin: 0 5px;
}
.table__container .table__sub__header .table__length option {
  font-weight: normal;
  display: block;
  min-height: 1.2em;
  padding: 0px 2px 1px;
}
.table__container .table__sub__header .tables__filter .table__search {
  width: auto;
  height: 30px;
  padding-left: 5px;
  border-radius: 5px;
  border: 2px solid #73879c;
}
.table__container .table__sub__header .table__buttons button {
  color: white;
  font-size: 13px;
  background: #149d9b;
  border: none;
  border-radius: 2px;
  outline: none !important;
  margin-left: 10px;
  padding: 8px;
  cursor: pointer;
}
.table__container .table__sub__header .table__buttons button i {
  transform: scale(1.1);
  margin-right: 5px;
}
.table__container .table__sub__header .table__buttons button > a {
  text-decoration: none;
  color: inherit;
}
.table__container .table__title h2 {
  margin: 0;
  font-size: 24px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e9e9e9;
  background: #fff;
}
.table th {
  padding: 12px 10px;
  border: 1px solid #e9e9e9;
  background: #f7f7f6;
  font-weight: bold;
  text-align: center;
}
.table td {
  padding: 12px 10px;
  border: 1px solid #e9e9e9;
  text-align: center;
  max-width: 10%;
}
.table td span {
  display: flex;
  justify-content: center;
}
.table td span button {
  outline: none;
  border: none;
  background: none;
}
.table td span i.fa {
  color: #299be4;
  margin: 0 8px;
  cursor: pointer;
}
.table td span .fa-trash {
  color: #f65a6f !important;
  cursor: pointer;
}
.table tbody tr:nth-child(odd) {
  background-color: #fcfcfc;
}
.table tbody tr:hover {
  background-color: #f5f5f5;
}
.table .avatar-container {
  width: inherit;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.table .avatar-container > img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.table .avatar-container .avatar-name {
  font-size: 1rem;
  margin-left: 10px;
}
.table .status {
  font-size: 30px;
  margin: 2px 2px 0 0;
  display: inline-block;
  vertical-align: middle;
  line-height: 10px;
  color: #03a9f4;
}
.table__clearfix {
  background: #fff;
  padding: 5px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.table__clearfix .hint-text {
  font-size: 13px;
}
.table__clearfix .pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.table__clearfix .pagination li {
  margin: 0;
  cursor: pointer;
}
.table__clearfix .pagination span {
  min-width: 30px;
  min-height: 30px;
  border: 1px solid #e9e9e9;
  font-size: 13px;
  color: #999;
  margin: 0 5px;
  padding: 5px 15px;
  line-height: 30px;
  border-radius: 50% !important;
  text-align: center;
  text-decoration: none;
}
.table__clearfix .pagination span:hover {
  color: #666;
}
.table__clearfix .pagination .prev,
.table__clearfix .pagination .next {
  padding: 4px 6px !important;
  border-radius: 8% !important;
  border: none;
}
.table__clearfix .pagination .disabled {
  color: gray !important;
  pointer-events: none !important;
  text-decoration: none !important;
  cursor: not-allowed !important;
}
.table__clearfix .pagination .active span {
  background: #03a9f4;
  color: #fff;
}

/* Edit Modal */
.modal-header {
  background-color: #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.modal-title {
  font-size: 18px;
}

.modal-body {
  padding: 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.form-group label {
  text-align: left;
}

.form-control {
  margin-bottom: 10px;
}

.btn-success {
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success:hover {
  background-color: #449d44;
  border-color: #398439;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translateY(-100%);
}

.modal.fade.in .modal-dialog {
  transform: translateY(0);
}
