html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}

/* Show it is fixed to the top */
body {
  --kzc-color: #1C4188;
  --background-solid-color-1: #004000;
  --background-solid-color-2: #004000;
  --background-line-color: #000000;
  --foreground-text-color-1: #004000;
  --p-color-1: #999999;
  min-height: 75rem;
  padding-top: 4.5rem;

  background-color: #FFFFFF;
  color: #222222;
  font-family: "Roboto", "Open Sans", Arial, sans-serif; 
/*  font-size: calc(1rem + (1.7rem - 1rem) * ((100vw - 300px) / (800 - 300))); */
  font-size: var(--rem);
  line-height: calc(1.3em + (1.5 - 1.2) * ((100vw - 300px)/(1600 - 300)));
  margin: 0;
  position: absolute;
  height: 100%;
  width: 100%;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #222222;
  font-family: "Roboto", "Open Sans", Arial, sans-serif;
  line-height: 1.1;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

h1.error {
    left: 0;
    line-height: 200px;
/*    margin-top: -100px;
    position: absolute;*/
    text-align: center;
    top: 50%;
    width: 100%;
    font-size: 3em;
    color: #FF0000;
    -webkit-text-fill-color: #FF0000;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

/*
h1, h2, h3, h4, h5, h6 {
    margin-top: 1.0rem;
    margin-bottom: 1.0rem;
}
*/
a {
    color: #222222;
}


thead, tbody tr {
  width: 100%;
  border: 1px solid rgb(255, 255, 255);
}

tr td,
tr th {
  padding: 4px 9px;
  border: 1px solid rgb(200, 200, 200);
  text-align: left; /* LTR */
}


.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.card,
.card-footer,
.card-header {
    color: #222222;
    background-color: #FFFFFF;
}

.card-header {
    background-color: #E2EEE2;
}

.card-comment {
    background-color: #FFFFE6;
}

.card-action {
    background-color: #E6E6FF;
}


.form-control {
    display: block;
    width: 100%;
    height: calc(2.15625rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: #444;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid black;
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.responsive {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.responsive-home {
    width: 100%;
    height: auto;
}

/* Horizontal line */
hr {
  border-top: 1px solid #BFBFBF;
  border-bottom: none;
  margin: 20px auto 20px;
  max-width: 400px;
  position: relative;
}

hr:after {
  border-top: 1px solid var(--kzc-color);
  content: "";
  position: absolute;
  top: -1px;
  right: 20%;
  bottom: 0;
  left: 20%;
}


/***********************************************************************************
* . Navigation
***********************************************************************************/
.navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
    color: #222222;
}

.navbar-light .navbar-toggler,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link {
    color: #222222;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    background-color: var(--kzc-color);
    color: #FFFFFF;
}

.dropdown-menu {
    margin-top: 0;
    color: #222222;
    background-color: #FFFFFF;
}
.dropdown-item {
    color: #222222;
}

.dropdown-menu .dropdown-toggle::after {
    vertical-align: middle;
    border-left: 4px solid;
    border-bottom: 4px solid transparent;
    border-top: 4px solid transparent;
}
.dropdown-menu .dropdown .dropdown-menu {
    left: 100%;
    top: 0%;
    margin:0 20px;
    border-width: 0;
}

.dropdown-menu .dropdown .dropdown-menu.left {
    right: 100%;
    left: auto;
}
.dropdown-menu-right {
    right:inherit !important;
    left: auto;
}
ul.nav a:hover,
.dropdown-menu > li a:hover,
.dropdown-menu > li.show {
    background: var(--kzc-color);
    color: white;
}
.dropdown:hover>.dropdown-menu {
  display: block;
}

@media (min-width: 768px) {
    .dropdown-menu .dropdown .dropdown-menu {
        margin:0;
        border-width: 1px;
    }
}


/***********************************************************************************
* . Footer
***********************************************************************************/
#footer {
  background: var(--kzc-color);
/*  border-top: 4px solid #005400; */
  font-size: 0.9em;
  position: relative;
  clear: both;
}

#footer .main-footer {
  padding: 20px 0px 0 15px;
  margin-bottom: 2px;
}

#footer h1, #footer h2, #footer h3, #footer h4, #footer a {
  color: #FFFFFF;
}

#footer h2 {
  font-size: 1.8em;
  margin-bottom: 14px;
  line-height: 27px;
}

#footer p {
  color: var(--p-color-1);
  margin-bottom: 15px;
  line-height: 20px;
}

#footer .contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Copyright */
#footer .footer-copyright {
  background: #FFFFFF;
  padding: 10px 0;
  margin-top: 10px;
}

#footer .footer-copyright p {
/*  color: #E5E5E5;*/
  color: #000000;
  margin: 0px;
  line-height: 20px;
}

#footer .footer-copyright h1,
#footer .footer-copyright h2,
#footer .footer-copyright h3,
#footer .footer-copyright h4,
#footer .footer-copyright a {
  color: var(--foreground-text-color-1);
}

@media (max-width: 48em) {
  #footer .block {
    margin-bottom: 1em;
  }
}

/***********************************************************************************
* . Page Title
***********************************************************************************/

.page-top {
  background-color: var(--kzc-color);
  border-bottom: 3px solid #FFFFFF;
  border-top: 3px solid #FFFFFF;
  padding: 10px 0 10px 0;
  position: relative;
  text-align: left;
}

.page-top h1 {
  border-bottom: 3px solid var(--background-line-color);
  color: #FFFFFF;
  display: inline-block;
  font-weight: 200;
  margin: 0 0 -13px;
  font-size: 200%;
  line-height: 46px;
  padding: 0 0 6px;
  position: relative;
}

