<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.map-wrapper {
    position: relative;
}

.map-wrapper .marker-panel {
    position: absolute;
    height: 55px;
    width: 265px;
    top: 5px;
    left: 5px;
    background-color: white;
    z-index: 2;
}

.map-wrapper .marker-panel .marker-icon {
    width: 40px;
    height: 100%;
    float: left;
    background-image: url(/images/map.png);
    background-size: 35px 35px;
    background-position: center;
    background-repeat: no-repeat;
}

.map-wrapper .marker-panel .address {
    margin-left: 55px;
    margin-top: 8px;
}

.map-wrapper .marker-panel .address .full-address {
    color: grey;
    font-size: 13px;
    width: 200px;
    height: 10px;
}

.map-wrapper .direction-panel {
    position: absolute;
    top: 62px;
    left: 5px;
    z-index: 2;
}
.map-wrapper .btn-test {
    position: absolute;
    top: 10px;
    left: 5px;
    width: 125px;
    height: 30px;
    font-size: 13px;
    color:white;
    z-index: 2;
    background-color: deepskyblue;

}
.map-wrapper .btn-test:hover {
    background-color: royalblue;
    cursor: pointer;
}
.map-wrapper .btn-test .btn-inner-wrapper
{
    width: inherit;
    height: inherit;
    margin: 0;
    font-weight: bold;
    padding-top: 8px;
    padding-left: 10px;
    background-image: url(/images/standing-man.png);
    background-repeat: no-repeat;
    background-size: 25px 25px;
    background-position: 0px 3px;
}
.map-wrapper .btn-test .btn-inner-wrapper .btn-inner
{
    text-align: center;
}
.map-wrapper .direction-panel .travel-mode {
    background-color: deepskyblue;
    padding: 4px 60px;
    border-bottom: none;
}

.map-wrapper .direction-panel .travel-mode .toggle {
    font-weight: bold;
    display: inline-block;
    margin-left: 25px;
    background-position: center;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-size: 28px 28px !important;
    background-repeat: no-repeat !important;
}
.map-wrapper .direction-panel .travel-mode .toggle.checked {
    border-bottom: 2px solid black;
}

.map-wrapper .direction-panel .travel-mode .toggle input {
    display: none;
}

.map-wrapper .direction-panel .travel-mode .toggle.driving {
    background: url(/images/driving-icon.png);
}

.map-wrapper .direction-panel .travel-mode .toggle.walking {
    background: url(/images/walking-icon.png);
}

.map-wrapper .direction-panel .travel-mode .toggle.transit {
    background: url(/images/transit-icon.png);
}

.map-wrapper .direction-panel .directions {
    height: 56px;
    background-color: white;
    padding: 5px 0;
    padding-left: 10px;
}

.map-wrapper .direction-panel .directions .direction-icon {
    width: 35px;
    height: 100%;
    float: left;
}

.map-wrapper .direction-panel .directions .direction-icon.reverse-icon {
    background: url(/images/reverse.png) right;
    background-size: 30px 30px;
    background-repeat: no-repeat;
}

.map-wrapper .direction-panel .directions .direction-icon.route-icon {
    background: url(/images/route.png) left;
    background-size: 11px 50px;
    background-repeat: no-repeat;
}

.map-wrapper .direction-panel .directions .direction-wrapper {
    float: left;
}

.map-wrapper .direction-panel .directions .direction-wrapper .direction.bottom-split {
    border-bottom: solid 2px grey;
}

.map-wrapper .direction-panel .directions .direction-wrapper .direction input {
    height: 25px;
    border: none;
    display: block;
    padding-left: 10px;
    width: 200px;
}

.map-wrapper .direction-panel .directions .direction-wrapper .direction input:focus {
    outline: none;
}

.map-wrapper .direction-panel .directions .direction-wrapper .direction input#destination-route {
    font-weight: bold;
}

.map-wrapper #map {
    width: 640px;
    height: 480px;
    position: relative;
    clear: left;
    z-index: 1;
}
</pre></body></html>