html {
  height:100%;
  touch-action: none;
}

body {
  background: #f5f5f5;
  margin: 0px;
  position: relative;
  z-index: -10;
  min-height: calc(100vh - 64px);
/*
height: calc(100% - 64px);
overflow: hidden;
*/
}

#headband {
  background: white;
  height: 64px; /* responsive height? -nic */
  box-shadow: 0px 0px 8px 1px #d5d4d4;
  width: 100%;
  position: relative;
  min-width: 400px;
  /* min-width: 240px; */
}

#headband .leftie {
  float: left;
  height: 100%;
  padding: 8px;
  user-select: none;
}

.logo-home:hover {
  background: #EEE;
}

.logo-home img {
  height: 100%;
}

@media screen and (max-width: 640px) {
  #headband .hideFirst {
    display: none;
  }
}


#headband .rightie {
  float: right;
  height: 100%;
  user-select: none;
}

#signInLogIn {
  height: 100%;
  /* vertical-align: middle; */
  padding: 18px;
  border-left: 1px solid lightgray;
}

#signInLogIn:hover {
  background: #EEE;
  cursor: pointer;
}

.center-container {
  margin:auto;
  margin-top: 100px;
  background: white;
  width: 80%;
  max-width: 840px;
  min-width: 360px;
  box-shadow: 2px 2px 8px 1px #d8d8d8;
}

.flex-container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.flex-row-container {
  display: flex;
  flex-direction: row;
}


.right-flex {
  width: 100%;
}

.left-flex {
  width: 100%;
  display: flex;
  justify-content: center;
}

.bottom-full {

}

.footer-nav {
  height: 48px;
  text-align: center;
  overflow: hidden;
}

.nav-button {
  margin: 0px 8px;
  padding: 4px 12px;
  text-align: center;
  line-height: 48px;
}

.list-title {
  font-size: 32px;
  display: inline-block;
}

.nice-button {
  border-radius: 24px;
  padding: 6px 8px;
  color: white;
  margin: 8px;
  border: none;
  text-decoration: none;
}

.nice-button:hover {
  color: white;
  text-decoration: none;
  background: #0069d9
}

.single-column {
  position: relative;
  background: white;
  margin: auto;
  max-width: 900px;
  min-width: 300px;
  width: 70%;
  /* height: 100%; */
  padding: 20px;
  /* position: absolute; */
  /* top: 70px; */
  margin-top: 50px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 8px 0px lightgrey;
  z-index: -2;
}

.single-column h1 {
  text-align: center;
}

#userTopRight {
  height: 100%;
  border-left: 1px solid lightgray;
  padding-top: 3px;
  user-select: none;
}

#userTopRight:hover {
  background: #EEE;
  cursor:pointer;
}

#userOptions {
  position: sticky;
  transition: 0.2s height ease-in-out;
  overflow: hidden;
  width: 100%;
}

.drop-down {
  position: fixed;
  background: white;
  top: 64px;
  right: 0px;
  min-width: auto;
  box-shadow: 0px 0px 8px -1px gray;
  z-index: -1;
}

#userOptions.open-state {
 height: auto;
}
#userOptions.closed-state {
 height: 0px;
}

.drop-down-option {
  padding: 8px 4px;
  display: block;
  text-decoration: none;
  color: black;
  position: relative;
  user-select: none;
}
.drop-down-option span {
  margin-left: 20px;
}

.drop-down-option:hover {
  background: #EEE;
  cursor: pointer;
  text-decoration: none;
  color: black;
}

.user-avatar {
  width: 42px;
  height: 42px;
  display: inline-block;
  margin: 8px;
  border-radius: 24px;
}

.user-name {
  display: inline-block;
  margin: 8px;
}

#footer {
  bottom: 0px;
  position: absolute;
  background: white;
  width: 100%;
  text-align: center;
}

.text-button  {
  background-color: #fff;
  border: 0px;
  color: #3AA5D1;
  padding: 0;
  margin-left: 10px;
}

.text-button:hover {
  text-decoration: underline;
  cursor: pointer;
}

.text-button:focus {
  border: none;
  outline: none;
}

.icon-button {
  outline: none;
  background: white;
  /* box-shadow: 0px 0px 6px 0px lightgrey; */
  border: 1px solid lightgray;
  border:none;
  width: 32px;
  height: 32px;
  padding: 0px;
  margin: 0px;
  vertical-align: super;
  border-radius: 18px;
}
.icon-button:hover {
  cursor: pointer;
  background-color: #EEE;
}
.icon-button:focus {
  border: 1px solid lightgray;
  outline: none;
}
