﻿body, html {
    font-family: DroidSans, Droid Sans, Verdana;
}

#prevBtn {
    background-color: #bbbbbb;
}

#tabContainer, .tabSubContainer {
    margin: 0 auto;
    padding: 10px;
    border: 2px solid #C9D3E3;
    border-radius: 10px;
    width: 90%;
}

#tabContainer {
    min-height: 500px;
}

.tabSubContainer {
   /* min-height: 250px;*/
}

.img {
    width: 100%;
    display: none;
    margin-bottom: 30px;
}

.navigateBtn {
    border-radius: 5px;
    background-color: #6F87AB;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    cursor: hand;
}

    .navigateBtn:hover {
        opacity: 0.8;
    }

/* Make circles that indicate the steps of the form: */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #2c3e50;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

    .step.active {
        opacity: 1;
    }

    /* Mark the steps that are finished and valid: */
    .step.finish {
        background-color: #F0B828;
    }

/* Hide all steps by default: */
.tab {
    display: none;    
}

.tabContent{
    width:80%;
    margin:0 auto;
}

h1 {
    margin: 10px 0;
    font-weight: 600;
    letter-spacing: .075em;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 25px;
    background-color: aliceblue;
}

h2 {
    margin: 10px 0;
    font-weight: 600;
    letter-spacing: .075em;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 25px;
    background-color: aliceblue;
}

h3 {
    font-weight: 600;
    letter-spacing: .075em;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 20px;
    color: black;
    background-color: aliceblue;
}

h4 {
    font-weight: 600;
    letter-spacing: .075em;
    text-transform: uppercase;
    line-height: 1.5;
    margin-bottom: 10px;
    color: black;
    background-color: #C9D3E3;
}

h5 {
    margin: 10px 0;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    background-color: aliceblue;
    padding:5px;
}

h6 {
    margin: 10px 0;
    line-height: 18px;
    font-weight: 700;
    background-color: aliceblue;
}

/* EXTRA LARGE HEADING */
.xl {
    font-size: 6em;
    color: #FFF;
}

.w-input, .w-select {
    display: block;
    width: 100%;
    height: 25px;
    padding: 8px 12px;
    margin-bottom: 10px;
    line-height: 1.428571429;
    color: #34495E;
    vertical-align: middle;
    background-color: #EEF2F6;
    border: 1px solid #EEF2F6 !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);    
    -ms-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
}

[type="checkbox"], [type="radio"] {
    height: 20px;
    width: 20px;
    vertical-align: middle;
}

label {
    vertical-align: middle;
}

input.invalid, select.invalid, div.invalid {
    background-color: #ffdddd;
    border-radius:5px;
}

input[type="button"]:disabled {
    background-color: #C9D3E3;
}

/******************************
* HTML Styles
*******************************/
.green {
    color: #00AEEF;
}

.red {
    color: #F0B828;
}

.questionGridContainer {
    display: grid;
    grid-template-columns: auto auto;
    padding: 4px;
}

.questionGridItemSingle {
    background-color: rgba(255, 255, 255, 0.8);   
    padding: 5px;
    line-height: 1.6;
}

/*----------Mobile---------*/
@media screen and (max-width: 800px) {
    h1 {
        font-size: 3.5em;
    }

    h2 {
        font-size: 2.5em;
    }

    h3 {
        font-size: 2em;
    }

    h4 {
        font-size: 1.5em;
    }

    h5 {
        font-size: 1em;
    }

    .navigateBtn {
        font-size: 1em;
    }

    .w-input, .w-select {
        font-size: 1em;
    }

    textarea{
        height:100px;
    }
}
/*---------Desktop-----------*/
@media screen and (min-width: 800px) {
    h1 {
        font-size: 3.5em;
    }

    h2 {
        font-size: 2.5em;
    }

    h3 {
        font-size: 2em;
    }

    h4 {
        font-size: 1.5em;
    }

    h5 {
        font-size: 1em;
    }

    .navigateBtn {
        font-size: 1em;
    }

    .w-input, .w-select {
        font-size: 1em;
    }

    textarea {
        height: 100px;
    }
}