.main-container {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1340px;
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 1340px) {
  .main-container {
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .main-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.primary-button {
  width: fit-content;
  display: block;
  background-color: #12A8D5;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid #12A8D5;
  transition: 0.2s linear;
  color: #fff;
}
.primary-button:hover {
  background-color: #fff;
  color: #12A8D5;
}

.secondary-button {
  width: fit-content;
  display: block;
  background-color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid #fff;
  transition: 0.2s linear;
}
.secondary-button:hover {
  border-color: #12A8D5;
  color: #12A8D5;
}

.common-box-shadow {
  -webkit-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
}

.page-top {
  margin-top: 100px;
  position: relative;
  width: 100%;
}
.page-top__small .page-top-background {
  height: 231px;
}
.page-top__large .page-top-background {
  height: 662px;
}
@media only screen and (max-width: 575px) {
  .page-top__large .page-top-background {
    height: 465px;
  }
}
.page-top .page-top-background {
  z-index: -1;
  position: absolute;
  top: 0;
  width: 100%;
  overflow: hidden;
  border-bottom-right-radius: 150px;
  border-bottom-left-radius: 150px;
  transition: border-radius 0.2s linear;
}
@media only screen and (max-width: 1439px) {
  .page-top .page-top-background {
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .page-top .page-top-background {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
  }
}
.page-top .page-top-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-top .page-top-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  background: linear-gradient(75deg, #67C2E4 0%, #006D8E 100%);
  mix-blend-mode: multiply;
}
.page-top .page-top-title {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-top .page-top-title h1 {
  font-size: 45px !important;
  font-weight: 600;
  line-height: 150%;
  color: #fff;
}
@media only screen and (max-width: 1439px) {
  .page-top .page-top-title h1 {
    font-size: 32px !important;
  }
}
@media only screen and (max-width: 767px) {
  .page-top .page-top-title h1 {
    font-size: 24px !important;
  }
}

.inspection-results-page {
  overflow: hidden;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  flex: 1 1;
  margin-bottom: 100px;
}
.inspection-results-page .inspection-results-table-wrapper {
  height: fit-content;
  margin-bottom: 50px;
  width: 100%;
}
.inspection-results-page .inspection-results-table-wrapper .table-head {
  height: fit-content;
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  list-style-type: none;
  column-gap: 50px;
  row-gap: 20px;
}
.inspection-results-page .inspection-results-table-wrapper .table-head .table-head-dropdown-wrapper {
  font-size: 16px;
  line-height: 30px;
  color: #141E28;
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.inspection-results-page .inspection-results-table-wrapper .table-head .table-head-dropdown-wrapper span {
  display: flex;
}
.inspection-results-page .inspection-results-table-wrapper .table-head .table-head-dropdown-wrapper .table-head-dropdown {
  display: flex;
  font-weight: 600 !important;
}
.inspection-results-page .inspection-results-table-wrapper .table-head .table-head-dropdown-wrapper .table-head-dropdown select {
  font-weight: 600 !important;
  outline: none !important;
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: #12A8D5;
}
.inspection-results-page .inspection-results-table-wrapper .table-head .download-inspection-results {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: #67C2E4;
  text-decoration: underline;
  transition: 0.2s linear;
  font-size: 18px;
  line-height: 150%;
}
.inspection-results-page .inspection-results-table-wrapper .table-head .download-inspection-results:hover {
  color: #12A8D5;
}
.inspection-results-page .inspection-results-table-wrapper table {
  border: none !important;
  background-color: transparent !important;
  color: #141E28;
}
.inspection-results-page .inspection-results-table-wrapper table thead {
  width: 100%;
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
  border: 1px solid #12A8D5 !important;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-filtering {
  background-color: transparent !important;
  border: none !important;
  z-index: 1 !important;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-filtering th {
  padding-left: 0 !important;
  padding-right: 0 !important;
  background-color: transparent !important;
  border: none !important;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-filtering th form {
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  z-index: 1 !important;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-filtering th form .form-group {
  margin-bottom: 0 !important;
  z-index: 1 !important;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-filtering th form .form-group label {
  color: #141E28 !important;
  font-weight: 400 !important;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-filtering th form .form-group select {
  border-color: #12A8D5 !important;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-filtering th form .form-group .input-group {
  z-index: 1 !important;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-filtering th form .form-group .input-group input {
  border-color: #12A8D5 !important;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-filtering th form .form-group .input-group .input-group-btn .btn {
  background-color: #12A8D5 !important;
  border-color: #12A8D5 !important;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-filtering th form .form-group .input-group .input-group-btn .btn:hover {
  background-color: #67C2E4 !important;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-filtering th form .form-group .input-group .input-group-btn .dropdown-toggle {
  background-color: #fff !important;
  border-color: #12A8D5 !important;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-header {
  background-color: #12A8D5 !important;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-header th {
  background-color: #12A8D5 !important;
  padding: 9px 28px 11px 28px !important;
  font-size: 18px !important;
  line-height: 30px !important;
  color: #fff !important;
  vertical-align: center;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-header th:first-child {
  border-top-left-radius: 5px;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-header th:last-child {
  border-top-right-radius: 5px;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-header th:not(:last-child) {
  border-right: 1px solid #67C2E4;
}
.inspection-results-page .inspection-results-table-wrapper table thead .footable-header th .fooicon:before {
  background-color: #fff;
}
.inspection-results-page .inspection-results-table-wrapper table tbody {
  border-bottom-left-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  border: 1px solid #12A8D5 !important;
}
.inspection-results-page .inspection-results-table-wrapper table tbody tr {
  background-color: #fff;
}
.inspection-results-page .inspection-results-table-wrapper table tbody tr td {
  padding: 9px 28px 11px 28px !important;
  font-size: 18px !important;
  line-height: 30px !important;
  border-bottom: 1px solid #12A8D5;
  color: #141E28 !important;
}
.inspection-results-page .inspection-results-table-wrapper table tbody tr td:not(:last-child) {
  border-right: 1px solid #67C2E4;
}
.inspection-results-page .inspection-results-table-wrapper table tbody tr td:first-child {
  border-left: 1px solid #67C2E4;
}
.inspection-results-page .inspection-results-table-wrapper table tbody tr td:last-child {
  border-right: 1px solid #67C2E4;
}
.inspection-results-page .inspection-results-table-wrapper table tbody tr td div {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
.inspection-results-page .inspection-results-table-wrapper table tfoot {
  background-color: transparent !important;
}
.inspection-results-page .inspection-results-table-wrapper table tfoot tr {
  background-color: transparent !important;
}
.inspection-results-page .inspection-results-table-wrapper table tfoot tr td {
  background-color: transparent !important;
}
.inspection-results-page .inspection-results-table-wrapper .valid {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #26AC8C;
}
.inspection-results-page .inspection-results-table-wrapper .invalid {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #E71E1E;
}
.inspection-results-page .inspection-results-table-wrapper .pagination {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.inspection-results-page .inspection-results-table-wrapper .pagination [data-page=first], .inspection-results-page .inspection-results-table-wrapper .pagination [data-page=last] {
  display: none !important;
}
.inspection-results-page .inspection-results-table-wrapper .pagination .footable-page-nav.disabled[data-page=prev-limit],
.inspection-results-page .inspection-results-table-wrapper .pagination .footable-page-nav.disabled[data-page=next-limit] {
  display: none;
}
.inspection-results-page .inspection-results-table-wrapper .pagination .footable-page.active .footable-page-link, .inspection-results-page .inspection-results-table-wrapper .pagination .footable-page-nav.active .footable-page-link {
  background-color: #67C2E4;
  color: #fff;
}
.inspection-results-page .inspection-results-table-wrapper .pagination .footable-page .footable-page-link, .inspection-results-page .inspection-results-table-wrapper .pagination .footable-page-nav .footable-page-link {
  border-radius: 5px;
  border: 1px solid #12A8D5;
  background-color: #fff;
  color: #141E28;
  transition: all 0.2s linear;
  z-index: 1 !important;
}
.inspection-results-page .inspection-results-table-wrapper .pagination .footable-page .footable-page-link:hover, .inspection-results-page .inspection-results-table-wrapper .pagination .footable-page-nav .footable-page-link:hover {
  color: #fff;
  border: 1px solid #12A8D5;
  background-color: #67C2E4;
}
.inspection-results-page .inspection-results-table-wrapper .pagination .nt_customer_pager select {
  font-weight: 600 !important;
  outline: none !important;
  background-color: #fff;
  cursor: pointer;
  color: #12A8D5;
  border: 1px solid #12A8D5;
}

/*# sourceMappingURL=page-inspection-results.css.map */
