*, *::before, *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    box-sizing: inherit;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    color: #969696;
}

h1.title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-container {
    background:  no-repeat 100% 100% / cover;
    background-color: rgb(22, 111, 228);
    text-align: center;
    padding: 20px;
    min-height: 200px;
}
.form-elements {
    position: relative;
    max-width: 380px;
    margin: auto;
}
.form-control {
    padding: 15px;
    min-width: 380px;
    border-radius: 10px;
    border: none;
}

.btn-dark {
    background-color: #2b2b2b;
    padding: 15px;
    border: none;
    border-radius: 0 10px 10px 0;
    position: absolute;
    right: 0;
    cursor: pointer;
}

.display-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -60px;
    background-color: #fff;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    min-height: 130px;
    position: relative;
    z-index: 1000;
    padding: 30px;
}
.info-block {
    border-right: 1px solid;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 15px;
}
.info-block-last {
    border-right: none;
}

.muted-title {
    font-size: 11px;
    text-transform: uppercase;
}
span.results {
    font-weight: 500;
    color: #2b2b2b;
    font-size: 16px;
}

.map-container {
    background-color: black;
    margin-top: -70px;
    min-height: 79vh;
}
@media (max-width: 425px)
{
.display-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -40px;
    background-color: rgb(255, 255, 255);
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 8px;
    min-height: 0px;
    position: relative;
    z-index: 1000;
    text-align: center;
    border-radius: 10px;
    padding: 30px;
}
.info-block {
    min-height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 0px solid;
    padding: 0px 15px;
}
.form-control {
    min-width: 300px;
    padding: 15px;
    border-radius: 10px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
}
.map-container {
    background-color: black;
    margin-top: -200px;
    min-height: 90vh;
}

}
