.rquestion {
  display: flex;
  align-items: center;
  position: relative;
}
.rquestion .loadingOverlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    position: absolute;
    width:100%;
    height: 95%;
    opacity: .95;
    background-color: #E2E7E9;

}
.rquestion .loadingOverlay img { width: 200px;}

.rquestion .imagePreview {
  flex: 75%;
  /* height: calc(100vh - 180px); */
  height: 100%;
}
.rquestion .datapane {
    flex: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 500px;
    /* padding: 30px 0; */
}
.rquestion .datapane .response_data {
  width: 100%;
}
.rquestion .datapane .response_data .whitebox {
    padding: 8px;
    margin: 8px 0;
    font-weight: bold;
    font-size: 16px;
    background-color: white;
    border: thin solid #798daf;
    width: 100%;
}

.rquestion .datapane .response_data .msg {
    opacity: 0;
    color: white;
    padding: 40px 0;
}
.rquestion .datapane .response_data .msg.reveal {
  opacity: 1;
}

.rquestion .imagePreview img {
  /* width: auto;
  max-height: 600px;
  max-width: 100%;
  height: auto; */

  max-width: 100%;
  max-height: calc(100vh - 20px);
  width: auto;
}
.rquestion span.sub-title{
    font-size:22px;
    color:#015488;
    font-weight:bold;
}

@media (max-width: 768px){
    .rquestion .sub-title{
        font-size:19px;
    }
}

.main-box {
  padding: 0px;
}
.main-box img {
  width: 100%;
  height: auto;
  max-height: none;
  max-width: 700px;
}



.displayImages {
  display: flex;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  align-content: space-between;
}

.displayImages > div {
  flex:auto;
  width: 48%;
  justify-content: center;
  height: calc(100vh - 180px);
}
.main-box input[type=button].answer {
  padding: 10px ;
  text-align: center;

}


.displayImages img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
}
body #rotate {
  display: none;
  font-size: 30px;
  width: 90%;
  top: 50%;
  margin-top: -183px;
  position: fixed;
}

.main-box {
  margin-top: 10px;
  height: calc(100vh - 20px);
}
@media(min-height: 720px) {
  .main-box { height: 700px;}
}
@media(max-width: 600px) {
  body #rotate {
    display: block;
  }
  #app { display:none}
}

@media (max-height:500px){

  .rquestion .datapane {
      height: 100%;
  }
  .rquestion .imagePreview img {
    /* max-height: calc(100vh - 50px ) */
  }
  .rquestion .response_actions .sub-title {
    font-size: 16px !important;
  }
  .rquestion .whitebox {
    font-size: 14px !important;
    padding:4px !important;
  }
}


html > body .main-box #span_answer { font-size: 20px; font-weight: bold;}
