

:root {
  --main-color: #fafafa;
  --main-color2: #444444;
  --highlight-color-1: #fde100;
  --highlight-color-2: #faab1c;
  --background-color: black;
}


body {
  background: url(../images/bg.jpg) no-repeat center center fixed;
  background-color: black;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #fafafa;
  color: var(--main-color);
  padding: 20px 0;
  font-family: 'Sunflower', sans-serif;
}

h1 {
  font-size: 3em;
  padding: 10px 0 5px 0;
  font-family: 'Sunflower', sans-serif;
}

h2, h3 {
  font-family: 'Sunflower', sans-serif;
}

a {
  color: #fde100;
  color: var(--highlight-color-1);
  text-decoration: none;
}

a:hover {
  color: #faab1c;
  color: var(--highlight-color-2);
}

.navBar {
  position: relative;
  min-width: 100%;
}

.logo {
  display: inline-block;
  height: 45px;
  margin: 0;
  width: 45px;
}

img {
  max-width: 100%;
  width: auto;
}

.wrapper {
  margin: 0 auto;
  max-width: 960px;
  padding: 0;
}

nav ul {
  padding: 0px;
  margin: 0px;
}

nav li {
  display: block;
}

nav ul a {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  transition: color .5s ease;
  display: block;
  padding: 16px 10px;
  white-space: nowrap;
}

nav ul a.active {
  color: #fde100;
  color: var(--highlight-color-1);
}

nav ul a:hover {
  color: #faab1c;
  color: var(--highlight-color-2);
}

nav #menu-toggle {
  display: none;
}

nav .label-toggle {
  display: none;
}

nav .wrapper {
}

.nav-logo {
  margin: 0 0 30px;
}

table {
  border-collapse: collapse;
}

table, th, td{
  border: 1px solid #fde100;
}

th, td {
  padding: 3px;
}

dl.inline {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  width: 300px;      /* set the container width*/
  overflow: visible;
}
dl.inline dt {
  flex: 0 0 50%;
  text-overflow: ellipsis;
  overflow: hidden;
}
dl.inline dd {
  flex:0 0 50%;
  margin-left: auto;
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
}

dl.inline dd, dl.inline dt{
  padding: 3px 0px;
}

li a svg {
  height: 15px;
  width: auto;
}

ol.two-columns{
  -moz-column-count: 2;
  -moz-column-gap: 5%;
  -webkit-column-count: 2;
  -webkit-column-gap: 5%;
   column-count: 2;
   column-gap: 5%;
}

.alert {
  color: red;
  font-weight: bold;
}

img.mapcross {
  width: 32px;
}

.nav-container {
  padding: 0px;
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  margin: 0px;
}

.content {
  padding-left: 240px;
}


@media screen and (max-width: 800px) {

  .nav-logo {
    float: left;
    margin: 0;
    max-height: 80px;
    max-width: 120px;
  }

  .nav-container {
    position: absolute;
    width: 100%;
  }

  .content {
    padding-top: 80px;
    padding-left: 0;
  }


  nav nav ul a {
    box-sizing: border-box;
    color: #fff;
    width: 100%;
    border-bottom: 2px solid #fde100;
    border-bottom: 2px solid var(--highlight-color-1);
  }
  nav ul {
    background-color: black;
    background-color: var(--background-color);
    display: block;
    height: 0;
    clear: both;
    list-style-type: none;
    opacity: 0;
    text-align: center;
    transition: all 0s ease;
    width: 100%;
    visibility: hidden;
    margin: 15px 0px;
  }
  nav li {
    color: #fde100;
    color: var(--highlight-color-1);
    display: block;
    font-size: 25px;
    padding: 0px 0;
  }
  nav #menu-toggle:checked~ul {
    opacity: 1;
    height: 100%;
    visibility: visible;
  }
  nav .label-toggle {
    background: linear-gradient(to bottom, #faab1c 0%, #faab1c 20%, transparent 20%, transparent 40%, #faab1c 40%, #faab1c 60%, transparent 60%, transparent 80%, #faab1c 80%, #faab1c 100%);
    background: linear-gradient(to bottom, var(--highlight-color-2) 0%, var(--highlight-color-2) 20%, transparent 20%, transparent 40%, var(--highlight-color-2) 40%, var(--highlight-color-2) 60%, transparent 60%, transparent 80%, var(--highlight-color-2) 80%, var(--highlight-color-2) 100%);
    cursor: pointer;
    display: block;
    float: right;
    height: 35px;
    margin: 0 20px 0 0;
    width: 35px;
  }
  nav .wrapper {
    display: block;
  }
  .logo {
    height: 45px;
    width: 60px;
  }
  li a svg {
    height: 25px;
    width: auto;
  }
  ol.two-columns{
    -moz-column-count: 1;
    -moz-column-gap: 5%;
    -webkit-column-count: 1;
    -webkit-column-gap: 5%;
     column-count: 1;
     column-gap: 5%;
  }
}

@import url('https://fonts.googleapis.com/css?family=Sunflower:300,500,700');
