@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,600,400italic);

html, body{
    font-family: "Raleway", Helvetica, Arial, sans-serif;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

.grid-1-1{
    box-sizing: border-box;
    width: 100%;
    display: inline-block;
}
.grid-1-3{
    box-sizing: border-box;
    width: 32.9%;
    display: inline-block;
}
@media screen and (max-width: 700px) {
    html, body{
        font-size: 14px;
    }
    .grid-1-3{
        width: 49.5%;
    }
}

@media screen and (max-width: 500px) {
    .grid-1-3{
        width: 100%;
    }
}

fieldset{
    border: 1px dashed darkgreen;
}

#popup_ok_button{
    border: 1px solid #610000;
    color: #610000;
    padding: 0.2rem;
    border-radius: 0.2rem;
    background-color: lightcoral;
}

button, input[type="submit"]{
    margin-top: 1.0rem;
    padding: 0.8rem;
    border-radius: 0.4rem;
    color: white;
    background-color: darkgreen;
    font-size: 1.0rem;
}
button:hover, input[type="submit"]:hover {
    cursor: pointer;
    background-color: navajowhite;
    border: 1px solid darkgreen;
    color: darkgreen;
}

legend{
    font-weight: bold;
    color: darkgreen;
    font-size: 1.2rem;
}

label{
    font-style: italic;
    color: darkgreen;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
    margin-left: 0.3rem;
}

#Buchungsformular{
    width: 100%; /* Full width */
    height: 100%;
    overflow: auto;
}
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 30%; /* Could be more or less, depending on screen size */
}

#Buchungsformular h2 {
    display: block;
    font-size: 30px;
    font-weight: 300;
    margin-bottom: 1px;
    margin-left: 10px;
    margin-top: 2px;
}

input, textarea, select{
    border: 1px solid darkgreen;
    background-color: navajowhite;
    color: darkgreen;
    padding: 0.4rem;
    margin: 0.2rem;
    font: 400 16px/16px "Roboto", Helvetica, Arial, sans-serif;
    width: 95%;
}

#datumAnreise, #datumAbreise{
    width: 6.0rem;
}

#Buchungsformular label {
    margin-left: 12px;
}

#abreise,
#anreise,
#wohnung{
    text-align: center;
}

#nachricht{
    border-radius: 5px;
    border: 1px solid darkgreen;
    padding: 0.5rem;
    background-color: navajowhite;
    margin: 1.0rem 0;
}