:root {
    --main-text-color: #0e0e0e;
    --border-color: #adb5bd;
    --main-comp-color: #f8f9fa;
}

html, body {
    font-family: Roboto, Helvetica, sans-serif;
    font-size: 13px;
    color: var(--main-text-color);
    background-color: #fff;
}

#coolmap {
    float: left;
    background: #48dad0;
    position: absolute;
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.page-title {
    margin-left: -999px;
}

.no-display {
    display: none !important;
}

.main-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    max-width: 400px;
    margin: 0;
    z-index: 999;
    bottom: 0;
    background: #fff;
    border-right: 1px solid var(--border-color);
    -webkit-box-shadow: 4px 0 6px 0 rgba(0, 0, 0, .2);
    box-shadow: 4px 0 6px 0 rgba(0, 0, 0, .2);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.main-panel-inner {
    display: flex;
    flex-flow: column;
    height: 100%;
}

button.hide-main-panel {
    position: absolute;
    background: #fff;
    width: 30px;
    height: 42px;
    right: -30px;
    top: 10px;
    /*-webkit-border-radius: 0 40px 40px 0;*/
    -webkit-background-clip: padding-box;
    -moz-border-radius: 0 40px 40px 0;
    -moz-background-clip: padding;
    /*border-radius: 0 40px 40px 0;*/
    background-clip: padding-box;
    -moz-box-shadow: 0px 0 4px 0 rgba(0, 0, 0, .2) inset;
    -webkit-box-shadow: 0px 0 4px 0 rgba(0, 0, 0, .2) inset;
    box-shadow: 0px 0 4px 0 rgba(0, 0, 0, .2) inset;
    padding: 2px 6px 2px 0;
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    color: #6c757d;
}

button.hide-main-panel:hover {
    background: #f5f5f5;
}

button.hide-main-panel:active {
    background: #ccc;
}

button.hide-main-panel:focus {
    -moz-box-shadow: 0px 0 4px 0 rgba(0, 0, 0, .2) inset;
    -webkit-box-shadow: 0px 0 4px 0 rgba(0, 0, 0, .2) inset;
    box-shadow: 0px 0 4px 0 rgba(0, 0, 0, .2) inset;
}

.search-form {
    position: relative;
    flex: 0 1 auto;
    padding: 10px;
}

.search-form .search-control {
    position: relative;
    border-radius: 2px;
    border: 1px solid var(--border-color);
}

.search-form .search-suggestions {
    background-color: var(--main-comp-color);
    padding: 9px 74px 9px 33px;
    height: auto;
    background-size: 15px;
    background-position: left center;
    background-repeat: no-repeat;
    background-position-x: 9px;
}

.search-form .route-search .search-suggestions {
    padding-right: 0;
}

.clearfix.line {
    border-bottom: 1px solid #dee2e6;
    margin-left: 33px;
}

.autocomplete-suggestions {
    border: 1px solid var(--border-color);
    background: var(--main-comp-color);
    border-radius: 2px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top: 3px solid rgba(0, 123, 255, .25);
    margin-left: -1px;
}

.autocomplete-suggestion {
    padding: 8px 9px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.autocomplete-selected {
    background: #dee2e6;
}

.place-details-panel,
.place-list-panel,
.place-list-panel-inner {
    position: relative;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-flow: column;
    flex: 1 1 auto;
}

.route-panel {
    padding: 0;
    margin: 0;
}

.route-search {
    padding-right: 25px;
    position: relative;
    border: 1px solid var(--border-color);
    background: var(--main-comp-color);
    border-radius: 2px;
}

.route-settings,
.place-search-box {
    position: relative;
}

.route-settings > .btn-group > label,
.place-search-box > .place-search-box-items > a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    flex: unset !important;
    position: relative;
    background-color: #e9ecef;
    cursor: pointer;
}

.route-settings > .btn-group label:hover,
.place-search-box > .place-search-box-items a:hover {
    background-color: #ccc;
}

.route-settings > .btn-group label:active,
.place-search-box > .place-search-box-items a:active {
    background-color: #a5a5a5;
}

.route-settings > .btn-group label:focus,
.route-settings > .btn-group label.focus,
.route-settings > .btn-group label:active:focus,
.route-settings .btn-directions-close:focus,
.route-settings .btn-directions-close.focus,
.route-settings .btn-directions-close:active:focus,
.place-search-box > .place-search-box-items a:focus,
.place-search-box > .place-search-box-items a.focus,
.place-search-box > .place-search-box-items a:active:focus,
.btn-toggle-instructions:focus,
.btn-toggle-instructions:hover:focus,
.btn-directions-cta:focus,
.btn-directions-cta.focus {
    box-shadow: none;
}

.route-settings > .btn-group label.active,
.place-search-box > .place-search-box-items a.active {
    background-color: #7c7c7c;
}

.route-settings > .btn-group label > i,
.place-search-box > .place-search-box-items a > i {
    font-size: 28px;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    color: #6c757d;
}

.route-settings > .btn-group > label:not(:last-child),
.place-search-box > .place-search-box-items > a:not(:last-child) {
    margin-right: 10px !important;
    border-top-right-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
}

.route-settings > .btn-group > label:not(:first-child),
.place-search-box > .place-search-box-items > a:not(:first-child) {
    margin-left: 10px !important;
    border-top-left-radius: 50% !important;
    border-bottom-left-radius: 50% !important;
}

.top-toolbar {
    display: flex;
    padding: 5px 10px 5px 10px;
    background: #e9ecef;
}

.top-toolbar .back-home {
    padding: 5px 8px;
    border-radius: 15px;
    align-self: start;
}

.place-search-box {
    margin: 0 10px 10px;
    display: flex;
    flex-direction: column;
    background-color: var(--main-comp-color);
    border: 1px solid #ccc;
    border-radius: 2px;
    padding: 10px 20px 20px;
}

.place-search-box-title {
    font-size: 16px;
    font-weight: bold;
}

.place-search-box-items {
    align-self: center;
    padding-top: 10px;
}

.place-search-box > .place-search-box-items a > i.food {
    color: var(--green);
}

.place-search-box > .place-search-box-items a > i.hotel {
    color: var(--pink);
}

.place-search-box > .place-search-box-items a > i.shopping {
    color: var(--purple);
}

.place-search-box > .place-search-box-items a > i.coffee {
    color: var(--cyan);
}

.place-search-box > .place-search-box-items a > i.gasstation {
    color: var(--yellow);
}

.route-settings > .btn-group label.active > i,
.place-search-box > .place-search-box-items a.active > i {
    color: #fff;
}

.route-settings .btn-directions-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url("../images/close-button.png") no-repeat;
    background-position: right;
    width: 35px;
    height: 35px;
    background-size: 22px;
    padding-right: 0;
    filter: opacity(0.5);
}

.route-settings .btn-directions-close:hover {
    filter: opacity(1);
}

.place-details-panel-inner {
    background-color: #f7f7fa;
}

.scrollable-y, .instructions-block {
    overflow-y: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar
}

.scrollable-x {
    overflow-x: auto
}

@media (hover: hover) {
    .scrollable-x, .scrollable-y, .instructions-block {
        outline-offset: -2px;
        overflow-x: hidden;
        overflow-y: hidden;
        scrollbar-width: thin
    }

    .scrollable-y.scrollable-show, .scrollable-y:focus, .scrollable-y:hover, .scrollable-show-all .scrollable-y, .instructions-block:focus, .instructions-block:hover {
        overflow-y: auto
    }

    .scrollable-x.scrollable-show, .scrollable-x:focus, .scrollable-x:hover, .scrollable-show-all .scrollable-x {
        overflow-x: auto
    }

    .scrollable-x::-webkit-scrollbar-track, .scrollable-y::-webkit-scrollbar-track, .instructions-block::-webkit-scrollbar-track {
        background-color: #f0f0f0
    }

    .scrollable-x::-webkit-scrollbar, .scrollable-y::-webkit-scrollbar, .instructions-block::-webkit-scrollbar {
        width: 6px
    }

    .scrollable-hide-bar.scrollable-x::-webkit-scrollbar, .scrollable-hide-bar.scrollable-y::-webkit-scrollbar {
        width: 0
    }

    .scrollable-x::-webkit-scrollbar-thumb, .scrollable-y::-webkit-scrollbar-thumb, .instructions-block::-webkit-scrollbar-thumb {
        background-color: #888
    }
}

.place-details-panel-inner .place-feature-photo {
    -moz-border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    background: #fff;
    position: relative;
    padding: 0 10px 10px;
}

.place-details-panel-inner .place-details {
    background-color: #fff;
    border-bottom: 1px solid #efeff4;
}

.place-details-panel-inner .place-details-panel-inner-row {
    margin: 10px 0;
    position: relative;
}

.place-details-panel-inner .place-details-panel-inner-row:first-child {
    margin-top: 0;
}

.place-details-panel-inner .place-details-panel-inner-row .place-row-icon {
    position: absolute;
    left: 10px;
    top: 0;
}

.place-details-panel-inner .place-details-panel-inner-row .place-row-content {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-bottom: 1px solid #efeff4;
    margin: 0 10px 0 35px;
    overflow: hidden;
    padding-bottom: 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.place-details-panel-inner .place-details .place-row-content:last-child {
    border-bottom: none;
}

.place-details-panel-inner .flex-container {
    display: flex;
    flex-wrap: wrap;
    background-color: #f7f7fa;
    padding: 10px;
    padding-bottom: 0;
}

.place-details-panel-inner .place-attributes .flex-container {
    background-color: #fff;
}

.place-details-panel-inner .flex-container .item {
    padding: 3px 6px;
    border: 1px solid #dee2e6;
    border-radius: 2px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.place-details-panel-inner .place-attributes.amenities .flex-container .item {
    border: none;
    padding: 2px;
}

.place-details-panel-inner .flex-container .item i {
    color: #59e078;
}

.place-details-panel-inner .place-details .address-block.place-details-panel-inner-row .place-name {
    font-weight: 600;
    white-space: normal;
}

.place-details-panel-inner .place-details .address-block.place-details-panel-inner-row .place-name h1 {
    font-size: 18px;
}

.place-details-panel-inner .place-details .address-block.place-details-panel-inner-row .place-categories {
    white-space: normal;
    margin-top: 5px;
}

.place-details-panel-inner .place-details .address-block.place-details-panel-inner-row .place-address {
    white-space: normal;
    margin-top: 10px;
}

.place-details-panel-inner .place-details .hours-block.place-details-panel-inner-row .all-hours {
    /*display: none;*/
    padding-top: 10px;
}

.place-details-panel-inner .place-details-panel-inner-row .place-row-content .desc {
    white-space: normal;
}

.place-details-panel-inner .place-details-panel-inner-row .place-row-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.place-details-panel-inner .place-details .hours-block.place-details-panel-inner-row .all-hours .timeframes {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #f7f7fa;
    margin: 5px 0;
    list-style: none;
    padding: 0;
}

.place-details-panel-inner .place-details .hours-block.place-details-panel-inner-row .all-hours .timeframes .timeframe {
    border-bottom: 1px solid #fff;
    line-height: 16px;
    padding: 5px 15px;
    overflow: hidden;
}

ul.timeframes .timeframe-days {
    float: left;
}

ul.timeframes .timeframe-hours {
    float: right;
    text-align: right;
}

ul.timeframes, ul.timeframes ul {
    list-style: none;
    margin: 0;
}

.place-details-panel-inner .place-attributes {
    -moz-border-radius: 0 0 3px 3px;
    -webkit-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    position: relative;
}

.place-details-panel-inner .place-attributes .place-details-panel-inner-title {
    border-bottom: 1px solid #efeff4;
    font-weight: bold;
    margin: 0;
    padding: 10px;
}

.place-details-panel-inner .place-attributes .place-details-attribute-row {
    background-color: #fff;
    border-bottom: 1px solid #efeff4;
    margin: 0;
    padding: 7px 10px;
    min-width: 275px;
}

.place-details-panel-inner .place-attributes .place-details-attribute-row ul.review-list {
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.place-details-panel-inner .place-attributes .place-details-attribute-row ul.review-list li {
    margin-bottom: 10px;
}

div.place-details-panel-inner-photo a img {
    width: 90px;
    height: 70px;
    border: 2px solid transparent;
    -webkit-transition: -webkit-transform .15s ease;
    -moz-transition: -moz-transform .15s ease;
    -o-transition: -o-transform .15s ease;
    -ms-transition: -ms-transform .15s ease;
    transition: transform .15s ease;
    position: relative;
}

div.place-details-panel-inner-photo a:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    z-index: 5;
}

.sl-overlay {
    background: #000;
}

.sl-wrapper .sl-close, .sl-wrapper .sl-counter,
.sl-wrapper .sl-navigation button {
    color: #fff;
}

#directions-mode {
    border-radius: 2px;
    border-color: var(--border-color);
}

input[type=text] {
    border: 0;
    border-radius: 0;
    padding: 6px 0 0;
    font-weight: 600;
    font-size: 15px;
}

input[type=text]::placeholder {
    /*color: #999;*/
    /*font-weight: 600;*/
}

input[type=text]:focus {
    outline: none;
    box-shadow: none;
}

#inputLocationSearch {
    background-image: url(../images/navigator.png);
}

#inputRouteStart {
    background-image: url(../images/route-origin.png);
}

#inputRouteEnd {
    background-image: url(../images/route-destination.png);
}

#btnLocationSearch {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--border-color);
}

.search-loading,
#btnLocationSearch .fa-search.active {
    background-image: url("../images/ajax-loader.gif");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 26px;
    height: 26px;
    margin-top: 6px;
}

#btnLocationSearch .fa-search.active::before {
    content: '';
}

.search-loading {
    float: right;
    margin-top: -33px;
}

#btnDirections {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 26px;
    background: url("../images/direction-sign.png") no-repeat;
    background-position: right;
    background-size: 26px;
    margin: 0;
    padding: 0;
    padding-left: 12px;
    border: none;
    border-left: 1px solid #ccc;
    outline: none;
    filter: grayscale(1);
}

#btnDirections:hover {
    filter: grayscale(0);
}

#btnRouteReverse {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBmaWxsPSIjODc4YTkwIiBkPSJNNy43ODQgMTAuOTU0SDUuOTk5djUuMDA0SDMuMDI2di01LjAyNUgxLjNjLS4zOTEgMC0uNTUzLS4yODctLjM1NS0uNjM2bDMuMTQ4LTUuNTA5Yy4xOTUtLjM0OS41MTYtLjM0OS43MTUgMGwzLjE0MyA1LjUwOWMuMTk4LjM0OS4yMjYuNjU3LS4xNjcuNjU3em0uNDMyLTUuOTA4aDEuNzg1Vi4wNDJoMi45NzN2NS4wMjVoMS43MjVjLjM5MyAwIC41NTMuMjg3LjM1Ny42MzdsLTMuMTQ4IDUuNTA4Yy0uMTk1LjM0OS0uNTE2LjM0OS0uNzE1IDBMOC4wNDggNS43MDRjLS4xOTktLjM1LS4yMjUtLjY1OC4xNjgtLjY1OHoiLz48L3N2Zz4=");
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    bottom: 0;
    cursor: pointer;
    outline: none;
    position: absolute;
    top: 0;
    background-size: cover;
    border-radius: 0;
    height: 15px;
    margin: auto;
    padding: 0;
    right: 5px;
    width: 15px;
    z-index: 0;
}

#btnRouteReverse:hover {
    background-color: transparent;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij48cGF0aCBmaWxsPSIjMjcyZDM3IiBkPSJNNy43ODQgMTAuOTU0SDUuOTk5djUuMDA0SDMuMDI2di01LjAyNUgxLjNjLS4zOTEgMC0uNTUzLS4yODctLjM1NS0uNjM2bDMuMTQ4LTUuNTA5Yy4xOTUtLjM0OS41MTYtLjM0OS43MTUgMGwzLjE0MyA1LjUwOWMuMTk4LjM0OS4yMjYuNjU3LS4xNjcuNjU3em0uNDMyLTUuOTA4aDEuNzg1Vi4wNDJoMi45NzN2NS4wMjVoMS43MjVjLjM5MyAwIC41NTMuMjg3LjM1Ny42MzdsLTMuMTQ4IDUuNTA4Yy0uMTk1LjM0OS0uNTE2LjM0OS0uNzE1IDBMOC4wNDggNS43MDRjLS4xOTktLjM1LS4yMjUtLjY1OC4xNjgtLjY1OHoiLz48L3N2Zz4=");
}

.bootstrap-autocomplete.dropdown-menu {
    background-color: var(--main-comp-color);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: 1px solid var(--border-color);
    border-top-color: #dee2e6;
    padding: 0;
}

.dropdown-item {
    font-size: 13px;
    font-weight: 500;
    overflow: hidden;
    padding: 8px 10px;
}

.dropdown-item.active, .dropdown-item:active {
    color: var(--main-text-color);
    background-color: rgba(0, 123, 255, .5);
}

/* Custom style for bubble marker */
#routeBoxEnd {
    padding-top: 0;
}

.H_ib,
.H_ib_body {
    font-size: 14px;
    fill: #ccc;
    text-align: left;
    background-color: #f5f5f5;
    color: var(--main-text-color);
    border: 1px solid #ccc;
    padding: 0;
    border-radius: 0;
}

.H_ib_body {
    bottom: .65em;
}

.H_ib_body > .H_ib_close > svg.H_icon {
    fill: #343a40
}

.place-details-panel .title > h1 {
    font-size: 20px;
    font-weight: 600;
}

.place-details-panel .title > h2,
#routeInstructionsPanel > h2 {
    font-size: 17px;
    margin: 0;
}

.place-details-panel .address {
    font-size: 14px;
    font-weight: normal;
    color: #6f737a;
}

.directions-cta .btn-directions-cta {
    -webkit-transition: background-color 0.15s linear, max-width 0.15s ease-in-out, padding 0.15s ease-in-out, margin 0.15s ease-in-out;
    transition: background-color 0.15s linear, max-width 0.15s ease-in-out, padding 0.15s ease-in-out, margin 0.15s ease-in-out;
    background-color: #383d41;
    border: 0;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    height: 35px;
    margin: 8px 0 0 0;
    min-width: 80px;
    outline: 0;
    padding: 0 16px;
    white-space: nowrap;
    width: 100%;
    display: block;
}

.directions-cta .btn-directions-cta:hover {
    background-color: #2a2e31;
    text-decoration: none;
}

.directions-cta .btn-block-icon {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMTguMDU5IDExLjA2OGwtNS4zODItMy4xMDdjLS4zNjYtLjIxMS0uNjY1LS4wMzgtLjY2NS4zODR2MS42NDFjLTEuNjk0LjA1Ni0zLjYxNi40OTQtNS4wNTQgMS45MzFWOGgxLjY0OWMuNDIzIDAgLjU5NS0uMzAxLjM4NC0uNjY1TDUuOTIzIDEuOTIzYy0uMjEyLS4zNjUtLjU1OC0uMzY1LS43NjkgMEwyLjA4NSA3LjMzNWMtLjIxMS4zNjQtLjAzOS42NjUuMzgzLjY2NWgxLjUzNnY5Ljk5N2gyLjk1NXYtLjE1MWMwLTIuNTM3IDIuNTQ2LTQuNjU4IDUuMDU1LTQuNzkxdjEuNDNjMCAuNDIzLjI5NS41OTQuNjY0LjM4NGw1LjM4My0zLjAyOWMuMzY0LS4yMTQuMzY0LS41NjEtLjAwMi0uNzcyeiIvPjwvc3ZnPg==");
    display: inline-block;
    width: 20px;
    vertical-align: middle;
    height: 20px;
    margin-right: 4px;
    background-repeat: no-repeat;
    background-size: 20px;
}

#routeInstructionsPanel {
    padding: 10px;
    display: none;
}

.instructions-details {
    background-color: #4ba6ff;
    color: #fff;
}

.instructions-details > div.title {
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    padding: 5px 0;
    margin: 0 10px;
    border-bottom: 1px solid #e9ecef;
}

.instructions-details > .instructions-sumary {
    font-size: 13px;
    margin: 10px;
}

.instructions-details > .instructions-sumary > div {
    line-height: 1.5;
}

.instructions-details > .instructions-sumary > div > span {
    display: table-cell;
}

.instructions-details > .instructions-sumary .index {
    color: #2f2f2f;
    width: 25px;
    font-size: 15px;
}

.instructions-details > .instructions-sumary span[class*="ddr-"] {
    font-weight: 600;
}

.instructions-details > .route-error {
    padding: 20px 0;
    text-align: center;
    font-weight: bold;
    display: none;
}

.marker-user-location {
    width: 18px;
    height: 18px;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-repeat: no-repeat;
    background-color: var(--pink);
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, .3);
}

.marker-local-business {
    width: 22px;
    height: 26px;
    cursor: pointer;
    background-repeat: no-repeat;
    background-color: #1188dd;
    border-radius: 50%;
    border: 2px solid;
    border-color: #0d66a6;
    top: -26px;
    left: 0;
}

.marker-local-business::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 22px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top: 10px solid;
    border-top-color: #0d66a6;
}

.marker-local-business > i {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    color: #fff;
    font-size: 10px;
}

.marker-local-business > span.title {
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    top: -2px;
    text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
    padding-left: 15px;
    color: var(--orange);
    min-height: calc(100% + 11px);
    display: flex;
    align-items: center;
    left: 9px;
    max-width: 120px;
    width: max-content;
}

.marker-local-business:hover,
.marker-local-business.active {
    width: 27px;
    height: 34px;
    top: -34px;
    left: -3px;
    z-index: 999 !important;
}

.marker-local-business:hover::after,
.marker-local-business.active::after {
    left: 6px;
    top: 30px;
}

.marker-local-business:hover,
.marker-local-business:hover::after {
    -webkit-transition: all .1s ease-in-out;
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
}

.marker-local-business:hover > span.title,
.marker-local-business.active > span.title {
    max-width: 123px;
    padding-left: 20px;
}

.marker-local-business:hover > i,
.marker-local-business.active > i {
    font-size: 13px;
}

.marker-local-business-hotel {
    background-color: var(--pink);
    border-color: #a22b62;
}

.marker-local-business-hotel::after {
    border-top-color: #a22b62;
}

.marker-local-business-food {
    background-color: var(--green);
    border-color: #2c7e3e;
}

.marker-local-business-food::after {
    border-top-color: #2c7e3e;
}

.marker-local-business-coffee {
    background-color: var(--cyan);
    border-color: #107180;
}

.marker-local-business-coffee::after {
    border-top-color: #107180;
}

.marker-local-business-shopping {
    background-color: var(--purple);
    border-color: #4d2e87;
}

.marker-local-business-shopping::after {
    border-top-color: #4d2e87;
}

.marker-local-business-grocery {
    background-color: var(--orange);
    border-color: #b1580e;
}

.marker-local-business-grocery::after {
    border-top-color: #b1580e;
}

.marker-local-business-gasstation {
    background-color: var(--yellow);
    border-color: #b28705;
}

.marker-local-business-gasstation::after {
    border-top-color: #b28705;
}

.marker-local-business.active {
    background-color: #ff0500;
    border-color: #c60400;
}

.marker-local-business.active::after {
    border-top-color: #c60400;
}

.marker-destination {
    width: 34px;
    height: 34px;
    background-size: 100%;
    background-image: url(../images/route-destination-marker.png);
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 2px;
    margin-top: -34px;
    margin-left: -16px;
    background-repeat: no-repeat;
}

.marker-tooltip > .tooltip-inner {
    max-width: unset;
    text-align: left;
    background-color: #f5f5f5;
    color: var(--main-text-color);
    border: 1px solid #ccc;
    padding: 0;
    border-radius: 0;
}

.marker-tooltip.show {
    opacity: 1;
}

.marker-tooltip > .arrow::before {
    border-top-color: #ccc;
}

.marker-info {
    position: relative;
    display: flex;
    flex-direction: row;
}

.marker-info-thumb {
    width: 60px;
    max-height: 66px;
}

.marker-info-thumb > img {
    width: 100%;
    height: 100%;
}

.marker-info-thumb.default {
    padding: 6px;
}

.marker-info-thumb.default > img {
    filter: grayscale(1);
}

.marker-info-content {
    padding: 6px;
    display: flex;
    flex-direction: column;
}

.marker-info-content-title {
    font-size: 12px;
    font-weight: 600;
}

.marker-info-content-tagline,
.marker-info-content-meta {
    font-size: 11px;
    padding-top: 2px
}

.marker-info-content-meta-rating {
    padding-right: 5px;
}

.marker-info-content-meta-rating > i {
    font-size: 10px;
}

.H_ib_content > .marker-info {
    width: max-content;
    max-width: 300px;
    margin-right: 15px;
}

.H_ib_content > .marker-info > .marker-info-content {
    font-size: 11px;
    max-width: 183px;
    padding-right: 45px;
}

.H_ib_content > .marker-info > .marker-info-content > .marker-info-content-addr {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 5px;
}

.H_ib_content > .marker-info > .marker-info-content > .marker-info-content-title:hover {
    color: #007bff;
    cursor: pointer;
    text-decoration: none;
}

.H_ib_content > .marker-info > .marker-info-content > .marker-info-content-meta {
    font-size: 10px;
    color: #adb5bd;
}

.H_ib_content > .marker-info > .H_ib_custom_direction {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    cursor: pointer;
}

.H_ib_content > .marker-info > .H_ib_custom_direction > .icon {
    width: 42px;
    height: 42px;
    background-repeat: no-repeat;
    display: inline-block;
}

.H_ib_content > .marker-info > .H_ib_custom_direction > .icon {
    background-image: url(../images/direction-sign.png);
}

.H_ib_content > .marker-info > .H_ib_custom_direction > .icon:hover {
    background-image: url(../images/direction-sign-alt.png);
}

/* Context menu (right click on map) */
.H_context_menu {
    font-size: 16px;
    box-shadow: 0 1px 6px rgba(60,64,67,.28);
    font-weight: 400;
    color: #3C4043;
    background-color: #fff;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    padding: 8px 0;
    letter-spacing: 0.00625em;
    font-family: Roboto,'Noto Sans Tamil UI', Arial,sans-serif;
}

.H_context_menu_item {
    height: 32px;
    line-height: 32px;
    padding: 0 16px;
    margin: 0;
}

.H_context_menu_item:focus,
.H_context_menu_item:hover,
.H_context_menu_item.clickable:focus,
.H_context_menu_item.clickable:hover {
    background-color: #E8F0FE;
}

/* List place style */
.place-list-container {
    list-style: none;
    padding: 0 10px;
    margin: 0;
    flex-grow: 1;
}

.place-list-container > :first-child {
    border-top: 1px solid #ddd;
}

.place-list-item {
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.place-list-item > a {
    display: flex;
    align-items: center;
    color: var(--main-text-color);
}

.place-list-item > a:hover {
    background-color: #eee;
    color: var(--main-text-color);
    text-decoration: none;
}

.place-list-item-thumb > img {
    width: 60px;
    height: 60px;
}

.place-list-item-thumb > img.default {
    filter: grayscale(1);
}

.place-list-item-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-left: 5px;
}

.place-list-item-name {
    font-weight: bold;
}

.place-list-item-rating {
    padding-right: 5px;
}

.place-list-item-rating > i {
    font-size: 11px;
}

.place-list-item-addr {
    margin-top: 5px;
}

.place-list-item-meta {
    color: #999999;
    font-style: italic;
}

.place-list-pagination {
    text-align: center;
    padding: 10px;
}

.place-list-pagination > .btn-group {
    min-width: 60%;
}

.place-list-pagination .btn {
    font-weight: bold;
}

.place-list-panel .btn-place-details-close {
    background: url(../images/close-button.png) no-repeat;
    background-position: center;
    width: 35px;
    height: 35px;
    background-size: 22px;
    position: absolute;
    top: 5px;
    right: 15px;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 1px solid #ccc
}

.place-list-panel .btn-place-details-close:hover,
.place-list-panel .btn-place-details-close:focus,
.place-list-panel .btn-place-details-close.focus,
.place-list-panel .btn-place-details-close:active {
    background-color: rgba(255, 255, 255, 0.8);
}

.place-list-panel-inner .no-results {
    text-align: center;
    font-weight: bold;
    padding: 10px;
}

div.loading-spinner {
    background-image: url(../images/icon_loading.gif);
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    background-position: center;
    background-size: 100%;
    align-self: center;
    margin-top: 10px;
}

.directions {
    padding-left: 30px;
    background: rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    padding-right: 5px;
    margin-bottom: 0;
}

.directions li span.arrow {
    display: inline-block;
    min-width: 28px;
    min-height: 28px;
    background-position: 0px;
    background-image: url(../images/arrows.png);
    position: relative;
    top: 8px;
    filter: brightness(0.3);
}

.directions li span.depart {
    background-position: -28px;
}

.directions li span.rightUTurn {
    background-position: -56px;
}

.directions li span.leftUTurn {
    background-position: -84px;
}

.directions li span.rightFork {
    background-position: -112px;
}

.directions li span.leftFork {
    background-position: -140px;
}

.directions li span.rightMerge {
    background-position: -112px;
}

.directions li span.leftMerge {
    background-position: -140px;
}

.directions li span.slightRightTurn {
    background-position: -168px;
}

.directions li span.slightLeftTurn {
    background-position: -196px;
}

.directions li span.rightTurn {
    background-position: -224px;
}

.directions li span.leftTurn {
    background-position: -252px;
}

.directions li span.sharpRightTurn {
    background-position: -280px;
}

.directions li span.sharpLeftTurn {
    background-position: -308px;
}

.directions li span.rightRoundaboutExit1 {
    background-position: -616px;
}

.directions li span.rightRoundaboutExit2 {
    background-position: -644px;
}

.directions li span.rightRoundaboutExit3 {
    background-position: -672px;
}

.directions li span.rightRoundaboutExit4 {
    background-position: -700px;
}

.directions li span.rightRoundaboutPass {
    background-position: -700px;
}

.directions li span.rightRoundaboutExit5 {
    background-position: -728px;
}

.directions li span.rightRoundaboutExit6 {
    background-position: -756px;
}

.directions li span.rightRoundaboutExit7 {
    background-position: -784px;
}

.directions li span.rightRoundaboutExit8 {
    background-position: -812px;
}

.directions li span.rightRoundaboutExit9 {
    background-position: -840px;
}

.directions li span.rightRoundaboutExit10 {
    background-position: -868px;
}

.directions li span.rightRoundaboutExit11 {
    background-position: 896px;
}

.directions li span.rightRoundaboutExit12 {
    background-position: 924px;
}

.directions li span.leftRoundaboutExit1 {
    background-position: -952px;
}

.directions li span.leftRoundaboutExit2 {
    background-position: -980px;
}

.directions li span.leftRoundaboutExit3 {
    background-position: -1008px;
}

.directions li span.leftRoundaboutExit4 {
    background-position: -1036px;
}

.directions li span.leftRoundaboutPass {
    background-position: 1036px;
}

.directions li span.leftRoundaboutExit5 {
    background-position: -1064px;
}

.directions li span.leftRoundaboutExit6 {
    background-position: -1092px;
}

.directions li span.leftRoundaboutExit7 {
    background-position: -1120px;
}

.directions li span.leftRoundaboutExit8 {
    background-position: -1148px;
}

.directions li span.leftRoundaboutExit9 {
    background-position: -1176px;
}

.directions li span.leftRoundaboutExit10 {
    background-position: -1204px;
}

.directions li span.leftRoundaboutExit11 {
    background-position: -1232px;
}

.directions li span.leftRoundaboutExit12 {
    background-position: -1260px;
}

.directions li span.arrive {
    background-position: -1288px;
}

.directions li span.leftRamp {
    background-position: -392px;
}

.directions li span.rightRamp {
    background-position: -420px;
}

.directions li span.leftExit {
    background-position: -448px;
}

.directions li span.rightExit {
    background-position: -476px;
}

.directions li span.ferry {
    background-position: -1316px;
}

.btn-toggle-instructions {
    display: block;
    margin: 0 auto;
    padding: 0px 16px 0px 12px;
    background-color: #fff;
    border-radius: 30px;
    height: 35px;
    border: 1px solid #dadce0;
    box-shadow: 0 1px 3px rgba(60, 64, 67, .18);
    font-size: 14px;
    font-weight: 500;
}

.btn-toggle-instructions:hover {
    background-color: #efefef;
}

.btn-toggle-instructions:hover:active {
    background-color: #e1e1e1;
}

.btn-toggle-instructions > .btn-block-icon {
    background-image: url(../images/expand_gm_blue.png);
    width: 20px;
    height: 20px;
    background-size: 18px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.btn-toggle-instructions.toggle > .btn-block-icon {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

/** RESPONSIVE */
/** Extra small - mobile devices */
@media (max-width: 575px) {
    .main-panel {
        max-width: 284px;
    }
}