#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_game {
    font-size: 1rem;
    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);
    -moz-transform: translate3d(150%, 0, 0) scale (1);
    -ms-transform: translate3d(150%, 0, 0) scale (1);
    -o-transform: translate3d(150%, 0, 0) scale (1);
}

#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: 1em;
    line-height: 2em;
    display: block;
    height: 2em;
    width: 2em;
    border: 3px solid #f5f5f5;
    color: #f5f5f5; 
    border-radius: 100%;
    
}
.correct .tf_mesg:after {
    content: "\ea10";
    background: #8ac926;
}
.correct .tf_mesg:before {
    background: #8ac926;
}
.incorrect .tf_mesg:after {
    content: "\ea0f";
    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:#0055B8;
    border-color: #0055B8;
}
.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);
}
.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 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
    max-width: 40%;
}
#tf_gamewrapper .tf_controls button.tf_next {
    width: 200px;
    margin: 0 auto;
    display: table;
    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 .tf_controls button.tf_next span {
    background-color: #f9d348;
    border-color: #f9d348;
    color: #0c2a4b;
}
#tf_gamewrapper .tf_controls button.tf_next:hover span,
#tf_gamewrapper .tf_controls button.tf_next:focus span {
    background-color: #9ec0d9;
    border-color: #9ec0d9;
    color: #0c2a4b;
}
#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 span {
    border-color: #8ac926;
    background: #8ac926;
    color: #fff;
}
#tf_gamewrapper .tf_options button.tf_true:hover span,
#tf_gamewrapper .tf_options button.tf_true:focus span {
    border-color: #9ed563;
    background: #9ed563;
}
#tf_gamewrapper .tf_options button.tf_false span {
    border-color: #DB222A;
    background: #DB222A;
    color: #fff;
}
#tf_gamewrapper .tf_options button.tf_false:hover span,
#tf_gamewrapper .tf_options button.tf_false:focus span {
    border-color: #e36f6d;
    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 */
/*
#tf_gamewrapper[data-theme="lvc_theme"] .tf_game_card {
}
#tf_gamewrapper[data-theme="lvc_theme"] .tf_game_card {
}
*/
#tf_gamewrapper[data-theme="lvc_theme"] .tf_mesg_inner {
    font-size: 1.25rem;
    font-family: 'raleway';
    text-transform: none;
}
#tf_gamewrapper[data-theme="lvc_theme"] .tf_msg_heading {
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 700;
}
#tf_gamewrapper[data-theme="lvc_theme"] .tf_question {
    font-size: 2rem; 
    line-height: 1.1;
}
#tf_gamewrapper[data-theme="lvc_theme"] .tf_card[data-id="5"] .tf_question {
    font-size: 1.5em 
}
.tf_result_msg h4 {
    line-height: 1.25;
    margin: 0.5rem 0 -0.5rem 0;
    font-family: mongoose, sans-serif;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.95rem;
}
.tf_result_msg h4 a {
    color: #0c2a4b;
}
@media screen and (max-width:479px){
    #tf_gamewrapper[data-theme="lvc_theme"] .tf_question {
        font-size: 1.625rem;
    }
    #tf_gamewrapper[data-theme="lvc_theme"] .tf_mesg_inner {
        font-size: 1rem;
    }
}