html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    text-decoration: none;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    font-weight: 400;
    -moz-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    border: 0;
    outline: none;
}

html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    min-width: 300px;
    overflow-x: hidden;
    overflow-y: scroll;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-family: sans-serif;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--color-tone-1);
    position: relative;
}

p {
    margin-bottom: 5px;
}

h2, h3, h4 {
    margin-bottom: 10px;
}

ul,
li {
    list-style: none;
}

.d-flex {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.al {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sp {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.text-overflow {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 2;
}

#mapContainer {
    width: 100%;
    margin: 0 auto;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.form-container {
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 386px;
    -webkit-transform: translate(-100%);
    -ms-transform: translate(-100%);
    transform: translate(-100%);
    height: calc(100%);
    z-index: 12;
    -webkit-box-shadow: 2px 0 3px 0 rgb(0 0 0 / 20%);
    box-shadow: 2px 0 3px 0 rgb(0 0 0 / 20%);
    background-color: #fff;
}

.inner-form {
    padding: 10px;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-bottom: 80px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-y: auto;
}


.inner-form::-webkit-scrollbar {
    background-color: #fff;
    width: 16px;
}

/* background of the scrollbar except button or resizer */
.inner-form::-webkit-scrollbar-track {
    background-color: #fff;
}

.inner-form::-webkit-scrollbar-track:hover {
    background-color: #f4f4f4;
}

/* scrollbar itself */
.inner-form::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 5px;
    border: 5px solid #fff;
}

.inner-form::-webkit-scrollbar-thumb:hover {
    background-color: #a0a0a5;
    border: 4px solid #f4f4f4;
}

/* set button(top and bottom of the scrollbar) */
.inner-form::-webkit-scrollbar-button {
    display: none;
}

.inner-form::-webkit-scrollbar {
    display: none;
}

.hiddenFixed {
    position: absolute;
    top: 40px;
    right: -48px;
    outline: 0;
    text-align: center;
    width: 48px;
    height: 60px;
    border-radius: 0 5px 5px 0;
    -webkit-transition: -webkit-transform 1s ease, background 0.5s;
    -o-transition: -o-transform 1s ease, background 0.5s;
    transition: -webkit-transform 1s ease, transform 1s ease, background 0.5s;
    background-color: var(--color-main);
    color: #424242;
    -webkit-box-shadow: 2px 0 3px 0 rgb(0 0 0 / 20%);
    box-shadow: 2px 0 3px 0 rgb(0 0 0 / 20%);
    cursor: pointer;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-left: 0;
}

.hiddenFixed:hover {
    background-color: var(--color-sub);
}

.hiddenFixed svg {
    fill: var(--color-white);
    width: 16px;
    height: 16px;
}

.hiddenFixedRight svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.search-form {
    margin-top: 10px;
    position: relative;
}

.search-form>h2 {
    font-weight: 600;
}

.search-group {
    position: relative;
    z-index: 1;
    height: 49px;
    width: 100%;
}

.search-field {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-small);
    padding-left: 50px;
    padding-right: 50px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.svg-Icon {
    position: absolute;
    width: 50px;
    height: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.svg-Icon>svg {
    width: 13px;
    height: 13px;
}

.svg-Icon>img {
    width: 30px;
    height: 30px;
}

.submitForm {
    background-color: #fff;
    color: #424242;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 12px 24px;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
    -webkit-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    cursor: pointer;
    min-height: 44px;
    border: 1px solid var(--color-main);
    -webkit-box-shadow: 0 0 2px 0 var(--color-main);
    box-shadow: 0 0 2px 0 var(--color-main);
}

.submitForm>img,
.submitForm>svg {
    margin-right: 8px;
}

.submitForm:hover {
    border-color: var(--color-sub);
    -webkit-box-shadow: 0 0 2px 0 var(--color-sub);
    box-shadow: 0 0 2px 0 var(--color-sub);
}

.suggestionLocation {
    position: absolute;
    width: 100%;
    border-radius: 0 0 8px 8px;
    background: #f4f4f4;
    top: 49px;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10;
    -webkit-transition: max-height 0.6s ease;
    -o-transition: max-height 0.6s ease;
    transition: max-height 0.6s ease;
    overflow-y: auto;
    max-height: 500px;
}

.suggestionLocation li {
    background: 0;
    border-bottom: 1px solid #d5d5d5;
    width: 100%;
    margin-left: 0;
    cursor: pointer;
    line-height: 1.5;
    padding: 10px 15px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.li_position {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    font-size: 14px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.li_position>img,
.li_position>svg {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    fill: var(--svg-fill);
}

.suggestionLocation li:hover {
    color: #000;
}

#viaForm {
    display: none;
}

.rightIcon {
    right: 0;
    left: unset;
    cursor: pointer;
}

.rightIcon:hover svg {
    fill: var(--svg-fill);

}

#bigX {
    display: none;
}

.addVia {
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
    margin-left: 0 !important;
}

.addVia:hover {
    background-color: #3c40430a;
}

.icon-add {
    background-color: transparent;
    cursor: pointer;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.icon-add>svg {
    fill: var(--svg-fill);
    width: 20px;
    height: 20px;
}

.grid-directions {
    position: relative;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.grid-directions>.search-form {
    margin-top: 15px;
}

.grid-directions-input {
    width: 100%;
}

.switch-input .icon-add {
    margin-right: 0;
}

.switch-input {
    width: 44px;
    height: 44px;
    background-color: var(--color-main);
    margin-left: 10px;
    border-radius: 50%;
}

.switch-input svg {
    fill: var(--svg-fill);
    width: 24px;
    height: 24px;
}

.topBox {
    -webkit-box-shadow: -2px 3px 3px #a9a9a9, 2px 3px 3px #a9a9a9;
    box-shadow: -2px 3px 3px #a9a9a9, 2px 3px 3px #a9a9a9;
    border-top: 1px solid #d1d1d1;
    border-radius: 5px;
    padding: 20px 10px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.logo-bar {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin-right: 10px;
}

.logoBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logoBox>span {
    -webkit-text-stroke: 2px black;
    -webkit-text-fill-color: black;
    font-size: 18px;
}

.logoBox>span>span {
    -webkit-text-stroke: 2px var(--color-main);
    -webkit-text-fill-color: var(--color-main);
}

.flex-top-form,
.flex-form {
    margin-top: 10px;
}

.flex-menuBox {
    height: 49px;
    position: relative;
}

.icon {
    width: 44px;
    height: 44px;
    cursor: pointer;
    padding: 2px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}

.searchLocation {
    max-width: 100%;
    width: calc(100% - 50px);
    height: 100%;
    position: relative;
    background-color: #eaeaea;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
    -webkit-transition: all 0.15s;
    -o-transition: all 0.15s;
    transition: all 0.15s;
}

.iconMenu {
    background-color: var(--color-main);
    margin-left: auto;
    border-radius: 30px;
    min-width: 44px;
    min-height: 44px;
}

.iconMenu>img {
    width: 18px;
    height: 20px;
}

.iconDirections {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border: 1px solid transparent;
}

.iconDirections:hover {
    border-color: #eaeaea;
}

.iconClose {
    position: absolute;
    top: 0;
    right: 0;
}

#fieldStarting {
    width: 100%;
    height: 100%;
    color: #424242;
    font-size: 16px;
    padding: 0 5px;
    padding-right: 50px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: transparent;
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.flex-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/*new css*/
.grid__place {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 440px;
}

.grid__place--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    overflow-x: auto;
    width: 100%;
    z-index: 11;
}

.grid__place--mobile .pickButton:first-child {
    margin-left: 8px;
}

.grid__place--mobile .text-overflow {
    white-space: nowrap;
}

.grid__place--mobile::-webkit-scrollbar {
    display: none;
}

.grid__place--mobile {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.pickButton,
.grid__place--category {
    -webkit-box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    background-color: #fff;
    color: var(--color-tone-2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 48px;
    margin: 8px 0;
    margin-right: 6px;
    padding: 0 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 32px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    text-transform: capitalize;
    position: relative;
}

.grid__place--category {
    padding: 0;
}

.grid__place--category:hover .grid__place--more {
    color: var(--color-main)
}

.pickButton:hover {
    -webkit-box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
    background-color: var(--color-main);
    color: var(--color-white);
}

.grid__place--more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 32px;
    padding: 12px;
}

.grid__place--more svg {
    width: 14px;
    height: 14px;
}

.grid__place--listmore {
    position: absolute;
    top: 48px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    max-height: 0;
    -webkit-transition: max-height 0.25s ease-out;
    -o-transition: max-height 0.25s ease-out;
    transition: max-height 0.25s ease-out;
    width: 200px;
    overflow-y: auto;
}

.grid__place--listmore {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.grid__place--listmore::-webkit-scrollbar {
    display: none;
}

.dropdown-category .grid__place--listmore {
    max-height: 350px;
    -webkit-transition: max-height 0.25s ease-in;
    -o-transition: max-height 0.25s ease-in;
    transition: max-height 0.25s ease-in;
}

.dropLi {
    padding: 0 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 42px;
    -webkit-box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    background-color: #fff;
    margin: 6px;
    border-radius: 32px;
}

.pickButton--transport {
    background-color: transparent;
    position: relative;
    cursor: pointer;
    margin-right: 8px;
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 44px;
}

.pickButton--transport::before,
.sharing_button::before,
.back::before {
    content: attr(data-query);
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: #323232;
    padding: 4px 6px;
    -webkit-box-shadow: 0 0 2px rgb(0 0 0 / 12%), 0 0 4px rgb(0 0 0 / 24%);
    box-shadow: 0 0 2px rgb(0 0 0 / 12%), 0 0 4px rgb(0 0 0 / 24%);
    border-radius: var(--radius-small);
    background-color: #000;
    z-index: 4;
    color: var(--color-white);
    white-space: nowrap;
    display: none;
}

.sharing_button::before {
    left: -40%;
    top: unset;
    bottom: 50px;
}

.back::before {
    left: unset;
    top: unset;
    bottom: -25px;
    right: 0;
}

.addVia::before {
    left: 50%;
    top: 100%;
    bottom: unset;
}

.pickButton--transport:hover::before,
.sharing_button:hover::before,
.back:hover::before {
    display: block;
}

.pickButton--transport:hover {
    background-color: #e8f0fe;
}

.menu_layout {
    position: relative;
    display: block;
}

.menu_layout--new {
    background-color: var(--color-main);
    -webkit-box-shadow: 0px -1px 1px var(--color-main);
    box-shadow: 0px -1px 1px var(--color-main);
    border-top: 1px solid var(--color-main);
    position: absolute;
    bottom: 0;
    left: 0px;
    margin: 0;
    width: 100%;
}

.menu_layout--new ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.menu_layout--new li {
    color: var(--color-black);

}

.menu_layout--new li a {
    color: inherit;
    padding: 8px 4px;
    display: inline-block;
    font-size: 14px;
    color: var(--color-black);
    /* font-weight: 600; */
}

.menu_layout--new li a:hover {
    text-decoration: underline;
}

.search-group {
    height: 44px;
}

.add-destination {
    cursor: pointer;
}

/*end new*/
.pickButton img {
    width: 100%;
    height: 100%;
}

.pickButton svg {
    width: 36px;
    height: 36px;
}

.pickButton:hover, .dropLi {
    /* background-color: #f1f9f3; */
    /* color: #238440; */
    -webkit-box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
}

.pickButton>b {
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    bottom: -13px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.flex-transports {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.flex-transports .pickButton {
    margin-right: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-transports img {
    width: 30px;
    height: 30px;
}

.cssBubble {
    top: -40px;
}

.panel {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.panel p {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    margin-bottom: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.panel h2 {
    white-space: nowrap;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    margin-bottom: 10px;
    border-top: 1px solid #eaeaea;
    padding-top: 10px;
    text-transform: capitalize;
}

.panel h3 {
    margin-bottom: 8px;
    font-size: 16px;
}

.panel strong {
    margin-left: 3px;
}

.extendMenu {
    display: none;
    padding-top: 10px;
}

.h2-show {
    color: #424242;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
}

.showMore {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    background-color: #fff;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    text-transform: capitalize;
    min-width: 80px;
    text-align: center;
}

.dropLi:hover,
.showMore:hover {
    background-color: var(--color-main);
    color: var(--color-white);
    -webkit-box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15)
}

.pickButton.userchoice {
    -webkit-box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15)
}

.pickButton--transport.userchoice {
    background-color: #e8f0fe;
}

.findingCategory {
    text-transform: capitalize;
    font-weight: 600;
    text-decoration: underline;
}

/*menu_layout*/
.menu_layout {
    left: 0;
    position: absolute;
    right: 0;
    left: unset;
    background-color: #fff;
    top: 100%;
    height: auto;
    width: 300px;
    border: 1px solid #ddd;
    display: none;
}

.innerMenu_layout {
    padding: 10px 0;
}

.logoMenu_layout {
    position: relative;
}

.logoMenu_layout .logoBox {
    padding-left: 52px;
}

.closeBox {
    position: absolute;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    padding: 8px;
    background-color: #000;
    border-radius: 50%;
    left: 10px;
    top: 9px;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.closeBox:hover {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

.somethingBox ul {
    padding: 10px 20px;
}

.somethingBox ul li {
    display: block;
    font-size: 18px;
    color: #fff;
    line-height: 30px;
    margin: 0;
}

.somethingBox ul li a {
    font-weight: 500;
    color: #a5cc00;
    text-transform: capitalize;
    cursor: pointer;
    text-decoration: none;
}

.somethingBox ul li a:hover {
    color: #fff;
}

.site-title {
    margin: 15px 0;
    font-size: 24px;
    font-weight: 600;
}

.site-description,
.description {
    line-height: 1.5;
}
.description a{
    color: var(--color-green)
}
.somethingBox>div {
    color: #fff;
    padding: 0 20px;
    height: 0;
    -webkit-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    transition: all 0.15s ease;
    display: none;
    font-size: 16px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    padding-bottom: 20px;
    height: auto;
}

.description ol,
.guide ol,
.guide ul,
.description ul {
    padding-left: 30px;
    list-style: disc;
}

.guide a,
.guide p,
.guide li {
    margin-bottom: 8px;
}

.description li,
.guide li {
    list-style: disc;
}

/*range*/
.slidecontainer {
    width: 100%;
    -webkit-animation: opacity 0.25s ease 1;
    animation: opacity 0.25s ease 1;
}

@-webkit-keyframes opacity {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes opacity {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 7px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    -webkit-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
    border-radius: 20px;
    margin: auto;
    display: block;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #007eff;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.slider:active::-webkit-slider-thumb {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.slider:active::-moz-slider-thumb {
    transform: scale(1.2);
}

.slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #007eff;
    cursor: pointer;
    border-radius: 50%;
}

#limitFinding {
    width: 80px;
    border: 1px solid #e0e0e0;
    padding: 5px;
}

.inner-showRange {
    text-align: center;
    display: block;
    padding: 5px;
    padding-top: 10px;
}

.cssBubble .H_ib_body {
    border-radius: 1px !important;
    -webkit-box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15) !important;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15) !important;
    border-radius: 7px !important;
    right: unset !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    font-family: var(--font-family) !important;
    margin-right: 0 !important;
    width: 200px;
    max-width: 250px;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.H_context_menu {
    background-color: #fff;
    border-radius: 4px !important;
    padding: 5px 0 !important;
    box-shadow: 0 1px 2px rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%) !important;
    -webkit-box-shadow: 0 1px 2px rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%) !important;
}

/*
.H_context_menu_item {
    min-height: 36px;
    line-height: 36px;
    padding: 0 10px 0 35px;
    background-color: #fff;
    color: var(--color-tone-1) !important;
    text-decoration: none;
    margin-bottom: 0 !important;
    position: relative;
    overflow: visible;
    font-family: inherit !important;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.context_start::before, .context_via::before, .context_des::before, .context_remove::before {
    position: absolute;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 5px;
    -webkit-transition: transform 0.2s ease, background-color 0.2s ease,
        border 0.2s ease, width 0.1s ease, height 0.1s ease, margin-left 0.1s ease,
        margin-top 0.1s ease;
    -o-transition: transform 0.2s ease, background-color 0.2s ease,
        border 0.2s ease, width 0.1s ease, height 0.1s ease, margin-left 0.1s ease,
        margin-top 0.1s ease;
    -webkit-transition: background-color 0.2s ease, border 0.2s ease,
        width 0.1s ease, height 0.1s ease, margin-left 0.1s ease,
        margin-top 0.1s ease, -webkit-transform 0.2s ease;
    transition: background-color 0.2s ease, border 0.2s ease,
        width 0.1s ease, height 0.1s ease, margin-left 0.1s ease,
        margin-top 0.1s ease, -webkit-transform 0.2s ease;
    -o-transition: transform 0.2s ease, background-color 0.2s ease, border 0.2s ease,
        width 0.1s ease, height 0.1s ease, margin-left 0.1s ease,
        margin-top 0.1s ease;
    transition: transform 0.2s ease, background-color 0.2s ease, border 0.2s ease,
        width 0.1s ease, height 0.1s ease, margin-left 0.1s ease,
        margin-top 0.1s ease;
    transition: transform 0.2s ease, background-color 0.2s ease, border 0.2s ease,
        width 0.1s ease, height 0.1s ease, margin-left 0.1s ease,
        margin-top 0.1s ease, -webkit-transform 0.2s ease;
    background-repeat: no-repeat;
    background-position: center;
}

.context_start::before {
    width: 25px;
    height: 25px;
    background-image: url(../imgs/marker/start.svg);
    background-size: 25px 25px;
}

.context_via::before {
    width: 25px;
    height: 25px;
    background-image: url(../imgs/marker/via.svg);
    background-size: 25px 25px;
}

.context_des::before {
    width: 25px;
    height: 25px;
    background-image: url(../imgs/marker/finish.svg);
    background-size: 25px 25px;
}

.context_remove::before {
    width: 25px;
    height: 25px;
    background-image: url(../imgs/marker/circle.svg);
    background-size: 24px 24px;

}

.H_context_menu_item.clickable:hover {
    background-color: #f7f8f8;
}
*/
.H_context_menu_item {
    padding: 5px 10px;
    font-size: 16px;
    margin: 0 !important;
    width: 100%;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: var(--font-family);
    color: #000;
    min-height: 32px;
}

.H_context_menu_item.clickable:hover {
    background-color: #f7f8f8;
}

.cssBubble .H_ib_content {
    margin: 0 !important;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    max-width: 250px;
    width: 100%;
    display: -webkit-box !important;
    font-size: 14px !important;
    font-family: var(--font-family) !important;
    font-weight: 500 !important;
    color: var(--color-tone-1);
}

.cssBubble .H_ib_close {
    visibility: hidden !important;
}

.now-location {
    -webkit-box-shadow: 0em 0 0.4em 0 rgb(15 22 33 / 60%);
    box-shadow: 0em 0 0.4em 0 rgb(15 22 33 / 60%);
    border-radius: 0.5em;
    width: 40px;
    height: 40px;
    background: #fff;
    position: fixed;
    bottom: 232px;
    right: 24px;
    z-index: 8;
    cursor: pointer;
}

.now-location svg,
.now-location img {
    display: block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: auto;
    width: 22px;
    height: 22px;
    fill: var(--svg-fill);
}

.now-location:hover svg {
    fill: rgba(15, 22, 33, 0.8);
}

.flex-form {
    display: block;
}

.arrow {
    display: inline-block;
    min-width: 28px;
    min-height: 28px;
    background-position: 0px;
    background-image: url(../imgs/arrows.png);
}

.sharing_button {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    margin-left: 10px;
    position: relative;
}

.sharing_button:hover {
    background-color: #f9f9f9;
}

.sharing_button svg {
    width: 24px;
    height: 24px;
}

.popup-share {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}

.popup-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
    border-radius: var(--radius-small);

    overflow: hidden;
}

.inner-share-content {
    padding: 15px;
    min-width: 300px;
}

.popup-title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 24px;
}

.popup-url {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 40px;
    margin-top: 15px;
    background: rgba(0, 68, 102, 0.06);
}

.direct_and_share {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.iconCopy {
    font-weight: 600;
    color: var(--color-main);
    background-color: transparent;
    width: auto;
    min-width: 60px;
}

.iconCopy:hover {
    color: var(--color-sub);
}

#url-present {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    height: 100%;
    background-color: transparent;
}

.comments {
    border-left: solid 2px #ccc;
    padding: 0px 0 0px 20px;
}

.comments p {
    background-color: #f8f8f8;
    padding: 10px;
    border: solid 1px #ccc;
    line-height: 1.7;
    position: relative;
    margin: 10px 0;
}

.comments p::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    display: block;
    border: 3px solid #ccc;
    border-radius: 50%;
    background-color: var(--color-main);
    top: 10px;
    left: -30px;
}

.comments p::after {
    content: "";
    position: absolute;
    border: solid 8px;
    border-color: transparent #ccc transparent transparent;
    top: 10px;
    left: -17px;
}

.comments em {
    font-size: 10px;
}

/*new*/
.top_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 13;
}

.main-search {
    position: relative;
    max-width: 400px;
    width: 100%;
    margin-right: 10px;
}

.txt-mainsearch {
    width: 100%;
    max-width: 400px;
    height: 100%;
    border-radius: var(--radius-small);
    background-color: #fff;
    -webkit-appearance: none;
    height: 44px;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-right: 44px;
    border: 1px solid #e0e0e0;
}

.m-l-10 {
    margin-left: 10px;
}

.navigation__ui {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #f9f9f9;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* padding: 0 10px; */
    border-bottom: 1px solid #e8e8ef;
}

.actions-user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
    cursor: pointer;
    padding: 5px 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    min-height: 48px;
    font-size: 18px;
}

.actions-user svg {
    fill: var(--color-main);
    width: 24px;
    height: 24px;
}

.actions-user img {
    width: 24px;
    height: 24px;
}

.actions-user span {
    font-weight: bold;
    margin-right: auto;
}

.actions-user.active {
    background-color: #fff;
    z-index: 4;
}

.actions-user.active {
    border-bottom: 1px solid #fa5791;
}

.main-directions {
    border-top-right-radius: 10px;
}

.main-place {
    border-top-left-radius: 10px;
}

.actions-user.active::before,
.actions-user.active::after {
    content: " ";
    pointer-events: none;
    position: absolute;
    display: block;
    height: 80%;
    width: 100%;
    bottom: 0px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.actions-user.active::before {
    left: -100%;
    border-radius: 0 0 10px 0;
    opacity: 1;
    -webkit-box-shadow: 15px 0.25em 0 -4px #fff;
    box-shadow: 15px 0.25em 0 -4px #fff;
    visibility: visible;
}

.actions-user.active::after {
    right: -100%;
    border-radius: 0 0 0 10px;
    opacity: 1;
    -webkit-box-shadow: -15px 0.25em 0 -4px #fff;
    box-shadow: -15px 0.25em 0 -4px #fff;
    visibility: visible;
}

.main-directions.active::before {
    visibility: hidden;
}

.main-place.active::after {
    visibility: hidden;
}

.iconMenu:hover {
    background-color: var(--color-sub);
}

.suggest_main {
    width: 100%;
    left: 0;
    top: calc(100% + -3px);
    position: absolute;
    overflow: hidden;
    max-height: 600px;
    -webkit-transition: max-height 0.4s ease-out;
    -o-transition: max-height 0.4s ease-out;
    transition: max-height 0.4s ease-out;
    z-index: 1;
}

.ul-tabing {
    -webkit-filter: drop-shadow(0 8px 5px rgba(0, 0, 0, 0.15));
    filter: drop-shadow(0 8px 5px rgba(0, 0, 0, 0.15));
    border: 1px solid #e0e0e0;
}

.suggest_main>ul,
.ul-tabing {
    background-color: #fff;
    box-shadow: rgb(77 77 77 / 15%) 0 2px 2px 0;
    -moz-box-shadow: rgba(77, 77, 77, 0.15) 0 2px 2px 0;
    -webkit-box-shadow: rgb(77 77 77 / 15%) 0 2px 2px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0 0px 5px 5px;
}

.suggest_main>ul>li,
.ul-tabing li {
    padding: 12px;
    cursor: pointer;
    border-bottom: 1px solid #cbcbcb;
    /* text-align: center; */
    text-transform: capitalize;
    position: relative;
}

.suggest_main>ul>li:hover,
.ul-tabing li:hover {
    background-color: #f1f9f3;
}

.suggest_main>ul {
    border-top: 0 !important;
}

.suggest_main li:not(.li_position),
.suggest-searchbox li:not(.li_position) {
    padding-left: 42px;
}

.suggest_main li:not(.li_position)::before,
.suggest-searchbox li:not(.li_position)::before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 12px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    /* background-image: url(../imgs/marker/location_333333.png); */
    background-image: url(../imgs/marker/circle.svg);
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.suggest_main>ul>li {
    border-bottom: 0 !important;
}

.search-group {
    z-index: unset;
}

#place-form, #directions-form {
    margin-top: 0;
}

.ul-tabing li a {
    color: #444;
    font-size: 13px;
    display: block;
}

.topBox {
    padding: 0;
    border-radius: 0;
    border: 0;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}

.back {
    width: 48px;
    height: 48px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    cursor: pointer;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    /* display: none; */
    position: relative;
}

.back svg {
    width: 20px;
    height: 20px;
}

.back:hover svg {
    fill: var(--svg-fill);
}

.back-sheet {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #424242;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    padding: 3px 0;
}

.back-sheet svg {
    margin-right: 5px;
}

.back-sheet svg {
    fill: var(--svg-fill);
}

.back-sheet:hover {
    color: var(--color-main);
}

.flex-top-form,
.flex-form {
    display: none;
}

.search-field:focus {
    -webkit-box-shadow: 0 0 4px #bae1ff;
    box-shadow: 0 0 4px #bae1ff;
}

.table-row,
#table-place {
    width: 100%;
    border-collapse: collapse;
}


#table-place .table-row {
    border-collapse: separate;
    border-spacing: 0 10px;
}

#table-place tr {
    -webkit-box-shadow: 0 0 0 1px rgb(0 0 0 / 5%), 0 2px 3px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 0 0 1px rgb(0 0 0 / 5%), 0 2px 3px 0 rgb(0 0 0 / 10%);
    border-radius: var(--radius-small);
}

#table-place tr td {
    padding: 5px;
    border: 1px solid #ddd;
    cursor: pointer;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

table tr td a {
    color: #015eff;
}

#table-place tr td:hover {
    background-color: #f1f9f3;
}

.grid-place-box {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.grid-place-info {
    padding-left: 10px;
}

.grid-place-info>* {
    margin: 5px 0;
}

.grid-place-info h3 {
    font-weight: 600;
    font-size: 15px;
}

.grid-place-info p {
    font-size: 13px;
}

.place-phone>a {
    color: #015eff;
}

.doc-special-title {
    color: var(--color-black);
    background-color: var(--color-main);
    border-radius: var(--radius-small);
    padding: 8px 12px;
}

.doc-mini-title {
    margin-right: 5px;
    font-size: 15px;
}

.doc-description {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.text-description {
    text-align: justify;
    background-color: #f8f8f8;
    padding: 10px;
    border: solid 1px #ccc;
}

.popup-denied-location {
    position: fixed;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    border: 1px solid #000;
    padding: 8px 24px;
    z-index: 10000;
    display: none;
    background-color: #323232;
    color: #fff;
    -webkit-box-shadow: 0 0 2px rgb(0 0 0 / 12%), 0 0 4px rgb(0 0 0 / 24%);
    box-shadow: 0 0 2px rgb(0 0 0 / 12%), 0 0 4px rgb(0 0 0 / 24%);
    border-radius: var(--radius-small);
    white-space: nowrap;
}

.depart {
    background-position: -28px;
}

.rightuTurn {
    background-position: -56px;
}

.leftuTurn {
    background-position: -84px;
}

.rightkeep {
    background-position: -112px;
}

.leftkeep {
    background-position: -140px;
}

.slightright {
    background-position: -168px;
}

.slightleft {
    background-position: -196px;
}

.rightturn {
    background-position: -224px;
}

.leftturn {
    background-position: -252px;
}

.sharpright {
    background-position: -280px;
}

.sharpleft {
    background-position: -308px;
}

.rightexit {
    background-position: -504px;
}

.leftexit {
    background-position: -532px;
}

.leftroundaboutExit {
    background-position: -840px;
}

.rightroundaboutExit {
    background-position: -1176px;
}

.arrive {
    background-position: -1288px;
}

.ferry {
    background-position: -1428px;
}

.exit {
    background-position: -1540px;
}

.rightramp {
    background-position: -1456px;
}

.leftramp {
    background-position: -1484px;
}

.td {
    padding: 5px 0;
}

.td ul {
    padding-left: 25px;
    list-style: disc;
}

.td ul li {
    list-style: disc;
    text-transform: capitalize;
    margin: 5px 0;
}

.domMarker_title {
    max-width: 140px;
    font-weight: bold;
    font-size: 14px;
    color: #000;
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 30px;
    min-width: 140px;
    text-align: center;
    text-shadow: rgb(255, 255, 255) 1px 0px 0px,
        rgb(255, 255, 255) 0.540302px 0.841471px 0px,
        rgb(255, 255, 255) -0.416147px 0.909297px 0px,
        rgb(255, 255, 255) -0.989992px 0.14112px 0px,
        rgb(255, 255, 255) -0.653644px -0.756802px 0px,
        rgb(255, 255, 255) 0.283662px -0.958924px 0px,
        rgb(255, 255, 255) 0.96017px -0.279415px 0px;
}

.ads-margin {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
}

.ads-title {
    text-align: center;
    background: transparent;
    font-size: 11px;
    margin: 0;
    padding: 0;
    color: #b3b3b3;
    opacity: 0.8;
    color: #424242;
}

.close-ads {
    z-index: 10;
}

.horizontal-title {
    text-align: left !important;
}

.throw-ads-300x250,
.throw-ads-320x50 {
    z-index: 11;
    display: none;
}

.throw-ads-728x90 {
    position: absolute;
    left: calc(100% + 160px);
    max-width: 728px;
    z-index: 11;
    display: none;
}

.throw-ads-320x90 {
    position: absolute;
    left: calc(100% + 160px);
    max-width: 320px;
    z-index: 11;
    display: none;
}

.throw-ads-320x50-pannel {
    margin: 10px;
}

.ads-top,
.mini-ads-top {
    top: 5px;
}

.ads-bottom,
.mini-ads-bottom {
    bottom: 15px;
}

.mini-ads-top,
.mini-ads-bottom {
    display: none;
}

.close-ads {
    width: 24px;
    height: 24px;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: -12px;
    cursor: pointer;
}

.close-ads svg {
    width: 10px;
    height: 10px;
    fill: #b3b3b3;
}

.hidden {
    display: none !important;
}

.active-place {
    background-color: #f1f9f3;
}

#detail-place {
    display: none;
}

.doc-grid-photo {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.doc-photo {
    width: 91px;
    height: 91px;
    padding: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.doc-photo img {
    width: 100%;
    height: 100%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 8px;
}

:root {
    --font-family: 'Lato', sans-serif;
    --color-main: #2d994d;
    --color-sub: #3fb562;
    --radius-small: 4px;
    --radius-medium: 10px;
    --radius-circle: 50%;
    --color-tone-1: #333;
    --color-tone-2: #202124;
    --color-white: #fff;
    --svg-fill: #0f162199;
    --color-green: #0467c4;
    --color-black: #000;
}

@media (min-width: 1280px) {
    .throw-ads-728x90 {
        display: block;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {

    .mini-ads-top,
    .mini-ads-bottom {
        display: block;
    }
}

@media (min-width: 992px) {
    .grid__place--mobile {
        display: none !important;
    }

    .throw-ads-300x250 {
        display: block;
    }
}

/*1568 56 icon*/
@media (max-width: 991px) {
    .grid__place--mobile {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .logo-bar, .grid__place {
        display: none !important;
    }

    .top_menu {
        height: auto;
    }

    .form-container {
        width: 100%;
    }

    .throw-ads-320x50 {
        display: block;
    }

    .hiddenFixed {
        top: 70px;
    }
}

@media (max-width: 640px) {

    .txt-mainsearch,
    .main-search {
        max-width: 100%;
        margin-right: 0;
    }

    .grid-top-menu {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .form-container {
        width: calc(100% - 60px);
    }

    .popup-denied-location {
        white-space: normal;
        min-width: 280px;
        width: 80%;
    }


}