* {
    box-sizing: border-box;
    font-family: fontawesome;
    font-size: 18px;
    color:     #36454f;
}

body {
    background-color: #435165;
    //background-color: rgba(247,245,242,1);
    padding: 0;
    margin: 0;
    height: 100%;
}

.topdiv {
    background-color: #cab693;
    width: 100%;
    height: 5vh;
    margin: 0;
    padding: 1vh;
}

.topdiv h2 {
    text-align: center;
    color: white;
    padding: 0;
    margin: 0;
}

.sitelogo-container {
    margin-top: 2vh;
    margin-bottom: 2vh;
}

.sitelogo-container img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 8vh;
}

.formcontainer {
    background-color: white;
    width: 75vw;
    //width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6vh;
    border: 1px solid lightgrey;
    padding-bottom: 1vh;
    padding-top: 1vh;
    padding-left: 1vw;
    padding-right: 1vw;
}

.formcontainer h1 {
    width: 100%;
    text-algin: center;
    font-weight: bold;
    font-size: 28px;
    padding: 0;
}

.langradio {
    margin-top: auto;
    margin-bottom: auto;
}

.flagicon {
    height: 3vh;
}

.optioncontainer {
    width: 100%;
    display: flex;
    align-items: center;
}

.langformtable {
    margin-left: auto;
    margin-right: auto;
}

.langformtable tr {
    width: 100%;
}

.langformtable td {
    text-align: center;
    font-weight: bold;
    align-items : center;
    justify-content: center;
}

.submitbutton{
    font-weight: bold;
    font-family: fontawesome;
    padding: 7px;
    background:#0188ca;
    background:-moz-linear-gradient(top,rgba(1,136,202,1) 0%,rgba(0,99,166,1) 100%);
    background:-webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(1,136,202,1)),color-stop(100%,rgba(0,99,166,1)));
    background:-webkit-linear-gradient(top,rgba(1,136,202,1) 0%,rgba(0,99,166,1) 100%);
    background:-o-linear-gradient(top,rgba(1,136,202,1) 0%,rgba(0,99,166,1) 100%);
    background:-ms-linear-gradient(top,rgba(1,136,202,1) 0%,rgba(0,99,166,1) 100%);
    background:linear-gradient(to bottom,rgba(1,136,202,1) 0%,rgba(0,99,166,1) 100%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#0188ca',endColorstr='#0063a6',GradientType=0 );
    -webkit-box-shadow:inset 0 1px 0 0 rgba(255,255,255,.2);
    -moz-box-shadow:inset 0 1px 0 0 rgba(255,255,255,.2);
    box-shadow:inset 0 1px 0 0 rgba(255,255,255,.2);
    -webkit-border-radius:2px;
    -moz-border-radius:2px;
    border-radius:2px;
    text-shadow:0 1px 1px #000;
    border:solid 1px #014471;
    color:#fff;
    margin-top: 10px;
}

.submitbutton:hover{
    background-color:#0063a6;
    background-position:0 -10px;
    background-repeat:repeat-x;
    color:#ddd
}

.submitbutton:hover{
    -webkit-box-shadow:inset 0 2px 2px 0 rgba(0,0,0,.2);
    -moz-box-shadow:inset 0 2px 2px 0 rgba(0,0,0,.2);
    box-shadow:inset 0 2px 2px 0 rgba(0,0,0,.2);
    background-color:#0063a6;
    background-position:0 -10px;
    background-repeat:repeat-x;
    border:solid 1px #014471
}

.tabstepcontainer {
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
}

.step.finish {
    background-color: #4caf50;
}

.tab {
    width: 100%;
    display: none;
}

.formtable {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0 1vh;
}

.formtable tr {
    border: 1px solid lightgrey;
}

.formtable th {
    text-align: center;
    font-weight: bold;
    font-size: 28px;
    padding: 15px;
}

.formtable td {
    padding-top: 1vh;
    padding-bottom: 1vh;
    padding-left: 1vw;
    padding-right: 1vw; 
}

.medquestion {
    border: 1px solid lightgrey;
}

.formtable input {
    padding: 5px;
}

.formtable input[type="text"] {
    width: 100%;
}

.formtable input[type="email"] {
    width: 100%;
}

.formtable select:disabled {
   // border-color: rgba(0, 0, 0, 0.2);
   color: rgba(0, 0, 0, 0.2);
}

.formtable input:disabled {
   // border-color: rgba(0, 0, 0, 0.2);
   color: rgba(0, 0, 0, 0.2);
}
.formtable input:disabled::-webkit-input-placeholder { /* WebKit browsers */
    color:    rgba(0, 0, 0, 0.2);
}
.formtable input:disabled:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    rgba(0, 0, 0, 0.2);
}
.formtable input:disabled::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    rgba(0, 0, 0, 0.2);
}
.formtable input:disabled:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    rgba(0, 0, 0, 0.2);
}

.formtable select {
    width: 100%;
    padding: 5px;
}

.formlabelcol{
    text-align: left;
    align-items : left;
    justify-content: left;
    //border: 1px solid grey;
}

.multiinputcol{
    text-align: center;
    align-items: center;
    justify-content: center;
}

.framedcell {
   border: 1px solid lightgrey;
}

.inputcol {
    width: 80vh;
}

.invalid-feedback {
   display: none;
   font-size: 14px;
   color: red;
}

.disabledrow {
    display: none;
}

.framedcell .inputcol {
    width: 10vh;
}

.invalid-input {
    border: 1px solid rgba(255,0,0,0.7);
    border-radius: 3px;
}

.infotext span{
    display: block;
}

.infotext {
    font-size = 12px;
}

.infotext p{
    font-size: 12px;
    width: 25vw;
}

.infotext b{
    font-size: 12px;
}

.medsubq{
    background-color: rgba(202,182,149,0.3);
}

.medesq{
    background-color: rgba(202, 182, 149, 0.3);
}

.infotext a{
    font-size: 12px;
    background-color: rgb(250,250,160);
}

.disabledtext{
    color: lightgrey;
}

input[type='text']:focus {
    border: 1px solid green;
    border-radius: 3px%;
}

.botnav {
    background-color: rgba(9,52,106,1);
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 5vh;
    margin-top: auto;
    margin-bottom: 0;
    padding: 1vh;
}

.bluebold {
    font-weight:bold; 
    color:#0070C0;
}

.botnav a{
    color: white;
}
