html, body {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .container {
    width: inherit;
  }
}
@media (min-width: 1024px) {
  .vertical-center.report-view {
    width: 75%;
    margin: 0 auto;
  }
}
.toggle-password-button {
  padding-bottom: 0.5rem;
}

.vertical-center {
  min-height: 100%; /* Fallback for vh unit */
  min-height: 100vh;
  /* You might also want to use
                         'height' property instead.

                         Note that for percentage values of
                         'height' or 'min-height' properties,
                         the 'height' of the parent element
                         should be specified explicitly.

                         In this case the parent of '.vertical-center'
                         is the <body> element */
  /* Make it a flex container */
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* Align the bootstrap's container vertically */
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  /* In legacy web browsers such as Firefox 9
     we need to specify the width of the flex container */
  width: 100%;
  /* Also 'margin: 0 auto' doesn't have any effect on flex items in such web browsers
     hence the bootstrap's container won't be aligned to the center anymore.

     Therefore, we should use the following declarations to get it centered again */
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.vertical-center.report-view {
  display: block;
}

#vote-container {
  transition: margin 5s ease;
}

.buttons .btn {
  width: 15em;
  height: 15em;
  padding: 1em;
  border-radius: 50%;
  margin: 1em;
  transition: all 5s ease;
}
.buttons .btn.greeter {
  margin-top: 20px;
  zoom: 75;
}
.buttons .btn.btn-very-good {
  background-color: rgb(0, 179, 0);
}
.buttons .btn.btn-very-good:hover {
  background-color: green;
}
.buttons .btn.btn-good {
  background-color: rgb(188, 205, 55);
}
.buttons .btn.btn-good:hover {
  background-color: #99a72a;
}
.buttons .btn.btn-medium {
  background-color: rgb(255, 255, 0);
}
.buttons .btn.btn-medium:hover {
  background-color: #cccc00;
}
.buttons .btn.btn-bad {
  background-color: rgb(255, 221, 0);
}
.buttons .btn.btn-bad:hover {
  background-color: #ccb100;
}
.buttons .btn.btn-very-bad {
  background-color: rgb(255, 0, 0);
}
.buttons .btn.btn-very-bad:hover {
  background-color: #cc0000;
}

@media (orientation: portrait) {
  .buttons:not(.typing) .btn.btn-medium {
    margin-right: 25%;
    margin-left: 25%;
  }
}
.typing .btn {
  width: 7em;
  height: 7em;
  padding: 1px;
}
.typing .shrinkable-container {
  padding: 1em 1em;
}
.typing h1 {
  margin-bottom: 0;
}
.typing #newsticker {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
}

h1 {
  transition: margin 5s ease;
}

.shrinkable-container {
  transition: padding 5s ease;
  padding: 1.5em 1.5em;
}

.modal-body {
  font-size: 24px;
}

.vote-comment {
  -webkit-transition: padding 0.25s ease;
  -moz-transition: padding 0.25s ease;
  -ms-transition: padding 0.25s ease;
  -o-transition: padding 0.25s ease;
  transition: padding 0.25s ease;
  padding: 5em;
}
.vote-comment textarea {
  height: 2em;
  font-size: 1.5em;
  -webkit-transition: height 0.25s ease;
  -moz-transition: height 0.25s ease;
  -ms-transition: height 0.25s ease;
  -o-transition: height 0.25s ease;
  transition: height 0.25s ease;
  width: 100%;
  margin: 0 auto;
  resize: none;
}
.vote-comment textarea:focus {
  height: 6em;
}
.vote-comment textarea::-webkit-input-placeholder {
  font-size: 75em;
}

#update-report {
  margin: 0;
}

#newsticker {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 96%;
  height: 120px;
  margin: 0 2% 2%;
  background-repeat: no-repeat;
  padding: 10px;
  padding-left: 61px;
  font-size: 1.2em;
}
#newsticker.TWITTER {
  background-color: #f5f8fa;
  background-image: url(https://g.twimg.com/dev/documentation/image/Twitter_logo_blue_32.png);
  background-position: 19px 19px;
}
#newsticker p {
  width: 75%;
}
#newsticker img {
  height: 100%;
}

/*# sourceMappingURL=app.output.css.map */
