
/*
    theme color: ae1ed2 = 174, 30, 210
*/

html {
  height: 100%;
}
body {
  background-color: #fdfdfd;
  color: #101010;
  display: flex;
  flex-direction: column;
  font-family: 'Work Sans', Helvetica, sans-serif;
  height: 100%;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}
body > div {
  padding: 70px 20px 60px 20px;
}


h1, h2, h3, h4 {
  font-family: 'Baloo Thambi', Helvetica, cursive;
  margin: 0;
}
h1 {
  font-size: 38px;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 24px;
}
a {
  text-decoration: none;
}
img {
  vertical-align: middle;
}
a.button, a.task-button {
  background-color: #ddd;
  border: 1px solid #bbb;
  border-radius: 15px 5px 15px 5px;
  color: #222;
  cursor: pointer;
  display: inline-block;
}
a.button {
  padding: 4px 15px;
}
a.task-button {
  padding: 10px;
}
a.button:hover {
  background-color: #ccc;
}
.button-text {
  color: #ae1ed2;
  font-weight: bold;
  line-height: 1.8em;
  vertical-align: middle;
}
.low-key {
  color: #888;
  font-size: 12px;
}
.header-strip {
  position: fixed; top: 0px; left: 0;
  width: 100%;
  background-color: #f0f0f0;
  min-height: 45px;
  font-weight: bold;
  border-bottom: 1px solid #e8e8e8;
  cursor: pointer;
  z-index: 10;
}
.header-strip > h1 {
  margin: 2px 0 0 0;
}
.header-strip > h1 > a {
  color: black;
  display: block;
  width: 100%;
}
.header-strip > h1 > a > img {
  margin: 8px 10px 0px 10px;
  display: block;
  float: left;
}
.highlight-block {
  margin: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
}
.task-description {
  margin-top: 20px;
}
.task-description li {
  margin-bottom: 5px;
}
.task-status-circle {
  background: #ccc;
  border-radius: 15px;
  border: 1px solid #bbb;
  width: 30px;
  height: 30px;
  text-align: center;
  float: right;
}

.float-children-left > * {
  float: left;
}
.float-children-left > a.button {
  border-radius: 5px 15px 5px 15px;
  margin: 0 5px 5px 0;
  padding: 4px 15px;
}
.float-children-right > * {
  float: right;
  margin: 0 5px 5px 0;
}

.block-full-width {
  padding-right: 20px;
  padding-bottom: 20px;
}
.block-full-width > * {
  width: 100%;
  margin-bottom: 20px;
}

/* GiveFeedback / Previous Feedback */
.show-stars {
  color: #ae1ed2;
  font-weight: bold;
  font-size: 20px;
}

/* Position and sizing of burger button */
.bm-burger-button {
  position: fixed;
  width: 30px;
  height: 24px;
  right: 15px;
  top: 14px;
}

/* Color/shape of burger icon bars */
.bm-burger-bars {
  background: #373a47;
}

/* Position and sizing of clickable cross button */
.bm-cross-button {
  height: 24px;
  width: 24px;
}

/* Color/shape of close button cross */
.bm-cross {
  background: #bdc3c7;
}

/* General sidebar styles */
.bm-menu {
  background: #fdfdfd;
  padding: 2.5em 1.5em 0;
  font-size: 1em;
  border-left: 1px solid #e8e8e8;
}

/* Styling of overlay */
.bm-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.sign-in-out {
  font-size: 0.8em;
  font-weight: normal;
}

.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f0f0f0;
  color: #ae1ed2;
  border-top: 1px solid #e8e8e8;
  z-index: 10; /* appear above burger menu pane */
}

#bkgrd-image {
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: -10;
}

@media only screen and (min-width: 768px) {
  #bkgrd-image {
    background: url("background_image.jpg") fixed center;
    opacity: 0.3;
  }
  body > div {
    background: white;
    flex: 1;
    margin: 0 auto;
    opacity: 0.9;
    width: 728px;
  }
  .header-strip {
    width: 768px;
    left: 50%;
    margin-left: -384px; /* Half of the width */
  }
  .footer-strip {
    width: 768px;
    left: 50%;
    margin-left: -384px; /* Half of the width */
  }
  .bm-burger-button {
    right: 50%;
    margin-right: -370px; /* Half of the width */
  }
}
