input,
button,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

input,
button,
select {
    border-radius: 0;
    border-radius: 0%;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0
}

.container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

#map {
    flex: 1;
    height: 100%;
    min-width: 200px;
}

#pano {
    flex: 1;
    height: 100%;
    min-width: 200px;
}

#resizer {
    width: 5px;
    background-color: #ccc;
    cursor: col-resize;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#resizer:hover {
    background-color: #29b6f6;
}

#resizer:active {
    background-color: #1976d2;
}

#resizer::before {
    content: "⇅";
    position: absolute;
    color: #666;
    font-size: 14px;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2px 4px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    transform: rotate(90deg);
}

#resizer:hover::before {
    color: #29b6f6;
    background-color: rgba(255, 255, 255, 0.95);
}

#address {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    width: calc(50% - 20px);
    padding-left: 20px;
    margin: 0;
    height: 35px;
    background: #fff;
    font-size: 16px;
    border-radius: 30px 30px 30px 30px;
    border: 1px solid #cac9c9;
    transition: width 0.1s ease, right 0.1s ease;
}

#address:focus {
    border: 1px solid #29b6f6;
    outline: 0
}

@media screen and (max-width:480px) {
    .container {
        flex-direction: column;
    }
    
    #map,
    #pano {
        flex: 1;
        height: 50%;
        width: 100%;
        min-width: unset;
        min-height: 150px;
    }
    
    #resizer {
        width: 100%;
        height: 5px;
        cursor: row-resize;
    }
    
    #resizer::before {
        transform: rotate(0deg);
    }
    
    #address {
        position: absolute;
        z-index: 2;
        top: calc(50% + 5px);
        width: calc(100% - 40px);
        left: 10px;
        padding-left: 20px;
        margin: 0;
        height: 35px;
        background: #fff;
        font-size: 16px;
        border-radius: 30px 30px 30px 30px;
        border: 1px solid #cac9c9;
        transition: top 0.1s ease;
    }
    #address:focus {
        border: 1px solid #29b6f6;
        outline: 0
    }
}