* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  background: #D4D9DD url(../../static/img/bg.jpg);
}
h1 {
    color: #777;
}
@media screen and (max-width: 800px) {
  #header {
    position: fixed;
    width: 100%;
  }
  #logo-container {
    text-align: center;
    padding: 20px 0;
  }
  #controller-container {
    padding: 0px 30px 30px;
  }
  #results,
  #examples {
    padding-top: 175px;
  }
}
@media screen and (min-width: 801px) {
  #header {
    position: fixed;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
  }
  #logo-container {
    display: -ms-flexbox;
    display: flex;
    padding: 10px 10px 10px 10px;
  }
  #controller-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-positive: 1;
        flex-grow: 1;
    max-width: 555px;
    -ms-flex-align: center;
        align-items: center;
  }
  #controller {
    -ms-flex-positive: 1;
        flex-grow: 1;
  }
  #results,
  #examples {
    padding-top: 80px;
  }
}
#header {
    background: #3B4346 url(../../static/img/bgtop.jpg);
}
#logo {
  height: 44px;
}
#controller {
  display: -ms-flexbox;
  display: flex;
  height: 40px;
}
#search-input {
  color: #fff;
  -ms-flex-positive: 1;
      flex-grow: 1;
  height: 40px;
  /*background: white!important;*/
  border: 1px solid #3197f4;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  outline: none;
  padding: 5px 15px;
  font-size: 16px;
  background: rgba(203, 203, 203, 0.2);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
input::-webkit-input-placeholder {
    color: #fff;
}
#help-button {
  width: 40px;
  height: 40px;
  border: none;
  background: #3197f4;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  outline: none;
  cursor: pointer;
}
.result-item {
  max-width: 800px;
  margin: 0 auto;
  padding: 15px 40px;
  border-bottom: solid 1px #b5bec3;
    -webkit-box-shadow: 0px 1px 1px #e0e4e7;
    -moz-box-shadow: 0px 1px 1px #e0e4e7;
  box-shadow: 0px 1px 0px #e0e4e7;
  line-height: 20px;
}
.result-word {
  display: inline-block;
  height: 20px;
  margin-right: 15px;
  font-weight: bold;
  font-size: 16px;
}
.result-pron {
  display: inline-block;
  font-family: arial, sans-serif;
  height: 20px;
  margin-right: 10px;
  font-size: 16px;
}
#results {
  display: none;
}
.result-play-button {
  border: none;
  background: transparent;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  outline: none;
  vertical-align: top;
}
.result-play-button img {
  width: 20px;
  height: 20px;
}
.result-definition {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}
.no-result {
  font-size: 18px;
  margin-top: 30px;
  text-align: center;
}
#readmore-container {
  text-align: center;
}
#readmore-button {
  border: none;
  outline: none;
  padding: 10px 15px;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  background: #cc0000;
  margin: 30px 0;
  cursor: pointer;
}
#examples {
  max-width: 800px;
  margin: auto;
}
.example-section {
  padding: 0px 25px;
  border-bottom: solid 1px #b5bec3;
    -webkit-box-shadow: 0px 1px 1px #e0e4e7;
    -moz-box-shadow: 0px 1px 1px #e0e4e7;
  box-shadow: 0px 1px 0px #e0e4e7;
}
.example-title {
  font-size: 18px;
  color: #777;
}
.example-subtitle {
  font-size: 18px;
  color: #777;
}
.example-content {
  line-height: 1.7;
  color: #777;
}


.footer {
    font-size: 13px;
    font-family: Georgia;
    font-style: italic;
    /* font-weight: 700; */
    text-align: center;
    color: #797979;
    margin: 1.5em auto;
    text-shadow: 0 1px 0 #eee;
    display: block;
    text-transform: capitalize;
}
.footer a {
    color: #797979;
    text-decoration: none;
}