@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700;900&display=swap');

* {
    font-family: Raleway, sans-serif;
}

#map {
    height: 100%;
    position: relative;
    overflow: hidden;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
}

p {
    margin: 0 5px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

input[type=submit],
.button {
    background-color: #1a6979;
    border: none;
    color: white;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    height: auto;
}

form,
#form1,
#form2 {
    display: grid;
    margin-bottom: 1fr;
}

input {
    margin: 5px;
    height: 1.5rem;
}

label {
    margin: 0.5rem 5px;
}

.heading {
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
}

.none {
    display: none !important;
}

.extra-window {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: flex;
    justify-content: center;
    align-items: center;
}

.extra-window__inside {
    position: absolute;

    top: 5%;
    width: 700px;
    height: 80%;
    z-index: 999;

    background-color: white;
    border-radius: 40px;
}

.extra-window>div {
    padding: 40px;
}

.form__header {
    margin-bottom: 2rem;
}

[id^="form"]>.button {
    margin-top: 2rem;
}