@import url("https://fonts.googleapis.com/css?family=Lato:200,300,400,500|Roboto:300,400,500&display=swap");

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
* {
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* reset end */
body {
    height: 100%;
    width: 100%;

    font-family: 'Lato', sans-serif; 
    font-weight: 300;
}
#site {
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-x: hidden;
}
header, section, main {
    padding: 30px;
}
header {
    padding-bottom: 20px;
}
b {
    font-weight: 400;
}
#flex-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#logo-wostinkts {
    width: 30px; height: 30px;
}
#logo {
    height: 30px;
}
.fa-bars {
    font-size: 26px;
    padding: 2px;
    cursor: pointer;
}
h1, h2, h3 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 10px;
}
button {
    cursor: pointer;
}
#title h1 {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 0px;
}
p {
    margin-top: 5px;margin-bottom:5px;
}
input, button, textarea, select {
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
    margin-top: 10px;
}
input, textarea, select {
    border: 1px solid #cccccc;
    width: 80vw;
    max-width: 600px;
}
textarea {
    height: 80px;
}
#intensity-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 35px;
    max-width: 600px;
    margin-left: 5px;
    margin-top: 15px;
}
/* The container */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default radio button */
  .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the radio button is checked, add a blue background */
  .container input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .container input:checked ~ .checkmark:after {
    display: block;
  }
  
/* Style the indicator (dot/circle) */
.container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: white;
}
#label-intensity {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 600px;
    margin-bottom: 10px;
}
#incident {
    padding-top: 10px;
}
#incident p {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}
#reverselookup-container {
    color: #555555;
    font-weight: 400;
    margin-top: 5px;
}
#reverselookup {
    color: #000000;
    font-weight: 300;
}
button {
    /*background-color: rgb(70, 70, 255);*/
    background-color: #2196F3;
    border: 0;
    color: #ffffff;
}
#mapid { height: 50vh; width: 100vw;}

.disable {
    background-color: #cccccc;
    cursor: not-allowed;
}

footer {
    padding: 20px;
    text-align: center;
    background-color: #f5f5f5;
}
footer h2 {
    font-size: 20px;
}