﻿.hffInputText {
    border: none;
    background-color: #F0FFF0;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    width: 100%;
    outline: none;
    text-align: center;
}

.hffInputText:hover {
    background-color: #FAFFFA;
}

.hffInputRadio {
    background-color: #F0FFF0;
    opacity: 1!important;
}

.hffInputRadio:hover {
    background-color: #FAFFFA;
}

.hffInputCheck {
    background-color: #F0FFF0;
    opacity: 1!important;
}

.hffInputCheck:hover {
    background-color: #FAFFFA;
}

.hffGoOn {
    cursor: pointer;
    border: 1px solid #000000;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    background-color: #8db0dc;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 900;
    color: black;
    outline: none;
}

.hffGoOn:hover {
    background-color: #add0ff;
}

.hffQuestionRect {
    width: 100%;
    padding: 5px;
    border: 1px solid gray;
    border-radius: 25px;
    background-color: #F0F0FF
}

.hffOptionsRect {
    width: 100%;
    padding: 0px;
    margin-top: 4px;
    border: none;
    background-color: transparent;
}

.hffAnswerRect {
    width: 100%;
    padding: 2px;
    margin-top: 8px;
    border: 1px solid gray;
    border-radius: 10px;
    background-color: #F0FFF0
}

.hffListRect {
    width: 100%;
    padding: 5px;
    margin-top: 8px;
    border: 1px solid gray;
    border-radius: 25px;
    background-color: #808080
}

.hffProgressSegment {
    height: 6px; 
    line-height: 6px;
    border: 1px solid gray;
    cursor: pointer;
}

.hffDataLine {
    width: 100%;
    color: #A0A0A0;
}

.hffSCanvas {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 3;
}

.hffSContainer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6;
}

.hffSData {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
    z-index: 10;
    border: 1px solid gray;
    border-radius: 5px;
    background-color: rgba(10, 0, 0, 0.8);
    padding: 6px;
    color: #ffffff;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 12px;
    font-weight: 300;
    text-align: justify;
    opacity: 1.0;
    -webkit-animation: 1s ease 0s normal forwards 1 fadein;
    animation: 1s ease 0s normal forwards 1 fadein;
}

.hffSDataHidden {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 10;
    border: 1px solid gray;
    border-radius: 5px;
    background-color: rgba(10, 0, 0, 0.8);
    padding: 6px;
    color: #ffffff;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 12px;
    font-weight: 300;
    text-align: justify;
    opacity: 0.0;
    -webkit-animation: 0.5s ease 0s normal forwards 1 fadeout;
    animation: 0.5s ease 0s normal forwards 1 fadeout;
}

.hffSDataNo {
    display: none;
}

@keyframes fadein{
    0% { opacity:0; }
    100% { opacity:1; }
}

@-webkit-keyframes fadein{
    0% { opacity:0; }
    100% { opacity:1; }
}

@keyframes fadeout{
    0% { opacity:1; }
    100% { opacity:0; }
}

@-webkit-keyframes fadeout{
    0% { opacity:1; }
    100% { opacity:0; }
}

