/****************
 Common template
****************/
/* line 15, ../scss/style.scss */
body {
  background-color: #D1D5D8;
  /* concrete color */
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  margin: 0;
  text-align: center;
}

/* line 24, ../scss/style.scss */
a {
  text-decoration: none;
}

/* line 28, ../scss/style.scss */
.hide {
  display: none;
}

/* line 32, ../scss/style.scss */
.alert {
  font-size: 25px;
  padding: 30px;
  color: #d78716;
  border: 1px solid #d78716;
  margin: 1rem 2rem 0 2rem;
  background-color: rgba(215, 135, 22, 0.2);
  transition: opacity 2s ease-out;
  -webkit-animation: fadein ease-in 0.5s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein ease-in 0.5s;
  /* Firefox < 16 */
  -ms-animation: fadein ease-in 0.5s;
  /* Internet Explorer */
  -o-animation: fadein ease-in 0.5s;
  /* Opera < 12.1 */
  animation: fadein ease-in 0.5s;
}

/* line 47, ../scss/style.scss */
#thanksVoting {
  font-size: 1.25rem;
  padding: 20px;
  color: #d78716;
  border: 1px solid #d78716;
  background-color: rgba(215, 135, 22, 0.2);
  width: calc(80% - 40px);
  display: none;
}

/* line 57, ../scss/style.scss */
.tp-poll-container .tp-buttons {
  margin-top: 2rem;
  position: relative;
}

/* line 63, ../scss/style.scss */
textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
  -webkit-appearance: none;
}

/* line 72, ../scss/style.scss */
.submit-button {
  width: 100%;
  max-width: 500px;
  color: white;
  padding: 1.5rem 7rem;
  font-size: 1.5rem;
  border: none;
  margin-top: 50px;
  font-family: 'Roboto Condensed', sans-serif;
  -webkit-appearance: none;
  background-color: #198e88;
}
@media screen and (max-width: 640px) {
  /* line 72, ../scss/style.scss */
  .submit-button {
    /*width: 70%;*/
    padding: 1.5rem 1rem;
  }
}
/* line 86, ../scss/style.scss */
.submit-button:hover {
  background-color: #707070;
  color: white;
  cursor: pointer;
}

/* line 92, ../scss/style.scss */
#header {
  position: fixed;
  background-color: #a40f23;
  height: 100%;
  width: 30%;
  top: 0;
  left: 0;
  text-align: center;
}
/* line 101, ../scss/style.scss */
#header img {
  max-height: 100px;
  margin-top: 100px;
}
/* line 106, ../scss/style.scss */
#header h1 {
  font-size: 2rem;
  color: #ffffff;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-weight: 300;
}
/* line 115, ../scss/style.scss */
#header h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #cccccc;
  padding: 0 2rem 1rem 2rem;
  font-weight: 300;
}

/* line 124, ../scss/style.scss */
#dialpad {
  margin-left: 30%;
}
/* line 126, ../scss/style.scss */
#dialpad .info {
  font-size: 1.5rem;
  color: #333;
  padding: 0 2rem 0 2rem;
  text-align: center;
  font-weight: 100;
  margin: 0;
}
/* line 135, ../scss/style.scss */
#dialpad input#screen_code {
  background-color: #707070;
  text-align: center;
  /*color: #B8B8B8;*/
  letter-spacing: 0;
  border: none;
  width: 95%;
  font-size: 1.25rem;
  font-weight: 300;
  margin-top: 100px;
  margin-bottom: 20px;
  padding: 2rem;
}

/* line 150, ../scss/style.scss */
#menu {
  margin-left: 30%;
}
/* line 153, ../scss/style.scss */
#menu .btn {
  color: white;
  padding: 3rem;
  display: block;
  font-size: 20px;
}
@media screen and (max-width: 640px) {
  /* line 153, ../scss/style.scss */
  #menu .btn {
    float: none;
    width: auto;
  }
}
/* line 164, ../scss/style.scss */
#menu .btn:first-child {
  background-color: #198e87;
}
/* line 168, ../scss/style.scss */
#menu .btn:nth-child(3) {
  background-color: rgba(25, 142, 135, 0.9);
}
/* line 172, ../scss/style.scss */
#menu .btn:nth-child(5) {
  background-color: rgba(25, 142, 135, 0.8);
}
/* line 175, ../scss/style.scss */
#menu .btn:nth-child(7) {
  background-color: rgba(25, 142, 135, 0.7);
}
/* line 178, ../scss/style.scss */
#menu .btn:nth-child(9) {
  background-color: rgba(25, 142, 135, 0.6);
}
/* line 181, ../scss/style.scss */
#menu .btn:nth-child(11) {
  background-color: rgba(25, 142, 135, 0.5);
}
/* line 184, ../scss/style.scss */
#menu .btn:nth-child(13) {
  background-color: rgba(25, 142, 135, 0.4);
}
/* line 187, ../scss/style.scss */
#menu .btn:hover {
  background-color: #198e87;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* line 243, ../scss/style.scss */
.hideLarge {
  display: none;
}

/* line 247, ../scss/style.scss */
#menu h1 {
  margin: 0;
  font-size: 2rem;
  color: white;
  text-align: center;
  padding: 2rem;
  font-weight: 300;
  background-color: #198e88;
  position: relative;
}

/* line 258, ../scss/style.scss */
#menu p {
  margin: 0;
  font-size: 1.25rem;
  color: white;
}

/* line 264, ../scss/style.scss */
a.btn-close {
  position: relative;
  color: #707070;
  font-size: 80px;
  padding: 10px;
}
/* line 270, ../scss/style.scss */
a.btn-close:hover {
  border: none;
  color: #a40f23;
}

@media screen and (max-width: 640px) {
  /* line 278, ../scss/style.scss */
  a.btn-close {
    font-size: 60px;
  }

  /* line 282, ../scss/style.scss */
  #menu h1 {
    font-size: 1.25rem;
  }

  /* line 286, ../scss/style.scss */
  .hideLarge {
    display: inherit;
  }

  /* line 290, ../scss/style.scss */
  #header {
    background-color: #a40f23;
    position: relative;
    width: 100%;
    height: 70px;
    padding-top: 30px;
  }
  /* line 297, ../scss/style.scss */
  #header h1 {
    text-align: left;
    text-transform: uppercase;
    font-size: 1.75rem;
    color: white;
    margin: 0 2rem 0 2rem;
    line-height: 2rem;
    font-weight: 300;
    padding: 0;
    background-color: #a40f23;
  }
  /* line 310, ../scss/style.scss */
  #header h2 {
    margin: 0;
    font-size: 1.25rem;
    text-align: left;
    padding: 0 2rem 1rem 2rem;
    font-weight: 300;
  }
  /* line 318, ../scss/style.scss */
  #header img {
    float: left;
    max-height: 55px;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 20px;
  }

  /* line 329, ../scss/style.scss */
  #dialpad {
    position: relative;
    left: 0;
    margin-left: 0;
  }
  /* line 333, ../scss/style.scss */
  #dialpad .info {
    font-size: 1rem;
    padding: 0 2rem;
    text-align: center;
    margin-top: 1rem;
    font-weight: 100;
  }
  /* line 343, ../scss/style.scss */
  #dialpad input#screen_code {
    background-color: #707070;
    text-align: left;
    color: #fff;
    letter-spacing: 0;
    border: none;
    width: 100%;
    font-size: 1.25rem;
    font-weight: 300;
    margin-top: 1rem;
    margin-bottom: 0;
  }

  /* line 357, ../scss/style.scss */
  .submit-button {
    color: white;
    font-size: 1.25rem;
    border: none;
    font-family: 'Roboto Condensed', sans-serif;
    -webkit-appearance: none;
    background-color: #198e88;
    width: 100%;
    padding: 1rem 1rem;
    font-weight: 400;
    margin-top: 2rem;
  }
  /* line 369, ../scss/style.scss */
  .submit-button:hover {
    background-color: #707070;
    color: white;
  }

  /* line 375, ../scss/style.scss */
  #menu {
    margin-left: 0;
    margin-top: 0;
  }
  /* line 379, ../scss/style.scss */
  #menu a {
    justify-content: center;
    /* align horizontal */
    align-items: center;
  }
  /* line 383, ../scss/style.scss */
  #menu a:hover {
    background-color: #a40f23;
    color: white;
    border: 1px #a40f23 solid;
  }
  /* line 391, ../scss/style.scss */
  #menu .btn {
    height: auto;
    margin: 0;
    padding: 2rem;
    color: white;
    float: none;
    width: auto;
    border: none;
    border-radius: 0;
    font-weight: 300;
  }
  /* line 402, ../scss/style.scss */
  #menu .btn:first-child {
    background-color: #198e87;
  }
  /* line 406, ../scss/style.scss */
  #menu .btn:nth-child(3) {
    background-color: rgba(25, 142, 135, 0.9);
  }
  /* line 410, ../scss/style.scss */
  #menu .btn:nth-child(5) {
    background-color: rgba(25, 142, 135, 0.8);
  }
  /* line 413, ../scss/style.scss */
  #menu .btn:nth-child(7) {
    background-color: rgba(25, 142, 135, 0.7);
  }
  /* line 416, ../scss/style.scss */
  #menu .btn:nth-child(9) {
    background-color: rgba(25, 142, 135, 0.6);
  }
  /* line 419, ../scss/style.scss */
  #menu .btn:nth-child(11) {
    background-color: rgba(25, 142, 135, 0.5);
  }
  /* line 422, ../scss/style.scss */
  #menu .btn:nth-child(13) {
    background-color: rgba(25, 142, 135, 0.4);
  }
  /* line 425, ../scss/style.scss */
  #menu .btn:hover {
    background-color: #198e87;
    border: none;
  }
}
/* line 436, ../scss/style.scss */
.results li div .votes-bar .current-score {
  border-radius: 0 !important;
  height: 7vh !important;
  background-color: #d78716 !important;
  position: relative;
}

/* line 443, ../scss/style.scss */
.results li div .votes-bar {
  border-radius: 0 !important;
  background-color: #707070 !important;
  color: white;
}

/* line 449, ../scss/style.scss */
form {
  margin-top: 50px;
  margin-bottom: 0 !important;
}

/* line 453, ../scss/style.scss */
input[type="radio"]:checked + label p {
  background-color: #d78716 !important;
}

/* line 457, ../scss/style.scss */
ul.results {
  width: calc(100% - 2rem);
}

/* line 461, ../scss/style.scss */
.results li {
  display: inline-flex;
  margin: 1rem 0 0 2rem !important;
  width: 100%;
}

/* line 467, ../scss/style.scss */
.vote-results {
  width: 100% !important;
}

/* line 471, ../scss/style.scss */
.image-content img {
  max-width: 7vw;
}

/* line 475, ../scss/style.scss */
.votes-bar-mobile {
  width: 20vw !important;
}

@media screen and (max-width: 900px) {
  /* line 480, ../scss/style.scss */
  .image-content img {
    max-width: 25vw;
  }

  /* line 484, ../scss/style.scss */
  .votes-bar-mobile, .votes-bar-mobile-text {
    width: calc(100% - 2rem) !important;
    float: none;
  }
}
/*MODAL*/
/* line 491, ../scss/style.scss */
.modal:before {
  content: "";
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

/* line 502, ../scss/style.scss */
.modal:target:before {
  display: block;
}

/* line 506, ../scss/style.scss */
.modal:target .modal-dialog {
  bottom: 0;
  top: 0;
  left: 30%;
  right: 0;
  padding: 0;
  position: fixed;
  margin: auto;
}

@media screen and (max-width: 640px) {
  /* line 517, ../scss/style.scss */
  .modal:target .modal-dialog {
    top: 0;
    left: 0;
    bottom: 0;
  }
}
/* line 524, ../scss/style.scss */
.modal-dialog {
  overflow-y: scroll;
  overflow-x: hidden;
  background: #191919;
  position: fixed;
  top: -100%;
  left: 100%;
  z-index: 11;
}

/* line 534, ../scss/style.scss */
.modal-dialog .results {
  text-align: left;
}

.form-control {
  background-color: #fff;
  text-align: center;
  color: #000000;
  letter-spacing: 0;
  border: none;
  width: 80%;
  max-width: 400px;
  font-size: 1.25rem;
  font-weight: 300;
  margin-top: 16px;
  padding: 2rem;
  height: 80px;
}