@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700');

/* ======================= */
/* PARENT IFRAME           */

iframe#rtGapQuizFrame {
    width: 100%;
    border: 0;
    overflow: hidden;
    height: 618px;
    
    -webkit-transition: height 666ms ease-in;
    -ms-transition:     height 666ms ease-in;
    transition:         height 666ms ease-in;
    
}

/* ======================= */
/* MAIN                    */

input {
    border-radius:0;
    -webkit-appearance: none !important;
}

div#rtGapQuiz {
    
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    
    background-color: #ffffff;

    margin: auto;
    border-radius: 5px;
    border: 1px solid #c0c0c0;
    max-width: 938px;
    overflow: hidden;
}

div#rtGapQuiz.splash {
    background-color: #e74325;
    background-position: center 150px;
    background-repeat: no-repeat;
    background-image: url(images/gapquiz.splash.white.png);
    background-size: 240px auto;
    height: 600px;
}

div#rtGapQuiz > div.page {
    box-sizing: border-box;
    display: block;
    height: auto;
    min-height: 600px;
}

div#rtGapQuiz > div.page:after {
  content: "";
  display: table;
  clear: both;
}

div#rtGapQuiz.splash > div.page {
    display: none;
}

div#rtGapQuiz_Intro {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 66%, rgba(192,192,192,1) 100%);
    height: 100%;

    position: relative;
}

div#rtGapQuiz_Intro   div.logo,
div#rtGapQuiz_Outro   div.logo,
div#rtGapQuiz_Results div.logo
{
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(images/gapquiz.logo_320x80.png);
    background-size: 320px auto;
    width: 320px;
    height: 80px;
}

div#rtGapQuiz_Intro div.logo,
div#rtGapQuiz_Outro div.logo {
    position: absolute;
    right:  0px;
    bottom: 0px;
}

div#rtGapQuiz_Intro_Text {
    width: calc(100% - 260px);
}

div#rtGapQuiz_Intro_Text:after {
  content: "";
  display: table;
  clear: both;
}

/* ======================= */
/* INIT                   */

div#rtGapQuiz .page {
    display: none;
}

/* ======================= */
/* LOADER                  */

div#rtGapQuiz .shade {
    width: 100%;
    height: 100%;
    float: left;
    position: fixed;
    left: 0;
    top: 0;
    text-align: center;
    display:none;
    z-index: 9999;
}

div#rtGapQuiz.loading .shade,
div#rtGapQuiz.splash  .shade
{
    display:block;
}

div#rtGapQuiz.loading .shade:after {
  content: "";
  display: table;
  clear: both;
}

div#rtGapQuiz.loading .shade .lds-dual-ring {
    margin-top: 280px;
}

div#rtGapQuiz.splash .shade .lds-dual-ring {
    margin-top: 480px;
}

div#rtGapQuiz.loading .shade.white {
    background-color: #ffffff;
    opacity: 0.5;
}

div#rtGapQuiz.loading .shade.black {
    background-color: #000000;
    opacity: 0.5;
}

div#rtGapQuiz.loading .shade .lds-dual-ring:after {
      border-color: #000 transparent #000 transparent;
}

div#rtGapQuiz.loading .shade.white .lds-dual-ring:after {
      border-color: #808080 transparent #808080 transparent;
}

div#rtGapQuiz.loading .shade.black .lds-dual-ring:after {
      border-color: #fff transparent #fff transparent;
}

/* ======================= */
/* INTRO                   */

div#rtGapQuiz_Intro {
    padding: 20px;
}

div#rtGapQuiz_Intro h1 {
    font-size: 20px;
    color: #e74325;
    margin-top: 5px;
}

div#rtGapQuiz_Intro p {
    font-size: 16px;
    color: #3333333;
    line-height: 1.5em;
    margin: 5px 0px 25px 0px;
}

div#rtGapQuiz input:focus,
div#rtGapQuiz textarea:focus,
div#rtGapQuizselect:focus {
    outline: none;
}

form#rtGapQuizU {
    width: 240px;
    box-sizing: border-box;
    position: absolute;
    right: 20px;
    top: 50px;
}

form#rtGapQuizU label {
    font-size: 12px;
    display:block;
    color: #808080;
    margin: 0px 0px 4px 0px;
}

form#rtGapQuizU input {
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #c0c0c0;
    padding: 5px;
    margin-bottom: 10px;
    width: 240px;
}

form#rtGapQuizU input[type=text] {
    background-color: #e5fbff;
    font-size: 16px;
}

form#rtGapQuizU input[type=text].error {
    background-color: #ffeae5;
}

form#rtGapQuizU input[type=text]:focus {
    background-color: #ffffff;
}

form#rtGapQuizU input[type=button] {
    display: block;
    box-sizing: border-box;
    margin-top: 17px;
    height: 36px;
    font-size: 16px;
    color: #dddddd;
    background: #808080;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: background-color 1000ms ease-out;
    -ms-transition:     background-color 1000ms ease-out;
    transition:         background-color 1000ms ease-out;
}

form#rtGapQuizU input[type=button]:hover {
    background-color: #ffffff;
    color: #333333;
    -webkit-transition: background-color 100ms ease-in-out;
    -ms-transition:     background-color 100ms ease-in-out;
    transition:         background-color 100ms ease-in-out;
    
}

span#rtGapQuizU_Email_Sent {
    font-weight: bold;
}

/* ======================= */
/* OUTRO                   */

div#rtGapQuiz_Outro {
    background: linear-gradient(180deg, rgba(192,192,192,1) 0%, rgba(192,192,192,1) 33%, rgba(255,255,255,1) 100%);
    height: 100%;

    position: relative;
}

div#rtGapQuiz_Outro h1 {
    
    font-size: 25px;
    text-align: center;
    color: #e74325;
    margin:  0px;
    padding: 40px;
    
}

div#rtGapQuiz div.statusbox {
    box-sizing: border-box;
    padding: 20px 40px;
    margin: 0px 40px 40px 40px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

div#rtGapQuiz div.statusbox p {
    font-size: 18px;
    line-height: 1.4em;
}


/* ======================= */


/* ======================= */
/* QUIZ AND QUESTION       */

div#rtGapQuiz_Quiz * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div#rtGapQuiz_Quiz {
    padding-bottom: 10px;
}

div#rtGapQuiz_Quiz ul,
div#rtGapQuiz_Quiz li
{
    display:block;
    list-style: none;
    margin:  0;
    padding: 0;
}

div#rtGapQuiz_Quiz p,
div#rtGapQuiz_Quiz ul {
    padding-left: 20px;
    padding-right: 20px;
}

div#rtGapQuiz_Quiz p,
div#rtGapQuiz_Quiz li
{
    
    font-size: 16px;
    line-height: 1.4em;
    color: #3333333;
    
}

div#rtGapQuiz_Quiz ul {
    margin-top: 30px;
}

div#rtGapQuiz_Quiz p {
    margin-top:    15px;
    margin-bottom:  0px;
}

div#rtGapQuiz_Quiz li {
    position: relative;
    border: 1px solid #c0c0c0;
    box-sizing: border-box;
    padding: 15px 20px;
    border-radius: 10px;
    margin-top:    15px;
    margin-bottom: 15px;
    cursor: pointer;
    background-color: #e7f1f3;
    color:            #333333;
    -webkit-transition: background-color 1000ms ease-out;
    -ms-transition:     background-color 1000ms ease-out;
    transition:         background-color 1000ms ease-out;
}

div#rtGapQuiz_Quiz li:hover {
    background-color: #aaaaaa;
    color: #ffffff;
    -webkit-transition: background-color 100ms ease-in-out;
    -ms-transition:     background-color 100ms ease-in-out;
    transition:         background-color 100ms ease-in-out;
}

div#rtGapQuiz_Quiz li.mc {
    padding-left: 48px;
}

div#rtGapQuiz_Quiz li.mc:before {
    position: absolute;
    left: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #aaaaaa;
}

div#rtGapQuiz_Quiz li.mc:hover:before {
    color: #d0d0d0;
}

div#rtGapQuiz_Quiz li.mc.a:before { content: "A"; }
div#rtGapQuiz_Quiz li.mc.b:before { content: "B"; }
div#rtGapQuiz_Quiz li.mc.c:before { content: "C"; }
div#rtGapQuiz_Quiz li.mc.d:before { content: "D"; }
div#rtGapQuiz_Quiz li.mc.e:before { content: "E"; }
div#rtGapQuiz_Quiz li.mc.f:before { content: "F"; }
div#rtGapQuiz_Quiz li.mc.g:before { content: "G"; }
div#rtGapQuiz_Quiz li.mc.h:before { content: "H"; }
div#rtGapQuiz_Quiz li.mc.i:before { content: "I"; }
div#rtGapQuiz_Quiz li.mc.j:before { content: "J"; }
div#rtGapQuiz_Quiz li.mc.k:before { content: "K"; }

div#rtGapQuiz_Quiz li.selected {
    background-color: #808080 !important;
    -webkit-transition: none !important;
    transition:         none !important;
    -ms-transition:     none !important;
}

div#rtGapQuiz_Quiz > div.h {
    width: 100%;
    background-color: #aaaaaa;
    padding: 10px;
    box-sizing: border-box;
}

div#rtGapQuiz_Quiz > div.h {
    content: "";
    display: table;
    clear: both;
}

div#rtGapQuiz_Quiz > div.h > div.left {
    float: left;
}

div#rtGapQuiz_Quiz > div.h > div.right {
    float: right;
}

div#rtGapQuiz_Quiz > div.h div.logo {
    width: 240px;
    height: 48px;
    background-position: right center;
    background-repeat: no-repeat;
    background-image: url(images/gapquiz.header-logo.white.png);
    background-size: auto 100%;
    float: left;
}

div#rtGapQuiz_Quiz > div.h div.name,
div#rtGapQuiz_Quiz > div.h div.progress
{
    color: #ffffff;
    margin-left:  10px;
    margin-right: 10px;
}

div#rtGapQuiz_Quiz > div.h div.name {
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
}

div#rtGapQuiz_Quiz > div.h div.progress {
    font-size: 14px;
}

div#rtGapQuizQ {
    padding: 15px;
}

div#rtGapQuizQ p.tf {
    margin-top: 5px !important;
}

div#rtGapQuizQ.mc .tf {
    display: none !important;
}
    
div#rtGapQuizQ.tf .mc {
    display: none !important;
}

/* ======================= */
/* RESULTS */


#rtGapQuiz_Results {
    padding: 20px;

    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 320px, rgba(192,192,192,1) 100%);
}

#rtGapQuiz_Results h1 {
    font-size: 18px;
    color: #e74325;
    line-height: 1.1em;
    margin-top: 0px;
    margin-bottom: 5px;
}

#rtGapQuiz_Results ul {
    padding-left: 1em;
}

#rtGapQuiz_Results p,
#rtGapQuiz_Results li,
#rtGapQuizR_User > div 
{
    font-size: 16px;
    line-height: 1.3em;
}

#rtGapQuiz_Results li {
    margin-top: 0.25em;
    margin-bottom: 0.25em;
}

#rtGapQuizR_User > div {
    margin-bottom: 5px;
}

#rtGapQuiz_Results > div.logo {
    float: right;
    margin: 0px;
}

#rtGapQuiz_Results > div {
    margin-top:    20px;
    margin-bottom: 40px;
}

#rtGapQuiz_Results > div:last-child {
    margin-bottom: 0px;
}

#rtGapQuizR_User > div.name {
    color: #505050;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0px;
}

#rtGapQuizR_User > div.company {
    font-size: 16px;
    color: #808080;
}

#rtGapQuizR_User > div.quiz {
    color: #e74325;
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2em;
}

#rtGapQuizR_User > div.date {
    color: #808080;
    font-size: 14px;
}

#rtGapQuizR_User > div.date:before,
#rtGapQuizR_User > div.score:before {
    color: #808080;
    font-size: 14px;
    font-weight: normal;
}

#rtGapQuizR_User > div.score:before {
    content: "Score: ";
    display: block;
}

#rtGapQuizR_User > div.date:before {
    content: "Completed: ";
    line-height: 1.1em;
}

#rtGapQuizR_User > div.score {
    color:         #e74325;
    font-size:     36px;
    line-height:   1.0em;
    font-weight:   bold;
    margin-top:    20px;
    margin-bottom: 40px;
}

#rtGapQuiz_Results div.product {
    position: relative;
    box-sizing: border-box;
    padding: 20px;
    padding-left: 150px;
    border: 1px solid #c0c0c0;
    border-radius: 5px;
    margin: 10px 0px 10px 0px;
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: auto 100px;
    height: 160px;
    overflow: hidden;
    background-color: #ffffff;
    background-image: url(/images/creative/icon200_training_course@2x.png);
    cursor: pointer;
}

#rtGapQuiz_Results div.product:hover {
    border-color: #808080;
}

#rtGapQuiz_Results div.product:after {
    content: "more info…";
    display: block;
    box-sizing: border-box;
    text-align: right;
    width: calc(100% - 150px);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 66.6%, rgba(255,255,255,1) 100%);
    position: absolute;
    padding: 60px 10px 10px 0px;
    bottom: 0px;
    right:  0px;
    font-size: 12px;
    font-style: italic;
    color: #e74325;
}

#rtGapQuiz_Results div.product a {
    display: none;
}

#rtGapQuiz_Results div.product p {
    margin-top: 1.0em;
    margin-bottom: 0px;
}

#rtGapQuizR_Products > div.product:last-child {
    margin-bottom: 0px;
}

/* ================= */
/* PRODUCTS          */

/* INJECTION MOLDING */

#rtGapQuiz_Results div.product.im {
    background-image: url(/images/creative/icon200_category_im@2x.png);
}

#rtGapQuiz_Results div.product.ds {
    background-image: url(/images/creative/icon200_category_ds@2x.png);
}

#rtGapQuiz_Results div.product.lm.fives {
    background-image: url(/images/creative/icon200_training_5s@2x.png);
}

#rtGapQuiz_Results div.product.im.imb {
    background-image: url(/images/creative/icon200_im_imb@2x.png);
}

#rtGapQuiz_Results div.product.im.sm {
    background-image: url(/images/creative/icon200_im_sm@2x.png);
}

/* BLOW MOLDING */

#rtGapQuiz_Results div.product.bm {
    background-image: url(/images/creative/icon200_category_bm@2x.png);
}

#rtGapQuiz_Results div.product.bm.xbm {
    background-image: url(/images/creative/icon200_bm_ex@2x.png);
}

/* EXTRUSION */

#rtGapQuiz_Results div.product.ex {
    background-image: url(/images/creative/icon200_category_ex@2x.png);
}

#rtGapQuiz_Results div.product.ex.sse {
    background-image: url(/images/creative/icon200_training_extrusion1@2x.png);
}

#rtGapQuiz_Results div.product.ex.tse {
    background-image: url(/images/creative/icon200_training_extrusion2@2x.png);
}

/* COMMON */

#rtGapQuiz_Results div.product.lm {
    background-image: url(/images/creative/icon200_training_lean@2x.png);
}

#rtGapQuiz_Results div.product.ms {
    background-image: url(/images/creative/icon200_im_ms@2x.png);
}

#rtGapQuiz_Results div.product.pm {
    background-image: url(/images/creative/icon200_plastics@2x.png);
}

#rtGapQuiz_Results div.product.bpr {
    background-image: url(/images/creative/icon200_training_blueprint@2x.png);
}

/* PACKAGES AND COMPANY-WIDE TRAINING */

#rtGapQuiz_Results h1.bonus {
    text-align: center;
    padding: 40px 40px 20px 40px;
    color: #505050;
}

#rtGapQuiz_Results div.product.bonus {
    background-color: #aaaaaa;
    border-color: #d0d0d0;
}

#rtGapQuiz_Results div.product.bonus:hover {
    border-color: #ffffff;
}

#rtGapQuiz_Results div.product.bonus h1,
#rtGapQuiz_Results div.product.bonus p
{
    color: #ffffff;
}

#rtGapQuiz_Results div.bonus.product:after {
    background: linear-gradient(180deg, rgba(170,170,170,0) 0%, rgba(170,170,170,1) 66.6%, rgba(170,170,170,1) 100%);
    color: #eeeeee;
}

#rtGapQuiz_Results div.product.pkg {
    background-image: url(/images/creative/icon200_training_package@2x.png);
}

#rtGapQuiz_Results div.product.corp {
    background-image: url(/images/creative/icon200_level_company@2x.png);
}

/* ======================= */
/* LOADER */

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#rtGapQuiz_Shade.quiz div.lds-dual-ring {
    display: none;
}

/* ======================= */
/* UI */

#rtGapQuiz_Error {
    display: none;
}

p#rtGapQuiz_Error_Message {
    font-size: 16px;
    line-height: 1.333em;
    color: #000000;
}

.ui-dialog .ui-dialog-title {
    font-size: 16px;
    line-height: 1.0em;
    margin: 0;
}

.no-close .ui-dialog-titlebar-close {
  display: none;
}

.ui-dialog .ui-dialog-buttonpane {
    border: none;
}

.ui-dialog .ui-dialog-titlebar {
    padding:       10px;
    padding-right: 20px;
}

.ui-dialog .ui-dialog-content {
    padding: 10px;
}

.ui-dialog .ui-dialog-buttonpane {
    margin-top: 0px;
}

.ui-dialog .ui-dialog-buttonpane button {
    outline: none;
}

/* ======================= */

#rtGapQuizR_Scorecard  {
    background-color: #ffffff;
    border: 1px solid #c0c0c0;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

#rtGapQuizR_Scorecard:after, 
#rtGapQuizR_Scorecard > div.row:after {
    content: "";
    display: table;
    clear: both;
}

#rtGapQuizR_Scorecard > div.row.template {
    display: none;    
}

#rtGapQuizR_Scorecard > div.row {
    margin: 3px 0px 3px 0px;
}

#rtGapQuizR_Scorecard > div.row > span.name {
    display:block;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 15px;
    font-family: 'Roboto Condensed', sans-serif;
    text-align: right;
    padding: 2px 10px 0px 10px;
    color: #808080;
    float: left;
    width: 30%;
}

#rtGapQuizR_Scorecard > div.row > div.graph,
#rtGapQuizR_Scorecard > div.row > div.graph > span.fill {
    height: 10px;
    border-radius: 5px;
}

#rtGapQuizR_Scorecard > div.row > div.graph {
    background-color:#f0f0f0;
    box-sizing: border-box;
    position: relative;
    top: 5px;
    width: 70%;
    overflow: hidden;
    float: right;
    box-sizing: border-box;
}

#rtGapQuizR_Scorecard > div.row > div.graph > span.fill {
    display: block;
    position: absolute;
    width: 0%;
    
    background-color: #e74325;
    
/*
    background: linear-gradient(180deg, rgba(227,227,227,0.5) 0%, rgba(255,255,255,0.75) 66%, rgba(212,212,212,0.5) 100%);
    background-color: #d8ecf0;
-webkit-box-shadow: inset 5px 5px 15px 0px rgba(0,0,0,0.25); 
        box-shadow: inset 5px 5px 15px 0px rgba(0,0,0,0.25);
*/
        
    -webkit-transition: width 3000ms ease-out;
    -ms-transition:     width 3000ms ease-out;
    transition:         width 3000ms ease-out;
}

/* ======================= */
/* MOBILE                  */
/* 960, 768, 600, 480, 360, 320  */


/* ====================================== */
/* INHIBIT STICKY HOVER ON MOBILE DEVICES */
@media
only screen and (-webkit-min-device-pixel-ratio: 1.25)   ,
only screen and (   min--moz-device-pixel-ratio: 1.25)   ,
only screen and (     -o-min-device-pixel-ratio: 1.25/1) ,
only screen and (        min-device-pixel-ratio: 1.25)   ,
only screen and (                min-resolution: 120dpi) ,
only screen and (                min-resolution: 1.5dppx),
only screen and (max-width: 959px)
{ 
    div#rtGapQuiz_Quiz li:hover {
        background-color: #e7f1f3;
        color:            #333333;
    }
    
    div#rtGapQuiz_Quiz li.mc:hover:before {
        color: #aaaaaa;
    }
    
    form#rtGapQuizU input[type=button]:hover {
        color: #dddddd;
        background: #808080;
    }

}
/* ====================================== */

@media
only screen and (-webkit-min-device-pixel-ratio: 1.25)   ,
only screen and (   min--moz-device-pixel-ratio: 1.25)   ,
only screen and (     -o-min-device-pixel-ratio: 1.25/1) ,
only screen and (        min-device-pixel-ratio: 1.25)   ,
only screen and (                min-resolution: 120dpi) ,
only screen and (                min-resolution: 1.5dppx)  
{ 

    div#rtGapQuiz_Quiz > div.h div.logo {
        background-image: url(images/gapquiz.header-logo.white@2x.png);
    }

    div#rtGapQuiz_Intro   div.logo,
    div#rtGapQuiz_Outro   div.logo,
    div#rtGapQuiz_Results div.logo
    {
        background-image: url(images/gapquiz.logo_320x80@2x.png);
    }

    div#rtGapQuiz.splash {
        background-image: url(images/gapquiz.splash.white@2x.png);
    }
}

@media
only screen and (-webkit-min-device-pixel-ratio: 2.25)   ,
only screen and (   min--moz-device-pixel-ratio: 2.25)   ,
only screen and (     -o-min-device-pixel-ratio: 2.25/1) ,
only screen and (        min-device-pixel-ratio: 2.25)   ,
only screen and (                min-resolution: 200dpi) ,
only screen and (                min-resolution: 2.55dppx)  
{ 

    div#rtGapQuiz_Quiz > div.h div.logo {
        background-image: url(images/gapquiz.header-logo.white@3x.png);
    }

    div#rtGapQuiz_Intro   div.logo,
    div#rtGapQuiz_Outro   div.logo,
    div#rtGapQuiz_Results div.logo
    {
        background-image: url(images/gapquiz.logo_320x80@2x.png);
    }

    div#rtGapQuiz.splash {
        background-image: url(images/gapquiz.splash.white@2x.png);
    }
}


@media only screen and (max-width: 959px) {
    div#rtGapQuiz {
        min-height: 100%;

    }
    
    div#rtGapQuiz_Intro div.logo, div#rtGapQuiz_Outro div.logo {
        width: 280px;
        background-size: 240px auto;
    }
    
    div#rtGapQuiz.splash {
        background-position: center 40px;
        background-size: 240px auto;
        height: auto;
        min-height: 480px;
    }
    
    div#rtGapQuiz.splash .shade .lds-dual-ring {
        margin-top: 320px;
    }
}
@media only screen and (max-width: 759px) {
    
    div#rtGapQuiz_Intro h1 {
        margin-top: 0px;
    }
    
    div#rtGapQuiz_Intro p {
        font-size: 15px;
        line-height: 1.3em;
        margin: 5px 0px 15px 0px;
    }
    
    div#rtGapQuiz_Results div.logo {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 240px auto;
        width: 240px;
        height: 60px;
    }
    
    #rtGapQuiz_Results div.product {
        padding: 15px 15px 15px 100px;
        margin: 10px 0px 10px 0px;
        background-position: 10px center;
        background-size: auto 75px;
        height: 120px;
        overflow: hidden;
    }
    
    #rtGapQuiz_Results div.product:after {
        width: calc(100% - 100px);
        padding: 50px 5px 5px 5px;
    }
    
    #rtGapQuiz_Results div.product h1 {
        font-size: 16px;
    }
    
    #rtGapQuiz_Results div.product p {
        font-size: 13px;
        margin-top: 0.75em;
    }
    
    div#rtGapQuiz div.statusbox {
        padding: 15px 30px;
    }
    div#rtGapQuiz div.statusbox p {
        font-size: 16px;
    }
    
    #rtGapQuizR_Scorecard > div.row > span.name {
        width: 35%;
        line-height: 13px;
        padding: 3px 8px 0px 8px;
    }
    
    #rtGapQuizR_Scorecard > div.row > div.graph {
        width: 65%;
    }
    
    #rtGapQuizR_Scorecard > div.row {
        min-height: 26px;
        margin: 3px 0px 3px 0px;
    }
    
}

@media only screen and (max-width: 599px) {
    
    div#rtGapQuiz_Results div.logo {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 240px auto;
        width: 100%;
        height: 60px;
        margin-bottom: 15px;
    }
    
    div#rtGapQuiz_Intro p {
        font-size: 14px;
        line-height: 1.4em;
    }
    
    form#rtGapQuizU {
        float: none;
        position: relative;
        top: 0;
        left: 0;
        margin: auto;
        padding-top: 25px;
    }
    
    div#rtGapQuiz_Intro div.logo, div#rtGapQuiz_Outro div.logo {
        position: relative;
        margin: auto;
        margin-top: 40px;
    }
    
    div#rtGapQuiz_Intro_Text {
        float: none;
        width: auto;
    }
    
    div#rtGapQuiz_Quiz > div.h div.logo {
        width: 180px;
        height: 36px;
        margin-top: 5px;
    }
    
    div#rtGapQuiz_Quiz > div.h div.name {
        font-size: 16px;
    }
    
    div#rtGapQuiz_Quiz > div.h div.progress {
        font-size: 14px;
    }
    
    div#rtGapQuiz_Outro h1 {
        font-size: 21px;
        padding: 30px;
    }
        
}

@media only screen and (max-width: 479px) {
    div#rtGapQuiz_Quiz > div.h div.logo {
        width: 120px;
        height: 24px;
    }
    
    div#rtGapQuiz_Quiz > div.h div.name,
    div#rtGapQuiz_Quiz > div.h div.progress {
        margin-left:0px;
    }
    
    div#rtGapQuiz_Quiz > div.h div.name {
        font-size: 14px;
    }
    
    div#rtGapQuiz_Quiz > div.h div.progress {
        font-size: 12px;
    }
    
    div#rtGapQuizQ {
        padding: 10px;
    }
    
    div#rtGapQuiz_Quiz p, div#rtGapQuiz_Quiz ul {
        padding-left:  10px;
        padding-right: 10px;
    }
    
    #rtGapQuiz_Results div.product {
        padding: 10px 10px 10px 85px;
        margin: 10px 0px 10px 0px;
        background-position: 5px center;
        background-size: auto 75px;
        height: 100px;
        overflow: hidden;
    }
    
    #rtGapQuiz_Results div.product:after {
        width: calc(100% - 85px);
        padding: 40px 5px 5px 5px;
        font-size: 10px;
    }
    
    #rtGapQuiz_Results div.product h1 {
        font-size: 13px;
    }
    
    #rtGapQuiz_Results div.product p {
        font-size: 11px;
        margin-top: 0.5em;
    }
    
    #rtGapQuizR_User > div.name {
        font-size: 18px;
    }
    
    #rtGapQuizR_User > div.company,
    #rtGapQuizR_User > div.quiz
    {
        font-size: 16px;
    }
    
    #rtGapQuiz_Results p, #rtGapQuiz_Results li, #rtGapQuizR_User > div {
        font-size: 14px;
        line-height: 1.2em;
    }

    div#rtGapQuiz div.statusbox {
        padding: 10px 20px;
    }
    div#rtGapQuiz div.statusbox p {
        font-size: 14px;
    }
    
    #rtGapQuizR_Scorecard {
        padding: 10px;
    }
    
    #rtGapQuizR_Scorecard > div.row > span.name {
        width: 50%;
        font-size: 12px;
        line-height: 12px;
        padding-top: 4px;
    }
    
    #rtGapQuizR_Scorecard > div.row > div.graph {
        width: 50%;
    }
    
    #rtGapQuizR_Scorecard > div.row {
        min-height: 25px;
    }

}

@media only screen and (max-width: 360px) {
    #rtGapQuiz_Results div.product {
        padding: 10px 10px 10px 70px;
        margin: 10px 0px 10px 0px;
        background-position: 10px center;
        background-size: auto 50px;
        height: 100px;
        overflow: hidden;
    }
    
    #rtGapQuiz_Results div.product:after {
        width: calc(100% - 70px);
    }
    
    #rtGapQuizR_Scorecard > div.row > span.name {
        width: 60.0%;
    }
    
    #rtGapQuizR_Scorecard > div.row > div.graph {
        width: 40.0%;
    }

}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    div#rtGapQuiz {
        max-width: 728px;
    }
}
