#infoscreen{ 
    background: url("newbg.jpg") no-repeat center center;
    background-size: cover;
}

#qsblock{
}

#result{
}

/*WARNING MODALS*/
.warning {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.warning-box {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 2em;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/*BUTTONS*/
.button-p {
    color: white;
    border-radius: 4px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    font-size: 120%;
    width: 100%;
    margin-bottom: 0.5em;
    cursor: pointer;
}

.button-green {
    background: rgb(28, 184, 65); /* this is a green */
}
.button-red {
    background: rgb(202, 60, 60); /* this is a maroon */
}
.button-orange {
    background: rgb(223, 117, 20); /* this is an orange */
}
.button-blue {
    background: rgb(66, 184, 221); /* this is a light blue */
}
.button-large {
    font-size: 110%;
}
.button-xlarge {
    font-size: 125%;
}

.button-p:hover {
    background-color: #E8B61E;
}

.selected{
    background-color: #E8B61E;
}

progress{
    width:100%;
    height:0.2em;
    margin-top: 0em;
    margin-bottom: 1em;
}

/*HELPERS*/
.quotation{
  font-family: sans-serif;
  text-align: center;
  font-size: 2em;
  quotes: "\201C""\201D""\2018""\2019";
  line-height: 1.4;
  max-width: 70%;
  margin:0 auto;
  margin-bottom: 1em;
}

.quotation:before {
  content: open-quote;
  display: inline;
  height: 0;
  line-height: 0;
  left: -10px;
  position: relative;
  top: 10px;
  font-size: 1.5em;
}

.quotation::after {
  content: close-quote;
  display: inline;
  height: 0;
  line-height: 0;
  left: 10px;
  position: relative;
  top: 10px;
  font-size: 1.5em;
}
.is-center {
    text-align: center;
}
.pure-img-responsive {
    max-width: 100%;
    height: auto;
}