body, html{
    height: 100%;
    font-family: 'Lato', sans-serif;
    text-align: center;
}

h2 {
    color: #AAAAAA;
    font-weight: normal;
}

/*-- TIMER --*/
h1{
    color: #00BF96;
    font-weight: 100;
    font-size: 30px;
    margin: 30px 0 20px;
}

#clockdiv{
    margin-top: 30px;
    font-family: sans-serif;
    color: #fff;
    display: inline-block;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
}

#clockdiv > div{
    padding: 10px;
    border-radius: 3px;
    background: #00BF96;
    display: inline-block;
}

#clockdiv div > span{
    padding: 15px;
    border-radius: 3px;
    background: #00816A;
    display: inline-block;
}

.smalltext{
    padding-top: 5px;
    font-size: 16px;
}

/*-- /TIMER --*/


/*-- QUIZ --*/

.col-sm-8 {
    margin-bottom: 40px;
}

.loanParamsLoader {
    top: 143px;
    margin: auto;
    position: absolute;
    right: 17%;
    width: 100%;
}
.question{
    padding: 20px;
    color: #18bc9c;

}

/*quiz progress bar*/

.progress {
    width: 100%;
    margin: 0;
    height: 5px;
}
.progress-bar {
    background-image: linear-gradient(to bottom,#18bc9c 0, #09bc7b 100%);

}
/*end of quiz progress bar*/

#qid{
    margin-right: 22px;
    background-color: #2c3e50;
    color: #FFFFFF;
}
.container ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li{
    color: #9c9c9c;
    display: block;
    position: relative;
    float: left;
    width: 100%;
    height: 100px;
    border-bottom: 1px solid #111111;
}

ul li input[type=radio]{
    position: absolute;
    visibility: hidden;
}

ul li label{
    display: block;
    position: relative;
    font-weight: 500;
    font-size: 1.35em;
    padding: 25px 25px 25px 80px;
    margin: 10px auto;
    height: 30px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
}

ul li:hover label{
    color: #2c3e50;
}

ul li .check{
    display: block;
    position: absolute;
    border: 5px solid #AAAAAA;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    top: 30px;
    left: 20px;
    z-index: 5;
    transition: border .25s linear;
    -webkit-transition: border .25s linear;
}

ul li:hover .check {
    border: 5px solid #2c3e50;
}

ul li .check::before {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 14px;
    width: 14px;
    top: 3px;
    left: 3px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

input[type=radio]:checked ~ .check {
    border: 5px solid #2c3e50;
}

input[type=radio]:checked ~ .check::before{
    background: #2c3e50;/*attr('data-background');*/
}

input[type=radio]:checked ~ label{
    color: #2c3e50;
}

#result-of-question th{
    text-align: center;
    background: #18bc9c;
    color: #fff;
    padding: 18px;
    font-size: 18px;
    border: none;
}
#result-of-question  td{
    text-align: center;
    color: #222;
    background-color: #fff;
    padding: 18px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #18bc9c;
}
#totalCorrect{
    color: #fff;
    background: #2c3e50;
    padding: 22px 20px;
    border-radius: 1px;
    font-stretch: expanded;
    font-size: 28px;
    font-weight: bold;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
}

#pass{
    font-size: 20px;
    margin: 10px 20px;
    padding: 10px;
    border-radius: 3px;
    color: #270;
    background-color: #DFF2BF;

}
#fail{
    font-size: 20px;
    margin: 10px 20px;
    padding: 10px;
    border-radius: 3px;
    color: #D8000C;
    background-color: #FFBABA;
}

.btn.outline {
    border-radius: 26px;
    padding: 14px 24px;
    border: 0 none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: none;
    width: 300px;
}
.btn-primary.outline {
    border: 2px solid #2c3e50;
    color: #2c3e50;
    font-family: 'Lato', sans-serif;
    line-height: 1.8
}
.btn-primary.outline:hover {
    color: #ffffff;
    background: #2c3e50;
}

/*-- /QUIZ --*/

/*----------riple bubble-----------------*/
ul {
    margin: 0 auto;
}
/*.ink styles - the elements which will create the ripple effect. The size and position of these elements will be set by the JS code. Initially these elements will be scaled down to 0% and later animated to large fading circles on user click.*/
.ink {
    display: inline;
    position: absolute;
    background: #18bc9c;
    border-radius: 100%;
    transform: scale(0);
}
/*animation effect*/
.ink.animate {animation: ripple 0.65s linear;}
@keyframes ripple {
    /*scale the element to 250% to safely cover the entire link and fade it out*/
    100% {opacity: 0; transform: scale(2.5);}
}

/*Modal "Time is up"*/
/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
