/*      */
/* Quiz */
/*      */


/*@font-face {
    font-family: 'MarkWebPro';
    src: url('fonts/MarkWebPro-LightW01Regular.woff');
    font-weight: normal;
    font-style: normal;
}

html, body {
  height: 100%;
}

body {
  font-family: 'MarkWebPro', sans-serif;
  background: #191919;
  color: white;
}*/

.rb-page-container {
    height: 100%;
    font-size: .3em;
    text-align: left;
    margin: 0;
    padding: 0;
}

.rb-box {
    width: 90%;
    max-width: 760px;
    min-width: 640px;
    margin: 30px auto;
    padding: 2em;
    background: black;
    border-radius: .75em;
}

.rb-main-container {
    display:flex;
    flex-direction: column;
    width: 80%;
    padding:0;
    margin:0 auto;
    border: 1px solid gray;
}

.stripe-art {
    display: block;
    position: absolute;
    width: 66.6%;
    height: auto;
    padding: 0;
    margin: 0;
    top: 267px;
    object-fit: contain;
    z-index: 1;
}

.stripe-art img {
    width: 100%;
    height: 100%;
}

.rb-row {
    display: flex;
    width: 100%;
    padding:0;
    margin:0;
    flex-direction:row;
    z-index: 2;
}

.rb-left-container  {
    width:20%;
    flex-direction:column;
    border: 1px solid gray; 
}

.rb-center-top-container  {
    width:40%;
    flex-direction:column;
    border: 1px solid gray; 
}

.rb-center-container  {
    width:40%;
    flex-direction:column;
    border: 1px solid gray; 
}

.rb-center-container p  {
    line-height: 23px;
}

.rb-right-container  {
    width:60%;
    flex-direction:column;
    border: 1px solid gray;
}

.gray-box {
    background-color: rgba(50,50,50,1);
}

.rb-range {
    display:flex;
    justify-content: center;
    min-height: 30px;
    font-size:1em;
    color:white;
}

/* Custom Radio Button */
.rb-box p {
    font-size: 1em;
    margin: .4em;
    padding: 0;
}

.rb, .rbTwo, .rbThree {
    display:flex;
    margin: 0;
    padding: 0;
}

.rb-tab {
  top: 16px;
  display: block;
  position: relative;
  width: 100%;
  height: 23px
}

.rb-txt {
  position: absolute;
  top: -6px;
  left: 20px;
  font-size: 1em;
  color: #FFFFFF;
}

.rb-spot {
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0px;
  left: 0px;
  transform: translate(50%, -50%);
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 100%;
  cursor: pointer;
  transition: ease .2s;
}

.rb-tab-active .rb-spot {
  background: rgba(68,53,8,1);
  border: 2px solid rgba(243,139,0,1);
}

/* Submit Button */
.test-button-box {
  flex-direction: row;
  padding: 0 0 .6em 0;
  text-align: center;
}

.test-button {
  display: inline-block;
  width: 80%;
  margin-top: 1.7em;
  padding: .4em;
  max-width: 200px;
  font-size: 1em;
  color: black;
  text-decoration: none;
  letter-spacing: .15em;
  background: darkorange;
  border: none;
  outline: none;
  border-radius: 5em;
  transition: 
    color 0.3s,
    background 0.3s,
    transform 0.3s;
  cursor: pointer;
}

.test-button:hover {
  background: orange;
  color: #6f6f6f;
}

