.column-5 {
  flex: 0 0 20%;
  max-width: 20%;
}
@media screen and (min-width: 991px) {
  .column-lg-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media screen and (min-width: 767px) {
  .column-md-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media screen and (min-width: 576px) {
  .column-sm-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.column-6 {
  flex: 0 0 calc(100% / 6);
  max-width: calc(100% / 6);
}
@media screen and (min-width: 991px) {
  .column-lg-6 {
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
  }
}
@media screen and (min-width: 767px) {
  .column-md-6 {
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
  }
}

@media screen and (min-width: 576px) {
  .column-sm-6 {
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
  }
}

.column-7 {
  flex: 0 0 calc(100% / 7);
  max-width: calc(100% / 7);
}
@media screen and (min-width: 991px) {
  .column-lg-7 {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
  }
}
@media screen and (min-width: 767px) {
  .column-md-7 {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
  }
}

@media screen and (min-width: 576px) {
  .column-sm-7 {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
  }
}

.column-8 {
  flex: 0 0 calc(100% / 8);
  max-width: calc(100% / 8);
}
@media screen and (min-width: 991px) {
  .column-lg-8 {
    flex: 0 0 calc(100% / 8);
    max-width: calc(100% / 8);
  }
}
@media screen and (min-width: 767px) {
  .column-md-8 {
    flex: 0 0 calc(100% / 8);
    max-width: calc(100% / 8);
  }
}

@media screen and (min-width: 576px) {
  .column-sm-8 {
    flex: 0 0 calc(100% / 8);
    max-width: calc(100% / 8);
  }
}

.form-select,
.form-control,
.btn {
  font-size: 13px;
}
.list-body .form-check,.list-head .form-check {
  margin-bottom: 0;
  min-height: auto;
  padding-left: 0;
}
.form-check-input {
  margin-top: 0;
}
.list-body .form-check .form-check-input,.list-head .form-check .form-check-input {
  margin-left: 0;
}
@media screen and (min-width: 767px) {
  .modal-dialog {
    max-width: 800px;
  }
}
@media screen and (min-width: 576px) {
  .modal-dialog.max {
    max-width: calc(100% - 50px);
  }
}
.modal-dialog.max .col-3 {
  font-weight: bold;
}
#toast-body{
  font-size: 13px;
}
/* Paging */
.pagination-cus{
  margin-top: 30px;
}
.pagination-cus .page-item {
  margin: 0 4px;
}

.pagination-cus .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pagination-cus .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pagination-cus .page-item.active .page-link {
  background: var(--bs-success);
  color: white;
  border-color: var(--bs-success);
}

.pagination-cus .page-item:not(:first-child) .page-link {
  margin-left: 0;
}

.pagination-cus .page-link {
  color: var(--bs-success);
  font-size: 13px;
  border: 0.5px solid var(--bs-success) !important;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 0;
}
.pagination-cus .page-link i {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.pagination-cus .page-link:hover {
  z-index: 2;
  color: white;
  background-color: var(--bs-success);
  border-color: var(--bs-success);
}

/* Paging Ajax */
.pagination-ajax {
  text-align: center;
}

.pagination-ajax a {
  display: inline-block;
  vertical-align: top;
  margin: 0px 3px 3px 3px;
  width: 35px;
  height: 35px;
  line-height: 33px;
  color: #666 !important;
  border: 1px solid #e6e6e6;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none !important;
  background-color: #ffffff;
}

.pagination-ajax a.current,
.pagination-ajax a:hover {
  color: #ffffff !important;
  border-color: var(--bs-success);
  background-color: var(--bs-success);
}

.pagination-ajax a.first {
  text-indent: -9999px;
  position: relative;
  background-color: #ffffff !important;
}

.pagination-ajax a.first::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/page-first.png);
}

.pagination-ajax a.last {
  text-indent: -9999px;
  position: relative;
  background-color: #ffffff !important;
}

.pagination-ajax a.last::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/page-last.png);
}

.pagination-ajax a.prev {
  text-indent: -9999px;
  position: relative;
  background-color: #ffffff !important;
}

.pagination-ajax a.prev::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/page-prev.png);
}

.pagination-ajax a.next {
  text-indent: -9999px;
  position: relative;
  background-color: #ffffff !important;
}

.pagination-ajax a.next::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/page-next.png);
}

.jconfirm.jconfirm-material .jconfirm-box {
  padding: 20px 15px 5px 20px;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title{
  font: 17px SFUIText-Bold;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane{
  margin-bottom: 10px;
}

.jconfirm .jconfirm-box div.jconfirm-title-c{
  padding-bottom: 10px;
}

.jconfirm .jconfirm-box .jconfirm-buttons>button{
  font-family: SFUIText-Bold;
}