* {
  font-family: 'Quicksand', sans-serif;
  text-align: center;
  box-sizing: border-box;
}

html {
  overflow: auto;
}

body {
  background: transparent;
  padding: 0;
  margin:0;
  position: absolute;
  width: 100%;
  height: 100%;
  min-width: 150px;
  min-height: 292px;
}

body,
nav {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}

header {
  display: table;
  background: transparent;
  position: absolute;
  width: 100%;
  min-height: 60px;
  z-index:2;
}

h1 {
  display: table-cell;
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  vertical-align: middle;
  line-height: 60px;
}

h1>br {
  display: none;
}

nav {
  background: white;
  position: absolute;
  width: 100%;
  height: 100%;

}

.items {

  background:transparent;
  position:relative;
  
  top: 50%;
  transform: translatey(-60px);

 
}

.items > button {
  position: relative;
  display:block;
  background: #0872b4;
  color:white;
  font-size: 42px;
  
  width: 120px;
  height: 120px;
  
  border-radius: 50%;
  margin:0 auto;
}



.items>span {
  position:relative;
  display:block;
  font-size: 24px;
  line-height:36px;
  height:36px;
  margin-top:8px;
}

.nav_buttons {
  background: transparent;
  padding: 16px;
  height: 100%;
  
  width: 30%;
  
font-size:36px;
  color:gray;
  padding:0;
}

section {
  display:none;
}

section > div {
  display:none;
}

section > div > a {
  display:block;
  line-height:50px;
  height:50px;
  text-decoration:none;
  font-size:24px;
  margin: 16px auto;
  max-width:300px;
}



/* ****************************** */
/* Location request form */
section>span {
  background: #0872b4;
  display: block;
  width: 50px;
  height: 50px;
  font-size: 40px;
  text-align: center;
  margin: 0 auto 16px auto;
  border: none;
}

section>span>a {
  position: relative;
  display: block;
  height: 100%;
  vertical-align: middle;
  text-decoration: none;
  color: white;
}

section>span>a>i {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

section>div>form>label {
  position: relative;
  display: block;
  max-width: 500px;
  margin: 16px auto;
  border: gray solid 2px;
  line-height: 50px;
  height: 50px;
  text-align: left;
}

section>div>form input {
  width: 100%;
  height: 100%;
  line-height: 100%;
  font-size: 20px;
  text-align: left;
  padding: 0 8px 0 50px;
  border: none;
}

section>div>form input:focus {
  outline: none;
  background: #eee;
}

section .checkbox {
  padding: 0 8px 0 50px;
}

section .checkbox>input {
  display: none;
}

section .checkbox input~.checked {
  display: none;
}

section .checkbox input:checked~.checked {
  display: inherit;
}

section .checkbox input:checked~.unchecked {
  display: none;
}

section .checkbox>span {
  position: absolute;
  font-size: 30px;
  height: 100%;
  width: 50px;
  text-align: center;
  margin: 0;
  transform: translate(-50px, 0);
}

section .checkbox>span>img {
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

section>div>form>label>i {
  position: absolute;
  font-size: 22px;
  z-index: 2;
  left: 27px;
  top: 50%;
  transform: translate(-50%, -50%);
}

section>div>form input[type="submit"] {
  position: relative;
  display: block;
  padding: 0;
  text-align: center;
  border: none;
  cursor: pointer;
  line-height: 50px;
  height: 50px;
  max-width: 500px;
  margin: 16px auto;
  background: #0872b4;
  color: white;
}

@media only screen and (max-width: 250px) {
  section>div>form>label>.fas {
    display: none;
  }
  section>div>form input {
    padding: 0 8px;
  }
  section .checkbox {
    padding: 0 8px 0 48px;
  }
}

