/*

TABLE OF CONTENTS

  0. Root
    0a. Custom properties
    0b. Fonts
    0c. Reset
  1. Global styles
  2. Header
  3. Navigation
    3a. Sidebar navigation
    3b. Sidebar-Admin navigation
    3c. Sidebar-User navigation
    3d. Sidebar-Invoice navigation
  4. Home
    4a. Admin
      4a-i. Admin tables
  5. Invoice details
    5a. Invoices table
  6. Accordion
  7. Filter form
    7a. User info
  8. Search form
  9. Footer
  10. Login-Register
  11. Media Queries
    11a. Media Query, (min-width: 700px)
      11a-i. Header
      11a-ii.
      11a-iii.
      11a-iv.
      11a-v.
      11a-vi.
      11a-vii.
      11a-viii. Footer
    11b. Media Query, (min-width: 1000px)
    11c. Feature Query

*/

/* -------------------------------------
   0. Root
------------------------------------- */

/* ############ 0a. Custom Properties ############ */
:root {
  --color-blue: hsl(205 100% 35%);
  --color-dark-blue: hsl(223 42% 23%);
  --color-light-blue: hsl(195 85% 49%);
  --color-purple: hsl(310 69% 35%);
  --color-light-grey: hsl(219 28% 88%);
  --color-dark-grey: hsl(220 16% 22%);
  --color-white: hsl(218 27% 94%);
}

/* ############ 0b. Fonts ############ */


/* ############ 0c. Reset ############ */


/* -------------------------------------
   1. Global Styles
------------------------------------- */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--color-dark-blue) var(--color-light-grey);
}

body > * {
  font-family: Helvetica, sans-serif;
  line-height: 1.4;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1rem;
}

p {
  line-height: 1.4;
}

a {
  color: var(--color-light-blue);
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  color: var(--color-purple);
}

i {
  padding-left: .5rem;
}

.page-title {
  text-align: center;
  padding: 1rem 0;
}

/* -------------------------------------
   2. Header
------------------------------------- */
.hero {
  font-size: 20px;
  text-align: center;
  display: grid;
  grid-template-columns: 10px 2fr 10px;
  grid-template-rows: .5fr 1fr;
  grid-gap: 20px;
}

.hero a {
  margin: auto;
  padding-top: 1rem;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.hero article {
  grid-column: 2 / 3;
  grid-row: 2;
}

.hero h1 {
  font-size: 3rem;
  color: var(--color-blue);
}

.hero h1 span {
  color: var(--color-purple)
}

.hero p {
  color: black;
  text-transform: capitalize;
}

/* -------------------------------------
   3. Navigation
------------------------------------- */
.navWrap {
  position: sticky;
  top: 0;
  z-index: 99;
  height: 48px;
  width: 100%;
  background-color: #0069b4;
  border-bottom: 1px solid #e0e5eb;
  box-shadow: 0px 1px 8px #223055;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navWrap a {
  color: #fff;
}

.navWrap a:hover {
  color: var(--color-light-blue);
}

input#navToggle {
  display: none;
}

input#navToggle ~ label {
  position: relative;
  padding: 0.25rem;
  width: 2rem;
  height: 1.25rem;
  height: 2rem;
}

input#navToggle ~ label > span,
input#navToggle ~ label > span::before,
input#navToggle ~ label > span::after {
  content: "";
  display: block;
  position: absolute;
  top: .75rem;
  height: 0.125rem;
  width: 1.75rem;
  opacity: 1;
  background: #fff;
  transition: 0.14s ease-in-out;
}

input#navToggle ~ label > span::before {
  top: -0.5rem;
}

input#navToggle ~ label > span::after {
  top: 0.5rem;
}

#navToggle:checked ~ label > span {
  width: 0;
  background: rgba(18, 18, 18, 0);
}

#navToggle:checked ~ label > span::before {
  transform: rotateZ(45deg);
  top: 0;
}

#navToggle:checked ~ label > span::after {
  transform: rotateZ(-45deg);
  top: 0;
}

#navToggle:checked ~ nav#navigation {
  left: 0;
}

nav#navigation {
  position: absolute;
  z-index: -1;
  top: 3.0rem;
  left: -1000%;
  width: 100%;
  transition: 0.22s ease-in-out;
}

nav#navigation::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  height: 100vh;
  width: 100vw;
  background-color: var(--color-light-blue);
  background-size: cover;
}

nav#navigation ul {
  list-style-type: none;
}

nav#navigation ul li a {
  display: inline-block;
  width: 100%;
  padding: .75rem 1rem;
  color: #fff;
  border-bottom: solid 1px rgba(255,255,255,.5);
  transition: 0.14s ease-in-out;
}

nav#navigation ul li a:hover {
  color: var(--color-light-blue);
  background: #e0e5eb;
}

nav#navigation ul li:last-of-type::before {
  content: "";
  display: block;
  padding: .5rem;
}

nav#navigation .btn {
  background: #fff;
  border-bottom: none;
  border-radius: 4px;
  box-shadow: inset 0 0 5px #eeb80c;
  color: var(--color-dark-blue);
  width: 50%;
  padding: 0.25rem .6rem;
  letter-spacing: 1px;
  text-shadow: 0 0 1px rgb(19,177,231);
  text-align: center;
  display: flex;
  justify-content: center;
  margin: auto;
}

nav#navigation .btn:hover {
  background-color: var(--color-dark-blue);
  box-shadow: inset 0 0 5px var(--color-light-blue);
  color: #fff;
}

nav#navigation ul li ul.submenu {

}

nav#navigation ul li ul.submenu li {
  padding: 0 0 0 .5rem;
}

nav#navigation ul li ul.submenu li a {

}

nav#navigation ul li ul.submenu li:last-of-type::before {
  padding: 0;
}

.nav-icon {
  display: inline-block;
  fill: #fff;
  height: 2rem;
  width: 2rem;
  margin-top: .5rem;
}

.nav-icon:hover {
  fill: var(--color-light-blue);
}

/* ############ 3a. Sidebar navigation ############ */
.navSidebar {
  position: sticky;
  top: 50px;
  z-index: 99;
  width: 100%;
  background-color: var(--color-purple);
  border-bottom: 1px solid #e0e5eb;
  box-shadow: 0px 1px 8px #223055;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navSidebar ul {
  color: #fff;
  flex: 1;
  list-style: none;
}

.navSidebar ul[title]::before {
  content: attr(title);
  display: block;
  font-weight: bold;
  padding: 1rem;
  border-bottom: 1px solid white;
  text-transform: uppercase;
}

.navSidebar li {
  padding: 0;
  border-bottom: 1px solid white;
}

.navSidebar li:hover {
  background-color: var(--color-light-blue);
}

.navSidebar a {
  padding: .5rem;
  padding-left: 1.5rem;
  color: #fff;
  display: inline-block;
  width: 100%;
}

.navUser,
.navInvoice,
.navAdmin {
  z-index: 0;
}

.sidebar-icon {
  fill: #fff;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
}

.current-page { background-color: var(--color-dark-blue); }

/* ############ 3b. Sidebar-Admin navigation ############ */
.navAdmin ul {
  list-style: none;
}

.navAdmin li {
  /*padding-left: .5rem;*/
  border-bottom: none;
}

.navAdmin li:hover {
  background-color: var(--color-purple);
}

.navAdmin i {
  padding: 0;
  width: 2rem;
}

.nested-sidebar li:hover {
  background-color: var(--color-light-blue);
}

.navAdminHelp {
  align-items: baseline;
  flex-wrap: wrap;
  background-color: var(--color-light-blue);
  color: #ffffff;
}

.help {
  flex: 1 1 300px;
  font-size: .7rem;
}

.help tr {
  line-height: 1rem;
}

.help th,
.help td {
  padding: 0;
}

.help caption {
  background-color: var(--color-dark-blue);
}

/* ############ 3c. Sidebar-User navigation ############ */


/* ############ 3d. Sidebar-Invoice navigation ############ */


/* -------------------------------------
   4. Home
------------------------------------- */
.page {
  display: flex;
  flex-direction: column;
}

.content {
  order: -1;
  flex: 1;
  margin: 1rem;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: space-around; /* TODO check */
  gap: 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.box {
  border-radius: 4px;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(184, 194, 215, 0.25) 0px 4px 6px, rgba(184, 194, 215, 0.1) 0px 5px 7px;
  transition: box-shadow 400ms ease-in-out, background-color 400ms ease-in-out;
  min-height: 100px;
}

.count {
  flex: max(400px, (100% - 2rem)/3);
}

.count h1{
  padding: .5rem;
}

.count i,
.count span {
  font-size: 2rem;
  padding: .5rem; /* 1rem;  TODO*/
}

.count span {
  font-weight: 700;
  float: right;
}

.package {
  flex: 1 1 200px;
}

.package caption {
  font-size: .7rem;
}

.transmission-failure {
  justify-content: space-around;
  align-items: center;
}

.chart-table {
  flex: 1 1 300px;
  width: 100%;
  padding: .5rem;
}

.chart-table caption {
  border-bottom: 2px solid var(--color-dark-blue);
  padding: 1rem 1rem .5rem 1rem;
  font-weight: bold;
}

.chart-table th {
  text-align: left;
  padding: .5rem;
}

.chart-table td {
  text-align: left;
  padding: .5rem;
}

.chart-table tr {
  line-height: 1.5rem;
}

/* ############ 4a. Admin  ############ */
.data-header {
  padding: 1rem;
  border: 1px solid var(--color-blue);
  background: var(--color-blue);
  color: #ffffff;
}

.data-header h6,
.data-header a {
  margin: 1rem;
  color: #ffffff;
}

.data-header a:hover {
  color: var(--color-light-blue);
}

.json-tree p {
  text-align: center;
  margin: 1rem;
  font-weight: bold;
  text-decoration: underline;
}

.json-tree dl {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--color-blue);
}

.json-tree dt {
  background: var(--color-blue);
  color: #ffffff;
  padding: 5px;
  flex-basis: 15%;
  font-size: 0.8rem;
  font-weight: bold;
}

.json-tree dd {
  margin: 0;
  padding: 5px;
  border-bottom: 1px solid var(--color-blue);
  flex-basis: 80%;
  flex-grow: 1;
  font-size: 0.8rem;
  word-break: break-all;
}

.response-tree dl {
  border: 1px solid var(--color-purple);
}

.response-tree dt {
  background: var(--color-purple);
}

.response-tree dd {
  border-bottom: 1px solid var(--color-purple);
}

/* ############ 4a-i. Admin tables  ############ */

.admin-table { border-collapse: collapse; border: 1px solid hsl(220 16% 22% / .2); width: 100%; }
.admin-table caption { padding-top: .5rem; text-transform: uppercase; font-weight: 900; border: 1px solid hsl(220 16% 22% / .2); border-bottom: none; }
.admin-table thead { text-transform: uppercase; }
.admin-table thead tr { border-bottom: 1px solid hsl(220 16% 22% / .2); }
.admin-table thead th { padding: .5rem; vertical-align: bottom; color: rgba(0,0,0,.6); transition: background-color .5s, color .5s; }
.admin-table thead th:hover { color: #000; background-color: hsl(310 69% 35% / .2); }
.admin-table thead th[aria-sort] { background-color: hsl(310 69% 35% / .4); border-left: 1px dotted hsl(220 16% 22% / .2); border-right: 1px dotted hsl(220 16% 22% / .2); color: rgba(0,0,0,.4); }

.admin-table tbody { line-height: 1rem; }
.admin-table tbody tr { transition: background-color .5s, color .3s; }
.admin-table tbody tr:nth-child(even) { background-color: hsl(205 100% 35% / .1); }
.admin-table tbody tr:hover { color: #000; background-color: hsl(205 100% 35% / .4); }
.admin-table tbody td { padding: .5rem; border-top: 1px dotted hsl(220 16% 22% / .2); border-right: 1px dotted hsl(220 16% 22% / .2); }
.admin-table tbody td:first-child { font-weight: 700; }
.admin-table tbody td::after { content: ''; display: block; clear: both; }

.admin-table tfoot td { padding: 1rem; border-top: 1px dotted hsl(220 16% 22% / .2); }
.admin-table tfoot a.btn-pagination { padding: 1rem; background-color: hsl(205 100% 35%); color: white }
.admin-table tfoot a.btn-pagination-active { padding: 1rem; background-color: hsl(195 85% 49%); color: white; }

.admin-table th, .admin-table td { max-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.admin-btn { padding: 1rem 0; }
.admin-btn a { padding: .5rem; color: #fff; background-color: var(--color-light-blue); }
.admin-btn a:hover { background-color: var(--color-dark-blue); }

/* -------------------------------------
   5. Invoice details
------------------------------------- */
.link-button {
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  text-align: center;
  align-content: center;
}

.print {
  background: var(--color-dark-blue);
}

.ubl {
  background: var(--color-light-blue);
}

.mydata {
  background: var(--color-blue);
}

.mydata1 {
  background: #008fcb;
}

.link-button:hover {
  background: var(--color-light-blue);
  color: #FFFFFF;
}

.print:hover, .ubl:hover, .mydata:hover, .mydata1:hover {
  background: var(--color-purple);
  color: #FFFFFF;
}

.last-row {
  border: none;
}

.qrcode {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.response {
  flex: 2 1 300px;
}

.seller,
.buyer,
.item,
.payments,
.summary {
  flex: max(400px, (100% - 2rem)/2);
}

/* ############ 5a. Invoices table  ############ */
.clickable-row:hover {
  cursor: pointer;
  background-color: var(--color-light-grey);
}

.color-tag {
  margin-bottom: .5rem;
  font-size: .8rem;
}

.color-tag span {
  display: inline-block;
  width: 4rem;
  border: 1px solid black;
}

.color-blue {
  background-color: var(--color-blue);
}

.color-purple {
  background-color: var(--color-purple);
}

.color-light-blue {
  background-color: var(--color-light-blue);
}

/* -------------------------------------
   6. Accordion
------------------------------------- */
.accordion {
  color: var(--color-purple);
  border: 2px solid;
  border-radius: 0.5rem;
  overflow: hidden;
}

.accordion-tab {
  position: relative;
}

.accordion-tab-label {
  display: flex;
  color: #fff;
  font-weight: 700;
  background: var(--color-purple);
  cursor: pointer;
  justify-content: space-between;
  padding: 1rem;
}

.accordion-tab-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
  color: var(--color-dark-grey);
}

.accordion-tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.accordion-tab input:checked ~ .accordion-tab-content {
  max-height: 100rem;
}

.accordion-tab-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transform: rotate(90deg);
  transition: all 0.35s;
}

.accordion-tab input:checked + .accordion-tab-label::after {
  transform: rotate(270deg);
}

.accordion-tab-content p {
  margin: 0;
  padding: 1rem;
}

.accordion-tab-content div,
.accordion-tab-content figure {
  padding: 0 1rem 1rem;
}

.accordion-tab-content ul,
.accordion-tab-content ol {
  margin-top: -.5rem;
  padding-left: 1rem;
}

.accordion-tab input:not(:checked) + .accordion-tab-label:hover::after {
  animation: bounce .5s infinite;
}

@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(.25rem);
  }
  75% {
    transform: rotate(90deg) translate(-.25rem);
  }
}

/* -------------------------------------
   7. Filter form
------------------------------------- */

/* ############ 7a. User info ############ */
.profile-info {
  justify-content: start;
  padding: 10px;
  border: 1px solid var(--color-blue);
  margin-bottom: .5rem;
}

.profile-info h3,
.profile-info h4 {
  text-align: center;
}

.user-row span {
  font-weight: 700;
}

.profile-form {
  display: flex;
  flex-direction: column;
}

.profile-fields li label {
  max-width: 250px;
  font-weight: 600;
}

.update-btn {
  max-width: 250px;
}

/* -------------------------------------
   8. Search form
------------------------------------- */
.search-form {
  display: flex;
  flex-wrap: wrap;
}

.search-form input[type="search"] {
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: .35rem .75rem;
  border: none;
  font-size: 1.1rem;
  text-decoration: none;
  line-height: normal;
  max-height: 3rem;
  background: var(--color-light-grey);
}

.search-form input[type="search"]:focus {
  border: 1px solid var(--color-light-blue);
  outline: none;
}

.search-form button[type="submit"] {
  box-sizing: border-box;
  border-radius: 0 2px 2px 0;
  font-weight: 300;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border: none;
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
  background: var(--color-light-blue);
  color: #fff;
}

.search-form button[type="submit"]:hover {
  background: var(--color-dark-blue);
}

.search-form input[type="search"] {
  flex: 2 0 auto;
}

.search-form button[type="submit"] {
  flex: 1 0 auto;
}

/* -------------------------------------
   9. Footer
------------------------------------- */
.contactInfo {
  background-color: var(--color-light-blue);
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}

.contactInfo article {
  padding: 1rem 0;
}

.contactInfo h4 {
  font-weight: 400;
  padding-bottom: .5rem;
}

.contactInfo li {
  font-weight: 300;
  list-style-type: none;
}

.contactInfo li:last-child {
  /*padding-top: .5rem;*/
}

.contactInfo li a {
  font-weight: 300;
  color: #fff;
}

.contactInfo li a:hover {
  color: var(--color-blue);
}

section#contact .btn-contact {
  background: #fff;
  border-bottom: none;
  border-radius: 4px;
  box-shadow: inset 0 0 5px #eeb80c;
  color: var(--color-dark-blue);
  padding: 0.25rem .6rem;
  letter-spacing: 1px;
  text-shadow: 0 0 1px rgb(19,177,231);
  text-align: center;
  margin: auto;
}

section#contact .btn-contact:hover {
  background-color: var(--color-dark-blue);
  box-shadow: inset 0 0 5px var(--color-light-blue);
  color: #fff;
}

.copy {
  font-size: 70%;
  font-weight: 300;
  padding-top: 1rem;
}

/* -------------------------------------
   10. Login-Register
------------------------------------- */
/*
input[type=email]:not(:placeholder-shown):invalid,
input[type=password]:not(:placeholder-shown):invalid {
  color: red;
  outline-color: red;
}
*/
form:invalid [type="submit"] {
  opacity: 50%;
  pointer-events: none;
}

.responsive-two-columns {
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
}

.responsive-two-columns > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-logo p {
  font-size: .9rem;
  margin-top: .5rem;
}

.register-form {
  flex: 0 1 350px;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group ul {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.form-group li {
  margin-bottom: .5rem;
}

.form-group h3 {
  margin-bottom: 1rem;
}

.form-fields input[type="text"],
.form-fields input[type="tel"],
.form-fields input[type="email"],
.form-fields input[type="password"],
.form-fields input[type="number"],
.form-fields select {
  box-sizing: border-box;
  padding: .6rem .8rem;
  border: 1px solid black;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .9rem;
  text-decoration: none;
  line-height: normal;
  max-height: 3rem;
}

.form-fields input[type="text"]:focus,
.form-fields input[type="tel"]:focus,
.form-fields input[type="email"]:focus,
.form-fields input[type="password"]:focus,
.form-fields input[type="number"]:focus,
.form-fields select:focus {
  border: 1px solid var(--color-light-blue);
  outline: none;
}

.form-fields li {
  display: flex;
  flex-wrap: wrap;
}

.form-fields li span {
  width: 100%;
  text-align: center;
}

.form-fields input[type="text"],
.form-fields input[type="tel"],
.form-fields input[type="email"],
.form-fields input[type="password"],
.form-fields input[type="number"],
.form-fields select {
  flex: 1 0 100%;
}

.form-fields label {
  flex: 1 0 100%;
}

.form-fields label span {
  font-size: .7rem;
  font-weight: 400;
  color: red;
}

.form-submit {
  display: flex;
  flex-wrap: wrap;
}

.register-btn {
  border-radius: 0px 2px 2px 0px;
  font-weight: 300;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border: none;
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
  flex: 1 0 100%;
  background: var(--color-light-blue);
  color: #fff;
}

.register-btn:hover, .register-btn:focus {
  background: var(--color-dark-blue);
}

.form-submit a {
  flex: 1 0 100%;
  margin: .5rem 0;
}

.form-submit p {
  flex: 1 0 100%;
  margin: .5rem 0;
  font-size: .8rem;
}

.password-eye {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  margin: -1.6rem .5rem 0 auto;
  cursor: pointer;
}

.branch-fields li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: .5rem;
  border: 1px solid var(--color-purple);
  padding: .5rem;
}
.branch-fields input[type="number"] {
  flex: 1 0 100%;
  max-width: 100%;
}
.branch-fields input[type="text"] {
  flex: 1 0 100%;
  max-width: 100%;
}
.branch-fields a {
  flex: 1 0 100%;
  max-width: 100%;
}

.add-input-button,
.rm-input-button {
  align-self: center;
  text-align: center;
}

/* -------------------------------------
   11. Media Queries
------------------------------------- */
/* ############ 11a. Media Query, (min-width: 500px) ############ */
@media screen and (min-width: 600px) {
  .branch-fields li {
    flex-wrap: nowrap;
  }
  .branch-fields input[type="number"] {
    flex: 1 0 18%;
    max-width: 70px;
  }
  .branch-fields input[type="text"] {
    flex: 1 0 24%;
    max-width: calc(100vw / 4.5);
  }
  .branch-fields a {
    flex: 1 0 10%;
    max-width: 20px;
  }
}

/* ############ 11a. Media Query, (min-width: 700px) ############ */
@media screen and (min-width: 700px) {
  /* ######### 11a-i. Header, Large screen rules ######### */
  header.hero {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: .25fr 1fr .25fr;
    align-items: center;
  }

  .hero a {
    margin: 0 0 0 auto;
    grid-row: 2 / 3;
  }

  .hero article {
     max-width: 1000px;
     grid-column: 3 / 6;
  }

  /* ######### 11a-ii. Navigation, Large screen rules ######### */
  .navWrap {
    display: grid;
    grid-template-columns: 50px minmax(auto, 1100px);
    justify-content: center;
    height: auto;
  }

  .navToggleLabel {
    display: none;
  }

  nav#navigation {
    position: initial;
  }

  nav#navigation ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  nav#navigation ul li a {
    border-bottom: none;
  }

  nav#navigation ul li a:hover {
    background: transparent;
  }

  nav#navigation::after, nav#navigation ul li:last-of-type::before {
    display: none;
    padding: initial;
  }

  nav#navigation .btn {
    width: auto;
    background: var(--color-light-blue);
    color: #fff;
    letter-spacing: normal;
    text-shadow: none;
    box-shadow: none;
    margin-right: 0.25rem;
  }

  nav#navigation .btn:hover {
    box-shadow: inset 0 0 5px var(--color-light-blue);
    background-color: var(--color-dark-blue);
  }

  nav#navigation ul li ul.submenu {
    display: none;
  }

  nav#navigation ul li:hover ul.submenu {
    display: block;
    position: absolute;
    background: var(--color-blue);
  }

  nav#navigation ul li ul.submenu li {
    padding: 0;
    padding: 0 .5rem;
  }

  nav#navigation ul li ul.submenu li a {

  }

  /* ######### 11a-iii.  ######### */


  /* ######### 11a-iv.  ######### */


  /* ######### 11a-v.  ######### */


  /* ######### 11a-vi.  ######### */


  /* ######### 11a-vii.  ######### */


  /* ######### 11a-viii. Footer, Large screen rules ######### */
  footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contactInfo {
    grid-column: 1 / -1;
  }

  .package caption {
    font-size: .75rem;
  }
}

/* ############ 11b. Media Query, (min-width: 700px and max-width: 900px) ############ */
/* @media screen and (700px <= width <= 900px) */
@media screen and (min-width: 700px) and (max-width: 900px) {
  nav#navigation ul li a {
    font-size: .8rem;
    padding: .75rem .7rem;
  }
}

/* tablet breakpoint */
@media screen and (min-width: 768px) {
  .responsive-two-columns > div {
    width: 50%;
  }
}

/* ############ 11b. Media Query, (min-width: 1000px) ############ */
@media screen and (min-width: 1000px) {
  /* ######### 11b-i. Footer, X-Large screen rules ######### */
  .package caption {
    font-size: .85rem;
  }
}

/* ############ 11b. Media Query, (min-width: 1400px) ############ */
@media screen and (min-width: 1400px) {
  .page {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar {
    flex: 0 1 15%;
    order: -1;
  }

  .content {
    flex: 1;
  }

  .package caption {
    font-size: 1rem;
  }

}
/* ############ 11c. Feature Query ############ */
