#tf_gamewrapper * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
#tf_gamewrapper {
    padding: 1em 0;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
}
#tf_gamewrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: 99;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
#tf_gamewrapper button {
    -moz-appearance:none;
         appearance:none;
    -webkit-appearance:none;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    line-height: 1em;
    margin: 0;
    padding: 0;
    border-radius: 2px;
}
#tf_game {
    font-size: 1em;
    position: relative;
    margin: 0 auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#tf_game .tf_card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5em;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 4px;
    -webkit-transform: translate3d(150%, 0, 0) scale (1);
            transform: translate3d(150%, 0, 0) scale (1);
    -webkit-filter: blur(1px);
    filter: blur(1px);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-box-shadow: 0px 3px 6px -3px rgba(0, 0, 0, 0.05);
            box-shadow: 0px 3px 6px -3px rgba(0, 0, 0, 0.05);
}
#tf_game .tf_placeholder {
    position: relative;
    visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: -1;
}

#tf_gamewrapper.loading .tf_card {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transition: -webkit-transform .75s cubic-bezier(0, 1, .95, 1), -webkit-filter .35s linear;
    transition: -webkit-transform .75s cubic-bezier(0, 1, .95, 1), -webkit-filter .35s linear;
    -o-transition: transform .75s cubic-bezier(0, 1, .95, 1), filter .35s linear;
    transition: transform .75s cubic-bezier(0, 1, .95, 1), filter .35s linear;
    transition: transform .75s cubic-bezier(0, 1, .95, 1), filter .35s linear, -webkit-transform .75s cubic-bezier(0, 1, .95, 1), -webkit-filter .35s linear;
}

#tf_gamewrapper.gameReady .tf_card {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transition: all .15s ease-in;
    -o-transition: all .15s ease-in;
    transition: all .15s ease-in;
}

#tf_gamewrapper.gameReady .tf_card.completed {
    -webkit-transform-origin: 100% 0%;
    -ms-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    -webkit-transition: -webkit-transform .5s cubic-bezier(0.6, 0.0, 0.4, 1);
    transition: -webkit-transform .5s cubic-bezier(0.6, 0.0, 0.4, 1);
    -o-transition: transform .5s cubic-bezier(0.6, 0.0, 0.4, 1);
    transition: transform .5s cubic-bezier(0.6, 0.0, 0.4, 1);
    transition: transform .5s cubic-bezier(0.6, 0.0, 0.4, 1), -webkit-transform .5s cubic-bezier(0.6, 0.0, 0.4, 1);
}

#tf_gamewrapper.gameReady:after {
    opacity: 0;
    visibility: hidden;
}

.tf_question_answer {
    position: relative;
    padding: 0;
    width: 100%;
    height: 240px;
    text-align: center;
    -webkit-perspective: 1000px;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.tf_question_answer_inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  -o-transition: transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.tf_card.completed .tf_question_answer_inner {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.tf_question, .tf_mesg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #f5f5f5;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(0) rotateY(0deg);
    transform: translateZ(0) rotateY(0deg);
}
.tf_question {
    text-transform: uppercase;
    font-size: 1.5em;
    font-weight: bold;
    z-index: 2;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
}
.tf_mesg {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.incorrect .tf_mesg {
    border-top: 5px solid #DB222A;
    border-bottom: 5px solid #DB222A;
}
.correct .tf_mesg {
    border-top: 5px solid #8ac926;
    border-bottom: 5px solid #8ac926;
}
.tf_mesg_inner {
    font-size: 1em;
    text-transform: uppercase;
    position: relative;
    padding-top: 2rem;
}
.tf_mesg:before {
    content: '';
    width: 100%;
    background: #DB222A;
    height: 1em;
    position: absolute;
    top: 0;
    left: 0;
}
.tf_mesg:after {
    font-family: 'icons' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate3d(-50%,0,0);
    transform: translate3d(-50%,0,0);
    font-size: 2rem;
    line-height: 1em;
    display: block;
    height: 1.25em;
    width: 1.25em;
    border: 3px solid #f5f5f5;
    color: #f5f5f5; 
    border-radius: 100%;
    
}
.correct .tf_mesg:after {
    content: "\e90b";
    background: #8ac926;
}
.correct .tf_mesg:before {
    background: #8ac926;
}
.incorrect .tf_mesg:after {
    content: "\e5cd";
    background: #DB222A;
}
.incorrect .tf_mesg:before {
    background: #DB222A;
}
.tf_msg_heading {
    font-size: 1.5em;
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.correct .tf_msg_heading {
    color: #8ac926;
}
.incorrect .tf_msg_heading {
    color: #DB222A;
}
.tf_question_inner, 
.tf_mesg_inner {
    padding-left: 1em;
    padding-right: 1em;
}
.tf_game_card .tf_mesg_inner .button {
    position: relative;
    margin: 1em auto;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    top: auto;
    left: auto;
    bottom: auto;
    font-size: 0.75em;
    padding: 0.75rem;
    display: table;
    margin: 1em auto 0;
    text-decoration: none;
    color:#003b70;
    border-color: #003b70;
}
.tf_disclaimer {
    font-size: 0.825em;
    display: block;
    margin: 0.5rem 0 1rem 0;
    opacity: 0.5;
    font-style: italic;
    text-transform: none;
}
.tf_game_card {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid rgba(0,0,0,0.05);
}
.tf_game_card > * {
    position: relative;
    z-index: 2;
}
.tf_controls {
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 1em 0.5em 1em;
    background: rgba(255,255,255,0.3);
    background: rgba(255,255,255,1);
}
.tf_options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    flex-wrap: nowrap;
    position: relative;
    -ms-flex-pack: distribute;  
    justify-content: space-around;
    margin: 0;
    overflow: hidden;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .35s cubic-bezier(0.4, 0.0, 0.6, 1);
}
.completed .tf_options {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.tf_options:after {
    content: 'or';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%,-50%,0);
    transform: translate3d(-50%,-50%,0);
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 100%;
    text-align: center;
    line-height: 1em;
    color: #000;
    opacity: 0.5;
}
#tf_gamewrapper .tf_options button {
    background: #fff;
    text-align: center;
    line-height: 1em;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
    max-width: 40%;
    padding: 0.75rem;
    font-size: 1em;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
    font-weight: bold;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
#tf_gamewrapper .tf_controls button.tf_next {
    background: #003b70;
    color: #fff;
    text-align: center;
    line-height: 1em;
    width: 200px;
    margin: 0 auto;
    display: table;
    padding: 0.75rem;
    font-size: 1em;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%,-50%,0) scale(0);
    transform: translate3d(-50%,-50%,0) scale(0);
    opacity: 0;
    z-index: -1;
    -webkit-transition: all .35s .15s cubic-bezier(0.4, 0.0, 0.6, 1);
    -o-transition: all .35s .15s cubic-bezier(0.4, 0.0, 0.6, 1);
    transition: all .35s .15s cubic-bezier(0.4, 0.0, 0.6, 1);
}
#tf_gamewrapper .completed .tf_controls button.tf_next {
    z-index: 2;
    -webkit-transform: translate3d(-50%,-50%,0) scale(1);
    transform: translate3d(-50%,-50%,0) scale(1);
    opacity: 1;
}
#tf_gamewrapper .tf_controls button.tf_next:hover {
    background: #366996;
}
#tf_gamewrapper .tf_options button.tf_true {
    background: #8ac926;
    color: #fff;
}
#tf_gamewrapper .tf_options button.tf_true:hover {
    background: #9ed563;
}
#tf_gamewrapper .tf_options button.tf_false {
    background: #DB222A;
    color: #fff;
}
#tf_gamewrapper .tf_options button.tf_false:hover {
    background: #e36f6d;
}
.tf_game_progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    min-width: 100%;
    margin-top: 1rem;
}
.tf_game_progress span {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    height: 5px;
    margin: 2px;
    background: rgba(0,0,0,0.1);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.tf_game_progress span.correct {
    background: #8ac926;
}
.tf_game_progress span.incorrect {
    background: #DB222A;
}
.tf_game_card .button {
    border: 1px solid #fff;
    display: table;
    margin: 0 auto;
    padding: 0.5em 2em;
    min-width: 0;
    font-size: 1em;
    position: relative;
    z-index: 3;
    border-radius: 1em;
    line-height: 1em;
    cursor: pointer;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
}
.tf_results {
    position: absolute;
    top: 1em;
    bottom: 1em;    
    width: 100%;
    padding: 0.5em;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 4px; 
}
.tf_results_inner {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    width: 100%;
    text-align: center;
    padding: 1rem; 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tf_result {
    font-size: 3em;
    font-weight: bold;
    line-height: 1;
}
.tf_result .number_correct {
    color:#8ac926;
    display: inline-block;
}
.tf_result .total_number {
    display: inline-block;
}
.tf_result .total_number:before {
    content: '/';
    opacity: 0.25;
    display: inline-block;
    margin: 0 5px;
    font-weight: 100;
}
.tf_result_msg {
    line-height: 1.45em;
    margin: 1rem auto;
    max-width: 30em;
}
#tf_gamewrapper .tf_play_again {
    text-align: center;
    padding: 0.75em 2em;
    border: 1px solid;
    border-radius: 2px;
    line-height: 1em;
    font-size: 0.75em;
    cursor: pointer;
    display: table;
    margin: 1em auto 0;
    text-transform: uppercase;
    opacity: 0.5;
}
#tf_gamewrapper .tf_play_again:hover {
    opacity: 1;
}
.nowrap {
    white-space: nowrap;
}
@media screen and (max-width:480px) {
    #tf_game {
        font-size: 0.825em;
    }
}


/* Loader */

#tf_gamewrapper #loading {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

#tf_gamewrapper .loader,
#tf_gamewrapper .loader:after {
    border-radius: 50%;
    width: 4em;
    height: 4em;
}

#tf_gamewrapper .loader {
    font-size: 0.5em;
    position: absolute;
    text-indent: -9999em;
    border-top: 0.385em solid rgba(0, 61, 165, 0.2);
    border-right: 0.385em solid rgba(0, 61, 165, 0.2);
    border-bottom: 0.385em solid rgba(0, 61, 165, 0.2);
    border-left: 0.375em solid #003da5;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
    z-index: 101;
    top: 50%;
    left: 50%;
    margin: -2em 0 0 -2em;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Theme */
/* Hanover Theme */
#tf_gamewrapper[data-theme="uc_theme"] a {
    color: #003b70;
    text-decoration: none;
}
#tf_gamewrapper[data-theme="uc_theme"] a:hover  {
    color: #00053E;
    text-decoration: none;
}

#tf_gamewrapper[data-theme="uc_theme"] .tf_mesg_inner {
    font-size: 1.25em;
}
#tf_gamewrapper[data-theme="uc_theme"] .tf_msg_heading {
    letter-spacing: -0.05em;
    font-weight: 900;
    text-align: center; 
    font-size: 2em;
}
#tf_gamewrapper[data-theme="uc_theme"] .tf_question {
    font-size: 2.25em; 
    line-height: 1.2;
    color: #fff;;
}

#tf_gamewrapper[data-theme="uc_theme"] .tf_question {
    background: rgb(36,153,208);
    background: -o-linear-gradient(45deg, rgba(36,153,208,1) 0%,rgba(13,77,128,1) 70%);
    background: linear-gradient(45deg, rgba(36,153,208,1) 0%,rgba(13,77,128,1) 70%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2499d0', endColorstr='#0d4d80',GradientType=1 )
}
#tf_gamewrapper[data-theme="uc_theme"] .tf_question:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 75%;
    width: 75%;
    background-image: url(../../assets/img/stars.png);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    opacity: 0.5;
}
#tf_gamewrapper[data-theme="uc_theme"] .tf_question_inner {
    letter-spacing: -0.05em;
    font-weight: 900;
    text-shadow: -1px 1px 0 #093c71, 1px -1px 0 #093c71, -1px -1px 0 #093c71, 0px 0px 0 #093c71, 1px 1px 0 #093c71, 2px 2px 0 #093c71, 3px 3px 0 #093c71, 4px 4px 0 #093c71, 5px 5px 0 #093c71, 6px 6px 0 #093c71, 7px 7px 0 #093c71, 8px 8px 0 #093c71, 9px 9px 0 #093c71, 10px 10px 0 #093c71, 11px 11px 0 #093c71, 12px 12px 0 #093c71, 13px 13px 0 #093c71, 14px 14px 0 #093c71, 15px 15px 0 #093c71, 16px 16px 0 #093c71, 17px 17px 0 #093c71, 18px 18px 0 #093c71, 19px 19px 0 #093c71, 20px 20px 0 #093c71, 21px 21px 0 #093c71, 22px 22px 0 #093c71, 23px 23px 0 #093c71, 24px 24px 0 #093c71, 25px 25px 0 #093c71, 26px 26px 0 #093c71, 27px 27px 0 #093c71, 28px 28px 0 #093c71, 29px 29px 0 #093c71, 30px 30px 0 #093c71, 31px 31px 0 #093c71, 32px 32px 0 #093c71, 33px 33px 0 #093c71, 34px 34px 0 #093c71, 35px 35px 0 #093c71, 36px 36px 0 #093c71, 37px 37px 0 #093c71, 38px 38px 0 #093c71, 39px 39px 0 #093c71, 40px 40px 0 #093c71, 41px 41px 0 #093c71, 42px 42px 0 #093c71, 43px 43px 0 #093c71, 44px 44px 0 #093c71, 45px 45px 0 #093c71, 46px 46px 0 #093c71, 47px 47px 0 #093c71, 48px 48px 0 #093c71, 49px 49px 0 #093c71, 50px 50px 0 #093c71, 51px 51px 0 #093c71, 52px 52px 0 #093c71, 53px 53px 0 #093c71, 54px 54px 0 #093c71, 55px 55px 0 #093c71, 56px 56px 0 #093c71, 57px 57px 0 #093c71, 58px 58px 0 #093c71, 59px 59px 0 #093c71, 60px 60px 0 #093c71, 61px 61px 0 #093c71, 62px 62px 0 #093c71, 63px 63px 0 #093c71, 64px 64px 0 #093c71, 65px 65px 0 #093c71, 66px 66px 0 #093c71, 67px 67px 0 #093c71, 68px 68px 0 #093c71, 69px 69px 0 #093c71, 70px 70px 0 #093c71, 71px 71px 0 #093c71, 72px 72px 0 #093c71, 73px 73px 0 #093c71, 74px 74px 0 #093c71, 75px 75px 0 #093c71, 76px 76px 0 #093c71, 77px 77px 0 #093c71, 78px 78px 0 #093c71, 79px 79px 0 #093c71, 80px 80px 0 #093c71, 81px 81px 0 #093c71, 82px 82px 0 #093c71, 83px 83px 0 #093c71, 84px 84px 0 #093c71, 85px 85px 0 #093c71, 86px 86px 0 #093c71, 87px 87px 0 #093c71, 88px 88px 0 #093c71, 89px 89px 0 #093c71, 90px 90px 0 #093c71, 91px 91px 0 #093c71, 92px 92px 0 #093c71, 93px 93px 0 #093c71, 94px 94px 0 #093c71, 95px 95px 0 #093c71, 96px 96px 0 #093c71, 97px 97px 0 #093c71, 98px 98px 0 #093c71, 99px 99px 0 #093c71, 100px 100px 0 #093c71, 101px 101px 0 #093c71, 102px 102px 0 #093c71, 103px 103px 0 #093c71, 104px 104px 0 #093c71, 105px 105px 0 #093c71, 106px 106px 0 #093c71, 107px 107px 0 #093c71, 108px 108px 0 #093c71, 109px 109px 0 #093c71, 110px 110px 0 #093c71, 111px 111px 0 #093c71, 112px 112px 0 #093c71, 113px 113px 0 #093c71, 114px 114px 0 #093c71, 115px 115px 0 #093c71, 116px 116px 0 #093c71, 117px 117px 0 #093c71, 118px 118px 0 #093c71, 119px 119px 0 #093c71, 120px 120px 0 #093c71, 121px 121px 0 #093c71, 122px 122px 0 #093c71, 123px 123px 0 #093c71, 124px 124px 0 #093c71, 125px 125px 0 #093c71, 126px 126px 0 #093c71, 127px 127px 0 #093c71, 128px 128px 0 #093c71, 129px 129px 0 #093c71, 130px 130px 0 #093c71, 131px 131px 0 #093c71, 132px 132px 0 #093c71, 133px 133px 0 #093c71, 134px 134px 0 #093c71, 135px 135px 0 #093c71, 136px 136px 0 #093c71, 137px 137px 0 #093c71, 138px 138px 0 #093c71, 139px 139px 0 #093c71, 140px 140px 0 #093c71, 141px 141px 0 #093c71, 142px 142px 0 #093c71, 143px 143px 0 #093c71, 144px 144px 0 #093c71, 145px 145px 0 #093c71, 146px 146px 0 #093c71, 147px 147px 0 #093c71, 148px 148px 0 #093c71, 149px 149px 0 #093c71, 150px 150px 0 #093c71, 151px 151px 0 #093c71, 152px 152px 0 #093c71, 153px 153px 0 #093c71, 154px 154px 0 #093c71, 155px 155px 0 #093c71, 156px 156px 0 #093c71, 157px 157px 0 #093c71, 158px 158px 0 #093c71, 159px 159px 0 #093c71, 160px 160px 0 #093c71, 161px 161px 0 #093c71, 162px 162px 0 #093c71, 163px 163px 0 #093c71, 164px 164px 0 #093c71, 165px 165px 0 #093c71, 166px 166px 0 #093c71, 167px 167px 0 #093c71, 168px 168px 0 #093c71, 169px 169px 0 #093c71, 170px 170px 0 #093c71, 171px 171px 0 #093c71, 172px 172px 0 #093c71, 173px 173px 0 #093c71, 174px 174px 0 #093c71, 175px 175px 0 #093c71, 176px 176px 0 #093c71, 177px 177px 0 #093c71, 178px 178px 0 #093c71, 179px 179px 0 #093c71, 180px 180px 0 #093c71, 181px 181px 0 #093c71, 182px 182px 0 #093c71, 183px 183px 0 #093c71, 184px 184px 0 #093c71, 185px 185px 0 #093c71, 186px 186px 0 #093c71, 187px 187px 0 #093c71, 188px 188px 0 #093c71, 189px 189px 0 #093c71, 190px 190px 0 #093c71, 191px 191px 0 #093c71, 192px 192px 0 #093c71, 193px 193px 0 #093c71, 194px 194px 0 #093c71, 195px 195px 0 #093c71, 196px 196px 0 #093c71, 197px 197px 0 #093c71, 198px 198px 0 #093c71, 200px 200px 0 transparent;
}

#tf_gamewrapper[data-theme="uc_theme"] .tf_mesg_inner,
#tf_gamewrapper[data-theme="uc_theme"] .tf_result .total_number,
#tf_gamewrapper[data-theme="uc_theme"] .tf_result_msg {
    color: #4a4a4a;
}
#tf_gamewrapper[data-theme="uc_theme"] .tf_play_again {
    border: 2px solid #003b70;
    background: #003b70;
    color: #fff;
    font-size: 1rem;
    opacity: 1;
}
#tf_gamewrapper[data-theme="uc_theme"] .tf_play_again:hover {
    background: transparent;
    color:  #003b70
}

@media screen and (max-width:639px){
    #tf_gamewrapper[data-theme="uc_theme"] .tf_question {
        font-size: 2em;
    }
    #tf_gamewrapper[data-theme="uc_theme"] .tf_card[data-id="3"] .tf_question,
    #tf_gamewrapper[data-theme="uc_theme"] .tf_card[data-id="4"] .tf_question{
        font-size: 1.75em 
    }
}
@media screen and (max-width:480px){
    #tf_gamewrapper[data-theme="uc_theme"] .tf_card[data-id="3"] .tf_question,
    #tf_gamewrapper[data-theme="uc_theme"] .tf_card[data-id="4"] .tf_question {
        font-size: 1.75em 
    }
    #tf_gamewrapper[data-theme="uc_theme"] .tf_mesg_inner {
        font-size: 1.125em;
    }
}