div.actions {
  width: 30%;
}

div.one-half {
  width: 50%;
}

div.left {
  float: left;
}

div.right {
  float: right;
}

form {
  margin-bottom: 0px;
}

label {
  margin-right: .5em;
}

.buttons-container {
  margin-bottom: .25em;
}

button {
  height: 3em;
  color: white;
  background-color: blue;
  border-radius: 12px;
  border: 0px;
}

input[type="text"] {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: none;
  -moz-border-radius: none;
  -ms-border-radius: none;
  -o-border-radius: none;
  border-radius: 15px;
  text-align: right;
  padding: 5px;
}
input[type="text"]:focus {
  outline: none;
}
.text-input input[type="text"] {
  padding: 10px;
  border: solid 1px gainsboro;
  -webkit-transition: box-shadow 0.3s, border 0.3s;
  -moz-transition: box-shadow 0.3s, border 0.3s;
  -o-transition: box-shadow 0.3s, border 0.3s;
  transition: box-shadow 0.3s, border 0.3s;
}
.text-input input[type="text"]:focus, .text-input input[type="text"].focus {
  border: solid 1px #707070;
  -webkit-box-shadow: 0 0 5px 1px #969696;
  -moz-box-shadow: 0 0 5px 1px #969696;
  box-shadow: 0 0 5px 1px #969696;
}


.searchField {
  width: 100%;
  text-align: left;
}

.errors {
  border-radius: 12px;
  border: 2px solid;
  border-color: red;
  padding: 0.25em;
  background-color: lightred;
}

.error-field {
  border-color: red;
  border-width: 2px;
}

/* disable browser behaviour */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
.earthquakes {
  width: 30%;
  float: left;
}

.earthquake-data {
  border: 1px solid;
  border-radius: 12px;
  padding: .25em; 
  padding-left: .75em;
}

.eq-selected {
  background-color: lightgrey;
}

.space-bottom-medium {
  margin-bottom: .25em;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
}

h4, p {
  margin: 0px;
  margin-bottom: .25em;
}

tr {
  vertical-align: top;
}

.main {
  width: 100%;
}

.bottom-m {
  margin-bottom: 0.5em;
}

.loading {
  text-align: center;
  padding-top: 1em;
}

.loading img {
  width: 10em;
}
.map {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.map-fixed {
  height: 98%;
  width: 69%;
  top: 0px;
  position: fixed;
  margin-left: .25em;
  margin-top: 0.5em;
  border: 1px solid;
  border-radius: 12px;
  display: inline-block;
}
