* {
  box-sizing: border-box;
}
html,
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
}
body {
  font-family: Helvetica, Arial, sans-serif;
  color: #0d122b;
  display: flex;
  flex-direction: column;
  padding-left: 1em;
  padding-right: 1em;
}
h1 {
  text-align: center;
  font-weight: 100;
}
h2 {
  text-align: center;
  font-weight: 100;
  margin:0;
}
hr{margin:2px 0;}
header {
  border-bottom: 1px solid #0d122b;
/*   margin-bottom: 1em; */
}
main {
  flex-grow: 1;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #ffe
/*   border-radius: 12px; */
  margin:0;
/*   margin-bottom: 2em; */
}

@keyframes bg-pulse {
  0%  {
    background-color: #ff8;
  }

  50% {
    background-color: #c7ecee;
  }

  100% {
    backgrouond-color: #8ff;
  }
}
main.speaking {
  animation: bg-pulse 1.5s alternate ease-in-out infinite;
}
.input {
  text-align: center;
  width: 100%;
}
label {
  display: inline-block;
  font-size: 16px;
/*  margin-bottom: 1em;*/
}
.field {
  margin-bottom: 2em;
  border:2px solid green;
  width:75%;
  border-radius: 10px;
   background: #efffef;  

}
.field2 {
  margin-bottom: 2em;
  border:2px solid lightgray;
  width:75%;
  border-radius: 30px;
   background: #efefff;  
}
.field3 {
  margin-bottom: 2em;
  border:2px solid lightgray;
  width:75%;
  border-radius: 10px;
   background: #efefff;  
}

input {
  font-size: 16px;
  padding: 0.5em;
/*   border: 1px solid rgba(13, 18, 43, 0.25); */
  border-radius: 6px;
  width: 90%;
  display: inline-block;
  transition: border-color 0.25s;
  text-align: center;
/*   overflow: scroll; */
}
input:focus,
select:focus {
  border-color: rgba(13, 18, 43, 1);
}
select {
  width: 35%;
  font-size: 10px;
  padding: 0.5em;
/*   border: 1px solid rgba(13, 18, 43, 0.25); */
  border-radius: 6px;
  transition: border-color 0.25s;
}
button {
  font-size: 14px;
  font-weight: bold;
/*   padding: 1em; */
  width: 80px;
  height:30px;
  background: transparent;
/*   border: 4px solid #f22f46; */
  border: 4px solid #a00;
  border-radius: 8px;
  transition: all 0.4s ease 0s;
  cursor: pointer;
  color: #f22f46;
/*  margin-bottom: 2em;*/
  text-align: center;
  vertical-align:bottom;
}
button:hover,
button:focus {
/*   background: #f22f46; */
  background: #0f8;
  color: #fff;
}

a {
  color: #0d122b;
}
.error {
  color: #f22f46;
  text-align: center;
}
footer {
  border-top: 1px solid #0d122b;
  text-align: center;
}
.ipt1{width:10px;height:5px;}
span{
    font-size:8px;
}
.rdo{width:40px}
/*#speech{
overflow-x:scroll;
}*/
.fieldgroup{
   float: left;
   width: auto;
   margin-left: 1em;
/*    display:inline-block; */
}
label.lblsug{ 
/*    float: left;*/
    display:inline-block;
    color:navy;text-align: center;font-size:12px;}
fieldset{
  border:2px solid lightgray;
    border-radius:10px;
    width:60%;
    font-size:12px;
}
.lblsug{font-size:14px;color:green;  display: inline-block;
}
::placeholder {
    font-style:italic;
  color: lightgray;
}
input[type=range] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 100%; /* Specific width is required for Firefox. */
  height:2px;
  background:transparent; /* Otherwise white in Chrome */
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height:5px;
  cursor: pointer;
/*   box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; */
/*   background: #3071a9; */
  background: #eee;
  border-radius: 1.3px;
  border: 0.1px solid #010101;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid #000000;
  height: 16px;
  width: 5px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  margin-top: -6px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
}
input[type=range]:focus::-webkit-slider-runnable-track {
/*   background: #367ebd; */
  background: yellow;
}
    .gSelect{
        display:inline-block;
        margin-left:10px;
        width:900px;
        font-family:courier;
        font-size:12px;
        font-weight:bold;
        color:blue;
     }


© 2020 GitHu