html{
    height: 100%;
    zoom: 1;
}

body{
  box-sizing: border-box;
  min-height: 100%;
  position: relative;
  margin: 0px;
  padding: 0px;
  padding-bottom: 50px;
  background:#444444;
  color: #414a51;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
 -webkit-tap-highlight-color: rgba(0,0,0,0);
 -webkit-tap-highlight-color: transparent;
 -webkit-touch-callout: none;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

.container{
  position: relative;
  height: 94%;
}

.pageHeader{
   color: #f45c42;
   background: #fff;
   text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
             0px 8px 13px rgba(0,0,0,0.1),
             0px 18px 23px rgba(0,0,0,0.1);
   width: 100%;
   height: 60px;
   text-align: center;
   font-family: 'Ubuntu', sans-serif;
   font-weight: bold;
   font-size: 40px;
   margin: 0;
   padding: 5px 0;
   -webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.45);
   -moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.45);
   box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.45);
}

.content{
    background: #fff;
    height:450px;
    width: 500px;
    margin: 50px auto;
    border: 1px solid #ededed;
}

.result{
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.settings{
  width: 500px;
  position: absolute;
  bottom: -50px;
  background: #fff;
  padding: 5px;
  text-align: center;
}

textarea{
    height: 200px;
    width: 300px;
    margin-left: 100px;
    margin-top: 100px;
    border: none;
    resize: none;
    background: #ededed;
    outline: none;
    opacity: .6;
}

.innerContent{
    position: relative;
    height: 100%;
    width: 100%;
}

label{
  padding-left: 10px;
}

p.innerContent{
  padding: 1px 25px;
}

input{
    transition: .1s linear;
    text-align: center;
    border: none;
}


input[type="text"]:focus {
    outline: none;
    border: 2px solid #f45c42;
    -webkit-box-shadow: 1px 1px 13px 0px #f45c42;
    -moz-box-shadow: 1px 1px 13px 0px #f45c42;
    box-shadow: 1px 1px 13px 0px #f45c42;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset ;
}

input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset,1px 1px 13px 0px #f45c42;
}

button:focus {
    outline:0;
}

.centre{
  text-align: center;
}

.btn{
    background: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
    transition: .2s linear;
    padding: 2px;
    margin:20px auto;
    display:block;
    width: 200px;
    height: 40px;
}

.btn-primary{
  border: 1px solid #f45c42;
  color:#f45c42;
}

.btn-primary:hover{
    background: #f45c42;
    color: #fff;
}

.shadow{
    -webkit-box-shadow: 4px 4px 7px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 4px 4px 7px 0px rgba(0,0,0,0.3);
    box-shadow: 4px 4px 7px 0px rgba(0,0,0,0.3);
    border:1px solid #D8D8D8;
}

.input-box{
  position: absolute;
  width: 30px;
  height: 30px;
  display: block;
  font-size: 16px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

#top-left{
  top: 5px;
  left: -40px;
}

#top-right{
  top:5px;
  right: -40px;
}

#bottom-left{
  bottom: 5px;
  left: -40px;
}

#bottom-right{
  bottom: 5px;
  right: -40px;
}

.footer{
  height: 40px;
  padding: 10px 0;
  text-align: center;
  background: #191919;
  color: #fff;
  font-size: 16px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.63);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.63);
  box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.63);
}
