.mapDiv {
    width: 100%;
    height: 100%;
    z-index: 1;
}

#map {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
}

#snackbar {
    visibility: hidden;
    max-width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 5;
    right: 18px;
    top: 40px;
    font-size: smaller;
}

#snackbar.show {
    visibility: visible;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

a:link {
    text-decoration: none;
}


a:visited {
    text-decoration: none;
}


a:hover {
    text-decoration: none;
}


a:active {
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

.open-button {
    background-color: #555;
    color: white;
    padding: 3px 20px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 11px;
    right: 18px;
    width: 250px;
    height: 34px;
    z-index: 2;
}

.chat-popup {
    display: none;
    position: fixed;
    bottom: 5px;
    right: 5px;
    border: 3px solid #f1f1f1;
    z-index: 9;
    font-size: smaller;
}

.form-container {
    max-width: 270px;
    padding: 10px;
    background-color: white;
}

    .form-container textarea {
        font-family: Arial, Helvetica, sans-serif;
        width: 100%;
        padding: 10px;
        margin: 5px 0 14px 0;
        border: none;
        background: #f1f1f1;
        resize: none;
        min-height: 40px;
        font-size: smaller;
    }

    .form-container input {
        width: 100%;
        padding: 10px;
        margin: 5px 0 22px 0;
        border: none;
        background: #f1f1f1;
        resize: none;
        max-height: 30px;
        font-size: smaller;
    }

.form-container textarea:focus, input:focus {
        background-color: #ddd;
        outline: none;
}

.form-container .btn {
        background-color: #4CAF50;
        color: white;
        padding: 3px 20px;
        border: none;
        cursor: pointer;
        width: 100%;
        height: 34px;
        margin-bottom: 1px;
        opacity: 0.8;
}

 .form-container .cancel {
        background-color: red;
 }

 .form-container .btn:hover, .open-button:hover {
        opacity: 1;
}

.custom-select {
    position: relative;
    font-family: Arial;
    padding-bottom: 0px;
    font-size:smaller;
}

    .custom-select select {
        display: none;
    }

.select-selected {
    background-color: #f1f1f1;
}
    .select-selected:after {
        position: absolute;
        content: "";
        top: 14px;
        right: 10px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-color: #fff transparent transparent transparent;
    }

    .select-selected.select-arrow-active:after {
        border-color: transparent transparent #fff transparent;
        top: 7px;
    }

.select-items div, .select-selected {
    color: black;
    padding: 8px 13px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}

.select-items {
    position: absolute;
    background-color: #f1f1f1;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

img.picturePreview {
    max-width: 100%;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

button {
    background-color: #04AA6D;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
}

button:hover {
    opacity: 1;
}

.cancelbtn, .savebtn {
    float: left;
    width: 50%;
}

.cancelbtn {
    background-color: #ff0000;
    color: white;
}

.savebtn {
    background-color: #4CAF50;
}

.container {
    padding: 16px;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #474e5d;
    padding-top: 50px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto;
    border: 1px solid #888;
    width: 80%;
}

hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

.close {
    position: absolute;
    right: 35px;
    top: 15px;
    font-size: 40px;
    font-weight: bold;
    color: #f1f1f1;
}

.close:hover, .close:focus {
    color: #f44336;
    cursor: pointer;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

@media screen and (max-width: 300px) {
    .cancelbtn, .savebtn {
        width: 100%;
    }
}