a {
  text-decoration: none;
  font-weight: 800;
}

body {
    color: var(--gray-2);
    font-family: FiraGO,"Noto Sans JP",Tahoma,Calibri,Helvetica,Arial,sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .5px;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

dev-portal-code-example-snippets .rest-code-example,dev-portal-code-example-snippets .js-code-examples,dev-portal-code-example-snippets .dp-tab-navigation {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

dev-portal-code-example-snippets .dp-tab-navigation-dark {
    background-color: #1d232d;
}

dev-portal-code-example-snippets pre {
    font-size: 13px;
}

dev-portal-code-example-snippets .js-code-examples pre {
    box-sizing: content-box;
    height: 418px;
    padding-top: 20px;
}

dev-portal-code-example-snippets .js-code-example-map {
    background-color: #e4e6e9;
    border: 1px solid #e4e6e9;
    box-sizing: border-box;
    height: 490px;
    width: 100%;
}

dev-portal-code-example-snippets .js-code-example-map h4 {
    margin-bottom: 0.5em;
}

dev-portal-code-example-snippets .js-code-example-map .mapControls {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.7);
    padding: 10px;
    text-align: center;
    border: 1px solid #e4e6e9;
    border-top: 0;
    border-left: 0;
}

dev-portal-code-example-snippets .js-code-example-map .btn-sm,dev-portal-code-example-snippets .js-code-example-map .btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
}

dev-portal-code-example-snippets .js-code-example-map .btn-default {
    color: #333 !important;
    background-color: rgba(255,255,255,0.5);
    border: 1px solid #babcc4;
}

dev-portal-code-example-snippets .js-code-example-map .btn-default:hover {
    background-color: #fff;
}

dev-portal-code-example-snippets .js-code-example-map .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

dev-portal-code-example-snippets .js-code-example-map .btn-group > .btn:last-child:not(:first-child),dev-portal-code-example-snippets .js-code-example-map .btn-group > .dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

dev-portal-code-example-snippets .js-code-example-map .btn-group .btn + .btn,dev-portal-code-example-snippets .js-code-example-map .btn-group .btn + .btn-group,dev-portal-code-example-snippets .js-code-example-map .btn-group .btn-group + .btn,dev-portal-code-example-snippets .js-code-example-map .btn-group .btn-group + .btn-group {
    margin-left: -1px;
}

dev-portal-code-example-snippets .rest-code-example {
    background-color: #3f454d;
}

dev-portal-code-example-snippets .rest-code-example > div:first-child {
    padding: 25px 40px 25px 15px;
}

dev-portal-code-example-snippets .rest-code-example > div:last-child {
    padding: 25px 0px 0px;
}

dev-portal-code-example-snippets .rest-code-example p,dev-portal-code-example-snippets .rest-code-example h5 {
    color: white;
    font-size: 16px;
    line-height: 24px;
}

dev-portal-code-example-snippets .rest-code-example pre {
    height: 264px;
    margin-left: 10px;
}

dev-portal-code-example-snippets .rest-code-example ol {
    counter-reset: li;
    padding-left: 0px;
    margin: 0 0 20px 0;
}

dev-portal-code-example-snippets .rest-code-example ol li {
    list-style: none;
}

dev-portal-code-example-snippets .rest-code-example ol li:before {
    background: white;
    border-radius: 16px;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
    box-sizing: border-box;
    color: #3f454d;
    content: counter(li);
    counter-increment: li;
    float: left;
    height: 24px;
    line-height: 24px;
    margin-right: 10px;
    margin-top: -4px;
    text-align: center;
    width: 24px;
}

dev-portal-code-example-snippets .rest-code-example .request-url-block {
    background-color: #6a6d74;
    color: white;
    padding: 10px 15px;
    margin-left: 10px;
    font-size: 13px;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    dev-portal-code-example-snippets .rest-code-example ol li {
        padding-left:10px;
    }

    dev-portal-code-example-snippets .rest-code-example pre {
        margin-left: 0;
    }
}


code[class*="language-"],pre[class*="language-"] {
    color: #f9f9f9;
    background: none;
    font-family: 'Fira Mono','Consolas','Monaco','Andale Mono','Ubuntu Mono','monospace';
    direction: ltr;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

pre[class*="language-"] {
    border-radius: 0 !important;
    padding: 1em;
    margin: 0 !important;
    overflow: auto;
}

:not(pre) > code[class*="language-"],pre[class*="language-"] {
    background: #1d232d;
    border: 0;
}

:not(pre) > code[class*="language-"] {
    padding: .1em;
    white-space: normal;
}

.token.comment,.token.prolog,.token.doctype,.token.cdata {
    color: slategray;
}

.token.punctuation {
    color: #ccc;
}

code .namespace {
    opacity: .7;
}

.token.property,.token.tag,.token.constant,.token.symbol,.token.deleted {
    color: #f92672;
}

.token.boolean,.token.number {
    color: #ae81ff;
}

.token.selector,.token.attr-name,.token.string,.token.char,.token.builtin,.token.inserted {
    color: #a6e22e;
}

.token.operator,.token.entity,.token.url,.language-css .token.string,.style .token.string,.token.variable {
    color: #ccc;
}

.token.atrule,.token.attr-value,.token.function {
    color: #e6db74;
}

.token.keyword {
    color: #66d9ef;
}

.token.atrule, .token.attr-value, .token.function {
    color: #e6db74;
}

.token.keyword {
    color: #66d9ef;
}

.token.boolean, .token.number {
    color: #ae81ff;
}


[class*='dp-width'] {
    box-sizing: border-box;
    width: 100%;
}

.dp-width-1-3 {
    width: 33.333%;
}

.dp-width-medium-5-10 {
  width: 50%;
}

@media (min-width: 480px) {
    .dp-width-small-1-1 {
        width:100%;
    }
    
    
}

@media (max-width: 480px) {
   .dp-width-medium-5-10 {
          width:100%;
      }
}

@media (min-width: 768px) {
  
      .dp-width-medium-5-10 {
          width:50%;
      }
      
    .dp-width-medium-3-10 {
        width:30%;
    }

    .dp-width-medium-7-10 {
        width: 70%;
    }

}



@media (max-width: 767px) {
    .dp-hidden-small {
        display:none !important;
    }
}

.dp-flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.dp-flex > * {
    -ms-flex-negative: 1;
}

.dp-flex-wrap {
    flex-wrap: wrap;
}


.dp-margin-large-top {
    margin-top: 40px !important;
}

dp-tab-navigation {
    min-height: 44px;
}

.dp-tab-navigation > div {
    border-left: 1px solid white;
    border-right: 1px solid white;
    font-weight: 300;
    display: block;
    background: #e4e6e9;
}

.dp-tab-navigation > div a {
    cursor: pointer;
    display: block;
    padding: 10px 0;
    color: #babcc4;
}

.dp-tab-navigation > div a:hover {
    color: #3d73d0;
}

.dp-tab-navigation .dp-active {
    background: white;
    border-top: 3px solid #77a0e7;
}

.dp-tab-navigation .dp-active a {
    padding: 7px;
    color: #77a0e7;
}

.dp-tab-navigation.dp-tab-navigation-dark {
    min-height: 40px;
}

.dp-tab-navigation.dp-tab-navigation-dark > div {
    border-left: 0;
    border-right: 0;
    font-weight: 500;
    background-color: #3f454d;
}

.dp-tab-navigation.dp-tab-navigation-dark > div a {
    padding: 12px 7px 10px 7px;
}

.dp-tab-navigation.dp-tab-navigation-dark > div a:hover {
    color: #3d73d0;
}

.dp-tab-navigation.dp-tab-navigation-dark > div:not(:last-child) {
    border-right: 1px solid #babcc4;
}

.dp-tab-navigation.dp-tab-navigation-dark .dp-active {
    border-top: 0;
    background: #1d232d;
}

.dp-tab-navigation.dp-tab-navigation-dark .dp-active a {
    color: white;
}

/* routing */
   .directions li span.arrow {
        display:inline-block;
        min-width:28px;
        min-height:28px;
        background-position:0px;
        background-image: url("https://heremaps.github.io/maps-api-for-javascript-examples/map-with-route-from-a-to-b/img/arrows.png");
        position:relative;
        top:8px;
      }
      .directions li span.depart  {
        background-position:-28px;
      }
      .directions li span.rightturn  {
        background-position:-224px;
      }
      .directions li span.leftturn{
        background-position:-252px;
      }
      .directions li span.arrive  {
        background-position:-1288px;
      }


 