* {
  box-sizing: border-box;
  margin: 0px;
}
body {
  background-color: #D3D3D3;
  padding: 0px;
  display: -ms-grid;
  display: grid;
  justify-content: center;
}
@media screen and (max-width: 720px) {
  body {
    display: block;
    background-color: white;
  }
}
.error-msg {
  color: #DD666F;
}
.btn-primary {
  background-color: #004E99;
  border-color: #004E99;
  color: white;
  text-transform: uppercase;
  outline: none;
  border-radius: 0px;
  font-weight: bold;
  padding: 1rem 1.5rem;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #004E99;
}
a {
  color: #004E99;
  text-decoration: underline;
}
#form {
  background-color: white;
  margin: 6rem 0;
}
@media screen and (max-width: 720px) {
  #form {
    margin: 0px;
  }
}
#header {
  padding: 2rem 2rem 0rem 2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr auto;
  grid-template-columns: auto 1fr auto;
}
#header .logo {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
}
#header .language-selector {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3 / span 1;
}
@media screen and (max-width: 720px) {
  #header {
    background: #004E99;
    margin: 0px;
    padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  }
}
#header .logo {
  width: auto;
  align-self: center;
}
#header .logo:first-of-type {
  margin-left: 0px;
}
#header .logo.logo-small {
  display: none;
  height: 16px;
}
@media screen and (max-width: 720px) {
  #header .logo.logo-small {
    display: block;
  }
}
#header .logo.logo-big {
  display: block;
  height: 50px;
}
@media screen and (max-width: 720px) {
  #header .logo.logo-big {
    display: none;
  }
}
#header .language-selector {
  align-self: flex-start;
  display: flex;
}
#header .language-selector img {
  margin: 3px;
  width: auto;
  height: 30px;
}
@media screen and (max-width: 720px) {
  #header .language-selector img {
    height: 20px;
  }
}
main {
  padding: 4rem 4rem 9rem 4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 304px 2rem 304px;
  grid-template-columns: 304px 2rem 304px;
  -ms-grid-rows: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
}
@media screen and (max-width: 720px) {
  main {
    padding: 2rem;
    display: block;
  }
}
main #title {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / span 3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / span 1;
}
main #filters {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2 / span 1;
}
main #results {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3 / span 1;
  -ms-grid-row: 2;
  -ms-grid-row-span: 3;
  grid-row: 2 / span 3;
}
main #footer {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3 / span 1;
}
#title {
  color: #004E99;
  font-size: 5rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 720px) {
  #title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
}
#filters input {
  background-color: #EFEFEF;
  color: #666666;
  border: 1px solid #EFEFEF;
  border-radius: 0px;
  box-shadow: none;
  outline: none;
  padding: 0 2rem;
  margin-bottom: 1.5rem;
}
#filters input:hover {
  border-color: #004E99;
}
#filters input.invalid {
  animation-name: invalid-input;
  animation-duration: 1s;
  animation-iteration-count: 3;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}
#filters #recaptcha {
  margin: 1.5rem auto;
  width: auto;
}
#filters #recaptcha > * {
  margin: auto;
}
#filters #button-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@keyframes invalid-input {
  from {
    border-color: #EFEFEF;
    color: #666666;
  }
  to {
    border-color: #DD666F;
    color: #DD666F;
  }
}
@media screen and (max-width: 720px) {
  #results {
    margin-top: 2rem;
  }
}
#results .data-status,
#results .data-details {
  padding: 1.5rem;
}
#results .data-status > *,
#results .data-details > * {
  margin-top: 1.5rem;
}
#results .data-status > *:first-of-type,
#results .data-details > *:first-of-type {
  margin-top: 0px;
}
#results .data-status {
  margin-bottom: 1.5rem;
  background-color: #FF993F;
}
#results .data-status .data-content {
  color: white;
}
#results .data-details {
  background-color: #EFEFEF;
}
#results .data-title,
#results .data-content {
  display: block;
  text-transform: uppercase;
}
#results .data-title {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.5);
}
#results .data-content {
  font-weight: bold;
  color: #004E99;
}
#footer {
  color: #666666;
  text-align: center;
  margin-top: 1.5rem;
  font-size: larger;
}
#footer img {
  width: auto;
  height: 24px;
}
