html {
  height: 100%;
}
body {
  background: #f5f5f5;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
}
img.svg path {
  color: blue;
  fill: blueviolet;
}

/* HEADER */
.nav-wrapper {
  margin-right: 1.5em;
}
@media (max-width: 767px) {
  .nav-wrapper {
    margin-right: 0;
  }
  nav ul a {
    padding: 0 0.75em;
  }
  nav .brand-logo {
    transform: none;
    left: 2em;
    font-size: 1.5em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 47%;
  }
}
@media (max-width: 1279px) {
  nav .brand-logo {
    transform: none;
    left: 3em;
  }
}
/* APP LAYOUT */
.page-wrapper {
  display: flex;
  flex: 1;
}
aside {
  background: #fff;
  transition: all 0.3s ease-in-out;
  box-shadow: 5px 0 5px -5px rgba(0, 0, 0, 0.2);
  width: 0px;
  height: 0px;
  overflow: hidden;
  transform: translate(-350px, 0px);
}
aside.active {
  width: 300px;
  height: auto;
  overflow: auto;
  transition: all 0.3s ease-in-out;
  transform: none;
}
.aside-overlay {
  display: none;
}
main {
  flex: 1;
  min-width: 0;
}

/* ASIDE NAVIGATION */
.aside-trigger {
  padding: 0 1.5em;
}
.aside-nav {
  margin: 0;
  box-shadow: none;
  border: 0;
}

.collapsible-header i.expand-icon {
  margin-left: auto;
  margin-right: 0;
}
.aside-nav .collapsible-body {
  padding: 0;
}
.aside-nav .collection-item {
  border: none;
}
aside .collection a.collection-item {
  color: unset;
}
/* NAVIGATION SEARCH FORM */
.nav-search-form form {
  position: absolute;
  top: 0;
  right: -1.5em;
  left: 0;
  z-index: 2;
  transition: all 0.3s ease-out;
  transform: translate(0px, -100px);
}
.nav-search-form.active form {
  transition: all 0.3s ease-out;
  transform: none;
}
.nav-search-form.active form #search {
  background: #fff;
}
.nav-search-form.active form .material-icons {
  color: #333;
}

@media (max-width: 767px) {
  .aside-trigger {
    padding: 0 0.75em;
  }
  .page-wrapper {
    display: block;
  }
  .nav-search-form form {
    right: 0;
  }
}
@media (max-width: 1279px) {
  aside {
    position: fixed !important;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
  }
  aside.active {
    position: fixed;
    background: #fff;
    z-index: 999;
    height: 100vh;
    top: 0;
    bottom: 0;
    left: 0;
    visibility: visible;
    opacity: 1;
  }

  aside.active + .aside-overlay {
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    backdrop-filter: blur(5px);
  }
}

/* SIDENAV SERVICES OVERLAY MENU */
nav .sidenav-trigger {
  margin: 0;
}
.sidenav {
  padding: 2em;
  width: 350px;

  backdrop-filter: blur(5px);
  background-color: rgb(255, 255, 255, 0.75);
}

.sidenav-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}
.services-card {
  min-width: 0;
  display: grid;
  grid-template-columns: auto;
  gap: 1em;
  margin: 0;
  cursor: pointer;
  border-radius: 0.5em;
  overflow: hidden;
  padding: 1em;
  background-color: transparent !important;
}

.services-icon {
  display: grid;
  place-items: center;
}
.services-icon i,
.services-icon img,
.services-icon svg {
  font-size: 40px;
  height: 40px;
  width: 40px;
}
.services-content {
  text-align: center;
}
.services-title {
  font-size: 1em;
  margin: 0;
}
.services-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.24), 0 7px 7px -5px rgba(0, 0, 0, 0.2);
}

.services-card.blue:hover {
  /* box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.14),
    0 7px 10px -5px rgba(0, 188, 212, 0.4); */
  background-color: rgba(0, 188, 212, 0.15) !important;
}

.services-card.orange:hover {
  /* box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.14),
    0 7px 10px -5px rgba(255, 152, 0, 0.4); */
  background-color: rgba(255, 152, 0, 0.15) !important;
}

.services-card.red:hover {
  /* box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.14),
    0 7px 10px -5px rgba(244, 67, 54, 0.4); */
  background-color: rgba(244, 67, 54, 0.15) !important;
}

.services-card.purple:hover {
  /* box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.14),
    0 7px 10px -5px rgba(156, 39, 176, 0.4); */
  background-color: rgba(156, 39, 176, 0.15) !important;
}

.services-card.pink:hover {
  /* box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.14),
    0 7px 10px -5px rgba(233, 30, 99, 0.4); */
  background-color: rgba(233, 30, 99, 0.15) !important;
}

.services-card.grey:hover {
  /* box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.24),
    0 7px 10px -5px rgba(0, 0, 0, 0.2); */
  background-color: rgba(0, 0, 0, 0.15) !important;
}
.services-card.green:hover {
  /* box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.14),
    0 7px 10px -5px rgba(76, 175, 80, 0.4); */
  background-color: rgba(76, 175, 80, 0.15) !important;
}
@media (max-width: 767px) {
  .sidenav {
    padding: 1em;
  }
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2em;
  margin: 1em;
}
.filter-item {
  min-width: 0;
}
.filter-submit {
  align-self: center;
}
@media (max-width: 767px) {
  .filter-grid {
    grid-template-columns: auto;
  }
}
@media (max-width: 1279px) {
  .filter-grid {
    gap: 1em;
    padding: 1em;
  }
}

/* BREADCRUMBS */

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1em;
}
.breadcrumbs-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
a.breadcrumb-item {
  display: flex;
  align-items: center;
  color: #333;
}
a.breadcrumb-item:first-child::before {
  display: none;
}
a.breadcrumb-item:last-child {
  color: inherit;
}
.breadcrumb-item::before {
  content: "\E5CC";
  color: #333;
  display: inline-block;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 1.4em;
  margin: 0 0.5em;
}

.breadcrumb-input > .input-field {
  margin: 0;
}

@media (max-width: 767px) {
  .breadcrumb-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .breadcrumb-input {
    align-self: flex-end;
  }
}
.table-wrapper-outer {
  padding: 0 1em;
  overflow: hidden;
}
.table-wrapper {
  overflow: auto;
  width: 100%;
}
.data-table-section {
  margin: 1em;
}
.data-table-section tr > td:first-child,
.data-table-section tr > th:first-child {
  padding-left: 15px;
}

table tr td:first-child {
  /* white-space: nowrap; */
}

/* FOOTER */
.page-footer {
  padding-top: 0;
  background-color: #fff;
  color: unset;
  margin-top: auto;
}
.page-footer .footer-copyright {
  padding-right: 1.5em;
  padding-left: 1.5em;
  color: initial;
  background-color: #fff;
}
.footer-copyright img {
  height: 2em;
  width: auto;
}
@media (max-width: 767px) {
  .page-footer .footer-copyright {
    display: flex;
    flex-direction: column;
    line-height: 3;
  }
}

/* LOGIN PAGE */
.full-page-wraper {
  display: flex;
  flex: 1;
}
.login-page-wrapper {
  margin: auto;
  max-width: 800px;
}

.login-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.login-form {
  padding: 2em;
}
.login-form-image {
  text-align: center;
}
.login-form-image img {
  height: 4em;
}

.login-form-subtitle {
  text-align: center;
  font-size: 1.3em;
  margin: 1em 0 2em 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.login-subtitle-logo {
  line-height: 0;
  margin: 0 7px;
}
.login-subtitle-logo img {
  height: 1.3em;
}
.login-remember {
  padding-left: 7px;
}
.login-action .btn {
  display: block;
  width: 100%;
  margin: 1em 0;
}
.forgot-password {
  text-align: center;
}

.full-page-wraper.login-page {
  background: linear-gradient(
      45deg,
      rgb(0, 198, 255, 0.5),
      rgb(0, 114, 255, 0.5)
    ),
    url(../images/bg-pattern-dark.png);
}

/* Login Captcha */
/* .login-captcha {
  display: flex;
  align-items: center;
  margin-top: -1rem;
  margin-bottom: 2em;
  margin-left: -3em;
  margin-right: -3em;
  padding: 0 3em;
  box-sizing: border-box;
  justify-content: flex-start;
} */
.login-captcha {
  display: grid;
  grid-template-areas: "refresh image input";
  grid-template-columns: 2.5em 150px 1fr;
  width: 100%;
  gap: 0.5em;
}
/* .captcha-img {
  line-height: 0;
  margin-left: 7px;
} */
.captcha-img {
  line-height: 0;
  grid-area: image;
  width: 150px;
  object-fit: cover;
  height: 3rem;
}
/* .captcha-img img {
  width: 100px;
  height: auto;
} */
.login-captcha .input-field {
  margin: 0;
  margin-left: 0.5em;
}
.captcha-input-wrapper {
  margin-left: 1em;
}
.captcha-input {
  margin: 0 !important;
  box-sizing: border-box !important;
}
.login-captcha a.btn-floating {
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
  margin-left: -5px;
  grid-area: refresh;
}
.login-captcha a.btn-floating i {
  color: #333;
  font-size: 2rem;
}
input#CaptchaInputText {
  grid-area: input;
  margin: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .login-form {
    min-width: 400px;
    padding: 3em;
  }
}
@media (max-width: 767px) {
  .login-page-wrapper {
    width: 90%;
  }
  .login-form {
    padding: 2em 1em;
  }
}

/* Settlements Page  */
.main-content-wrapper {
  margin: 1em;
}
.card .card-action.card-top-action {
  border-top: 0;
  border-bottom: 1px solid rgba(160, 160, 160, 0.2);
  display: flex;
}
.input-field.compact {
  margin: 0;
}
.input-field.compact input,
.input-field.compact textarea {
  margin: 0;
}

.settlements-content .card-top-action {
  display: flex;
  align-items: center;
}
.settlements-content .card-top-action .btn {
  margin-left: 1em;
}
.settlements-content .card-top-action .input-field {
  margin-bottom: 0;
  margin-right: auto;
}
.settlements-content .card-top-action .input-field input {
  margin-bottom: 0;
}

.settlements-content h5 {
  font-size: 1.3em;
  margin: 0.25em 0.5em;
}
.settlements-content.card .card-content {
  padding-top: 0;
  padding-bottom: 0;
}
.settlements-content .card-section {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 300px 1fr max-content;
  gap: 1em;
}
.settlements-content .collection {
  margin: 0;
  border: 1px solid #e0e0e0;
}
.card-content .collapsible-body {
  padding: 1em;
}

.triggered {
  display: flex;
  align-items: center;
}
.triggered > .switch {
  margin-left: 1em;
}
.modal.modal-large {
  width: auto;
  max-width: 80%;
  height: 90%;
  max-height: 90%;
}

.modal-header {
  padding: 0.5em 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  background-color: #fff;
}
.table-actions {
  display: flex;
  align-items: center;
}
.table-search {
  display: flex;
  align-items: center;
  position: relative;
}
.table-search i {
  position: absolute;
  left: 0;
  margin: 0;
  padding: 0 0.5em;
  line-height: 1.7;
}
.table-search input {
  padding-left: 3em !important;
  margin: 0 !important;
  border: 1px solid #9e9e9e !important;
  border-radius: 3px !important;
  box-sizing: border-box !important;
  height: 2.5em !important;
}
.table-actions > a {
  margin-left: 1em;
}
.modal.modal-large.modal-data-table .modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 1em !important;
}
.modal-footer .pagination {
  margin: 0 !important;
}
.modal-footer .input-field.table-pages {
  display: flex;
  align-items: center;
}
.modal-footer .input-field.table-pages .select-wrapper {
  margin: 0 1em;
  width: 4em;
}
.modal-footer .input-field.table-pages input.select-dropdown {
  border: 1px solid #9e9e9e !important;
  padding: 0.5em;
  box-sizing: border-box;
  height: 2em;
  border-radius: 2px;
}

.modal-data-table .modal-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    z-index: 2;
}
.modal.modal-fixed-footer.modal-data-table .modal-content {
  position: static;
  height: calc(100% - 112px);
  max-height: 100%;
  overflow: auto;
  padding: 0;
}

.modal-data-table .modal-footer {
  position: sticky;
  bottom: 0;
}

.modal-data-table table th {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .settlements-content .card-top-action {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    padding: 1em;
  }
  .settlements-content .card-top-action .input-field {
    grid-column: 1/ -1;
  }
  .settlements-content .card-top-action .btn {
    margin: 0;
  }
  .settlements-content .card-section {
    grid-template-columns: auto;
    /* padding: 1em; */
    justify-content: stretch;
  }
  .card-type-action {
    text-align: right;
  }

  /* Modal  */
  .modal-data-table .modal-header {
    white-space: nowrap;
    overflow: auto;
  }
  .modal-data-table .table-actions {
    margin-left: 2em;
  }
  .modal-data-table .table-search input {
    min-width: 200px;
  }
  .modal-data-table .table-actions > a {
    min-width: max-content;
  }
  .modal-data-table .table-actions > .modal-close {
    margin-right: 1em;
  }
  .modal.modal-large.modal-data-table .modal-footer {
    white-space: nowrap;
    overflow: auto;
  }
  .modal-footer .pagination {
    margin: 0 3em !important;
  }
  .modal-footer .input-field.table-pages {
    padding-right: 1em;
  }
}

/* Animation */
.btn.spinning i {
  animation-name: spin;
  animation-duration: 3000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* MERCHANT PAYMENT PAGE */
.tabs-section {
  margin: 0 1em;
}
.tabs-section .tabs {
  margin-bottom: 1em;
}
.action-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}
.filter-area,
.export-area {
  display: flex;
  align-items: center;
  padding: 1em;
  background: #fff;
  border-radius: 2px;
  flex-wrap: wrap;
}
.filter-area > .input-field {
  margin-bottom: 0;
}
.filter-area > .input-field input {
  margin-bottom: 0;
}
.filter-area > a {
  margin-left: 1em;
  align-self: flex-end;
  margin-bottom: 0.5em;
}

.export-area label {
  margin-right: 2em;
}
.export-area [type="checkbox"] + span:not(.lever) {
  padding-left: 2em;
}
.export-area .btn {
  margin-left: auto;
}

.results-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  margin: 1em 0;
  align-items: start;
}

.results-section .collapsible-body {
  padding: 1em;
}

.triggers {
  display: grid;
  grid-template-columns: auto;
  gap: 0.5em;
  margin-left: auto;
}
table caption {
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  padding: 1em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .action-section {
    grid-template-columns: auto;
  }
  .filter-area,
  .export-area {
    flex-wrap: wrap;
  }
  .export-area .btn {
    flex-basis: 100%;
    margin-top: 1em;
  }
  .filter-area > .input-field {
    width: 50%;
  }
  .filter-area > a {
    align-self: flex-end;
    margin-bottom: 0;
    width: calc(50% - 1em);
  }
  .triggers {
    margin-left: 0;
    display: grid;
    margin-top: 1em;
    grid-template-columns: auto;
    width: 100%;
  }
  .triggers > a {
    width: 100%;
  }
  .results-section {
    grid-template-columns: auto;
  }
}

.modal.bottom-sheet.full-page-sheet {
  height: 100%;
  max-height: 100%;
}

/* GENERAL UTILITIES */
.overflow-auto {
  overflow: auto;
}

/* MARGIN UTILITIES */
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 1em;
}
.mx-1 {
  margin-top: 1em;
  margin-bottom: 1em;
}
.mt-1 {
  margin-top: 1em;
}
.mr-1 {
  margin-right: 1em;
}
.ml-1 {
  margin-left: 1em;
}
.ml-auto {
  margin-left: auto;
}
.mr-auto {
  margin-right: auto;
}
.mb-0 {
  margin-bottom: 0 !important;
}

/* PADDING UTILITIES */
.p-1 {
  padding: 1em;
}
.pl-1 {
  padding-left: 1em;
}
.pr-1 {
  padding-right: 1em;
}
.px-1 {
  padding-left: 1em;
  padding-right: 1em;
}

.inline-radio label {
  margin-right: 1em;
}
.inline-text-input {
  display: flex;
}
.inline-text-input .input-field {
  margin-right: 1em;
}
table.th-nowrap th {
  white-space: nowrap;
}
.table-wrapper.page-height {
  height: calc(100vh - 190px);
  position: relative;
}

@media (max-width: 767px) {
  .toggle-div {
    margin: 1em 0;
  }
  .recovery-page .filter-area > a.btn {
    margin-left: 0;
  }
}

td.table-checkbox label span {
  height: 20px !important;
  line-height: 20px !important;
  margin-top: 7px;
}

.data-table-action-bar {
  display: flex;
  padding: 0.5em 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.text-capitalize {
  text-transform: capitalize;
}

.data-actions {
  display: flex;
  align-items: center;
}

/* .data-actions > a {
  margin-right: 0.5em;
} */

.data-table-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 1em;
}
.data-table-footer-bar .pagination {
  margin: 0 !important;
}

.data-table-footer-bar .input-field.table-pages {
  display: flex;
  align-items: center;
}
.data-table-footer-bar .input-field.table-pages .select-wrapper {
  margin: 0 1em;
  width: 4em;
}
.data-table-footer-bar .input-field.table-pages input.select-dropdown {
  border: 1px solid #9e9e9e !important;
  padding: 0.5em;
  box-sizing: border-box;
  height: 2em;
  border-radius: 2px;
}

/* .table-wrapper table,
.modal-data-table table {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
} */

/* .table-wrapper th,
.table-wrapper td,
.modal-data-table th,
.modal-data-table td {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
} */
.table-wrapper th,
.modal-data-table th {
  border-radius: 0;
  padding: 1em;
  background-color: #fff;
  border-bottom: 1px solid;
}

@media (max-width: 767px) {
  .data-table-action-bar,
  .data-table-footer-bar {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
}

input[type="search"].table-column-search {
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  height: 2em;
  min-width: 3em;
  border-radius: 2px;
  padding-right: 0.5em;
  padding-left: 0.5em;
}

.expandable-btn {
  position: relative;
  transition: all 0.3s;
}
.expandable-btn .exp-btn-icon {
  max-width: 999px;
  max-height: 999px;
  display: block;
  transition: all 0.3s ease-in-out;
}
.expandable-btn:hover .exp-btn-icon {
  display: block;
  max-width: 0px;
  max-height: 0px;
  font-size: 0px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}

.expandable-btn > .exp-btn-text::before {
  content: attr(data-hover);
  display: block;
  transition: all 0.3s;
  max-width: 0px;
  max-height: 0px;
  font-size: 0px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}
.expandable-btn:hover > .exp-btn-text::before {
  content: attr(data-hover);
  display: block;
  transition: all 0.3s;
  max-width: 999px;
  max-height: 999px;
  font-size: 1em;
  visibility: visible;
  opacity: 1;
}

/* AUTO VOUCHER PAGE */
tfoot > tr > td {
  position: sticky;
  background: #fff;
}

tfoot > tr:last-child > td {
  bottom: 0;
}
tfoot > tr:nth-last-child(2) > td {
  bottom: 2.5rem;
  box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.12);
  border-radius: 0;
}

@media (max-width: 767px) {
  .auto-voucher-page .filter-area > .input-field {
    width: 100%;
    margin: 1em 0;
  }
  .auto-voucher-page .filter-area > a {
    margin: 0;
    width: 100%;
  }
  .auto-voucher-page .filter-area > button {
    margin: 0;
    margin-top: 1em;
    width: 48%;
  }
  .auto-voucher-page .filter-area > button:last-child {
    margin-left: 4%;
  }
}

/* TRAIL BALANCE PAGE */
input.table-input {
  margin: 0 !important;
  border: 1px solid #9e9e9e !important;
  box-sizing: border-box !important;
  border-radius: 2px !important;
  line-height: 1 !important;
  height: auto !important;
  padding: 0.25em 0.5em !important;
  min-width: 10px !important;
  max-width: 100% !important;
  width: auto !important;
}

/* GL MANAGEMENT PAGE */
.table-title {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .table-actions > .btn {
    min-width: max-content;
  }
  .filter-area > .input-field {
    width: 100%;
    margin-bottom: 1em;
  }
  .filter-area > .btn {
    margin: 1em 0;
    width: 100%;
    margin-bottom: 1em;
  }
}

/* BALANCE SHEET PAGE */
.collapsible-group-title {
  padding: 1em 1.5em;
  /* text-transform: uppercase; */
  border-bottom: 1px solid #000;
  font-weight: bold;
}
.collapsible-group .collapsible {
  box-shadow: none;
  margin: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
}

.total-row {
  justify-content: space-between;
  font-weight: bold;
  color: #000;
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  margin: 0;
}
.diff-row {
  grid-column: 1/-1;
  margin: 0;
  margin-bottom: 1em;
}
.first-total {
  display: flex;
  justify-content: space-between;
}
.text-right {
  text-align: right;
}
.diff-row strong {
  font-weight: bold;
}
.results-section h5 {
  text-align: center;
}

@media (max-width: 767px) {
  .filter-area > .export-dropdown {
    margin-top: 1em;
  }
}
