/**************-------- general --------**************/
body {
 font-family: "Roboto Condensed",sans-serif;
 color: #333333;
 line-height: 1.5em;
 letter-spacing: -1px;
 font-size: 16px;
}

h1 {
  margin-bottom: 30px;
  color: #00ccee;
  font-family: 'Titillium Web',sans-serif;
  text-shadow: 0.05em 0.05em #AD00AD;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.1;
}
h1 hr {
    border-color: #AD00AD;
    border-width: 4px;
    border-style: outset;
}

input, textarea, button, select {
  font-family: "Roboto Condensed",sans-serif;
}

.blocked {
  background-color: #FF6666;
  display: inline-block;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid;
}

/**************-------- plot --------**************/
/*#plot-area {
  display: inline-block;
  position: relative;
  margin-top: 10px;
  box-sizing: border-box;
}*/
/*#plot-area img {
  max-width: 75%;
}
#plot-area img.disappear {
  position: absolute;
  top: 0px;
  left: 12.5%;
}*/

/**************-------- ajax --------**************/
#ajax-loader-wrapper {
  display: inline-block;;
  margin-left: 12px;
}
#ajax-loader-img {
  display: block;
  background: url("../img/ajax-loader.gif");
  width: 43px;
  height: 11px;
  float: left;
  margin-top: 16px;
}
#countdown {
  float: left;
  margin: 14px 0px 0px 14px;
}

/**************-------- suggestions --------**************/
#suggestions {
  padding: 8px 0px;
}
#suggestions a {
  color: white;
  background-color: rgba(173, 0, 173, 0.7);
  box-shadow: 0px 0px 1px black;
  padding: 8px;
  text-decoration: none;
  margin-top: 12px;
  margin-left: 4px;
  display: inline-block;
  transition: color 0.2s, background-color 0.2s;
}
#suggestions a:hover {
  color: #481730;
  background-color: rgba(0, 204, 238, 1);
  /*box-shadow: 0px 0px 5px black;*/
}
#suggestions a.active {
  background-color: antiquewhite;
}

/**************-------- form --------**************/
#search-form {
  font-size: 14px;
}
@media (max-width: 425px) {
  #search-form {
    font-size: 16px;
  }
}

#search-form .wide {
  width: 300px;
}

#search-form input,
#search-form button,
#search-form select {
  padding: 4px 20px;
  margin: 10px 0px;
  font-size: 14px;
  /*text-align: center;*/
  /*border-radius: 4px;*/
  border: 1px solid gray;
  transition: color 0.2s, background-color 0.2s;
}
#search-form input:focus,
#search-form button:focus,
#search-form select:focus {
  background-color: #dedede;
}
#search-form input:hover,
#search-form button:hover,
#search-form select:hover {
  background-color: #dedede;
}
#search-form label {
  color: gray;
  padding: 12px;
}
#search-form #submit-button {
  font-size: 2em;
  padding: 8px 56px;
  background-color: #ad00ad;
  color: white;
  transition: color 0.2s, background-color 0.2s;
}

#search-form #submit-button:hover {
  background-color: #00ccee;
  color: black;
  cursor: pointer;
}