body {
  height: 100%;
}

.home-page-title {
  font-size: 45px;
}

.home-page-account-name {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.account-information-title {
  font-size: 20px;
  font-weight: bold;
}

.account-information-body {
  font-size: 20px;
}

.account-information-body-ul {
  font-size: 20px;
  list-style-type: none;
  padding: 0px;
  width: 100%;
}

.account-address-item {
  display: inline;
  white-space: nowrap;
  margin-right: 1em;
}

.dashboard-page {
  background-color: #f4f5f6;
  padding: 3em;
  font-family: 'Roboto', sans-serif;
  min-height: calc(100vh - 210px);
}

.dashboard-landing-page {
  background-color: #f4f5f6;
  padding: 3em;
  font-family: 'Roboto', sans-serif;
  min-height: 100vh;
}

.dashboard-title {
  color: var(--theme-color);
  font-weight: 500;
  font-size: 20px;
  display: inline;
}

.dashboard-title-container {
  padding: 1em;
  display: flex;
}

.dashboard-card-title {
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
}

.dashboard-card-body {
  font-size: 16px;
  padding-bottom: 10px;
  white-space: pre-line;
}

.dashboard-link {
  font-size: 16px;
  text-decoration: none;
  padding: 10px;
  color: #fff;
}

.dashboard-link:hover, .dashboard-link:visited {
  color: #fff;
}

.dashboard-page-card {
  background-color: #fff;
  margin: auto;
  padding: 1em;
  padding-left: 2em;
  padding-right: 2em;
  box-shadow: 0 0 5px rgb(0 0 0 / 0.2);
}

.dashboard-card-left {
  box-shadow: 0 0 5px rgb(0 0 0 / 0.2);
  margin-right: 20px;
  padding: 1em;
}

.dashboard-card-right {
  box-shadow: 0 0 5px rgb(0 0 0 / 0.2);
  padding: 1em;
}

.dashboard-card-link {
  box-shadow: 0 0 5px rgb(0 0 0 / 0.2);
  background-color: var(--theme-color);
  padding: 1em;
}

.dashboard-card-link:hover {
  opacity: 0.8;
}

.place-holder {
  color: #000;
}

.place-holder svg {
    margin-right: 20px;
}

.svg-icon-wrap {
  color: #000;
  display: flex;
  align-items: center;
}

.svg-icon-wrap svg {
  margin-right: 20px;
}

.pagination-list {
  list-style-type: none;
  padding-left: 0px;
  display: inline-flex;
  align-items: center;
  direction: ltr;
}

.pagination-list-item {
  display: inline-block;
}

.pagination-list-button-active {
  color: var(--theme-color);
  border: none;
  background-color: transparent;
}

.pagination-list-button-inactive {
  color: #707070;
  border: none;
  background-color: transparent;
}

.pagination-arrow-button {
  background-color: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  margin-left: 10px;
  margin-right: 10px;
}

.pagination-arrow-button-disabled {
  background-color: #d3d3d3;
  color: #fff;
  border: none;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  margin-left: 10px;
  margin-right: 10px;
}

.pagination-arrow-button:hover {
 opacity: 0.8;
}

.table-component {
  text-align: center;
}

.table-header-border {
  border-bottom: 3px solid var(--theme-color);
  ;
}

.table-header-item {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 1em;
}

.table-body-item {
  font-size: 16px;
}

.table-body-row {
  vertical-align: middle;
}

.table-footer-item {
  font-size: 16px;
  padding: 0px;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background: #707070;
  border-radius: 10px;
}

  ::-webkit-scrollbar-thumb:hover {
    background: rgb(54, 56, 58);
  }

.table-container {
  overflow: visible;
}

.table-title {
  color: var(--theme-color);
  margin-bottom: 1em;
}

.table-download-button {
  color: #fff;
  background-color: var(--theme-color);
  border: none;
  box-shadow: 0 0 5px rgb(0 0 0 / 0.2);
  border-radius: 5px;
  padding: 3px;
  width: 50px;
}

.table-download-button:hover {
  color: var(--theme-color);
  background-color: #fff;
}

.table-column-active {
  color: red;
}

.no-data-message-container {
  background-color: #f4f5f6;
  text-align: center;
  padding-top: 2em;
  padding-bottom: 2em;
}

.link-button {
  background-color: var(--theme-color);
  color: #fff;
  width: 150px;
  padding: 20px;
  border-radius: 30px;
  text-align: center;
  margin: auto;
}

.dashboard-button-link {
  text-decoration: none;
  color: transparent;
  width: 150px;
  display: block;
  margin: auto;
}

.link-button:hover {
  opacity: 0.8;
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  transition: opacity 200ms;
  color: #fff;
  text-align: center;
  padding: 5px 5px;
  border-radius: 2px;
  min-width: 350px;
  background: #5e5d5d;
  position: absolute;
  z-index: 1;
  height: auto;
  overflow: visible;
  top: -60px;
}

.tooltip-wrapper {
  position: relative;
}

.tooltip-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

::slotted(*):focus + .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.tooltip-button {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 0px;
  border: none;
  background-color: #707070;
  color: #fff;
}

.close-modal-body-button {
  color: #fff;
  background-color: var(--theme-color);
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 20px;
  margin: 0.5em;
  box-shadow: 0 0 5px rgb(0 0 0 / 0.2);
}

.close-modal-body-button:hover {
 opacity: 0.8;
}

.select-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 1em;
}

.select-container {
  display: block;
  margin: 0 auto 1em auto;
  width: max-content;
}

.home-consumption-select {
  border-style: solid;
  border-bottom: 3px solid var(--theme-color);
  background-color: #F2F2F2;
  padding: 5px;
  width: 15rem;
  height: 37px;
  border-top: none;
  border-right: none;
  border-left: none;
}

.home-consumption-select-disabled {
  width: 15rem;
  border-radius: 1rem;
  border-color: #808080;
  background-color: #f8f6f4;
  color: #000;
  height: 2rem;
  padding-left: 10px;
  -webkit-appearance: none;
}

.green-card {
  background-color: var(--theme-color);
  color: #fff;
  border-radius: 10px;
  border-color: #fff;
  line-height: 2em;
}

.arrow-next {
  font-size: 2em;
  margin: 0 0 0 10%;
}

.image-card {
  height: 100%;
}

.image-card:hover,
.image-card:hover > div > .arrow-next {
  cursor: pointer;
  border-color: #999;
  color: #999;
}

@media screen and (max-width: 600px) {
  .dashboard-card-left {
    margin-right: 0px;
    flex: none;
    margin-bottom: 1em;
  }

  .contact-us-page {
    height: 100%;
  }

  .dashboard-page {
    padding: 1em;
  }

  .tooltip-text {
    min-width: 250px;
    top: -85px;
  }

  .dashboard-landing-page {
    padding: 20px;
    padding-top: 3em;
  }
}
