/* Popup styling */
.popup {
  background: rgba(100, 100, 100, 0.5);
  position: fixed;
  display: none;
  z-index: 5000;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.popup > div {
  width: 95%;
  position: fixed;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background: #FFFFFF;
  padding: 30px;
  z-index: 5001;
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.4);
  max-height: 90vh;
  overflow: auto;
}

.glyphicon.glyphicon-remove-circle {
    position: absolute;
    top: 10px;
    right: 10px;
}

.work-piece:hover, .glyphicon-remove-circle:hover {
    cursor: pointer;
}

.popup a.btn.btn-default {
    margin-bottom: 20px;
}

#survey-results {
  padding: 20px;
  background-color: #d4edda;
  border-color: #c3e6cb;
  margin: 40px 0;
  text-align: center;
  display: none;
}

#survey-results h3 {
  text-align: center;
  font-weight: bold;
}

/* END Popup styling */

@media screen and (min-width: 768px) {
  .popup > div {
    width: 70%;
  }

  .shouse-quiz h2{
    font-size: 4rem;
  }
}
