@charset "utf-8";

html, body {
    height: 100%;
    margin: 0
}
.search {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 2;
    height: 50px
}

.search #address {
    padding: 0 55px 0 15px;
    font-size: 15px;
    outline: none;
    border: none;
    line-height: 50px; width: 300px
}

.search #submit {
    /*margin-left: -55px;*/
    background-color: white;
    border: none;
    top: 1px;
    right: 0;
    cursor: pointer;
    position: absolute;
}

.search:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22)
}

#searchImg {
    padding: 9px 9px;
}

#info {
    text-align: center;
    position: fixed;
    bottom: 1px;
    right: 1px;
    padding: 20px;
    z-index: 2
}

@media (max-width: 1080px) {
    #info {
        display: none;
    }
}
@media (max-width: 1440px) {
    #address {
        width: auto;
    }
}