html {
    width: 100%;
    height: 100%;
    margin: 0;
}

body {
    background: #d3d5db;
    font-family: verdana, arial, sans;
    width: 100%;
    height: 100%;
    margin: 0;
}

.header {
    padding: 20px;
}

.container {
    height: 100%;
}

.text-button {
    padding: 0 !important;
    border: none;
    font-size: 125%;
    background: none !important;
    cursor: pointer;
    color: #1e1e1e;
}

.header > div {
    display: inline-block;
}

.login-container {
    overflow: hidden;
    display: none;
}

.login-form {
    width: 60%;
    height: 50%;
    margin: auto;
    position: absolute;
    top: 100px; left: 0; bottom: 0; right: 0;
    text-align: center;
    text-transform: uppercase;
}

.login-form .button {
    width: 100%;
    padding: 20px 20px;
    border: 0;
    border-radius: 5px;
    font-size: 150%;
    margin-top: 20px;
}

.primary {
    background-color: #20A6F0;
    color: #fff;
}

input {
    width: 100%;
    padding: 20px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    color: #737373;
    border: 0;
    border-radius: 5px;
    font-size: 150%;
}

.links {
    float: right;
    margin-right: 40px;
}

.search-container {
    overflow: hidden;
    display: none;
}

.search-form {
    width: 60%;
    height: 50%;
    margin: auto;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    text-align: center;
}

.latlon-form {
    text-align: left;
}

h3 {
    text-align: left;
    color: #444;
}

hr {
    margin-top: 75px;
    margin-bottom: 75px;
}

.latlon-form input {
    width: auto;
    margin-right: 15px;
}

.latlon-form button {
    padding: 20px;
    font-size: 150%;
    background-color: #7393B3;
    border: 0;
    border-radius: 8px;
    color: #fff;
    margin-left: -10px;
}

.image-container {
    position: relative;
    top: -100px;
    height: calc(100% - 100px);
    text-align: center;
    padding: 0 20px 0 20px;
}

.image-header {
    height: 100px;
}

.map {
    height: calc(100% - 150px);
    width: 100%;
}

.new-search {
    position: fixed;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    border: 0;
    border-radius: 5px;
    font-size: 100%;
    z-index: 1000;
}

.loader {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    text-align: center;
    background-color: rgb(255, 255, 255);
    background-color: rgb(255, 255, 255, 0.7);
}

.loader .image {
    margin: 20% auto;
    width: 100px;
    height: 100px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgb(0, 0, 0, 0.7);
}

.modal .close {
    float: right;
    font-weight: bold;
}

.modal .close:hover, .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-container {
    background-color: #d3d5db;
    margin: 15% auto;
    border: 1px solid #888;
    border-radius: 5px;
    width: 400px;
}
.modal-title {
    padding: 10px 20px 10px 20px;
    background-color: #20A6F0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: #fff;
}
.modal-content {
    padding: 20px 20px 20px 20px;
}
