﻿/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;600;700&display=swap');
/* END FONTS */
/* CSS RESET */
*, ::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}
/* END CSS RESET */
/* HTML & BODY */
html {
  height: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  line-height: 10px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  height: 100%;
  margin: 0 auto;
  font-size: 1.60rem;
  line-height: 1.20em;
  color: #000;
  -webkit-font-smoothing: antialiased;
  font-smooth: always;
  background: #002546 url("images/background.jpg") center center no-repeat;
  background-size: cover;
}
#stx_page-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
/* END HTML & BODY */
/* TYPOGRAPHY */
sup {
  font-size: 0.40em;
  line-height: 1em;
  font-weight: 700;
}
h1 {
  font-size: 2rem;
  color: #002546;
  margin: 2rem auto;
}
section#dma-bill-header h1 {
  margin: 0;
}
h2 {
  font-size: 2rem;
  padding-bottom: 0.70rem;
  color: #002546;
  border-bottom: 0.10rem solid #C0C9D1;
}
.dma-notes {
  font-size: 1.20rem;
  font-style: italic;
  font-weight: 700;
  color: #666;
}
a {
  color: #001EB0;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
a, input[type="button"], input[type="submit"] {
  -webkit-transition: all 0.20s ease;
  -moz-transition: all 0.20s ease;
  -o-transition: all 0.20s ease;
  transition: all 0.20s ease;
}
/* END TYPOGRAPHY */
/* FORM */
label {
  display: inline-block;
  text-align: right;
  font-weight: 700;
  margin-right: 1rem;
  line-height: 3.40rem;
}
input[type="text"] {
  font: 1.60rem/1.60rem 'Lato', sans-serif;
  background: #FFF;
  border: 0.10rem solid #939598;
  border-radius: 0.40rem;
  padding: 0 1rem;
  line-height: 3.40rem;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="button"] {
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 1.20rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  background: #58BA58;
  border: none;
  border-radius: 0.40rem;
  color: #FFF;
  height: 3.40rem;
  padding: 0;
  width: 12rem;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="button"]:hover {
  background: #026ECF;
}
::-webkit-input-placeholder {
  font: 1.60rem/1.60rem 'Lato', sans-serif;
  color: #A1A1A1;
}
:-moz-placeholder {
  font: 1.60rem/2.40rem 'Lato', sans-serif;
  color: #A1A1A1;
  opacity: 1;
  filter: alpha(opacity=100);
}
::-moz-placeholder {
  font: 1.60rem/3.40rem 'Lato', sans-serif;
  color: #A1A1A1;
  opacity: 1;
  filter: alpha(opacity=100);
}
:-ms-input-placeholder {
  font: 1.60rem/3.40rem 'Lato', sans-serif;
  color: #A1A1A1 !important;
}
/* END FORM */
/* HEADER */
header {
  height: 5rem;
  width: 100%;
  max-width: 120rem;
  margin: 2.50rem auto 4rem auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
header img {
  width: 21.20rem;
  height: auto;
}
nav ul {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  font-size: 1.10rem;
  column-gap: 3rem;
}
nav ul li {
  text-transform: uppercase;
}
nav ul li a {
  text-decoration: none;
  color: #454E54;
  padding: 1rem;
  border-radius: 0.50rem;
}
nav ul li a:hover {
  background: rgba(255, 255, 255, 0.60)
}
/* END HEADER */

/*
 * Sidebar
 */

.sidebar {
  top: 0;
  /* rtl:raw:
  right: 0;
  */
  bottom: 0;
  /* rtl:remove */
  left: 0;
  z-index: 100; /* Behind the navbar */
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}
/* MAIN */
main {
  display: flex;
  flex-direction: column;
}
/* END MAIN */
/* VIEW BILL */
section#dma-welcome {
  background: rgba(255, 255, 255, 0.60);
  border-radius: 0.80rem;
  padding: 4rem;
  width: 65rem;
  margin: 0 auto 3rem auto;
  text-align: center;
}
section#dma-welcome img {
  width: 25rem;
  height: auto;
}
section#dma-welcome strong, .stx_modal-content strong {
  color: #ED1C2A;
}
section#dma-view-bill {
  text-align: left;
  margin: 3rem auto 0 auto;
  display: grid;
  grid-template-columns: auto 13rem auto 6rem auto 13rem;
  align-items: center;
  justify-content: center;
  column-gap: 0.50rem;
  row-gap: 1rem;
}
input#code_id {
  grid-column: span 5;
}
section#dma-view-bill input[type="text"] {
  max-width: 13rem;
}
section#dma-view-bill input[type="button"] {
  grid-column-start: 6;
  width: 100%;
}
section#dma-code-help {
  margin: 2rem 0 0 0;
  font-size: 1.40rem;
}
img#dma_thumbnail {
  height: 39rem;
  width: auto;
  margin: 3rem 0 0 0;
}
/* END VIEW BILL */

/* GRID VIEW */
section#dma-grid {
  background: rgba(255, 255, 255, 0.60);
  border-radius: 0.80rem;
  padding: 4rem;
  /*width: 117rem;
  margin: 0 auto 3rem auto;*/
  text-align: center;
}
section#dma-grid img {
  width: 25rem;
  height: auto;
}
section#dma-grid strong, .stx_modal-content strong {
  color: #ED1C2A;
}
/* END GRID VIEW */

/* SKIP FORM */
section#dma-skip-form {
  background: rgba(0, 37, 70, 0.30);
  border-radius: 0.80rem;
  padding: 4rem;
  width: 65rem;
  margin: 0 auto 5rem auto;
  text-align: center;
  color: #FFF;
}
section#dma-skip-form h1 {
  color: #FFF;
  margin: 0 0 2rem 0;
}
section#dma-skip-form img {
  vertical-align: middle;
}
section#dma-skip-form img:nth-of-type(2) {
  height: 4rem;
  width: auto;
  margin: 2.40rem 0 0 0;
}
section#dma-skip-form input[type="text"] {
  width: auto;
  border: none;
  margin: 0 0.5rem;
}
section#dma-skip-form input[type="button"] {
  background: #002546;
  display: inline-block;
  margin: 0;
}
section#dma-skip-form input[type="button"]:hover {
  background: #026ECF;
}
/* END SKIP FORM */
/* BILL */
section#dma-bill-wrapper {
  width: 100%;
  max-width: 124rem;
  margin: 0 auto;
}
section#dma-bill-header {
  background: rgba(255, 255, 255, 0.60);
  border-radius: 0.80rem 0.80rem 0 0;
  height: 7rem;
  padding: 0 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.20rem;
}
section#dma-bill-header img {
  height: 2rem;
  width: auto;
}
section#dma-bill-header h1 {
  text-transform: uppercase;
}
section#dma-bill-details {
  background: #FFF;
  border-radius: 0 0 0.80rem 0.80rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.50rem;
  margin-bottom: 5rem;
}
section#dma-bill-details > section {
  padding: 2rem;
  border-radius: 0.80rem;
}
section#dma-acct-summary, section#dma-bill-more {
  background: #F0F2F4;
  border: 0.10rem solid #D1D1D1;
}
section#dma-acct-payment {
  background: #ECF6FA;
  border: 0.10rem solid #D1D1D1;
}
section#dma-acct-payment h2 {
  margin-bottom: 1.50rem;
}
section#dma-acct-payment label {
  display: block;
  text-align: left;
  font-weight: normal;
  line-height: 1.30em;
  margin: 1rem 0 0.50rem 0;
}
section#dma-acct-payment input[type="button"] {
  display: inline;
  width: 30%;
  padding: 0 2rem;
}
section#dma-acct-payment input[type="text"]:nth-of-type(1) {
  width: 13rem;
}
section#dma-acct-payment input[type="text"]:nth-of-type(2) {
  width: 69%;
}
section#dma-bill-more {
  grid-row: span 2;
}
section#dma-acct-history {
  background: #FFF;
  grid-column: span 2;
  border: 0.10rem solid #D1D1D1;
}
section#dma-acct-history h2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
section#dma-acct-history table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.40rem;
}
section#dma-acct-history table a {
  font-weight: normal;
}
section#dma-acct-history table thead {
  text-align: left;
  text-transform: uppercase;
}
section#dma-acct-history table thead tr th, section#dma-acct-history table tbody tr td {
  padding: 1rem;
}
section#dma-acct-history table thead tr th:nth-of-type(2), section#dma-acct-history table tbody tr td:nth-of-type(2) {
  text-align: right;
}
section#dma-acct-history table tbody tr:nth-of-type(odd) {
  background: #F0F2F4;
}
table.dma-summary-details {
  border-collapse: collapse;
  width: 100%;
  margin-top: 1rem;
}
table.dma-summary-details tr td {
  padding: 0.50rem 1rem 0.50rem 0;
}
table.dma-summary-details tr td:nth-of-type(1) {
  text-align: right;
  font-weight: 700;
}
td.dma-bill-total {
  padding: 2rem 0 0 0 !important;
  text-align: center !important;
}
td.dma-bill-total p {
  background: #949596;
  color: #FFF;
  font-size: 1.80rem;
  line-height: 2em;
  border-radius: 0.60rem;
}
section#dma-bill-more ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 1.40rem;
}
section#dma-bill-more ul li {
  margin: 1.50rem 0;
}
section#dma-bill-more ul li a {
  font-weight: 400;
}
/* END BILL */
/* FOOTER */
footer {
  background: #002546;
  height: 10rem;
  min-height: 10rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer img {
  height: 4rem;
  width: auto;
}
#dma_footer-nav {
  display: none;
}
/* END FOOTER */