<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.onemap-results-tabbing {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.onemap-results-tabbing__main {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}
.onemap-results-tabbing__header {
    display: flex;
    flex: 0 0 auto;
    height: 39px;
    margin-bottom: 10px;
}
.onemap-results-tabbing__tab {
    flex: 0 1 auto;
}
.onemap-results-tabbing__tab:first-child {
    margin-right: 5px;
}
.onemap-results-tabbing__tab--active {
    color: #fff;
    border-color: #545454;
    background-color: #545454;
}
.onemap-results-tabbing__content {
    flex: 1 1 auto;
    position: relative;
    overflow: hidden;
}
.onemap-results-tabbing__tabcontent {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.onemap-results-tabbing__tabcontent--active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

@media ( min-width: 992px ) {
    .onemap-results-tabbing__content {
        display: flex;
    }
    .onemap-results-tabbing__tabcontent {
        position: relative;
        opacity: 1;
        pointer-events: auto;
    }
    .onemap-results-tabbing__tabcontent--contacts {
        flex: 1 0 auto;
        max-width: calc(70% - 120px);
    }
    .onemap-results-tabbing__tabcontent--locations {
        flex: 0 0 30%;
        max-width: 30%;
        margin-left: 120px;
    }
}
</pre></body></html>