@import url(https://fonts.googleapis.com/css?family=Roboto:400, 700);

* {
  font-family: 'Roboto';
  color: #585858;
}

a {
  color: #7891ff;
}

nav a {
  text-decoration: none;
  letter-spacing: 0.1em;
  line-height: 52px;
}

.nav-item {
  padding: 0.5em;
  opacity: 0.8;
  display: inline;
  transition: all 0.1s ease;
}

.footer {
  position: relative;
  bottom: 0;
  padding: 1em;
  opacity: 0.5;
  text-align: center;
  width: calc(100% - 2em);
}

.nav-item:hover {
  border-bottom: 3px solid;
}

header {
  padding: 1em;
}
.header-item {
  display: inline-block;
}
.logo {
  height: auto;
  width: 75px;
}

.vote-logo {
  opacity: 0.65;
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}

.right {
  float: right;
}

.left {
  float: left;
}

h1 {
  font-size: 2em;
}

body {
  background: #fbfbfb;
}

.container {
  padding: 2em;
  border: 1px solid #f1f1f1;
  margin: auto;
  max-width: 640px;
  background: #fff;
}

label {
  font-family: 'Roboto';
}

.date {
  text-align: center;
}

input[type='date'] {
  padding: 1em;
  font-size: 16px;
  color: #222;
  margin: auto;
  border: 1px solid #f1f1f1;
  max-width: 40%;
}

.format-wrapper {
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex;
  display: flex;
}

.format {
  cursor: pointer;
  background: white;
  display: inline-block;

  font-size: 2em;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-shadow {
  text-shadow: 0 1px 1px #ccc;
}

.btn {
  padding: 1em;
  margin: 1em 0;
  font-size: 2em;
  color: #fff;
  border: none;
  /*background: #75FEFF;*/
  background: #7891ff;
  box-shadow: 0 2px 12px -2px #4a4a4a;
  opacity: 0;
  transition: all 0.5s ease;
}

.btn-block {
  width: 100%;
}

.active {
  opacity: 1;
}

input[type='radio'] {
  display: none;
}

input[type='radio'] + label {
  width: 100%;
  padding: 1em 0;
}

input[type='radio']:checked + label {
  background-color: #4a4a4a;
  opacity: 1;
  color: white;
  box-shadow: 0 2px 12px -2px #777;
}

/* HTML EXPORT */
.message {
  padding: 1em 0;
  border-bottom: 1px solid #e8e8e8;
}

.cta {
  background: #fbfbfb;
  border: 1px solid #e8e8e8;
  padding-left: 1em;
  padding-right: 1em;
  margin: 0 -1em;
  box-shadow: 0 0 20px -16px;
}

section {
  margin: 2em 0;
}

@media only screen and (max-width: 480px) {
  body {
    font-size: 10px;
  }
  header,
  .container {
    padding: 0.5em;
  }
  input[type='date'] {
    padding: 0.5em;
  }
  input[type='radio'] + label {
    width: 100%;
    padding: 0.5em 0;
  }
}
