/*!
 * chota.css v0.9.2 | MIT License | https://github.com/jenil/chota
 */
:root {
  --bg-color: #fff;
  --bg-secondary-color: #e7f5e9;
  --main-color: #34a517;
  --secondary-color: #336698;
  --color-primary: #000000;
  --color-links: #18bc9c;
  --color-lightGrey: #eaedf3;
  --color-grey: #747681;
  --color-darkGrey: #3f4144;
  --color-error: #d43939;
  --color-success: #28bd14;
  --grid-maxWidth: 120rem;
  --grid-gutter: 2rem;
  --border-radius: 8px;
  --font-size: 1.6rem;
  --font-color: #333;
  --font-family-sans: -apple-system, "BlinkMacSystemFont", "Avenir",
    "Avenir Next", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
    "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
body {
  background-color: var(--bg-color);
  line-height: 1.6;
  font-size: var(--font-size);
  color: var(--font-color);
  font-family: "Segoe UI", "Helvetica Neue", sans-serif; /* fallback */
  font-family: var(--font-family-sans);
  margin: 0;
  padding: 0;
}
body.dark {
  --bg-color: #000;
  --bg-secondary-color: #656568;
  --main-color: #267811;
  --font-color: #f5f5f5;
  --color-grey: #ccc;
  --color-darkGrey: #777;
  --color-lightGrey: #747681;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0.35em 0 0.7em;
}
h1 {
  font-size: 2em;
}
h2 {
  font-size: 1.75em;
}
h3 {
  font-size: 1.5em;
}
h4 {
  font-size: 1.25em;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 0.85em;
}
a {
  color: var(--color-links);
  text-decoration: none;
}
button {
  font-family: inherit;
}
p {
  margin-top: 0;
}
blockquote {
  background-color: var(--bg-secondary-color);
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--color-lightGrey);
}
ul {
  margin: 0;
  padding-left:0;
}
dl dt {
  font-weight: bold;
}
hr {
  border: none;
  background-color: var(--color-lightGrey);
  height: 1px;
  margin: 1rem 0;
}
table {
  width: 100%;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}
table.striped tr:nth-of-type(2n) {
  background-color: var(--bg-secondary-color);
}
td,
th {
  vertical-align: middle;
  padding: 1.2rem 0.4rem;
}
thead {
  border-bottom: 2px solid var(--color-lightGrey);
}
tfoot {
  border-top: 2px solid var(--color-lightGrey);
}
code,
kbd,
pre,
samp,
tt {
  font-family: var(--font-family-mono);
}
code,
kbd {
  font-size: 90%;
  white-space: pre-wrap;
  border-radius: 4px;
  padding: 0.2em 0.4em;
  background-color: var(--bg-secondary-color);
  color: var(--color-error);
}
pre {
  background-color: var(--bg-secondary-color);
  font-size: 1em;
  padding: 1rem;
  overflow-x: auto;
}
pre code {
  background: none;
  padding: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
img {
  max-width: 100%;
}
fieldset {
  border: 1px solid var(--color-lightGrey);
}
iframe {
  border: 0;
}
.container {
  max-width: var(--grid-maxWidth);
  margin: 0 auto;
  margin-bottom: var(--grid-gutter);
  width: 96%;
  padding: 0 calc(var(--grid-gutter) / 2);
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: calc(var(--grid-gutter) / -2);
  margin-right: calc(var(--grid-gutter) / -2);
}
.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.col,
[class*=" col-"],
[class^="col-"] {
  margin: 0 calc(var(--grid-gutter) / 2) calc(var(--grid-gutter) / 2);
}
.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
  max-width: calc((100% / (12/1)) - var(--grid-gutter));
}
.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
  max-width: calc((100% / (12/2)) - var(--grid-gutter));
}
.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
  max-width: calc((100% / (12/3)) - var(--grid-gutter));
}
.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
  max-width: calc((100% / (12/4)) - var(--grid-gutter));
}
.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
  max-width: calc((100% / (12/5)) - var(--grid-gutter));
}
.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
  max-width: calc((100% / (12/6)) - var(--grid-gutter));
}
.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
  max-width: calc((100% / (12/7)) - var(--grid-gutter));
}
.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
  max-width: calc((100% / (12/8)) - var(--grid-gutter));
}
.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
  max-width: calc((100% / (12/9)) - var(--grid-gutter));
}
.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
  max-width: calc((100% / (12/10)) - var(--grid-gutter));
}
.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
  max-width: calc((100% / (12/11)) - var(--grid-gutter));
}
.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
  max-width: calc((100% / (12/12)) - var(--grid-gutter));
}
@media screen and (max-width: 599px) {
  .container {
    width: 100%;
  }

  .col,
  [class*="col-"],
  [class^="col-"] {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .col-1-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
    max-width: calc((100% / (12/1)) - var(--grid-gutter));
  }

  .col-2-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
    max-width: calc((100% / (12/2)) - var(--grid-gutter));
  }

  .col-3-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
    max-width: calc((100% / (12/3)) - var(--grid-gutter));
  }

  .col-4-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
    max-width: calc((100% / (12/4)) - var(--grid-gutter));
  }

  .col-5-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
    max-width: calc((100% / (12/5)) - var(--grid-gutter));
  }

  .col-6-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
    max-width: calc((100% / (12/6)) - var(--grid-gutter));
  }

  .col-7-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
    max-width: calc((100% / (12/7)) - var(--grid-gutter));
  }

  .col-8-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
    max-width: calc((100% / (12/8)) - var(--grid-gutter));
  }

  .col-9-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
    max-width: calc((100% / (12/9)) - var(--grid-gutter));
  }

  .col-10-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
    max-width: calc((100% / (12/10)) - var(--grid-gutter));
  }

  .col-11-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
    max-width: calc((100% / (12/11)) - var(--grid-gutter));
  }

  .col-12-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
    max-width: calc((100% / (12/12)) - var(--grid-gutter));
  }
}
@media screen and (min-width: 1200px) {
  .col-1-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
    max-width: calc((100% / (12/1)) - var(--grid-gutter));
  }

  .col-2-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
    max-width: calc((100% / (12/2)) - var(--grid-gutter));
  }

  .col-3-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
    max-width: calc((100% / (12/3)) - var(--grid-gutter));
  }

  .col-4-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
    max-width: calc((100% / (12/4)) - var(--grid-gutter));
  }

  .col-5-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
    max-width: calc((100% / (12/5)) - var(--grid-gutter));
  }

  .col-6-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
    max-width: calc((100% / (12/6)) - var(--grid-gutter));
  }

  .col-7-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
    max-width: calc((100% / (12/7)) - var(--grid-gutter));
  }

  .col-8-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
    max-width: calc((100% / (12/8)) - var(--grid-gutter));
  }

  .col-9-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
    max-width: calc((100% / (12/9)) - var(--grid-gutter));
  }

  .col-10-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
    max-width: calc((100% / (12/10)) - var(--grid-gutter));
  }

  .col-11-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
    max-width: calc((100% / (12/11)) - var(--grid-gutter));
  }

  .col-12-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
    max-width: calc((100% / (12/12)) - var(--grid-gutter));
  }
}
fieldset {
  padding: 0.5rem 2rem;
}
legend {
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 0.1rem;
}
input:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
select,
textarea,
textarea[type="text"] {
  font-family: inherit;
  padding: 0.8rem 1rem;
  color: var(--font-color);
  background: var(--bg-secondary-color);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-lightGrey);
  font-size: 1em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: block;
  width: 100%;
}
input[type="checkbox"],
input[type="radio"],
input[type="range"],
progress {
  accent-color: var(--color-primary);
}
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #f3f3f6 no-repeat 100%;
  background-size: 1ex;
  background-origin: content-box;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' fill='%23555'><polygon points='0,0 60,0 30,40'/></svg>");
}
footer input:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
select,
textarea,
textarea[type="text"] {
  background: var(--bg-color);
}
.button,
[type="button"],
[type="reset"],
[type="submit"],
button {
  padding: 1rem 2.5rem;
  color: var(--bg-color);
  background: var(--main-color);
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  font-size: var(--font-size);
  line-height: 1;
  text-align: center;
  transition: transform 0.2s, background 0.2s;
  transition: opacity 0.2s ease;
  text-decoration: none;
  -webkit-transform: scale(1);
          transform: scale(1);
  display: inline-block;
  cursor: pointer;
}
.button.primary,
.button.secondary,
.button.dark,
.button.error,
.button.success,
[type="submit"] {
  color: #fff;
  z-index: 1; /* hightlight from other button's border when grouped */
  background-color: #000;
  background-color: var(--main-color);
}
.button:hover,
[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover,
button:hover {
  background: var(--secondary-color);
	transform: translateY(-2px);
}
input:disabled,
input:disabled:hover,
button:disabled,
button:disabled:hover {
  opacity: 0.4;
  cursor: not-allowed;
}
.grouped {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.grouped > *:not(:last-child) {
  margin-right: 16px;
}
.grouped.gapless > * {
  margin: 0 0 0 -1px !important;
  border-radius: 0 !important;
}
.grouped.gapless > *:first-child {
  margin: 0 !important;
  border-radius: 4px 0 0 4px !important;
}
.grouped.gapless > *:last-child {
  border-radius: 0 4px 4px 0 !important;
}
input:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"], :disabled):hover,
select:hover,
textarea:hover,
textarea[type="text"]:hover {
  border-color: var(--color-grey);
}
input:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]):focus,
select:focus,
textarea:focus,
textarea[type="text"]:focus {
  outline: none;
  border-color: var(--color-primary);
  -webkit-box-shadow: 0 0 1px var(--color-primary);
          box-shadow: 0 0 1px var(--color-primary);
}
input.error:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
textarea.error {
  border-color: var(--color-error);
}
input.success:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
textarea.success {
  border-color: var(--color-success);
}
[type="checkbox"],
[type="radio"] {
  width: 2rem;
  height: 1.6rem;
}
/* BUTTONS */
.button + .button {
  margin-left: 1rem;
}
.button.secondary {
  background-color: var(--color-grey);
}
.button.dark {
  background-color: var(--color-darkGrey);
}
.button.error {
  background-color: var(--color-error);
}
.button.success {
  background-color: var(--color-success);
}
.button.outline {
  background-color: transparent;
  border-color: var(--color-lightGrey);
}
.button.outline.primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.button.outline.secondary {
  border-color: var(--color-grey);
  color: var(--color-grey);
}
.button.outline.dark {
  border-color: var(--color-darkGrey);
  color: var(--color-darkGrey);
}
.button.clear {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-primary);
}
.button.icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.button.icon > img {
  margin-left: 2px;
}
.button.icon-only {
  padding: 1rem;
}
.button:active:not(:disabled),
[type="button"]:active:not(:disabled),
[type="reset"]:active:not(:disabled),
[type="submit"]:active:not(:disabled),
button:active:not(:disabled) {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
::-webkit-input-placeholder {
  color: #bdbfc4;
}
::-moz-placeholder {
  color: #bdbfc4;
}
:-ms-input-placeholder {
  color: #bdbfc4;
}
::-ms-input-placeholder {
  color: #bdbfc4;
}
::placeholder {
  color: #bdbfc4;
}
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 5rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.nav img {
  max-height: 3rem;
}
.nav > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav-center,
.nav-left,
.nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.nav-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.nav-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.nav-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 480px) {
  .nav,
  .nav > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .nav-center,
  .nav-left,
  .nav-right {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.nav a,
.nav .brand {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 2rem;
  color: var(--color-darkGrey);
}
.nav [aria-current="page"]:not(.button),
.nav .active:not(.button) {
  color: #000; /* fallback */
  color: var(--color-primary);
}
.nav .brand {
  font-size: 1.75em;
  padding-top: 0;
  padding-bottom: 0;
}
.nav .brand img {
  padding-right: 1rem;
}
.nav .button {
  margin: auto 1rem;
}
.card {
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  margin-bottom: var(--grid-gutter);
  background: var(--bg-color);
  -webkit-box-shadow: 0 1px 3px var(--color-grey);
          box-shadow: 0 1px 3px var(--color-grey);
}
.dark .card{
  -webkit-box-shadow: 0 1px 3px var(--color-darkGrey);
          box-shadow: 0 1px 3px var(--color-darkGrey);
  border: 1px solid var(--color-darkGrey);
}
.card p:last-child {
  margin: 0;
}
.card header > * {
  margin-top: 0;
  margin-bottom: 1rem;
}
.bottom-margin {
  margin-bottom: var(--grid-gutter);
}
.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tabs a {
  text-decoration: none;
}
.tabs > .dropdown > summary,
.tabs > a {
  padding: 1rem 2rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  color: var(--color-darkGrey);
  border-bottom: 2px solid var(--color-lightGrey);
  text-align: center;
}
.tabs > a[aria-current="page"],
.tabs > a.active,
.tabs > a:hover {
  opacity: 1;
  border-bottom: 2px solid var(--color-darkGrey);
}
.tabs > a[aria-current="page"],
.tabs > a.active {
  border-color: var(--color-primary);
}
.tabs.is-full a {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.tag {
  display: inline-block;
  border: 1px solid var(--color-lightGrey);
  text-transform: uppercase;
  color: var(--color-grey);
  padding: 0.5rem;
  line-height: 1;
  letter-spacing: 0.5px;
}
.tag.is-small {
  padding: 0.4rem;
  font-size: 0.75em;
}
.tag.is-large {
  padding: 0.7rem;
  font-size: 1.125em;
}
.tag + .tag {
  margin-left: 1rem;
}
details.dropdown {
  position: relative;
  display: inline-block;
}
details.dropdown > :last-child {
  position: absolute;
  left: 0;
  white-space: nowrap;
}
/* Colors */
.bg-primary {
  background-color: var(--color-primary) !important;
}
.bg-light {
  background-color: var(--color-lightGrey) !important;
}
.bg-dark {
  background-color: var(--color-darkGrey) !important;
}
.bg-grey {
  background-color: var(--color-grey) !important;
}
.bg-error {
  background-color: var(--color-error) !important;
}
.bg-success {
  background-color: var(--color-success) !important;
}
.bd-primary {
  border: 1px solid var(--color-primary) !important;
}
.bd-light {
  border: 1px solid var(--color-lightGrey) !important;
}
.bd-dark {
  border: 1px solid var(--color-darkGrey) !important;
}
.bd-grey {
  border: 1px solid var(--color-grey) !important;
}
.bd-error {
  border: 1px solid var(--color-error) !important;
}
.bd-success {
  border: 1px solid var(--color-success) !important;
}
.text-primary {
  color: var(--color-primary) !important;
}
.text-light {
  color: var(--color-lightGrey) !important;
}
.text-dark {
  color: var(--color-darkGrey) !important;
}
.text-grey {
  color: var(--color-grey) !important;
}
.text-error {
  color: var(--color-error) !important;
}
.text-success {
  color: var(--color-success) !important;
}
.text-white {
  color: #fff !important;
}
/* Position & alignment */
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.is-full-screen {
  width: 100%;
  min-height: 100vh;
}
.is-full-width {
  width: 100% !important;
}
.is-full-height {
  height: 100% !important;
}
.is-vertical-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.is-horizontal-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.is-center {
  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;
}
.is-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.is-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.is-fixed {
  position: fixed;
  width: 100%;
}
.is-paddingless {
  padding: 0 !important;
}
.is-marginless {
  margin: 0 !important;
}
.is-pointer {
  cursor: pointer !important;
}
.is-rounded {
  border-radius: 100%;
}
.clearfix {
  content: "";
  display: table;
  clear: both;
}
.is-hidden {
  display: none !important;
}
@media screen and (max-width: 599px) {
  .hide-xs {
    display: none !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 899px) {
  .hide-sm {
    display: none !important;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .hide-md {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .hide-lg {
    display: none !important;
  }
}
@media print {
  .hide-pr {
    display: none !important;
  }
}

#header {
  background-color: var(--main-color);
  padding-top: 10px;
  margin-bottom: 20px;
}

.hamburgerSVG {
  width: 63px;
  margin: 0 auto;
  display: block;
}

/*  icons  */

.arrow-down{
  width: 10px;
  height: 10px;
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><svg fill="%23fff" height="10px" width="10px" version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 490 490" xml:space="preserve"><path d="M490,165.37l-91.698-88.842L245,231.766L91.698,76.528L0,165.37l245,248.102L490,165.37z M91.219,119.611L245,275.343 l153.781-155.732l47.717,46.237L245,369.91L43.502,165.848L91.219,119.611z"/></svg>');
}

.globe-icon{
  width: 20px;
  height: 20px;
  margin-bottom:-4px;
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 205.229 205.229" xml:space="preserve"><g><g><g><g><path style="fill:%23ffffff;" d="M102.618,205.229c-56.585,0-102.616-46.031-102.616-102.616C0.002,46.031,46.033,0,102.618,0C159.2,0,205.227,46.031,205.227,102.613C205.227,159.198,159.2,205.229,102.618,205.229z M102.618,8.618c-51.829,0-94.002,42.166-94.002,93.995s42.17,93.995,94.002,93.995c51.825,0,93.988-42.162,93.988-93.995C196.606,50.784,154.444,8.618,102.618,8.618z"/></g></g><g><g><rect x="5.746" y="98.304" style="fill:%23fff;" width="193.734" height="8.618"/></g></g><g><g><path style="fill:%23fff;" d="M104.941,62.111c-48.644,0-84.94-10.704-87.199-11.388l2.494-8.253c0.816,0.247,82.657,24.336,164.38-0.004l2.452,8.26C158.405,59.266,130.021,62.111,104.941,62.111z"/></g></g><g><g><path style="fill:%23fff;" d="M20.416,160.572l-2.459-8.26c84.271-25.081,165.898-1.027,169.333,0l-2.494,8.256C183.976,160.318,102.142,136.24,20.416,160.572z"/></g></g><g><g><path style="fill:%23fff;" d="M69.399,196.168C26.933,96.747,63.584,8.604,63.959,7.727l7.927,3.378c-0.365,0.845-35.534,85.756,5.44,181.677L69.399,196.168z"/></g></g><g><g><path style="fill:%23fff;" d="M135.168,196.168l-7.927-3.382c40.971-95.92,5.801-180.832,5.436-181.677l7.927-3.378C140.973,8.604,177.627,96.747,135.168,196.168z"/></g></g><g><g><rect x="98.306" y="5.744" style="fill:%23fff;" width="8.614" height="197.302"/></g></g></g></g></svg>');
}

footer .globe-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 205.229 205.229" xml:space="preserve"><g><g><g><g><path style="fill:%23000000;" d="M102.618,205.229c-56.585,0-102.616-46.031-102.616-102.616C0.002,46.031,46.033,0,102.618,0C159.2,0,205.227,46.031,205.227,102.613C205.227,159.198,159.2,205.229,102.618,205.229z M102.618,8.618c-51.829,0-94.002,42.166-94.002,93.995s42.17,93.995,94.002,93.995c51.825,0,93.988-42.162,93.988-93.995C196.606,50.784,154.444,8.618,102.618,8.618z"/></g></g><g><g><rect x="5.746" y="98.304" style="fill:%23000000;" width="193.734" height="8.618"/></g></g><g><g><path style="fill:%23000000;" d="M104.941,62.111c-48.644,0-84.94-10.704-87.199-11.388l2.494-8.253c0.816,0.247,82.657,24.336,164.38-0.004l2.452,8.26C158.405,59.266,130.021,62.111,104.941,62.111z"/></g></g><g><g><path style="fill:%23000000;" d="M20.416,160.572l-2.459-8.26c84.271-25.081,165.898-1.027,169.333,0l-2.494,8.256C183.976,160.318,102.142,136.24,20.416,160.572z"/></g></g><g><g><path style="fill:%23000000;" d="M69.399,196.168C26.933,96.747,63.584,8.604,63.959,7.727l7.927,3.378c-0.365,0.845-35.534,85.756,5.44,181.677L69.399,196.168z"/></g></g><g><g><path style="fill:%23000000;" d="M135.168,196.168l-7.927-3.382c40.971-95.92,5.801-180.832,5.436-181.677l7.927-3.378C140.973,8.604,177.627,96.747,135.168,196.168z"/></g></g><g><g><rect x="98.306" y="5.744" style="fill:%23000000;" width="8.614" height="197.302"/></g></g></g></g></svg>');
}

.dark footer .globe-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 205.229 205.229" xml:space="preserve"><g><g><g><g><path style="fill:%23fff;" d="M102.618,205.229c-56.585,0-102.616-46.031-102.616-102.616C0.002,46.031,46.033,0,102.618,0C159.2,0,205.227,46.031,205.227,102.613C205.227,159.198,159.2,205.229,102.618,205.229z M102.618,8.618c-51.829,0-94.002,42.166-94.002,93.995s42.17,93.995,94.002,93.995c51.825,0,93.988-42.162,93.988-93.995C196.606,50.784,154.444,8.618,102.618,8.618z"/></g></g><g><g><rect x="5.746" y="98.304" style="fill:%23fff;" width="193.734" height="8.618"/></g></g><g><g><path style="fill:%23fff;" d="M104.941,62.111c-48.644,0-84.94-10.704-87.199-11.388l2.494-8.253c0.816,0.247,82.657,24.336,164.38-0.004l2.452,8.26C158.405,59.266,130.021,62.111,104.941,62.111z"/></g></g><g><g><path style="fill:%23fff;" d="M20.416,160.572l-2.459-8.26c84.271-25.081,165.898-1.027,169.333,0l-2.494,8.256C183.976,160.318,102.142,136.24,20.416,160.572z"/></g></g><g><g><path style="fill:%23fff;" d="M69.399,196.168C26.933,96.747,63.584,8.604,63.959,7.727l7.927,3.378c-0.365,0.845-35.534,85.756,5.44,181.677L69.399,196.168z"/></g></g><g><g><path style="fill:%23fff;" d="M135.168,196.168l-7.927-3.382c40.971-95.92,5.801-180.832,5.436-181.677l7.927-3.378C140.973,8.604,177.627,96.747,135.168,196.168z"/></g></g><g><g><rect x="98.306" y="5.744" style="fill:%23fff;" width="8.614" height="197.302"/></g></g></g></g></svg>');
}

.light-mode-icon{
  width: 25px;
  height: 25px;
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M12 1C12.5523 1 13 1.44772 13 2V4.06242C13.7177 4.1524 14.4261 4.33969 15.1035 4.62452L16.134 2.83977C16.4101 2.36148 17.0217 2.1976 17.5 2.47375C17.9783 2.74989 18.1422 3.36148 17.866 3.83977L16.835 5.62558C17.4145 6.06627 17.9337 6.58546 18.3744 7.16501L20.1602 6.13397C20.6385 5.85783 21.2501 6.02171 21.5263 6.5C21.8024 6.97829 21.6385 7.58988 21.1602 7.86603L19.3755 8.89645C19.6603 9.57395 19.8476 10.2823 19.9376 11H22C22.5523 11 23 11.4477 23 12C23 12.5523 22.5523 13 22 13H19.9376C19.8476 13.7177 19.6603 14.426 19.3755 15.1035L21.1603 16.134C21.6386 16.4101 21.8024 17.0217 21.5263 17.5C21.2502 17.9783 20.6386 18.1422 20.1603 17.866L18.3744 16.835C17.9337 17.4145 17.4145 17.9337 16.835 18.3744L17.866 20.1603C18.1422 20.6386 17.9783 21.2502 17.5 21.5263C17.0217 21.8024 16.4101 21.6386 16.134 21.1603L15.1035 19.3755C14.426 19.6603 13.7177 19.8476 13 19.9376V22C13 22.5523 12.5523 23 12 23C11.4477 23 11 22.5523 11 22V19.9376C10.2823 19.8476 9.57396 19.6603 8.89648 19.3755L7.86603 21.1603C7.58988 21.6386 6.97829 21.8024 6.5 21.5263C6.02171 21.2502 5.85783 20.6386 6.13397 20.1603L7.16503 18.3744C6.58547 17.9337 6.06627 17.4145 5.62557 16.835L3.83972 17.866C3.36143 18.1422 2.74984 17.9783 2.4737 17.5C2.19755 17.0217 2.36143 16.4101 2.83972 16.134L4.62451 15.1035C4.33968 14.426 4.1524 13.7177 4.06242 13H2C1.44772 13 1 12.5523 1 12C1 11.4477 1.44772 11 2 11H4.06242C4.1524 10.2823 4.33969 9.57395 4.62452 8.89645L2.83977 7.86603C2.36148 7.58988 2.1976 6.97829 2.47375 6.5C2.74989 6.02171 3.36148 5.85783 3.83977 6.13397L5.62558 7.16501C6.06627 6.58546 6.58546 6.06627 7.16501 5.62558L6.13397 3.83977C5.85783 3.36148 6.02171 2.74989 6.5 2.47375C6.97829 2.1976 7.58988 2.36148 7.86603 2.83977L8.89645 4.62452C9.57395 4.33969 10.2823 4.1524 11 4.06242V2C11 1.44772 11.4477 1 12 1ZM12 6C10.9608 6 9.92344 6.26791 8.99967 6.80203C8.09301 7.32626 7.32626 8.09301 6.80203 8.99967C6.26791 9.92344 6 10.9608 6 12C6 13.0392 6.26791 14.0765 6.80202 15.0003C7.32625 15.907 8.09301 16.6737 8.99969 17.198C9.92345 17.7321 10.9608 18 12 18C13.0392 18 14.0765 17.7321 15.0003 17.198C15.907 16.6737 16.6737 15.907 17.198 15.0003C17.7321 14.0765 18 13.0392 18 12C18 10.9608 17.7321 9.92344 17.198 8.99967C16.6737 8.09301 15.907 7.32626 15.0003 6.80203C14.0766 6.26791 13.0392 6 12 6Z" fill="%23FFFFFF"/></svg>');
}

.dark-mode-icon{
  width: 25px;
  height: 25px;
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg width="25px" height="25px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M3.39703 11.6315C3.39703 16.602 7.42647 20.6315 12.397 20.6315C15.6858 20.6315 18.5656 18.8664 20.1358 16.23C16.7285 17.3289 12.6922 16.7548 9.98282 14.0455C7.25201 11.3146 6.72603 7.28415 7.86703 3.89293C5.20697 5.47927 3.39703 8.38932 3.39703 11.6315ZM21.187 13.5851C22.0125 13.1021 23.255 13.6488 23 14.5706C21.7144 19.2187 17.4543 22.6315 12.397 22.6315C6.3219 22.6315 1.39703 17.7066 1.39703 11.6315C1.39703 6.58874 4.93533 2.25845 9.61528 0.999986C10.5393 0.751502 11.0645 1.99378 10.5641 2.80935C8.70026 5.84656 8.83194 10.0661 11.397 12.6312C13.9319 15.1662 18.1365 15.3702 21.187 13.5851Z" fill="%23FFFFFF"/></svg>');
}

.map-with-countries-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve"><g><path fill="%23000000" d="M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M27.819,6.415l0.176-0.205c0.446-0.515,0.951-1.098,1.027-2.1c0.066-0.833-0.228-1.421-0.546-1.897C29.633,2.077,30.807,2,32,2c1.465,0,2.903,0.11,4.312,0.313c0.262,0.327,0.606,0.668,1.164,0.897c0.592,0.255,1.291,0.457,2.171,0.249c0.26-0.062,0.462-0.172,0.636-0.292c0.618,0.177,1.229,0.369,1.831,0.584c0.211,0.609,0.616,1.335,1.604,1.46c0.556,0.079,1.021-0.008,1.428-0.183c8.475,4.139,14.702,12.153,16.39,21.734c-0.164,0.346-0.188,0.686-0.193,0.901c-0.002,0.06,0.003,0.121,0.008,0.137c-0.036,0.056-0.082,0.085-0.305,0.192c-0.255,0.123-0.603,0.291-0.924,0.629c-0.365,0.377-0.533,0.75-0.668,1.05c-0.105,0.234-0.165,0.361-0.274,0.47c-0.07,0.068-0.206,0.109-0.42,0.171c-0.418,0.12-1.049,0.301-1.473,0.988c-0.403,0.649-0.369,1.249-0.345,1.687c0.003,0.05,0.007,0.101,0.009,0.153c-0.077,0.038-0.171,0.077-0.269,0.109c0.058-0.316,0.066-0.753-0.217-1.202c-0.382-0.583-0.887-0.671-1.153-0.671c-0.508,0-0.891,0.292-1.137,0.531c0.005-0.484-0.006-0.93-0.085-1.264c-0.074-0.336-0.027-0.523,0.131-1.065l0.055-0.19c0.071-0.258,0.212-0.442,0.406-0.698c0.267-0.35,0.599-0.785,0.757-1.457c0.177-0.732,0.125-1.272,0.074-1.795c-0.019-0.185-0.038-0.38-0.047-0.605l-0.019-0.529c-0.02-0.622-0.036-1.159-0.189-1.943l-0.069-0.349c-0.154-0.787-0.288-1.466-0.85-2.323c-0.481-0.719-0.861-1.224-1.704-1.672c-0.199-0.109-0.406-0.197-0.617-0.263c-0.341-0.114-0.653-0.153-0.955-0.192l-0.312-0.042c-0.533-0.078-1.013,0.015-1.366,0.087c-0.286,0.058-0.468,0.105-0.611,0.026c-0.143-0.078-0.211-0.16-0.388-0.384c-0.094-0.119-0.193-0.244-0.324-0.389c-0.132-0.142-0.222-0.274-0.309-0.399c-0.172-0.245-0.385-0.551-0.76-0.854c-0.4-0.325-0.705-0.553-1.279-0.754c-1.021-0.338-1.96-0.086-2.77,0.201c-0.664,0.23-1.069,0.564-1.428,0.858c-0.157,0.13-0.323,0.268-0.484,0.376c-0.158,0.092-0.3,0.156-0.434,0.22c-0.316,0.147-0.675,0.315-1.072,0.668c-0.276,0.242-1.213,0.853-1.43,0.908c-0.097-0.004-0.193-0.043-0.368-0.118c-0.226-0.098-0.534-0.229-0.89-0.258l-0.217-0.013c-0.067,0-0.136,0.004-0.187,0.009c-0.454,0.034-0.773,0.182-1.008,0.289c-0.092,0.042-0.186,0.09-0.304,0.119c-0.346,0.086-0.736,0.08-1.128,0.059c-0.627-0.032-1.242-0.014-1.806,0.146c-0.463,0.131-0.798,0.357-1.042,0.523c-0.263,0.178-0.326,0.209-0.426,0.21c-0.101,0-0.173-0.042-0.452-0.262c-0.276-0.218-0.655-0.517-1.214-0.672c-0.403-0.108-0.69-0.143-0.994-0.18l-0.277-0.034c-0.525-0.076-0.9-0.107-1.325-0.142c-0.197-0.016-0.405-0.032-0.648-0.056l-0.282-0.005l-0.046,0.018c-0.033,0.002-0.072,0.004-0.115,0.006l-0.011-0.007c-0.32-0.223-0.651-0.452-1.137-0.688c-0.358-0.176-0.649-0.31-0.969-0.425c-0.014-0.357-0.054-0.833-0.161-1.153c-0.023-0.073-0.047-0.137-0.078-0.217c0.011-0.046,0.031-0.123,0.07-0.24c0.13-0.376,0.332-0.658,0.42-0.771c0.054-0.037,0.104-0.069,0.152-0.101c0.187-0.12,0.418-0.27,0.656-0.528c0.667-0.706,0.97-1.387,1.046-2.357c0.06-0.866-0.423-1.448-0.743-1.834C24.52,9.293,24.378,9.122,24.358,9.1c0.043-0.169,0.118-0.242,0.536-0.519c0.228-0.151,0.466-0.312,0.693-0.511c0.258-0.223,0.506-0.364,0.792-0.527C26.827,7.288,27.334,6.999,27.819,6.415z M4.406,43.785c-1.138-2.661-1.9-5.521-2.225-8.511c0.245-0.46,0.542-0.906,0.946-1.398c0.289-0.345,0.596-0.554,0.95-0.795c0.431-0.294,0.92-0.628,1.383-1.207c0.556-0.677,0.738-1.399,0.885-1.98c0.158-0.623,0.248-0.933,0.578-1.162c0.46-0.314,0.824-0.348,1.484-0.41c0.237-0.021,0.488-0.046,0.765-0.085l0.368-0.054c1.298-0.191,2.127-0.277,3.206,0.027c0.732,0.205,1.183,0.547,1.754,0.979c0.376,0.285,0.802,0.607,1.346,0.918c0.422,0.241,0.779,0.507,1.124,0.764c0.771,0.573,1.568,1.165,2.893,1.359c0.76,0.105,1.4-0.13,1.885-0.313c0.243-0.093,0.473-0.18,0.616-0.18c0.033,0,0.075,0.003,0.143,0.04c0.655,0.364,0.801,0.666,0.828,0.873c-0.14,0.039-0.343,0.074-0.492,0.101c-0.703,0.123-2.011,0.352-2.162,1.699c-0.076,0.65,0.147,1.057,0.35,1.283c0.524,0.591,1.501,0.528,2.602,0.28c0.474-0.107,0.965-0.219,1.358-0.219c0.179,0,0.285,0.024,0.333,0.041c0.29,0.105,0.603,0.182,0.908,0.254c0.134,0.031,0.313,0.073,0.467,0.115c-0.113,0.021-0.229,0.042-0.327,0.059c-0.461,0.079-0.982,0.169-1.459,0.396c-0.376,0.175-0.697,0.341-0.998,0.498c-0.614,0.318-1.1,0.57-1.84,0.771c-0.226,0.06-0.569,0.009-0.93-0.052c-0.286-0.049-0.581-0.099-0.893-0.099c-0.738,0-1.319,0.293-1.723,0.865c-0.924,1.292-0.376,2.643-0.112,3.294c0.359,0.883,1.205,1.936,3.187,1.936c0.933,0,2.012-0.227,3.395-0.713c0.954-0.338,1.513-0.949,1.961-1.441c0.362-0.398,0.648-0.712,1.11-0.918l0.509-0.232c1.048-0.483,1.815-0.827,2.639-0.439c0.221,0.104,0.317,0.302,0.518,0.798c0.233,0.578,0.553,1.37,1.444,1.844c0.811,0.43,1.824,0.274,2.564,0.062c0.444-0.127,0.8-0.236,1.058-0.085c0.271,0.161,0.383,0.379,0.589,0.817c0.184,0.391,0.412,0.877,0.853,1.339c0.132,0.139,0.256,0.274,0.375,0.404c0.731,0.801,1.423,1.557,2.792,1.881c0.197,0.046,0.398,0.069,0.598,0.069c0.7,0,1.263-0.279,1.715-0.504c0.388-0.192,0.687-0.336,0.931-0.26c1.021,0.334,1.233,0.563,1.329,0.971c0.084,0.327-0.262,0.602-1.544,1.221c-0.204,0.099-0.407,0.197-0.6,0.297c-0.689,0.355-1.205,0.399-1.986,0.466c-0.312,0.026-0.645,0.055-1.004,0.104c-0.725,0.091-1.38,0.248-2.014,0.4c-0.731,0.176-1.422,0.341-2.023,0.341s-1.081-0.165-1.545-0.529c-0.38-0.304-0.556-0.627-0.8-1.073c-0.177-0.324-0.377-0.691-0.693-1.109c-0.279-0.352-0.519-0.858-0.751-1.349c-0.512-1.083-1.149-2.431-2.598-2.431c-0.247,0-0.504,0.044-0.764,0.132c-1.126,0.379-1.501,1.281-1.775,1.939c-0.118,0.283-0.229,0.55-0.379,0.77c-0.375,0.535-0.564,1.103-0.732,1.604c-0.281,0.841-0.369,0.94-0.593,0.973c-0.361,0.052-0.588-0.101-1.125-0.489c-0.16-0.116-0.326-0.237-0.502-0.353c-0.346-0.23-0.55-0.485-0.809-0.809c-0.289-0.361-0.617-0.771-1.154-1.157c-0.597-0.44-1.136-0.651-1.611-0.838c-0.384-0.15-0.716-0.28-1.082-0.523c-0.139-0.093-0.262-0.249-0.405-0.431c-0.325-0.412-0.816-1.035-1.786-1.07l-0.101-0.002c-0.731,0-1.752,0.26-2.466,1.497c-0.259,0.448-0.44,1.053-0.634,1.693c-0.314,1.045-0.745,2.474-1.42,2.474h-0.001c-0.698-0.047-2.753-1.846-3.741-2.711c-0.708-0.62-1.32-1.155-1.761-1.447l-0.332-0.229C6.498,44.301,5.72,43.76,4.692,43.76C4.598,43.76,4.502,43.775,4.406,43.785z M32,62c-11.484,0-21.458-6.456-26.499-15.936c0.192,0.117,0.393,0.252,0.608,0.401l0.362,0.249c0.336,0.223,0.928,0.74,1.555,1.289c2.08,1.82,3.65,3.115,4.929,3.202c2.26,0.149,2.986-2.301,3.466-3.893c0.151-0.503,0.309-1.023,0.451-1.271c0.265-0.458,0.518-0.496,0.772-0.497c0.056,0.03,0.189,0.2,0.277,0.312c0.206,0.262,0.464,0.588,0.867,0.857c0.547,0.363,1.032,0.553,1.462,0.721c0.412,0.161,0.768,0.301,1.162,0.593c0.325,0.232,0.531,0.491,0.771,0.79c0.309,0.385,0.657,0.82,1.265,1.226c0.154,0.102,0.296,0.205,0.434,0.304c0.648,0.472,1.395,1.017,2.58,0.852c1.505-0.216,1.928-1.481,2.208-2.318c0.137-0.408,0.266-0.793,0.481-1.102c0.272-0.398,0.436-0.791,0.579-1.137c0.257-0.616,0.342-0.737,0.568-0.813c0.07-0.024,0.108-0.031,0.134-0.027c0.203,0.064,0.579,0.859,0.781,1.286c0.267,0.565,0.57,1.205,0.978,1.719c0.213,0.281,0.361,0.554,0.52,0.842c0.286,0.525,0.611,1.121,1.312,1.683c0.827,0.647,1.738,0.962,2.788,0.962c0.838,0,1.641-0.192,2.489-0.396c0.581-0.14,1.183-0.284,1.808-0.362c0.332-0.045,0.632-0.07,0.913-0.095c0.87-0.073,1.691-0.144,2.735-0.682c0.178-0.092,0.364-0.182,0.552-0.272c1.245-0.602,3.127-1.511,2.616-3.499c-0.388-1.654-1.859-2.136-2.657-2.396c-0.252-0.08-0.511-0.121-0.77-0.121c-0.673,0-1.223,0.273-1.665,0.493c-0.384,0.191-0.705,0.338-0.966,0.279c-0.766-0.182-1.145-0.597-1.772-1.283c-0.127-0.14-0.26-0.283-0.402-0.434c-0.218-0.229-0.345-0.499-0.492-0.812c-0.252-0.536-0.565-1.203-1.377-1.686c-0.816-0.485-1.87-0.337-2.635-0.116c-0.441,0.127-0.797,0.239-1.069,0.093c-0.228-0.12-0.331-0.332-0.529-0.825c-0.24-0.595-0.568-1.41-1.52-1.859c-0.528-0.248-1.053-0.369-1.603-0.369c-0.99,0-1.834,0.39-2.728,0.803l-0.483,0.221c-0.845,0.376-1.36,0.942-1.775,1.397c-0.388,0.426-0.668,0.733-1.147,0.902c-1.146,0.403-2.039,0.6-2.729,0.6c-0.928,0-1.195-0.35-1.334-0.689c-0.338-0.833-0.306-1.108-0.018-1.405c0.175,0,0.362,0.037,0.557,0.07c0.522,0.088,1.2,0.164,1.782,0.013c0.954-0.258,1.581-0.584,2.245-0.929c0.278-0.145,0.573-0.298,0.927-0.463c0.235-0.111,0.598-0.174,0.947-0.234c0.777-0.134,2.396-0.411,2.278-2.084c-0.121-1.496-1.484-1.816-2.299-2.008c-0.229-0.054-0.464-0.106-0.689-0.188c-0.284-0.101-0.594-0.153-0.944-0.159c0.146-0.216,0.247-0.484,0.275-0.82c0.085-1.224-0.538-2.215-1.855-2.946c-0.35-0.193-0.724-0.291-1.111-0.291c-0.512,0-0.945,0.165-1.327,0.311c-0.344,0.13-0.644,0.238-0.889,0.203c-0.82-0.12-1.309-0.483-1.984-0.985c-0.374-0.278-0.799-0.594-1.325-0.896c-0.433-0.246-0.771-0.503-1.13-0.774c-0.651-0.493-1.324-1.004-2.42-1.312c-1.395-0.392-2.583-0.296-4.041-0.08l-0.359,0.053c-0.238,0.034-0.458,0.054-0.666,0.073c-0.757,0.071-1.539,0.144-2.433,0.754c-0.967,0.672-1.197,1.585-1.383,2.319c-0.118,0.467-0.221,0.87-0.501,1.213c-0.283,0.354-0.58,0.556-0.955,0.812c-0.295,0.201-0.617,0.425-0.947,0.734C2.004,32.108,2,32.055,2,32C2,17.388,12.45,5.221,26.283,2.551c0.111,0.172,0.225,0.339,0.334,0.49c0.348,0.48,0.434,0.633,0.411,0.915c-0.025,0.331-0.151,0.49-0.545,0.944L26.287,5.13c-0.26,0.312-0.527,0.465-0.898,0.676c-0.328,0.188-0.701,0.4-1.111,0.754c-0.163,0.142-0.33,0.25-0.488,0.354c-0.477,0.316-1.131,0.75-1.371,1.701c-0.244,0.983,0.319,1.662,0.656,2.068c0.108,0.132,0.291,0.352,0.287,0.411c-0.04,0.51-0.147,0.753-0.514,1.14c-0.071,0.078-0.133,0.119-0.276,0.212c-0.113,0.072-0.232,0.15-0.364,0.251l-0.121,0.11c-0.06,0.063-0.586,0.643-0.898,1.551c-0.237,0.715-0.247,1.088-0.044,1.598l0.044,0.118c0.036,0.121,0.07,0.547,0.072,0.822l-0.084,1.218l0.814,0.203c0.535,0.133,0.806,0.244,1.353,0.514c0.351,0.169,0.582,0.33,0.874,0.533l0.294,0.199c0.392,0.234,0.79,0.193,1.213,0.146c0.211,0.021,0.397,0.035,0.574,0.05c0.385,0.03,0.725,0.058,1.209,0.128l0.314,0.039c0.244,0.03,0.438,0.051,0.708,0.123c0.154,0.043,0.285,0.143,0.502,0.313c0.37,0.292,0.877,0.691,1.705,0.691c0.724-0.005,1.192-0.323,1.534-0.556c0.198-0.134,0.317-0.212,0.465-0.253c0.348-0.099,0.746-0.095,1.151-0.074c0.584,0.033,1.175,0.021,1.723-0.115c0.255-0.064,0.458-0.152,0.652-0.242c0.17-0.078,0.233-0.105,0.254-0.109l0.072,0.002L36.64,19.7c0.066,0.005,0.169,0.049,0.299,0.104c0.257,0.11,0.608,0.262,1.138,0.28c1.079,0,2.751-1.39,2.771-1.407c0.186-0.164,0.341-0.236,0.599-0.357c0.182-0.085,0.373-0.176,0.636-0.329c0.276-0.183,0.496-0.361,0.704-0.532c0.294-0.241,0.487-0.401,0.82-0.517c0.697-0.248,1.029-0.34,1.461-0.194c0.247,0.086,0.347,0.155,0.666,0.414c0.156,0.126,0.239,0.246,0.379,0.445c0.136,0.195,0.28,0.397,0.475,0.605c0.087,0.097,0.159,0.188,0.227,0.275c0.218,0.275,0.489,0.619,0.997,0.899c0.633,0.344,1.408,0.294,1.978,0.179c0.256-0.052,0.455-0.1,0.668-0.067l0.354,0.048c0.244,0.031,0.42,0.054,0.591,0.11c0.086,0.026,0.176,0.062,0.284,0.12c0.438,0.233,0.602,0.441,0.987,1.017c0.342,0.522,0.417,0.906,0.554,1.604l0.071,0.357c0.121,0.615,0.134,1.033,0.151,1.611l0.02,0.551c0.011,0.265,0.032,0.497,0.054,0.716c0.043,0.438,0.071,0.728-0.028,1.138c-0.059,0.25-0.178,0.415-0.402,0.709c-0.254,0.333-0.57,0.748-0.74,1.369l-0.05,0.17c-0.181,0.62-0.353,1.206-0.16,2.073c0.045,0.193,0.036,0.76,0.029,1.174c-0.019,1.132-0.03,1.88,0.444,2.362c0.217,0.221,0.505,0.342,0.811,0.342l0.31-0.021l0.204-0.098c0.285-0.136,0.532-0.331,0.754-0.547c0.008,0.018,0.015,0.035,0.022,0.053c0.275,0.614,0.863,0.967,1.615,0.967c0.824,0,2.492-0.584,2.606-1.665c0.027-0.285,0.016-0.543,0.002-0.786c-0.021-0.351-0.014-0.419,0.053-0.526c0.039-0.03,0.207-0.079,0.318-0.11c0.35-0.101,0.827-0.237,1.269-0.664c0.387-0.384,0.56-0.77,0.699-1.079c0.104-0.232,0.164-0.359,0.286-0.485c0.072-0.076,0.17-0.126,0.348-0.211C61.964,30.525,62,31.258,62,32C62,48.568,48.568,62,32,62z"/><path fill="%23000000" d="M44.629,28.162c-1.1,0.317-1.496,1.157-1.786,1.771c-0.155,0.33-0.29,0.614-0.512,0.819c-0.392,0.366-0.771,0.568-1.211,0.802c-0.488,0.26-1.041,0.554-1.613,1.088c-0.204,0.189-0.438,0.352-0.661,0.511c-0.737,0.523-1.852,1.314-1.525,2.804c0.214,0.935,0.933,1.493,1.922,1.493c0.655,0,1.366-0.229,2.055-0.451c0.34-0.109,0.677-0.22,0.984-0.288c1.752-0.383,2.951-0.842,4.263-2.16c0.144-0.143,0.294-0.286,0.446-0.432c1.134-1.08,2.846-2.713,1.573-4.603C47.708,28.231,46.191,27.713,44.629,28.162z M45.61,32.671c-0.162,0.155-0.323,0.309-0.48,0.465c-0.983,0.988-1.806,1.299-3.277,1.621c-0.365,0.08-0.767,0.208-1.17,0.338c-0.502,0.161-1.069,0.345-1.414,0.354c0.021-0.122,0.18-0.271,0.735-0.665c0.271-0.193,0.58-0.412,0.865-0.678c0.382-0.355,0.756-0.555,1.19-0.786c0.493-0.263,1.053-0.56,1.632-1.102c0.504-0.464,0.757-1,0.96-1.431c0.256-0.541,0.335-0.646,0.532-0.703C45.376,30.028,45.564,30,45.742,30c0.491,0,0.881,0.21,1.16,0.629C47.16,31.012,46.87,31.47,45.61,32.671z"/><path fill="%23000000" d="M32.422,53.081c-0.231,0-0.465,0.036-0.707,0.11c-1.458,0.47-1.389,1.934-1.353,2.721c0.014,0.289,0.026,0.562-0.001,0.8c-0.023,0.217-0.083,0.425-0.136,0.625c-0.178,0.672-0.446,1.686,0.437,2.556c0.416,0.4,0.941,0.612,1.52,0.612c0.859,0,1.826-0.497,2.593-1.334c1.174-1.307,1.188-3.217,0.043-4.633C34.284,53.859,33.531,53.081,32.422,53.081z M33.292,57.827c-0.406,0.445-0.866,0.678-1.11,0.678c-0.06,0-0.09-0.012-0.138-0.053c-0.021-0.092,0.062-0.399,0.115-0.603c0.071-0.271,0.153-0.579,0.189-0.914c0.046-0.391,0.027-0.776,0.012-1.117c-0.011-0.233-0.026-0.571,0.003-0.731c0.168-0.03,0.365,0.029,0.89,0.697C33.792,56.451,33.806,57.256,33.292,57.827z"/></g></svg>');
}

.dark .map-with-countries-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg version="1.0" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 64 64" enable-background="new 0 0 64 64" xml:space="preserve"><g><path fill="%23FFFFFF" d="M32,0C14.327,0,0,14.327,0,32s14.327,32,32,32s32-14.327,32-32S49.673,0,32,0z M27.819,6.415l0.176-0.205c0.446-0.515,0.951-1.098,1.027-2.1c0.066-0.833-0.228-1.421-0.546-1.897C29.633,2.077,30.807,2,32,2c1.465,0,2.903,0.11,4.312,0.313c0.262,0.327,0.606,0.668,1.164,0.897c0.592,0.255,1.291,0.457,2.171,0.249c0.26-0.062,0.462-0.172,0.636-0.292c0.618,0.177,1.229,0.369,1.831,0.584c0.211,0.609,0.616,1.335,1.604,1.46c0.556,0.079,1.021-0.008,1.428-0.183c8.475,4.139,14.702,12.153,16.39,21.734c-0.164,0.346-0.188,0.686-0.193,0.901c-0.002,0.06,0.003,0.121,0.008,0.137c-0.036,0.056-0.082,0.085-0.305,0.192c-0.255,0.123-0.603,0.291-0.924,0.629c-0.365,0.377-0.533,0.75-0.668,1.05c-0.105,0.234-0.165,0.361-0.274,0.47c-0.07,0.068-0.206,0.109-0.42,0.171c-0.418,0.12-1.049,0.301-1.473,0.988c-0.403,0.649-0.369,1.249-0.345,1.687c0.003,0.05,0.007,0.101,0.009,0.153c-0.077,0.038-0.171,0.077-0.269,0.109c0.058-0.316,0.066-0.753-0.217-1.202c-0.382-0.583-0.887-0.671-1.153-0.671c-0.508,0-0.891,0.292-1.137,0.531c0.005-0.484-0.006-0.93-0.085-1.264c-0.074-0.336-0.027-0.523,0.131-1.065l0.055-0.19c0.071-0.258,0.212-0.442,0.406-0.698c0.267-0.35,0.599-0.785,0.757-1.457c0.177-0.732,0.125-1.272,0.074-1.795c-0.019-0.185-0.038-0.38-0.047-0.605l-0.019-0.529c-0.02-0.622-0.036-1.159-0.189-1.943l-0.069-0.349c-0.154-0.787-0.288-1.466-0.85-2.323c-0.481-0.719-0.861-1.224-1.704-1.672c-0.199-0.109-0.406-0.197-0.617-0.263c-0.341-0.114-0.653-0.153-0.955-0.192l-0.312-0.042c-0.533-0.078-1.013,0.015-1.366,0.087c-0.286,0.058-0.468,0.105-0.611,0.026c-0.143-0.078-0.211-0.16-0.388-0.384c-0.094-0.119-0.193-0.244-0.324-0.389c-0.132-0.142-0.222-0.274-0.309-0.399c-0.172-0.245-0.385-0.551-0.76-0.854c-0.4-0.325-0.705-0.553-1.279-0.754c-1.021-0.338-1.96-0.086-2.77,0.201c-0.664,0.23-1.069,0.564-1.428,0.858c-0.157,0.13-0.323,0.268-0.484,0.376c-0.158,0.092-0.3,0.156-0.434,0.22c-0.316,0.147-0.675,0.315-1.072,0.668c-0.276,0.242-1.213,0.853-1.43,0.908c-0.097-0.004-0.193-0.043-0.368-0.118c-0.226-0.098-0.534-0.229-0.89-0.258l-0.217-0.013c-0.067,0-0.136,0.004-0.187,0.009c-0.454,0.034-0.773,0.182-1.008,0.289c-0.092,0.042-0.186,0.09-0.304,0.119c-0.346,0.086-0.736,0.08-1.128,0.059c-0.627-0.032-1.242-0.014-1.806,0.146c-0.463,0.131-0.798,0.357-1.042,0.523c-0.263,0.178-0.326,0.209-0.426,0.21c-0.101,0-0.173-0.042-0.452-0.262c-0.276-0.218-0.655-0.517-1.214-0.672c-0.403-0.108-0.69-0.143-0.994-0.18l-0.277-0.034c-0.525-0.076-0.9-0.107-1.325-0.142c-0.197-0.016-0.405-0.032-0.648-0.056l-0.282-0.005l-0.046,0.018c-0.033,0.002-0.072,0.004-0.115,0.006l-0.011-0.007c-0.32-0.223-0.651-0.452-1.137-0.688c-0.358-0.176-0.649-0.31-0.969-0.425c-0.014-0.357-0.054-0.833-0.161-1.153c-0.023-0.073-0.047-0.137-0.078-0.217c0.011-0.046,0.031-0.123,0.07-0.24c0.13-0.376,0.332-0.658,0.42-0.771c0.054-0.037,0.104-0.069,0.152-0.101c0.187-0.12,0.418-0.27,0.656-0.528c0.667-0.706,0.97-1.387,1.046-2.357c0.06-0.866-0.423-1.448-0.743-1.834C24.52,9.293,24.378,9.122,24.358,9.1c0.043-0.169,0.118-0.242,0.536-0.519c0.228-0.151,0.466-0.312,0.693-0.511c0.258-0.223,0.506-0.364,0.792-0.527C26.827,7.288,27.334,6.999,27.819,6.415z M4.406,43.785c-1.138-2.661-1.9-5.521-2.225-8.511c0.245-0.46,0.542-0.906,0.946-1.398c0.289-0.345,0.596-0.554,0.95-0.795c0.431-0.294,0.92-0.628,1.383-1.207c0.556-0.677,0.738-1.399,0.885-1.98c0.158-0.623,0.248-0.933,0.578-1.162c0.46-0.314,0.824-0.348,1.484-0.41c0.237-0.021,0.488-0.046,0.765-0.085l0.368-0.054c1.298-0.191,2.127-0.277,3.206,0.027c0.732,0.205,1.183,0.547,1.754,0.979c0.376,0.285,0.802,0.607,1.346,0.918c0.422,0.241,0.779,0.507,1.124,0.764c0.771,0.573,1.568,1.165,2.893,1.359c0.76,0.105,1.4-0.13,1.885-0.313c0.243-0.093,0.473-0.18,0.616-0.18c0.033,0,0.075,0.003,0.143,0.04c0.655,0.364,0.801,0.666,0.828,0.873c-0.14,0.039-0.343,0.074-0.492,0.101c-0.703,0.123-2.011,0.352-2.162,1.699c-0.076,0.65,0.147,1.057,0.35,1.283c0.524,0.591,1.501,0.528,2.602,0.28c0.474-0.107,0.965-0.219,1.358-0.219c0.179,0,0.285,0.024,0.333,0.041c0.29,0.105,0.603,0.182,0.908,0.254c0.134,0.031,0.313,0.073,0.467,0.115c-0.113,0.021-0.229,0.042-0.327,0.059c-0.461,0.079-0.982,0.169-1.459,0.396c-0.376,0.175-0.697,0.341-0.998,0.498c-0.614,0.318-1.1,0.57-1.84,0.771c-0.226,0.06-0.569,0.009-0.93-0.052c-0.286-0.049-0.581-0.099-0.893-0.099c-0.738,0-1.319,0.293-1.723,0.865c-0.924,1.292-0.376,2.643-0.112,3.294c0.359,0.883,1.205,1.936,3.187,1.936c0.933,0,2.012-0.227,3.395-0.713c0.954-0.338,1.513-0.949,1.961-1.441c0.362-0.398,0.648-0.712,1.11-0.918l0.509-0.232c1.048-0.483,1.815-0.827,2.639-0.439c0.221,0.104,0.317,0.302,0.518,0.798c0.233,0.578,0.553,1.37,1.444,1.844c0.811,0.43,1.824,0.274,2.564,0.062c0.444-0.127,0.8-0.236,1.058-0.085c0.271,0.161,0.383,0.379,0.589,0.817c0.184,0.391,0.412,0.877,0.853,1.339c0.132,0.139,0.256,0.274,0.375,0.404c0.731,0.801,1.423,1.557,2.792,1.881c0.197,0.046,0.398,0.069,0.598,0.069c0.7,0,1.263-0.279,1.715-0.504c0.388-0.192,0.687-0.336,0.931-0.26c1.021,0.334,1.233,0.563,1.329,0.971c0.084,0.327-0.262,0.602-1.544,1.221c-0.204,0.099-0.407,0.197-0.6,0.297c-0.689,0.355-1.205,0.399-1.986,0.466c-0.312,0.026-0.645,0.055-1.004,0.104c-0.725,0.091-1.38,0.248-2.014,0.4c-0.731,0.176-1.422,0.341-2.023,0.341s-1.081-0.165-1.545-0.529c-0.38-0.304-0.556-0.627-0.8-1.073c-0.177-0.324-0.377-0.691-0.693-1.109c-0.279-0.352-0.519-0.858-0.751-1.349c-0.512-1.083-1.149-2.431-2.598-2.431c-0.247,0-0.504,0.044-0.764,0.132c-1.126,0.379-1.501,1.281-1.775,1.939c-0.118,0.283-0.229,0.55-0.379,0.77c-0.375,0.535-0.564,1.103-0.732,1.604c-0.281,0.841-0.369,0.94-0.593,0.973c-0.361,0.052-0.588-0.101-1.125-0.489c-0.16-0.116-0.326-0.237-0.502-0.353c-0.346-0.23-0.55-0.485-0.809-0.809c-0.289-0.361-0.617-0.771-1.154-1.157c-0.597-0.44-1.136-0.651-1.611-0.838c-0.384-0.15-0.716-0.28-1.082-0.523c-0.139-0.093-0.262-0.249-0.405-0.431c-0.325-0.412-0.816-1.035-1.786-1.07l-0.101-0.002c-0.731,0-1.752,0.26-2.466,1.497c-0.259,0.448-0.44,1.053-0.634,1.693c-0.314,1.045-0.745,2.474-1.42,2.474h-0.001c-0.698-0.047-2.753-1.846-3.741-2.711c-0.708-0.62-1.32-1.155-1.761-1.447l-0.332-0.229C6.498,44.301,5.72,43.76,4.692,43.76C4.598,43.76,4.502,43.775,4.406,43.785z M32,62c-11.484,0-21.458-6.456-26.499-15.936c0.192,0.117,0.393,0.252,0.608,0.401l0.362,0.249c0.336,0.223,0.928,0.74,1.555,1.289c2.08,1.82,3.65,3.115,4.929,3.202c2.26,0.149,2.986-2.301,3.466-3.893c0.151-0.503,0.309-1.023,0.451-1.271c0.265-0.458,0.518-0.496,0.772-0.497c0.056,0.03,0.189,0.2,0.277,0.312c0.206,0.262,0.464,0.588,0.867,0.857c0.547,0.363,1.032,0.553,1.462,0.721c0.412,0.161,0.768,0.301,1.162,0.593c0.325,0.232,0.531,0.491,0.771,0.79c0.309,0.385,0.657,0.82,1.265,1.226c0.154,0.102,0.296,0.205,0.434,0.304c0.648,0.472,1.395,1.017,2.58,0.852c1.505-0.216,1.928-1.481,2.208-2.318c0.137-0.408,0.266-0.793,0.481-1.102c0.272-0.398,0.436-0.791,0.579-1.137c0.257-0.616,0.342-0.737,0.568-0.813c0.07-0.024,0.108-0.031,0.134-0.027c0.203,0.064,0.579,0.859,0.781,1.286c0.267,0.565,0.57,1.205,0.978,1.719c0.213,0.281,0.361,0.554,0.52,0.842c0.286,0.525,0.611,1.121,1.312,1.683c0.827,0.647,1.738,0.962,2.788,0.962c0.838,0,1.641-0.192,2.489-0.396c0.581-0.14,1.183-0.284,1.808-0.362c0.332-0.045,0.632-0.07,0.913-0.095c0.87-0.073,1.691-0.144,2.735-0.682c0.178-0.092,0.364-0.182,0.552-0.272c1.245-0.602,3.127-1.511,2.616-3.499c-0.388-1.654-1.859-2.136-2.657-2.396c-0.252-0.08-0.511-0.121-0.77-0.121c-0.673,0-1.223,0.273-1.665,0.493c-0.384,0.191-0.705,0.338-0.966,0.279c-0.766-0.182-1.145-0.597-1.772-1.283c-0.127-0.14-0.26-0.283-0.402-0.434c-0.218-0.229-0.345-0.499-0.492-0.812c-0.252-0.536-0.565-1.203-1.377-1.686c-0.816-0.485-1.87-0.337-2.635-0.116c-0.441,0.127-0.797,0.239-1.069,0.093c-0.228-0.12-0.331-0.332-0.529-0.825c-0.24-0.595-0.568-1.41-1.52-1.859c-0.528-0.248-1.053-0.369-1.603-0.369c-0.99,0-1.834,0.39-2.728,0.803l-0.483,0.221c-0.845,0.376-1.36,0.942-1.775,1.397c-0.388,0.426-0.668,0.733-1.147,0.902c-1.146,0.403-2.039,0.6-2.729,0.6c-0.928,0-1.195-0.35-1.334-0.689c-0.338-0.833-0.306-1.108-0.018-1.405c0.175,0,0.362,0.037,0.557,0.07c0.522,0.088,1.2,0.164,1.782,0.013c0.954-0.258,1.581-0.584,2.245-0.929c0.278-0.145,0.573-0.298,0.927-0.463c0.235-0.111,0.598-0.174,0.947-0.234c0.777-0.134,2.396-0.411,2.278-2.084c-0.121-1.496-1.484-1.816-2.299-2.008c-0.229-0.054-0.464-0.106-0.689-0.188c-0.284-0.101-0.594-0.153-0.944-0.159c0.146-0.216,0.247-0.484,0.275-0.82c0.085-1.224-0.538-2.215-1.855-2.946c-0.35-0.193-0.724-0.291-1.111-0.291c-0.512,0-0.945,0.165-1.327,0.311c-0.344,0.13-0.644,0.238-0.889,0.203c-0.82-0.12-1.309-0.483-1.984-0.985c-0.374-0.278-0.799-0.594-1.325-0.896c-0.433-0.246-0.771-0.503-1.13-0.774c-0.651-0.493-1.324-1.004-2.42-1.312c-1.395-0.392-2.583-0.296-4.041-0.08l-0.359,0.053c-0.238,0.034-0.458,0.054-0.666,0.073c-0.757,0.071-1.539,0.144-2.433,0.754c-0.967,0.672-1.197,1.585-1.383,2.319c-0.118,0.467-0.221,0.87-0.501,1.213c-0.283,0.354-0.58,0.556-0.955,0.812c-0.295,0.201-0.617,0.425-0.947,0.734C2.004,32.108,2,32.055,2,32C2,17.388,12.45,5.221,26.283,2.551c0.111,0.172,0.225,0.339,0.334,0.49c0.348,0.48,0.434,0.633,0.411,0.915c-0.025,0.331-0.151,0.49-0.545,0.944L26.287,5.13c-0.26,0.312-0.527,0.465-0.898,0.676c-0.328,0.188-0.701,0.4-1.111,0.754c-0.163,0.142-0.33,0.25-0.488,0.354c-0.477,0.316-1.131,0.75-1.371,1.701c-0.244,0.983,0.319,1.662,0.656,2.068c0.108,0.132,0.291,0.352,0.287,0.411c-0.04,0.51-0.147,0.753-0.514,1.14c-0.071,0.078-0.133,0.119-0.276,0.212c-0.113,0.072-0.232,0.15-0.364,0.251l-0.121,0.11c-0.06,0.063-0.586,0.643-0.898,1.551c-0.237,0.715-0.247,1.088-0.044,1.598l0.044,0.118c0.036,0.121,0.07,0.547,0.072,0.822l-0.084,1.218l0.814,0.203c0.535,0.133,0.806,0.244,1.353,0.514c0.351,0.169,0.582,0.33,0.874,0.533l0.294,0.199c0.392,0.234,0.79,0.193,1.213,0.146c0.211,0.021,0.397,0.035,0.574,0.05c0.385,0.03,0.725,0.058,1.209,0.128l0.314,0.039c0.244,0.03,0.438,0.051,0.708,0.123c0.154,0.043,0.285,0.143,0.502,0.313c0.37,0.292,0.877,0.691,1.705,0.691c0.724-0.005,1.192-0.323,1.534-0.556c0.198-0.134,0.317-0.212,0.465-0.253c0.348-0.099,0.746-0.095,1.151-0.074c0.584,0.033,1.175,0.021,1.723-0.115c0.255-0.064,0.458-0.152,0.652-0.242c0.17-0.078,0.233-0.105,0.254-0.109l0.072,0.002L36.64,19.7c0.066,0.005,0.169,0.049,0.299,0.104c0.257,0.11,0.608,0.262,1.138,0.28c1.079,0,2.751-1.39,2.771-1.407c0.186-0.164,0.341-0.236,0.599-0.357c0.182-0.085,0.373-0.176,0.636-0.329c0.276-0.183,0.496-0.361,0.704-0.532c0.294-0.241,0.487-0.401,0.82-0.517c0.697-0.248,1.029-0.34,1.461-0.194c0.247,0.086,0.347,0.155,0.666,0.414c0.156,0.126,0.239,0.246,0.379,0.445c0.136,0.195,0.28,0.397,0.475,0.605c0.087,0.097,0.159,0.188,0.227,0.275c0.218,0.275,0.489,0.619,0.997,0.899c0.633,0.344,1.408,0.294,1.978,0.179c0.256-0.052,0.455-0.1,0.668-0.067l0.354,0.048c0.244,0.031,0.42,0.054,0.591,0.11c0.086,0.026,0.176,0.062,0.284,0.12c0.438,0.233,0.602,0.441,0.987,1.017c0.342,0.522,0.417,0.906,0.554,1.604l0.071,0.357c0.121,0.615,0.134,1.033,0.151,1.611l0.02,0.551c0.011,0.265,0.032,0.497,0.054,0.716c0.043,0.438,0.071,0.728-0.028,1.138c-0.059,0.25-0.178,0.415-0.402,0.709c-0.254,0.333-0.57,0.748-0.74,1.369l-0.05,0.17c-0.181,0.62-0.353,1.206-0.16,2.073c0.045,0.193,0.036,0.76,0.029,1.174c-0.019,1.132-0.03,1.88,0.444,2.362c0.217,0.221,0.505,0.342,0.811,0.342l0.31-0.021l0.204-0.098c0.285-0.136,0.532-0.331,0.754-0.547c0.008,0.018,0.015,0.035,0.022,0.053c0.275,0.614,0.863,0.967,1.615,0.967c0.824,0,2.492-0.584,2.606-1.665c0.027-0.285,0.016-0.543,0.002-0.786c-0.021-0.351-0.014-0.419,0.053-0.526c0.039-0.03,0.207-0.079,0.318-0.11c0.35-0.101,0.827-0.237,1.269-0.664c0.387-0.384,0.56-0.77,0.699-1.079c0.104-0.232,0.164-0.359,0.286-0.485c0.072-0.076,0.17-0.126,0.348-0.211C61.964,30.525,62,31.258,62,32C62,48.568,48.568,62,32,62z"/><path fill="%23FFFFFF" d="M44.629,28.162c-1.1,0.317-1.496,1.157-1.786,1.771c-0.155,0.33-0.29,0.614-0.512,0.819c-0.392,0.366-0.771,0.568-1.211,0.802c-0.488,0.26-1.041,0.554-1.613,1.088c-0.204,0.189-0.438,0.352-0.661,0.511c-0.737,0.523-1.852,1.314-1.525,2.804c0.214,0.935,0.933,1.493,1.922,1.493c0.655,0,1.366-0.229,2.055-0.451c0.34-0.109,0.677-0.22,0.984-0.288c1.752-0.383,2.951-0.842,4.263-2.16c0.144-0.143,0.294-0.286,0.446-0.432c1.134-1.08,2.846-2.713,1.573-4.603C47.708,28.231,46.191,27.713,44.629,28.162z M45.61,32.671c-0.162,0.155-0.323,0.309-0.48,0.465c-0.983,0.988-1.806,1.299-3.277,1.621c-0.365,0.08-0.767,0.208-1.17,0.338c-0.502,0.161-1.069,0.345-1.414,0.354c0.021-0.122,0.18-0.271,0.735-0.665c0.271-0.193,0.58-0.412,0.865-0.678c0.382-0.355,0.756-0.555,1.19-0.786c0.493-0.263,1.053-0.56,1.632-1.102c0.504-0.464,0.757-1,0.96-1.431c0.256-0.541,0.335-0.646,0.532-0.703C45.376,30.028,45.564,30,45.742,30c0.491,0,0.881,0.21,1.16,0.629C47.16,31.012,46.87,31.47,45.61,32.671z"/><path fill="%23FFFFFF" d="M32.422,53.081c-0.231,0-0.465,0.036-0.707,0.11c-1.458,0.47-1.389,1.934-1.353,2.721c0.014,0.289,0.026,0.562-0.001,0.8c-0.023,0.217-0.083,0.425-0.136,0.625c-0.178,0.672-0.446,1.686,0.437,2.556c0.416,0.4,0.941,0.612,1.52,0.612c0.859,0,1.826-0.497,2.593-1.334c1.174-1.307,1.188-3.217,0.043-4.633C34.284,53.859,33.531,53.081,32.422,53.081z M33.292,57.827c-0.406,0.445-0.866,0.678-1.11,0.678c-0.06,0-0.09-0.012-0.138-0.053c-0.021-0.092,0.062-0.399,0.115-0.603c0.071-0.271,0.153-0.579,0.189-0.914c0.046-0.391,0.027-0.776,0.012-1.117c-0.011-0.233-0.026-0.571,0.003-0.731c0.168-0.03,0.365,0.029,0.89,0.697C33.792,56.451,33.806,57.256,33.292,57.827z"/></g></svg>');
}

.map-of-stations-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-49 141 512 512" style="enable-background:new -49 141 512 512;" xml:space="preserve"><style type="text/css">.st0{fill:%23000000;}</style><g><g><path class="st0" d="M402.8,252.8c8.1-16.8,12.2-30.2,12.2-40c0-39.6-32.2-71.8-71.9-71.8c-23.5,0-44.3,11.3-57.5,28.8c-25.3-8.5-51.7-12.7-78.7-12.7c-66.2,0-128.5,25.8-175.4,72.6C-15.2,276.5-41,338.8-41,405s25.8,128.5,72.6,175.4C78.5,627.2,140.8,653,207,653s128.5-25.8,175.4-72.6C429.2,533.5,455,471.2,455,405C455,349.9,436.5,296.1,402.8,252.8z M181.6,174c-25.3,20.5-46.6,44.5-63.7,71.7c-18.7-6.2-36.8-14.2-53.7-24.1C98.3,195,138.7,178.6,181.6,174z M125.1,264.2c13.9,3.9,28.1,6.9,42.4,8.8c10.3,1.4,20.8,2.2,31.2,2.4v122.9H87.9c1-42.6,11.6-84.8,30.8-122.4C120.8,271.9,122.9,268,125.1,264.2z M42.7,240.7c2.9-2.9,5.9-5.7,8.9-8.5c18.3,11.1,37.9,20.2,58.3,27.2c-1.7,3.1-3.4,6.2-5,9.4c-20.3,39.8-31.5,84.4-32.5,129.5h-97.6C-23.6,338.7,0.4,283,42.7,240.7z M-25.2,413.9h97.6c1.3,42.4,11.5,84.3,29.9,122.1c-21.5,8-42.1,18.5-61.4,31.5C0.2,525.9-23.1,471.8-25.2,413.9z M52.4,578.5c18-11.7,37.1-21.3,57.1-28.6c18.3,33.2,42.5,62,72.2,86.1C133.6,630.8,88.7,610.9,52.4,578.5z M198.7,629.6c-30.6-23.3-55.5-51.7-74.1-84.7c23.8-7.2,48.7-11.2,74.1-11.9V629.6z M198.7,517.4c-28,0.7-55.4,5.3-81.6,13.5c-17.9-36.1-27.9-76.3-29.1-117h110.7V517.4z M198.7,259.8c-9.8-0.3-19.5-1-29.2-2.3c-12.1-1.6-24.2-4-36-7.2c17.4-26.8,39.2-50.2,65.2-69.9V259.8z M439.3,398.3h-97.6c-0.5-22.4-3.5-44.6-8.9-66.2c2.4,3.3,3.9,5.3,4.1,5.6l6.2,8.2l6.2-8.2c0.7-0.9,16.4-21.8,32.4-47.4c4.9-7.8,9.3-15.2,13.1-22.1C422.3,305.9,437.9,351.5,439.3,398.3z M343.1,156.6c31,0,56.3,25.2,56.3,56.3c0,24.1-36.2,79.2-56.3,107c-20-27.7-56.3-82.9-56.3-107C286.9,181.8,312.1,156.6,343.1,156.6z M277.5,183.5c-3.9,8.7-6.1,18.3-6.3,28.4c-11.7-13.7-24.7-26.4-38.9-38C247.7,175.6,262.8,178.8,277.5,183.5z M214.3,179.7c26.4,19.9,48.5,43.5,66.1,70.6c-21.5,5.7-43.8,8.9-66.1,9.5V179.7z M214.3,275.4c25.2-0.6,50.4-4.4,74.6-11.2c2.2,3.8,4.3,7.7,6.3,11.7c19.2,37.6,29.8,79.8,30.8,122.4H214.3V275.4z M214.3,413.9H326c-1.3,40.7-11.3,80.9-29.1,117c-26.5-8.3-54.2-12.8-82.6-13.5V413.9z M214.3,533c25.8,0.6,51,4.7,75.1,11.9c-18.9,33.3-44.1,61.9-75.1,85.4V533z M232.4,636c29.6-24.1,53.8-52.9,72.2-86.1c20,7.3,39.1,16.8,57.1,28.6C325.3,610.9,280.4,630.8,232.4,636z M373.1,567.5c-19.3-12.9-39.9-23.5-61.4-31.5c18.4-37.8,28.6-79.7,29.9-122.1h97.6C437.1,471.8,413.8,525.9,373.1,567.5z"/></g></g><g><g><path class="st0" d="M343.1,165c-26.4,0-47.8,21.5-47.8,47.8c0,26.4,21.5,47.8,47.8,47.8c26.4,0,47.8-21.5,47.8-47.8C390.9,186.5,369.5,165,343.1,165z M343.1,245.1c-17.8,0-32.2-14.5-32.2-32.2s14.5-32.2,32.2-32.2s32.2,14.5,32.2,32.2C375.3,230.6,360.9,245.1,343.1,245.1z"/></g></g><g><g><polygon class="st0" points="351.6,204.9 351.6,189.3 336,189.3 336,204.9 319.3,204.9 319.3,220.5 336,220.5 336,237.2 351.6,237.2 351.6,220.5 367.1,220.5 367.1,204.9 "/></g></g><g><g><rect x="334.9" y="268.4" class="st0" width="15.6" height="15.6"/></g></g></svg>');
}

.dark .map-of-stations-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="-49 141 512 512" style="enable-background:new -49 141 512 512;" xml:space="preserve"><style type="text/css">.st0{fill:%23FFFFFF;}</style><g><g><path class="st0" d="M402.8,252.8c8.1-16.8,12.2-30.2,12.2-40c0-39.6-32.2-71.8-71.9-71.8c-23.5,0-44.3,11.3-57.5,28.8c-25.3-8.5-51.7-12.7-78.7-12.7c-66.2,0-128.5,25.8-175.4,72.6C-15.2,276.5-41,338.8-41,405s25.8,128.5,72.6,175.4C78.5,627.2,140.8,653,207,653s128.5-25.8,175.4-72.6C429.2,533.5,455,471.2,455,405C455,349.9,436.5,296.1,402.8,252.8z M181.6,174c-25.3,20.5-46.6,44.5-63.7,71.7c-18.7-6.2-36.8-14.2-53.7-24.1C98.3,195,138.7,178.6,181.6,174z M125.1,264.2c13.9,3.9,28.1,6.9,42.4,8.8c10.3,1.4,20.8,2.2,31.2,2.4v122.9H87.9c1-42.6,11.6-84.8,30.8-122.4C120.8,271.9,122.9,268,125.1,264.2z M42.7,240.7c2.9-2.9,5.9-5.7,8.9-8.5c18.3,11.1,37.9,20.2,58.3,27.2c-1.7,3.1-3.4,6.2-5,9.4c-20.3,39.8-31.5,84.4-32.5,129.5h-97.6C-23.6,338.7,0.4,283,42.7,240.7z M-25.2,413.9h97.6c1.3,42.4,11.5,84.3,29.9,122.1c-21.5,8-42.1,18.5-61.4,31.5C0.2,525.9-23.1,471.8-25.2,413.9z M52.4,578.5c18-11.7,37.1-21.3,57.1-28.6c18.3,33.2,42.5,62,72.2,86.1C133.6,630.8,88.7,610.9,52.4,578.5z M198.7,629.6c-30.6-23.3-55.5-51.7-74.1-84.7c23.8-7.2,48.7-11.2,74.1-11.9V629.6z M198.7,517.4c-28,0.7-55.4,5.3-81.6,13.5c-17.9-36.1-27.9-76.3-29.1-117h110.7V517.4z M198.7,259.8c-9.8-0.3-19.5-1-29.2-2.3c-12.1-1.6-24.2-4-36-7.2c17.4-26.8,39.2-50.2,65.2-69.9V259.8z M439.3,398.3h-97.6c-0.5-22.4-3.5-44.6-8.9-66.2c2.4,3.3,3.9,5.3,4.1,5.6l6.2,8.2l6.2-8.2c0.7-0.9,16.4-21.8,32.4-47.4c4.9-7.8,9.3-15.2,13.1-22.1C422.3,305.9,437.9,351.5,439.3,398.3z M343.1,156.6c31,0,56.3,25.2,56.3,56.3c0,24.1-36.2,79.2-56.3,107c-20-27.7-56.3-82.9-56.3-107C286.9,181.8,312.1,156.6,343.1,156.6z M277.5,183.5c-3.9,8.7-6.1,18.3-6.3,28.4c-11.7-13.7-24.7-26.4-38.9-38C247.7,175.6,262.8,178.8,277.5,183.5z M214.3,179.7c26.4,19.9,48.5,43.5,66.1,70.6c-21.5,5.7-43.8,8.9-66.1,9.5V179.7z M214.3,275.4c25.2-0.6,50.4-4.4,74.6-11.2c2.2,3.8,4.3,7.7,6.3,11.7c19.2,37.6,29.8,79.8,30.8,122.4H214.3V275.4z M214.3,413.9H326c-1.3,40.7-11.3,80.9-29.1,117c-26.5-8.3-54.2-12.8-82.6-13.5V413.9z M214.3,533c25.8,0.6,51,4.7,75.1,11.9c-18.9,33.3-44.1,61.9-75.1,85.4V533z M232.4,636c29.6-24.1,53.8-52.9,72.2-86.1c20,7.3,39.1,16.8,57.1,28.6C325.3,610.9,280.4,630.8,232.4,636z M373.1,567.5c-19.3-12.9-39.9-23.5-61.4-31.5c18.4-37.8,28.6-79.7,29.9-122.1h97.6C437.1,471.8,413.8,525.9,373.1,567.5z"/></g></g><g><g><path class="st0" d="M343.1,165c-26.4,0-47.8,21.5-47.8,47.8c0,26.4,21.5,47.8,47.8,47.8c26.4,0,47.8-21.5,47.8-47.8C390.9,186.5,369.5,165,343.1,165z M343.1,245.1c-17.8,0-32.2-14.5-32.2-32.2s14.5-32.2,32.2-32.2s32.2,14.5,32.2,32.2C375.3,230.6,360.9,245.1,343.1,245.1z"/></g></g><g><g><polygon class="st0" points="351.6,204.9 351.6,189.3 336,189.3 336,204.9 319.3,204.9 319.3,220.5 336,220.5 336,237.2 351.6,237.2 351.6,220.5 367.1,220.5 367.1,204.9 "/></g></g><g><g><rect x="334.9" y="268.4" class="st0" width="15.6" height="15.6"/></g></g></svg>');
}

.coins-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg fill="%23000000" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M8.5,23a9.069,9.069,0,0,0,3.5-.68,8.92,8.92,0,0,0,3.5.68c3.645,0,6.5-1.945,6.5-4.429V14.429C22,11.945,19.145,10,15.5,10c-.169,0-.335.008-.5.017V5.333C15,2.9,12.145,1,8.5,1S2,2.9,2,5.333V18.667C2,21.1,4.855,23,8.5,23ZM20,18.571C20,19.72,18.152,21,15.5,21S11,19.72,11,18.571v-.925a8.329,8.329,0,0,0,4.5,1.211A8.329,8.329,0,0,0,20,17.646ZM15.5,12c2.652,0,4.5,1.28,4.5,2.429s-1.848,2.428-4.5,2.428S11,15.577,11,14.429,12.848,12,15.5,12Zm-7-9C11.152,3,13,4.23,13,5.333S11.152,7.667,8.5,7.667,4,6.437,4,5.333,5.848,3,8.5,3ZM4,8.482A8.466,8.466,0,0,0,8.5,9.667,8.466,8.466,0,0,0,13,8.482V10.33a6.47,6.47,0,0,0-2.9,1.607,7.694,7.694,0,0,1-1.6.174c-2.652,0-4.5-1.23-4.5-2.333Zm0,4.445a8.475,8.475,0,0,0,4.5,1.184c.178,0,.35-.022.525-.031A3.1,3.1,0,0,0,9,14.429v2.085c-.168.01-.33.042-.5.042-2.652,0-4.5-1.23-4.5-2.334Zm0,4.444a8.466,8.466,0,0,0,4.5,1.185c.168,0,.333-.013.5-.021v.036a3.466,3.466,0,0,0,.919,2.293A7.839,7.839,0,0,1,8.5,21C5.848,21,4,19.77,4,18.667Z"/></svg>');
}

.dark .coins-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg fill="%23FFFFFF" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M8.5,23a9.069,9.069,0,0,0,3.5-.68,8.92,8.92,0,0,0,3.5.68c3.645,0,6.5-1.945,6.5-4.429V14.429C22,11.945,19.145,10,15.5,10c-.169,0-.335.008-.5.017V5.333C15,2.9,12.145,1,8.5,1S2,2.9,2,5.333V18.667C2,21.1,4.855,23,8.5,23ZM20,18.571C20,19.72,18.152,21,15.5,21S11,19.72,11,18.571v-.925a8.329,8.329,0,0,0,4.5,1.211A8.329,8.329,0,0,0,20,17.646ZM15.5,12c2.652,0,4.5,1.28,4.5,2.429s-1.848,2.428-4.5,2.428S11,15.577,11,14.429,12.848,12,15.5,12Zm-7-9C11.152,3,13,4.23,13,5.333S11.152,7.667,8.5,7.667,4,6.437,4,5.333,5.848,3,8.5,3ZM4,8.482A8.466,8.466,0,0,0,8.5,9.667,8.466,8.466,0,0,0,13,8.482V10.33a6.47,6.47,0,0,0-2.9,1.607,7.694,7.694,0,0,1-1.6.174c-2.652,0-4.5-1.23-4.5-2.333Zm0,4.445a8.475,8.475,0,0,0,4.5,1.184c.178,0,.35-.022.525-.031A3.1,3.1,0,0,0,9,14.429v2.085c-.168.01-.33.042-.5.042-2.652,0-4.5-1.23-4.5-2.334Zm0,4.444a8.466,8.466,0,0,0,4.5,1.185c.168,0,.333-.013.5-.021v.036a3.466,3.466,0,0,0,.919,2.293A7.839,7.839,0,0,1,8.5,21C5.848,21,4,19.77,4,18.667Z"/></svg>');        
}

.search-stations-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--gis" preserveAspectRatio="xMidYMid meet"><path d="M36.277 13.297c-6.698 0-12.185 5.471-12.185 12.15c0 2.588.825 4.994 2.224 6.971l8.473 11.494c1.187 1.55 1.978 1.256 2.965-.082l9.348-12.75a6.87 6.87 0 0 0 .464-1.074c.577-1.41.897-2.95.897-4.559c0-6.679-5.487-12.15-12.186-12.15zm0 5.693c3.607 0 6.477 2.86 6.477 6.457s-2.87 6.46-6.477 6.46s-6.476-2.863-6.476-6.46c0-3.596 2.87-6.457 6.476-6.457z" fill="%23000000"></path><path d="M37.18.178c-9.53 0-19.061 3.623-26.309 10.87c-14.495 14.496-14.495 38.123 0 52.618C24.44 77.234 45.97 78.032 60.557 66.193l3.576 3.577a3.956 5.958 45 0 0 .646 3.613L90.73 99.334a3.956 5.958 45 0 0 7.01-1.416a3.956 5.958 45 0 0 1.416-7.01l-25.95-25.951a3.956 5.958 45 0 0-3.616-.646l-3.576-3.577c11.839-14.587 11.043-36.117-2.526-49.685C56.241 3.8 46.71.178 37.18.178zm0 8.217c7.397 0 14.795 2.834 20.463 8.501a28.875 28.875 0 0 1 0 40.924a28.875 28.875 0 0 1-40.924 0a28.875 28.875 0 0 1 0-40.924c5.667-5.667 13.064-8.501 20.46-8.501z" fill="%23000000"></path><path d="M29.727 52.003L19.439 55.38a25.527 25.527 0 0 0 16.102 7.119z" fill="%23000000"></path><path d="M62.492 41.253l-25.476 8.36l6.705 12.1a25.637 25.637 0 0 0 9.828-5.054a25.543 25.543 0 0 0 8.943-15.406z" fill="%23000000"></path><path d="M11.674 34.38a25.53 25.53 0 0 0 2.94 14.65l9.52-3.123z" fill="%23000000"></path><path d="M60.002 25.146l-5.303 10.732l7.916-2.596a25.486 25.486 0 0 0-2.613-8.136z" fill="%23000000"></path></svg>');
}

.dark .search-stations-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--gis" preserveAspectRatio="xMidYMid meet"><path d="M36.277 13.297c-6.698 0-12.185 5.471-12.185 12.15c0 2.588.825 4.994 2.224 6.971l8.473 11.494c1.187 1.55 1.978 1.256 2.965-.082l9.348-12.75a6.87 6.87 0 0 0 .464-1.074c.577-1.41.897-2.95.897-4.559c0-6.679-5.487-12.15-12.186-12.15zm0 5.693c3.607 0 6.477 2.86 6.477 6.457s-2.87 6.46-6.477 6.46s-6.476-2.863-6.476-6.46c0-3.596 2.87-6.457 6.476-6.457z" fill="%23FFFFFF"></path><path d="M37.18.178c-9.53 0-19.061 3.623-26.309 10.87c-14.495 14.496-14.495 38.123 0 52.618C24.44 77.234 45.97 78.032 60.557 66.193l3.576 3.577a3.956 5.958 45 0 0 .646 3.613L90.73 99.334a3.956 5.958 45 0 0 7.01-1.416a3.956 5.958 45 0 0 1.416-7.01l-25.95-25.951a3.956 5.958 45 0 0-3.616-.646l-3.576-3.577c11.839-14.587 11.043-36.117-2.526-49.685C56.241 3.8 46.71.178 37.18.178zm0 8.217c7.397 0 14.795 2.834 20.463 8.501a28.875 28.875 0 0 1 0 40.924a28.875 28.875 0 0 1-40.924 0a28.875 28.875 0 0 1 0-40.924c5.667-5.667 13.064-8.501 20.46-8.501z" fill="%23FFFFFF"></path><path d="M29.727 52.003L19.439 55.38a25.527 25.527 0 0 0 16.102 7.119z" fill="%23FFFFFF"></path><path d="M62.492 41.253l-25.476 8.36l6.705 12.1a25.637 25.637 0 0 0 9.828-5.054a25.543 25.543 0 0 0 8.943-15.406z" fill="%23FFFFFF"></path><path d="M11.674 34.38a25.53 25.53 0 0 0 2.94 14.65l9.52-3.123z" fill="%23FFFFFF"></path><path d="M60.002 25.146l-5.303 10.732l7.916-2.596a25.486 25.486 0 0 0-2.613-8.136z" fill="%23FFFFFF"></path></svg>');
}

.route-planner-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 21C7.5 19.4 9 17.9673 9 16.2C9 14.4327 7.65685 13 6 13C4.34315 13 3 14.4327 3 16.2C3 17.9673 4.5 19.4 6 21ZM6 21H17.5C18.8807 21 20 19.8807 20 18.5C20 17.1193 18.8807 16 17.5 16H15M18 11C19.5 9.4 21 7.96731 21 6.2C21 4.43269 19.6569 3 18 3C16.3431 3 15 4.43269 15 6.2C15 7.96731 16.5 9.4 18 11ZM18 11H14.5C13.1193 11 12 12.1193 12 13.5C12 14.8807 13.1193 16 14.5 16H15.6" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.dark .route-planner-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 21C7.5 19.4 9 17.9673 9 16.2C9 14.4327 7.65685 13 6 13C4.34315 13 3 14.4327 3 16.2C3 17.9673 4.5 19.4 6 21ZM6 21H17.5C18.8807 21 20 19.8807 20 18.5C20 17.1193 18.8807 16 17.5 16H15M18 11C19.5 9.4 21 7.96731 21 6.2C21 4.43269 19.6569 3 18 3C16.3431 3 15 4.43269 15 6.2C15 7.96731 16.5 9.4 18 11ZM18 11H14.5C13.1193 11 12 12.1193 12 13.5C12 14.8807 13.1193 16 14.5 16H15.6" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.connector-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><svg fill="%23000000" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 499.28 499.28" xml:space="preserve"><g><g><g><path d="M299.28,97.992c-30.872,0-56,25.128-56,56s25.128,56,56,56s56-25.128,56-56S330.152,97.992,299.28,97.992z M299.28,193.992c-22.056,0-40-17.944-40-40c0-22.056,17.944-40,40-40c22.056,0,40,17.944,40,40C339.28,176.048,321.336,193.992,299.28,193.992z"/><path d="M495.064,383.656l-15.448-30.888l6.4-3.2l-73.504-147l15.592-23.4l-17.96-53.864l-102.336-85.28L282.336,57l-43.24-17.296l-7,15.752l-74.464-37.232L22.144,1.288L0,56.648L136.92,73.76l71.208,35.608l-5.96,13.4l16.272,24.408l-15.888,47.688l36.672,64.176l14.112-3.024l57,113.976h108l1.792,3.576l15.152,30.312v30.112h-240v-104c0-22.056-17.944-40-40-40h-152v16h152c13.232,0,24,10.768,24,24v104c0,8.824,7.176,16,16,16h240c8.824,0,16-7.176,16-16V403.88c0-2.472-0.584-4.944-1.688-7.16l-11.576-23.16l27.288-13.648l15.448,30.88c1.656,3.336,2.528,7.048,2.528,10.752v56.448c0,13.232-10.768,24-24,24h-288c-13.232,0-24-10.768-24-24v-104c0-8.824-7.176-16-16-16h-128v16h128v104c0,22.056,17.944,40,40,40h288c22.056,0,40-17.944,40-40v-56.448C499.28,395.376,497.816,389.184,495.064,383.656z M214.632,94.728l-73-36.504L22.552,43.336l9.856-24.64L152.92,33.76l72.664,36.336L214.632,94.728z M346.024,294.088l-5.984,59.904h-19.816l-50.72-101.44l15.96-3.424l29.992,5c11.576,1.928,21.616,9.352,26.864,19.84C345.44,280.192,346.72,287.144,346.024,294.088z M356.12,353.992l5.832-58.304c0.992-9.952-0.84-19.936-5.312-28.864c-6.288-12.568-17.4-21.992-30.552-26.392l24.808-5.32l59.44,118.88H356.12z M430.864,359.264l-71.2-142.392l-112.336,24.072L220,193.128l16.112-48.312l-15.728-23.592l27.08-60.936l36.76,14.704l22.528-15.024l89.664,74.72l14.04,42.136l-16.408,24.6l70.504,141L430.864,359.264z"/><rect x="403.28" y="457.992" width="16" height="16"/><rect x="371.28" y="457.992" width="16" height="16"/><rect x="283.28" y="457.992" width="72" height="16"/></g></g></g></svg>');
}

.dark .connector-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><svg fill="%23FFFFFF" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 499.28 499.28" xml:space="preserve"><g><g><g><path d="M299.28,97.992c-30.872,0-56,25.128-56,56s25.128,56,56,56s56-25.128,56-56S330.152,97.992,299.28,97.992z M299.28,193.992c-22.056,0-40-17.944-40-40c0-22.056,17.944-40,40-40c22.056,0,40,17.944,40,40C339.28,176.048,321.336,193.992,299.28,193.992z"/><path d="M495.064,383.656l-15.448-30.888l6.4-3.2l-73.504-147l15.592-23.4l-17.96-53.864l-102.336-85.28L282.336,57l-43.24-17.296l-7,15.752l-74.464-37.232L22.144,1.288L0,56.648L136.92,73.76l71.208,35.608l-5.96,13.4l16.272,24.408l-15.888,47.688l36.672,64.176l14.112-3.024l57,113.976h108l1.792,3.576l15.152,30.312v30.112h-240v-104c0-22.056-17.944-40-40-40h-152v16h152c13.232,0,24,10.768,24,24v104c0,8.824,7.176,16,16,16h240c8.824,0,16-7.176,16-16V403.88c0-2.472-0.584-4.944-1.688-7.16l-11.576-23.16l27.288-13.648l15.448,30.88c1.656,3.336,2.528,7.048,2.528,10.752v56.448c0,13.232-10.768,24-24,24h-288c-13.232,0-24-10.768-24-24v-104c0-8.824-7.176-16-16-16h-128v16h128v104c0,22.056,17.944,40,40,40h288c22.056,0,40-17.944,40-40v-56.448C499.28,395.376,497.816,389.184,495.064,383.656z M214.632,94.728l-73-36.504L22.552,43.336l9.856-24.64L152.92,33.76l72.664,36.336L214.632,94.728z M346.024,294.088l-5.984,59.904h-19.816l-50.72-101.44l15.96-3.424l29.992,5c11.576,1.928,21.616,9.352,26.864,19.84C345.44,280.192,346.72,287.144,346.024,294.088z M356.12,353.992l5.832-58.304c0.992-9.952-0.84-19.936-5.312-28.864c-6.288-12.568-17.4-21.992-30.552-26.392l24.808-5.32l59.44,118.88H356.12z M430.864,359.264l-71.2-142.392l-112.336,24.072L220,193.128l16.112-48.312l-15.728-23.592l27.08-60.936l36.76,14.704l22.528-15.024l89.664,74.72l14.04,42.136l-16.408,24.6l70.504,141L430.864,359.264z"/><rect x="403.28" y="457.992" width="16" height="16"/><rect x="371.28" y="457.992" width="16" height="16"/><rect x="283.28" y="457.992" width="72" height="16"/></g></g></g></svg>');
}

.refinery-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path fill="%23000000" d="M333.7 21.92S347.8 45.41 344 57c-3.4 10.38-23.5 9.3-26 19.94-1.9 8.45 7.2 21.49 12.5 28.16h6.8c7.1-11.21 12.6-21.78 14-34.94 7.9 8.26 10.4 21.29 1.1 34.94h8.4c8-9.54 24.2-30.9 21.2-44.69-4.3-20.13-48.3-38.49-48.3-38.49zM104 51.07c-17.5 0-29.44 4.94-35.49 14.01C62.46 74.15 63 84.07 63 92.07v12.03h18V92.07c0-8 .54-14.08 2.49-17.01 1.95-2.93 6.01-5.99 20.51-5.99h64c10 0 23 12.46 23 24.59V215.7h18v-28.6h103.3l1.6-18H209V93.66c0-23.05-19-42.59-41-42.59zM56 121.1v18h32v-18zm280.2 2l-14.3 158h44.2l-14.3-158zM72 155.1c-10 0-19.88 3.4-27.02 9.7C37.83 171.2 33 180.3 33 194.1v296h78v-296c0-13.7-4.8-22.9-12-29.3-7.12-6.3-17-9.7-27-9.7zm307.9 78l1.6 18H408c14.5 0 23.7 3.5 29.6 9.4 5.9 6 9.4 15.5 9.4 30.4v39.9c2.8-1.1 5.8-1.7 9-1.7s6.2.6 9 1.7v-39.9c0-17.9-4.5-32.8-14.6-43-10.1-10.3-24.9-14.8-42.4-14.8zm-202.9 2v14h46v-14zm23.5 32c-29.7 0-55.8 14.7-71.5 37.3v16.7h142V303c-15.8-21.7-41.4-35.9-70.5-35.9zm88.5 32v110h110v-110zm-160 40v14h142v-14zm327 8c-4 0-7 3-7 7s3 7 7 7 7-3 7-7-3-7-7-7zm-327 24v32.6c6.6 9.5 15 17.6 24.7 23.8L131 473.1v17h37.5v-17h-17.4l18.8-37.5c9.5 3.5 19.8 5.5 30.6 5.5s21.1-2 30.6-5.5l18.8 37.5h-17.4v17h64v-17h-26.4l-22.8-45.6c9.2-5.9 17.3-13.5 23.7-22.3v-34.1zm318 6.3v31.7h18v-31.7c-2.8 1.1-5.8 1.7-9 1.7s-6.2-.6-9-1.7zm-116.3 49.7l49.6 63h41l-49.6-63zm64 0l49.6 63H479v-8.9l-43.3-54.1zm64 0l20.3 25.4v-25.4zM321 443.7v46.4h36.3z"/></svg>');
}

.dark .refinery-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path fill="%23FFFFFF" d="M333.7 21.92S347.8 45.41 344 57c-3.4 10.38-23.5 9.3-26 19.94-1.9 8.45 7.2 21.49 12.5 28.16h6.8c7.1-11.21 12.6-21.78 14-34.94 7.9 8.26 10.4 21.29 1.1 34.94h8.4c8-9.54 24.2-30.9 21.2-44.69-4.3-20.13-48.3-38.49-48.3-38.49zM104 51.07c-17.5 0-29.44 4.94-35.49 14.01C62.46 74.15 63 84.07 63 92.07v12.03h18V92.07c0-8 .54-14.08 2.49-17.01 1.95-2.93 6.01-5.99 20.51-5.99h64c10 0 23 12.46 23 24.59V215.7h18v-28.6h103.3l1.6-18H209V93.66c0-23.05-19-42.59-41-42.59zM56 121.1v18h32v-18zm280.2 2l-14.3 158h44.2l-14.3-158zM72 155.1c-10 0-19.88 3.4-27.02 9.7C37.83 171.2 33 180.3 33 194.1v296h78v-296c0-13.7-4.8-22.9-12-29.3-7.12-6.3-17-9.7-27-9.7zm307.9 78l1.6 18H408c14.5 0 23.7 3.5 29.6 9.4 5.9 6 9.4 15.5 9.4 30.4v39.9c2.8-1.1 5.8-1.7 9-1.7s6.2.6 9 1.7v-39.9c0-17.9-4.5-32.8-14.6-43-10.1-10.3-24.9-14.8-42.4-14.8zm-202.9 2v14h46v-14zm23.5 32c-29.7 0-55.8 14.7-71.5 37.3v16.7h142V303c-15.8-21.7-41.4-35.9-70.5-35.9zm88.5 32v110h110v-110zm-160 40v14h142v-14zm327 8c-4 0-7 3-7 7s3 7 7 7 7-3 7-7-3-7-7-7zm-327 24v32.6c6.6 9.5 15 17.6 24.7 23.8L131 473.1v17h37.5v-17h-17.4l18.8-37.5c9.5 3.5 19.8 5.5 30.6 5.5s21.1-2 30.6-5.5l18.8 37.5h-17.4v17h64v-17h-26.4l-22.8-45.6c9.2-5.9 17.3-13.5 23.7-22.3v-34.1zm318 6.3v31.7h18v-31.7c-2.8 1.1-5.8 1.7-9 1.7s-6.2-.6-9-1.7zm-116.3 49.7l49.6 63h41l-49.6-63zm64 0l49.6 63H479v-8.9l-43.3-54.1zm64 0l20.3 25.4v-25.4zM321 443.7v46.4h36.3z"/></svg>');
}

.savings-calculator-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 7H15" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M15 17V14" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M15 11H15.01" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 11H12.01" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M9 11H9.01" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M9 14H9.01" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 14H12.01" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 17H12.01" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M9 17H9.01" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M5 7C5 5.11438 5 4.17157 5.58579 3.58579C6.17157 3 7.11438 3 9 3H12H15C16.8856 3 17.8284 3 18.4142 3.58579C19 4.17157 19 5.11438 19 7V12V17C19 18.8856 19 19.8284 18.4142 20.4142C17.8284 21 16.8856 21 15 21H12H9C7.11438 21 6.17157 21 5.58579 20.4142C5 19.8284 5 18.8856 5 17V12V7Z" stroke="%23000000" stroke-width="2" stroke-linejoin="round"/></svg>');
}

.dark .savings-calculator-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 7H15" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M15 17V14" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M15 11H15.01" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 11H12.01" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M9 11H9.01" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M9 14H9.01" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 14H12.01" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M12 17H12.01" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M9 17H9.01" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M5 7C5 5.11438 5 4.17157 5.58579 3.58579C6.17157 3 7.11438 3 9 3H12H15C16.8856 3 17.8284 3 18.4142 3.58579C19 4.17157 19 5.11438 19 7V12V17C19 18.8856 19 19.8284 18.4142 20.4142C17.8284 21 16.8856 21 15 21H12H9C7.11438 21 6.17157 21 5.58579 20.4142C5 19.8284 5 18.8856 5 17V12V7Z" stroke="%23FFFFFF" stroke-width="2" stroke-linejoin="round"/></svg>');
}

.lpg-installers-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg fill="%23000000" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg" id="car-repair"><path d="M12.6,8.7,11.5,6.5a1.05,1.05,0,0,0-.9-.5H4.4a1.05,1.05,0,0,0-.9.5L2.4,8.7,1.16,9.852a.5.5,0,0,0-.16.367V14.5a.5.5,0,0,0,.5.5h2c.2,0,.5-.2.5-.4V14h7v.5c0,.2.2.5.4.5h2.1a.5.5,0,0,0,.5-.5V10.219a.5.5,0,0,0-.16-.367ZM4.5,7h6l1,2h-8ZM5,11.6c0,.2-.3.4-.5.4H2.4c-.2,0-.4-.3-.4-.5V10.4c.1-.3.3-.5.6-.4l2,.4c.2,0,.4.3.4.5Zm8-.1c0,.2-.2.5-.4.5H10.5c-.2,0-.5-.2-.5-.4v-.7c0-.2.2-.5.4-.5l2-.4c.3-.1.5.1.6.4ZM14,2V3a1.009,1.009,0,0,1-1.017,1H5.348A2.549,2.549,0,0,1,1,3.5H3.5v-2H1A2.549,2.549,0,0,1,5.348,1h7.635A1.009,1.009,0,0,1,14,2Z"/></svg>');
}

.dark .lpg-installers-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg fill="%23FFFFFF" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg" id="car-repair"><path d="M12.6,8.7,11.5,6.5a1.05,1.05,0,0,0-.9-.5H4.4a1.05,1.05,0,0,0-.9.5L2.4,8.7,1.16,9.852a.5.5,0,0,0-.16.367V14.5a.5.5,0,0,0,.5.5h2c.2,0,.5-.2.5-.4V14h7v.5c0,.2.2.5.4.5h2.1a.5.5,0,0,0,.5-.5V10.219a.5.5,0,0,0-.16-.367ZM4.5,7h6l1,2h-8ZM5,11.6c0,.2-.3.4-.5.4H2.4c-.2,0-.4-.3-.4-.5V10.4c.1-.3.3-.5.6-.4l2,.4c.2,0,.4.3.4.5Zm8-.1c0,.2-.2.5-.4.5H10.5c-.2,0-.5-.2-.5-.4v-.7c0-.2.2-.5.4-.5l2-.4c.3-.1.5.1.6.4ZM14,2V3a1.009,1.009,0,0,1-1.017,1H5.348A2.549,2.549,0,0,1,1,3.5H3.5v-2H1A2.549,2.549,0,0,1,5.348,1h7.635A1.009,1.009,0,0,1,14,2Z"/></svg>');
}

.lpg-systems-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><svg fill="%23000000" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 485.18 485.18" xml:space="preserve"><g><g><path d="M483.94,338.09l-15.4-33.2c-2.2-4.8-7-7.8-12.2-7.8h-73.4v-19.6h36.1c7.4,0,13.5-6,13.5-13.5c0-7.4-6-13.5-13.5-13.5h-36.1v-21h73.4c5.3,0,10-3.1,12.2-7.8l15.3-33.3c3.1-6.8,0.2-14.8-6.6-17.9c-6.8-3.1-14.8-0.1-17.9,6.6l-11.7,25.5h-64.7v-22.3h36.1c7.4,0,13.5-6,13.5-13.5c0-7.4-6-13.5-13.5-13.5h-36.1v-12.1c0-21.4-17.4-38.8-38.8-38.8h-14.4v-36.3c0-7.4-6-13.5-13.5-13.5s-13.5,6-13.5,13.5v36.3h-22.3v-64.9l25.4-11.7c6.8-3.1,9.7-11.1,6.6-17.9c-3.1-6.8-11.1-9.7-17.9-6.6l-33.2,15.3c-4.8,2.2-7.8,7-7.8,12.2v73.5h-21v-36.2c0-7.4-6-13.5-13.5-13.5c-7.4,0-13.5,6-13.5,13.5v36.3h-19.6v-73.5c0-5.3-3.1-10-7.8-12.2l-33.3-15.3c-6.8-3.1-14.8-0.1-17.9,6.6c-3.1,6.8-0.2,14.8,6.6,17.9l25.4,11.7v64.9h-17.7c-19.6,0-38.1,15.5-39.1,27.8c0,0.3,0,0.7,0,1v22.1h-36.1c-7.4,0-13.5,6-13.5,13.5c0,7.4,6,13.5,13.5,13.5h36.1v22.2h-64.7l-11.7-25.4c-3.1-6.8-11.1-9.7-17.9-6.6s-9.7,11.1-6.6,17.9l15.3,33.2c2.2,4.8,7,7.8,12.2,7.8h73.4v21h-36.1c-7.4,0-13.5,6-13.5,13.5c0,7.4,6,13.5,13.5,13.5h36.1v19.6h-73.3c-5.3,0-10,3.1-12.2,7.8l-15.3,33.3c-3.1,6.8-0.2,14.8,6.6,17.9c6.8,3.1,14.8,0.1,17.9-6.6l11.7-25.4h64.7v10.2c0.5,35.9,21.4,48.6,39.1,48.6h17.7v64.9l-25.5,11.6c-6.8,3.1-9.7,11.1-6.6,17.9c3.1,6.8,11.1,9.7,17.9,6.6l33.3-15.3c4.8-2.2,7.8-7,7.8-12.2v-73.5h19.6v36.3c0,7.4,6,13.5,13.5,13.5c7.4,0,13.5-6,13.5-13.5v-36.3h21v73.5c0,5.3,3.1,10,7.8,12.2l33.3,15.3c6.8,3.1,14.8,0.1,17.9-6.6c3.1-6.8,0.2-14.8-6.6-17.9l-25.4-11.7v-64.9h22.3v36.3c0,7.4,6,13.5,13.5,13.5s13.5-6,13.5-13.5v-36.3h14.4c21.4,0,38.8-17.4,38.8-38.8v-20h64.7l11.7,25.4c3.1,6.8,11.1,9.7,17.9,6.6C484.14,352.89,487.04,344.89,483.94,338.09z M356.04,343.99h-0.1c0,6.5-5.3,11.9-11.9,11.9h-202.7c-10.7,0-12.1-15.4-12.2-21.9v-199.3c2.1-2,6.8-5.4,12.2-5.4h202.8c6.5,0,11.9,5.3,11.9,11.9V343.99z"/></g></g></svg>');
}

.dark .lpg-systems-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><svg fill="%23FFFFFF" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 485.18 485.18" xml:space="preserve"><g><g><path d="M483.94,338.09l-15.4-33.2c-2.2-4.8-7-7.8-12.2-7.8h-73.4v-19.6h36.1c7.4,0,13.5-6,13.5-13.5c0-7.4-6-13.5-13.5-13.5h-36.1v-21h73.4c5.3,0,10-3.1,12.2-7.8l15.3-33.3c3.1-6.8,0.2-14.8-6.6-17.9c-6.8-3.1-14.8-0.1-17.9,6.6l-11.7,25.5h-64.7v-22.3h36.1c7.4,0,13.5-6,13.5-13.5c0-7.4-6-13.5-13.5-13.5h-36.1v-12.1c0-21.4-17.4-38.8-38.8-38.8h-14.4v-36.3c0-7.4-6-13.5-13.5-13.5s-13.5,6-13.5,13.5v36.3h-22.3v-64.9l25.4-11.7c6.8-3.1,9.7-11.1,6.6-17.9c-3.1-6.8-11.1-9.7-17.9-6.6l-33.2,15.3c-4.8,2.2-7.8,7-7.8,12.2v73.5h-21v-36.2c0-7.4-6-13.5-13.5-13.5c-7.4,0-13.5,6-13.5,13.5v36.3h-19.6v-73.5c0-5.3-3.1-10-7.8-12.2l-33.3-15.3c-6.8-3.1-14.8-0.1-17.9,6.6c-3.1,6.8-0.2,14.8,6.6,17.9l25.4,11.7v64.9h-17.7c-19.6,0-38.1,15.5-39.1,27.8c0,0.3,0,0.7,0,1v22.1h-36.1c-7.4,0-13.5,6-13.5,13.5c0,7.4,6,13.5,13.5,13.5h36.1v22.2h-64.7l-11.7-25.4c-3.1-6.8-11.1-9.7-17.9-6.6s-9.7,11.1-6.6,17.9l15.3,33.2c2.2,4.8,7,7.8,12.2,7.8h73.4v21h-36.1c-7.4,0-13.5,6-13.5,13.5c0,7.4,6,13.5,13.5,13.5h36.1v19.6h-73.3c-5.3,0-10,3.1-12.2,7.8l-15.3,33.3c-3.1,6.8-0.2,14.8,6.6,17.9c6.8,3.1,14.8,0.1,17.9-6.6l11.7-25.4h64.7v10.2c0.5,35.9,21.4,48.6,39.1,48.6h17.7v64.9l-25.5,11.6c-6.8,3.1-9.7,11.1-6.6,17.9c3.1,6.8,11.1,9.7,17.9,6.6l33.3-15.3c4.8-2.2,7.8-7,7.8-12.2v-73.5h19.6v36.3c0,7.4,6,13.5,13.5,13.5c7.4,0,13.5-6,13.5-13.5v-36.3h21v73.5c0,5.3,3.1,10,7.8,12.2l33.3,15.3c6.8,3.1,14.8,0.1,17.9-6.6c3.1-6.8,0.2-14.8-6.6-17.9l-25.4-11.7v-64.9h22.3v36.3c0,7.4,6,13.5,13.5,13.5s13.5-6,13.5-13.5v-36.3h14.4c21.4,0,38.8-17.4,38.8-38.8v-20h64.7l11.7,25.4c3.1,6.8,11.1,9.7,17.9,6.6C484.14,352.89,487.04,344.89,483.94,338.09z M356.04,343.99h-0.1c0,6.5-5.3,11.9-11.9,11.9h-202.7c-10.7,0-12.1-15.4-12.2-21.9v-199.3c2.1-2,6.8-5.4,12.2-5.4h202.8c6.5,0,11.9,5.3,11.9,11.9V343.99z"/></g></g></svg>');
}

.info-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><svg fill="%23000000" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512.009 512.009" xml:space="preserve"><g><g><g><path d="M256.004,192.004c11.776,0,21.333-9.557,21.333-21.333s-9.557-21.333-21.333-21.333c-11.776,0-21.333,9.557-21.333,21.333S244.228,192.004,256.004,192.004z"/><path d="M437.024,74.984c-8.331-8.331-21.839-8.331-30.17,0s-8.331,21.839,0,30.17c83.317,83.317,83.317,218.394,0.002,301.69c-8.332,8.33-8.334,21.838-0.003,30.17c8.33,8.332,21.838,8.334,30.17,0.003C537.004,337.059,537.004,174.964,437.024,74.984z"/><path d="M105.153,105.165c8.332-8.33,8.334-21.838,0.003-30.17c-8.33-8.332-21.838-8.334-30.17-0.004c-99.981,99.958-99.981,262.054-0.002,362.033c8.331,8.331,21.839,8.331,30.17,0c8.331-8.331,8.331-21.839,0-30.17C21.838,323.538,21.838,188.46,105.153,105.165z"/><path d="M256.004,85.338c-94.257,0-170.667,76.41-170.667,170.667s76.41,170.667,170.667,170.667s170.667-76.41,170.667-170.667S350.261,85.338,256.004,85.338z M256.004,384.004c-70.693,0-128-57.307-128-128s57.307-128,128-128s128,57.307,128,128S326.697,384.004,256.004,384.004z"/><path d="M277.338,298.671v-64c0-11.782-9.551-21.333-21.333-21.333h-21.333c-11.782,0-21.333,9.551-21.333,21.333c0,11.782,9.551,21.333,21.333,21.333v42.667c-11.782,0-21.333,9.551-21.333,21.333s9.551,21.333,21.333,21.333h42.667c11.782,0,21.333-9.551,21.333-21.333S289.12,298.671,277.338,298.671z"/></g></g></g></svg>');
}

.dark .info-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><svg fill="%23FFFFFF" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512.009 512.009" xml:space="preserve"><g><g><g><path d="M256.004,192.004c11.776,0,21.333-9.557,21.333-21.333s-9.557-21.333-21.333-21.333c-11.776,0-21.333,9.557-21.333,21.333S244.228,192.004,256.004,192.004z"/><path d="M437.024,74.984c-8.331-8.331-21.839-8.331-30.17,0s-8.331,21.839,0,30.17c83.317,83.317,83.317,218.394,0.002,301.69c-8.332,8.33-8.334,21.838-0.003,30.17c8.33,8.332,21.838,8.334,30.17,0.003C537.004,337.059,537.004,174.964,437.024,74.984z"/><path d="M105.153,105.165c8.332-8.33,8.334-21.838,0.003-30.17c-8.33-8.332-21.838-8.334-30.17-0.004c-99.981,99.958-99.981,262.054-0.002,362.033c8.331,8.331,21.839,8.331,30.17,0c8.331-8.331,8.331-21.839,0-30.17C21.838,323.538,21.838,188.46,105.153,105.165z"/><path d="M256.004,85.338c-94.257,0-170.667,76.41-170.667,170.667s76.41,170.667,170.667,170.667s170.667-76.41,170.667-170.667S350.261,85.338,256.004,85.338z M256.004,384.004c-70.693,0-128-57.307-128-128s57.307-128,128-128s128,57.307,128,128S326.697,384.004,256.004,384.004z"/><path d="M277.338,298.671v-64c0-11.782-9.551-21.333-21.333-21.333h-21.333c-11.782,0-21.333,9.551-21.333,21.333c0,11.782,9.551,21.333,21.333,21.333v42.667c-11.782,0-21.333,9.551-21.333,21.333s9.551,21.333,21.333,21.333h42.667c11.782,0,21.333-9.551,21.333-21.333S289.12,298.671,277.338,298.671z"/></g></g></g></svg>');
}

.current-location-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 8.25C9.92893 8.25 8.25 9.92893 8.25 12C8.25 14.0711 9.92893 15.75 12 15.75C14.0711 15.75 15.75 14.0711 15.75 12C15.75 9.92893 14.0711 8.25 12 8.25Z" fill="%23000000"/><path fill-rule="evenodd" clip-rule="evenodd" d="M12 1.25C12.4142 1.25 12.75 1.58579 12.75 2V3.28169C16.9842 3.64113 20.3589 7.01581 20.7183 11.25H22C22.4142 11.25 22.75 11.5858 22.75 12C22.75 12.4142 22.4142 12.75 22 12.75H20.7183C20.3589 16.9842 16.9842 20.3589 12.75 20.7183V22C12.75 22.4142 12.4142 22.75 12 22.75C11.5858 22.75 11.25 22.4142 11.25 22V20.7183C7.01581 20.3589 3.64113 16.9842 3.28169 12.75H2C1.58579 12.75 1.25 12.4142 1.25 12C1.25 11.5858 1.58579 11.25 2 11.25H3.28169C3.64113 7.01581 7.01581 3.64113 11.25 3.28169V2C11.25 1.58579 11.5858 1.25 12 1.25ZM4.75 12C4.75 16.0041 7.99594 19.25 12 19.25C16.0041 19.25 19.25 16.0041 19.25 12C19.25 7.99594 16.0041 4.75 12 4.75C7.99594 4.75 4.75 7.99594 4.75 12Z" fill="%23000000"/></svg>');
}

.dark .current-location-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 8.25C9.92893 8.25 8.25 9.92893 8.25 12C8.25 14.0711 9.92893 15.75 12 15.75C14.0711 15.75 15.75 14.0711 15.75 12C15.75 9.92893 14.0711 8.25 12 8.25Z" fill="%23FFFFFF"/><path fill-rule="evenodd" clip-rule="evenodd" d="M12 1.25C12.4142 1.25 12.75 1.58579 12.75 2V3.28169C16.9842 3.64113 20.3589 7.01581 20.7183 11.25H22C22.4142 11.25 22.75 11.5858 22.75 12C22.75 12.4142 22.4142 12.75 22 12.75H20.7183C20.3589 16.9842 16.9842 20.3589 12.75 20.7183V22C12.75 22.4142 12.4142 22.75 12 22.75C11.5858 22.75 11.25 22.4142 11.25 22V20.7183C7.01581 20.3589 3.64113 16.9842 3.28169 12.75H2C1.58579 12.75 1.25 12.4142 1.25 12C1.25 11.5858 1.58579 11.25 2 11.25H3.28169C3.64113 7.01581 7.01581 3.64113 11.25 3.28169V2C11.25 1.58579 11.5858 1.25 12 1.25ZM4.75 12C4.75 16.0041 7.99594 19.25 12 19.25C16.0041 19.25 19.25 16.0041 19.25 12C19.25 7.99594 16.0041 4.75 12 4.75C7.99594 4.75 4.75 7.99594 4.75 12Z" fill="%23FFFFFF"/></svg>');
}

.mobile-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg fill="%23000000" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg"><title>mobile-button</title><path d="M22 0.75h-12c-1.794 0.002-3.248 1.456-3.25 3.25v24c0.002 1.794 1.456 3.248 3.25 3.25h12c1.794-0.001 3.249-1.456 3.25-3.25v-24c-0.002-1.794-1.456-3.248-3.25-3.25h-0zM22.75 28c-0 0.414-0.336 0.75-0.75 0.75h-12c-0.414-0-0.75-0.336-0.75-0.75v-24c0.001-0.414 0.336-0.749 0.75-0.75h12c0.414 0 0.75 0.336 0.75 0.75v0zM14.939 24.959c-0.271 0.264-0.439 0.633-0.439 1.040 0 0 0 0 0 0.001v-0c0 0.002 0 0.003 0 0.005 0 0.208 0.044 0.406 0.124 0.584l-0.004-0.009c0.072 0.189 0.181 0.35 0.319 0.48l0.001 0.001c0.26 0.271 0.625 0.44 1.029 0.44 0.011 0 0.022-0 0.033-0l-0.002 0c0.209-0.003 0.407-0.039 0.593-0.104l-0.013 0.004c0.186-0.088 0.345-0.202 0.479-0.34l0-0c0.139-0.131 0.248-0.292 0.317-0.472l0.003-0.009c0.076-0.169 0.12-0.367 0.12-0.575 0-0.002 0-0.004 0-0.005v0c-0-0.408-0.169-0.777-0.44-1.041l-0-0c-0.274-0.264-0.648-0.427-1.060-0.427s-0.786 0.163-1.061 0.427l0-0z"></path></svg>');
}

.dark .mobile-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg fill="%23FFFFFF" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg"><title>mobile-button</title><path d="M22 0.75h-12c-1.794 0.002-3.248 1.456-3.25 3.25v24c0.002 1.794 1.456 3.248 3.25 3.25h12c1.794-0.001 3.249-1.456 3.25-3.25v-24c-0.002-1.794-1.456-3.248-3.25-3.25h-0zM22.75 28c-0 0.414-0.336 0.75-0.75 0.75h-12c-0.414-0-0.75-0.336-0.75-0.75v-24c0.001-0.414 0.336-0.749 0.75-0.75h12c0.414 0 0.75 0.336 0.75 0.75v0zM14.939 24.959c-0.271 0.264-0.439 0.633-0.439 1.040 0 0 0 0 0 0.001v-0c0 0.002 0 0.003 0 0.005 0 0.208 0.044 0.406 0.124 0.584l-0.004-0.009c0.072 0.189 0.181 0.35 0.319 0.48l0.001 0.001c0.26 0.271 0.625 0.44 1.029 0.44 0.011 0 0.022-0 0.033-0l-0.002 0c0.209-0.003 0.407-0.039 0.593-0.104l-0.013 0.004c0.186-0.088 0.345-0.202 0.479-0.34l0-0c0.139-0.131 0.248-0.292 0.317-0.472l0.003-0.009c0.076-0.169 0.12-0.367 0.12-0.575 0-0.002 0-0.004 0-0.005v0c-0-0.408-0.169-0.777-0.44-1.041l-0-0c-0.274-0.264-0.648-0.427-1.060-0.427s-0.786 0.163-1.061 0.427l0-0z"></path></svg>');
}

.faq-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg fill="%23000000" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M4,23H20a1,1,0,0,0,1-1V6a1,1,0,0,0-.293-.707l-4-4A1,1,0,0,0,16,1H4A1,1,0,0,0,3,2V22A1,1,0,0,0,4,23ZM5,3H15.586L19,6.414V21H5Zm8,13v1a1,1,0,0,1-2,0V16a1,1,0,0,1,2,0Zm1.954-7.429a3.142,3.142,0,0,1-1.789,3.421.4.4,0,0,0-.165.359V13a1,1,0,0,1-2,0v-.649a2.359,2.359,0,0,1,1.363-2.191A1.145,1.145,0,0,0,12.981,8.9a1.069,1.069,0,0,0-.8-.88.917.917,0,0,0-.775.2,1.155,1.155,0,0,0-.4.9,1,1,0,1,1-2,0,3.151,3.151,0,0,1,1.127-2.436,2.946,2.946,0,0,1,2.418-.632A3.085,3.085,0,0,1,14.954,8.571Z"/></svg>');
}

.dark .faq-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg fill="%23FFFFFF" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M4,23H20a1,1,0,0,0,1-1V6a1,1,0,0,0-.293-.707l-4-4A1,1,0,0,0,16,1H4A1,1,0,0,0,3,2V22A1,1,0,0,0,4,23ZM5,3H15.586L19,6.414V21H5Zm8,13v1a1,1,0,0,1-2,0V16a1,1,0,0,1,2,0Zm1.954-7.429a3.142,3.142,0,0,1-1.789,3.421.4.4,0,0,0-.165.359V13a1,1,0,0,1-2,0v-.649a2.359,2.359,0,0,1,1.363-2.191A1.145,1.145,0,0,0,12.981,8.9a1.069,1.069,0,0,0-.8-.88.917.917,0,0,0-.775.2,1.155,1.155,0,0,0-.4.9,1,1,0,1,1-2,0,3.151,3.151,0,0,1,1.127-2.436,2.946,2.946,0,0,1,2.418-.632A3.085,3.085,0,0,1,14.954,8.571Z"/></svg>');
}

.contact-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>contact-details</title><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="icon" fill="%23000000" transform="translate(42.666667, 85.333333)"><path d="M426.666667,1.42108547e-14 L426.666667,341.333333 L3.55271368e-14,341.333333 L3.55271368e-14,1.42108547e-14 L426.666667,1.42108547e-14 Z M384,42.6666667 L42.6666667,42.6666667 L42.6666667,298.666667 L384,298.666667 L384,42.6666667 Z M341.333333,213.333333 L341.333333,245.333333 L234.666667,245.333333 L234.666667,213.333333 L341.333333,213.333333 Z M146.666667,155.733333 C177.493333,155.733333 202.666667,181.333333 202.666667,213.333333 L74.6666667,213.333333 C74.6666667,181.333333 99.7387207,155.733333 130.666667,155.733333 L146.666667,155.733333 Z M341.333333,149.333333 L341.333333,181.333333 L234.666667,181.333333 L234.666667,149.333333 L341.333333,149.333333 Z M138.666667,78.62624 C154.13064,78.62624 166.666667,91.162267 166.666667,106.62624 C166.666667,122.090213 154.13064,134.62624 138.666667,134.62624 C123.202694,134.62624 110.666667,122.090213 110.666667,106.62624 C110.666667,91.162267 123.202694,78.62624 138.666667,78.62624 Z M341.333333,85.3333333 L341.333333,117.333333 L234.666667,117.333333 L234.666667,85.3333333 L341.333333,85.3333333 Z" id="Combined-Shape"></path></g></g></svg>');
}

.dark .contact-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>contact-details</title><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="icon" fill="%23FFFFFF" transform="translate(42.666667, 85.333333)"><path d="M426.666667,1.42108547e-14 L426.666667,341.333333 L3.55271368e-14,341.333333 L3.55271368e-14,1.42108547e-14 L426.666667,1.42108547e-14 Z M384,42.6666667 L42.6666667,42.6666667 L42.6666667,298.666667 L384,298.666667 L384,42.6666667 Z M341.333333,213.333333 L341.333333,245.333333 L234.666667,245.333333 L234.666667,213.333333 L341.333333,213.333333 Z M146.666667,155.733333 C177.493333,155.733333 202.666667,181.333333 202.666667,213.333333 L74.6666667,213.333333 C74.6666667,181.333333 99.7387207,155.733333 130.666667,155.733333 L146.666667,155.733333 Z M341.333333,149.333333 L341.333333,181.333333 L234.666667,181.333333 L234.666667,149.333333 L341.333333,149.333333 Z M138.666667,78.62624 C154.13064,78.62624 166.666667,91.162267 166.666667,106.62624 C166.666667,122.090213 154.13064,134.62624 138.666667,134.62624 C123.202694,134.62624 110.666667,122.090213 110.666667,106.62624 C110.666667,91.162267 123.202694,78.62624 138.666667,78.62624 Z M341.333333,85.3333333 L341.333333,117.333333 L234.666667,117.333333 L234.666667,85.3333333 L341.333333,85.3333333 Z" id="Combined-Shape"></path></g></g></svg>');
}

.legal-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>legal</title><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="terms-and-conditions" fill="%23000000" transform="translate(156.212018, 42.729167)"><path d="M199.433814,233.916666 C199.092669,228.533854 198.147357,223.357421 196.668677,218.358153 C195.189998,213.358884 193.177955,208.536783 190.703346,203.862628 C188.228737,199.188474 185.291562,194.66227 181.962623,190.254799 C178.633684,185.847328 174.91298,181.558592 170.871314,177.359373 C166.829648,173.160154 162.467018,169.050453 157.854224,165.001056 C153.24143,160.951659 148.378476,156.962562 143.336157,153.004555 C138.293838,149.046547 133.072159,145.119627 127.741919,141.194577 C122.411679,137.269527 116.972878,133.346353 111.496315,129.395834 C110.660376,128.791667 109.822486,128.186197 108.982072,127.578735 C108.141659,126.971273 107.298723,126.361815 106.452694,125.749675 C105.606666,125.137534 104.757546,124.522705 103.90476,123.904501 C103.051975,123.286298 102.195532,122.664715 101.334855,122.039063 C100.474179,121.413412 99.6092703,120.783693 98.7395594,120.149212 C97.8698485,119.514731 96.9953375,118.87549 96.1154549,118.230795 C95.2355722,117.586099 94.3503178,116.935955 93.4591242,116.279663 C92.5679306,115.623371 91.6707935,114.960937 90.7671477,114.291667 C87.5952735,112.046876 84.7075765,109.756836 82.0906741,107.443117 C79.4737717,105.129397 77.1276618,102.791994 75.0389578,100.452476 C72.9502538,98.1129579 71.1189535,95.7713237 69.5316746,93.4491392 C67.9443957,91.1269547 66.6011317,88.8242197 65.4885023,86.5625024 C64.375873,84.3007851 63.4938741,82.0800811 62.8291189,79.9219584 C62.1643637,77.7638357 61.7168565,75.6682944 61.4732042,73.6569003 C61.2295519,71.6455061 61.1897567,69.7182613 61.3404319,67.8967275 C61.4911071,66.0751936 61.8322527,64.3593749 62.3504821,62.7708331 C62.8765237,61.1562496 63.5763935,59.630208 64.4439071,58.1959232 C65.3114207,56.7616384 66.3465759,55.4191083 67.5431903,54.1715499 C68.7398047,52.9239915 70.0978783,51.7714027 71.6112245,50.7170005 C73.1245706,49.6625984 74.7931914,48.7063808 76.6108981,47.8515627 C78.4286047,46.9967445 80.3954037,46.243328 82.5051039,45.5945237 C84.6148042,44.9457195 86.8674079,44.4015296 89.2567306,43.9651691 C91.6460533,43.5288085 94.1720949,43.2002773 96.8286709,42.9827883 C99.4852469,42.7652992 102.272355,42.6588544 105.183813,42.6666667 C110.181208,42.8307285 114.561091,43.5016277 118.399756,44.5507413 C122.23842,45.5998549 125.535864,47.0271808 128.368383,48.7041024 C131.200901,50.381024 133.568496,52.3075371 135.547459,54.3550229 C137.526422,56.4025088 139.116754,58.5709653 140.394749,60.7317717 C141.672743,62.8925781 142.638401,65.0457365 143.368016,67.062624 C144.097631,69.0795115 144.591201,70.9601259 144.925023,72.5758485 C145.258845,74.1915712 145.432916,75.5424021 145.523534,76.4997184 C145.614151,77.4570347 145.621313,78.0208363 145.621313,78.0625024 L188.28798,78.0625024 C188.28798,74.4192725 187.9413,70.4977237 187.217627,66.420576 C186.493953,62.3434283 185.393285,58.1106795 183.885311,53.845056 C182.377336,49.5794325 180.462053,45.280928 178.109147,41.0722688 C175.75624,36.8636096 172.965714,32.7447957 169.70725,28.8385451 C166.448786,24.9322944 162.722386,21.2386112 158.497738,17.8802112 C154.273089,14.5218112 149.550188,11.4987008 144.298723,8.93359573 C139.047259,6.36849067 133.267229,4.2613952 126.928321,2.7350272 C120.589413,1.2086592 113.691628,0.263022933 106.204647,0.0208341333 C106.113501,0.0208341333 106.022356,0.0205077333 105.93125,0.0199381333 C105.840144,0.0193685333 105.74908,0.0185557333 105.658098,0.0175786667 C105.567116,0.0166016 105.476214,0.0154624 105.385435,0.0142421333 C105.294655,0.0130218667 105.203997,0.0117184 105.113503,0.0104170667 C105.023009,0.00911573333 104.932675,0.00781226667 104.842548,0.006592 C104.752421,0.00537173333 104.662495,-2.13162821e-14 104.572814,-2.13162821e-14 C104.483133,-2.13162821e-14 104.393697,-2.13162821e-14 104.304545,-2.13162821e-14 C104.215393,-2.13162821e-14 104.126525,-2.13162821e-14 104.037985,-2.13162821e-14 C98.8609013,-2.13162821e-14 93.8517877,0.287761067 89.0296842,0.852132267 C84.2075807,1.41650347 79.5724895,2.25748693 75.1434527,3.36393173 C70.7144159,4.47037653 66.4914335,5.8422848 62.4935498,7.4685056 C58.4956661,9.0947264 54.7228767,10.9752597 51.1942325,13.0989589 C47.6655882,15.2226581 44.3810805,17.5895189 41.3597599,20.1883968 C38.3384394,22.7872747 35.5802997,25.6181632 33.1043871,28.6699221 C30.6284746,31.7216811 28.4347914,34.994304 26.5423754,38.4766443 C24.6499594,41.9589845 23.0588149,45.6510421 21.7879818,49.5416661 C20.8861258,52.3072917 20.1789322,55.1086421 19.6610293,57.9359744 C19.1431455,60.763296 18.8145525,63.6165973 18.6698997,66.4861248 C18.5252469,69.3556523 18.5645322,72.2414037 18.7824074,75.1336256 C19.0002613,78.0258581 19.396705,80.9245589 19.9663669,83.8199872 C20.5360287,86.7154155 21.2789066,89.6075648 22.189633,92.4866944 C23.1003786,95.3658133 24.1789727,98.2319125 25.4200607,101.075236 C26.6611487,103.91856 28.0647349,106.739104 29.6254645,109.527119 C31.1861749,112.315145 32.9040287,115.070637 34.7736586,117.783853 C31.6776309,121.00944 28.7899551,124.21578 26.1099829,127.405069 C23.4300319,130.594359 20.957761,133.766579 18.6925642,136.923949 C16.4273674,140.081318 14.3692298,143.223836 12.5175157,146.353658 C10.6657887,149.483501 9.02048528,152.600668 7.58095034,155.707356 C6.14141541,158.814044 4.90765114,161.910257 3.87900474,164.998189 C2.85036901,168.086099 2.02685328,171.165751 1.40781328,174.239298 C0.788773277,177.312845 0.374213277,180.38029 0.16348901,183.443846 C-0.047245923,186.507405 -0.0541429897,189.567057 0.142147144,192.624998 C0.483292744,198.00781 1.42860474,203.184243 2.90728421,208.183511 C4.38596368,213.18278 6.39800634,218.004881 8.87261541,222.679036 C11.3472245,227.35319 14.2843999,231.879394 17.6133386,236.286865 C20.9422773,240.694336 24.6629813,244.983072 28.7046474,249.182291 C32.7463135,253.38151 37.1089439,257.491211 41.7217375,261.540608 C46.3345311,265.590005 51.1974858,269.579102 56.2398047,273.537109 C61.2821237,277.495117 66.5038026,281.422037 71.8340426,285.347087 C77.1642826,289.272137 82.6030858,293.195313 88.079649,297.145835 C88.9155871,297.750001 89.7534773,298.355471 90.5938911,298.962933 C91.434305,299.570396 92.2772405,300.179853 93.1232693,300.791994 C93.9692981,301.404134 94.8184181,302.018963 95.6712031,302.637167 C96.5239882,303.255371 97.3804319,303.876954 98.2411082,304.502605 C99.1017845,305.128256 99.9666933,305.757975 100.836404,306.392457 C101.706115,307.026938 102.580626,307.666178 103.460509,308.310874 C104.340391,308.955569 105.225646,309.605713 106.116839,310.262005 C107.008033,310.918298 107.90517,311.580732 108.808816,312.250001 C111.98069,314.494793 114.868387,316.784832 117.48529,319.098551 C120.102192,321.412271 122.448302,323.749675 124.537006,326.089193 C126.62571,328.42871 128.45701,330.770345 130.044289,333.092529 C131.631568,335.414714 132.974832,337.717449 134.087461,339.979166 C135.200091,342.240883 136.08209,344.461587 136.746845,346.61971 C137.4116,348.777833 137.859109,350.873372 138.102762,352.884766 C138.346414,354.89616 138.386209,356.823405 138.235534,358.644939 C138.084859,360.466473 137.743713,362.182291 137.225484,363.770833 C136.699442,365.385417 135.997944,366.914063 135.127788,368.35258 C134.257631,369.791098 133.218811,371.139486 132.018128,372.393555 C130.817445,373.647625 129.454896,374.807373 127.937277,375.868612 C126.419658,376.929852 124.746968,377.892578 122.926006,378.752604 C121.105044,379.612629 119.135805,380.369954 117.025087,381.020386 C114.914369,381.670818 112.662173,382.214355 110.275291,382.64681 C107.888408,383.079264 105.366843,383.400634 102.717388,383.606731 C100.067933,383.812828 97.2905887,383.903646 94.3921525,383.874999 C89.3973599,383.710938 85.0197557,383.040038 81.1830858,381.990925 C77.3464159,380.941811 74.0506805,379.514485 71.2196255,377.837564 C68.3885706,376.160642 66.0221962,374.234129 64.0442506,372.186643 C62.066305,370.139157 60.4767861,367.970701 59.1994421,365.809894 C57.9220981,363.649088 56.956929,361.49593 56.227681,359.479042 C55.498433,357.462155 55.0051061,355.58154 54.6714463,353.965818 C54.3377866,352.350095 54.1637962,350.999264 54.0732213,350.041948 C53.9826463,349.084631 53.9754826,348.52083 53.9754826,348.479164 L11.3088159,348.479164 C11.3088159,352.122394 11.6554954,356.043942 12.3791285,360.12109 C13.1027615,364.198238 14.2033482,368.430987 15.7111605,372.69661 C17.2189727,376.962234 19.1340127,381.260738 21.4865503,385.469397 C23.8390879,389.678057 26.6291274,393.79687 29.8869407,397.703121 C33.1447541,401.609372 36.8703391,405.303055 41.0939722,408.661455 C45.3176053,412.019855 50.0392842,415.042965 55.2892853,417.60807 C60.5392863,420.173175 66.3176053,422.280271 72.6545205,423.806639 C78.9914357,425.333007 85.8869429,426.278643 93.3713183,426.520832 C93.462465,426.520832 93.5536095,426.521158 93.6447157,426.521728 C93.7358218,426.522298 93.8268853,426.52311 93.9178677,426.524087 C94.0088501,426.525065 94.0997514,426.526204 94.1905311,426.527424 C94.2813109,426.528644 94.371969,426.529948 94.4624629,426.531249 C94.5529567,426.53255 94.6432906,426.533854 94.7334175,426.535074 C94.8235445,426.536294 94.9134709,426.541666 95.0031519,426.541666 C95.092833,426.541666 95.1822687,426.541666 95.2714207,426.541666 C95.3605727,426.541666 95.449441,426.541666 95.5379807,426.541666 C100.715064,426.541666 105.724178,426.253905 110.546282,425.689534 C115.368385,425.125163 120.003476,424.284179 124.432513,423.177734 C128.86155,422.07129 133.084532,420.699381 137.082416,419.073161 C141.0803,417.44694 144.853087,415.566406 148.381733,413.442707 C151.91038,411.319008 155.194885,408.952147 158.216206,406.353269 C161.237526,403.754391 163.995666,400.923501 166.471576,397.871742 C168.947487,394.819983 171.141172,391.54736 173.033588,388.06502 C174.926004,384.582679 176.517149,380.890622 177.787982,377 C178.689838,374.234372 179.397031,371.433022 179.914934,368.605711 C180.432818,365.778359 180.761411,362.925047 180.906064,360.055539 C181.050717,357.186031 181.011431,354.30025 180.793556,351.408038 C180.575702,348.515787 180.179259,345.617105 179.609597,342.721677 C179.039935,339.826249 178.297057,336.93408 177.386331,334.05497 C176.475585,331.175859 175.396991,328.30973 174.155903,325.466428 C172.914815,322.623125 171.511229,319.802569 169.950499,317.014524 C168.389789,314.226519 166.671935,311.471025 164.802305,308.757809 C167.898333,305.532224 170.786008,302.325884 173.465981,299.136593 C176.145932,295.947302 178.618203,292.775083 180.883399,289.617713 C183.148596,286.460343 185.206723,283.317826 187.058448,280.188004 C188.910173,277.058163 190.555478,273.940994 191.995011,270.834306 C193.434544,267.727618 194.66831,264.631405 195.696957,261.543473 C196.725603,258.455563 197.54913,255.37591 198.168148,252.302364 C198.787167,249.228817 199.201759,246.161372 199.412492,243.097815 C199.623186,240.034261 199.630104,236.974609 199.433814,233.916666 Z M113.037983,262.541666 C104.183815,256.15625 95.4533471,249.858071 87.3150005,243.644205 C79.1766538,237.430338 71.6304309,231.300781 65.1447541,225.252604 C58.6590773,219.204427 53.2339466,213.23763 49.3377887,207.349284 C45.4416309,201.460939 43.0744415,195.651042 42.7046517,189.916668 C42.5220341,187.017579 42.8727839,183.962891 43.7390965,180.761312 C44.605409,177.559733 45.9872863,174.211264 47.8669237,170.72461 C49.746561,167.237956 52.1239605,163.613118 54.9813215,159.858805 C57.8386826,156.104493 61.1760031,152.220704 64.9754826,148.216145 C65.043841,148.264973 65.1089461,148.315755 65.1724639,148.367511 C65.2359818,148.419268 65.2979125,148.472004 65.3599242,148.524738 C65.4219359,148.577472 65.4840287,148.630206 65.5478709,148.681965 C65.611713,148.733724 65.6773066,148.784503 65.7463157,148.833331 C67.4858997,150.130206 69.226785,151.416666 70.9666933,152.694334 C72.7066015,153.972002 74.4455349,155.240883 76.1812106,156.502603 C77.9168863,157.764322 79.6493087,159.018878 81.3761973,160.267902 C83.1030858,161.516926 84.8244405,162.760414 86.5379807,163.999998 C95.3921482,170.385414 104.122616,176.683593 112.260963,182.897459 C120.39931,189.111326 127.945533,195.240883 134.43121,201.28906 C140.916886,207.337237 146.342017,213.304034 150.238175,219.19238 C154.134333,225.080725 156.501522,230.890622 156.871312,236.624996 C157.05393,239.524085 156.70318,242.578773 155.836867,245.780352 C154.970555,248.981931 153.588677,252.3304 151.70904,255.817054 C149.829403,259.303708 147.452001,262.928544 144.59464,266.682859 C141.737279,270.437173 138.399958,274.32096 134.600479,278.325519 C134.53212,278.276691 134.467015,278.225909 134.403498,278.174153 C134.33998,278.122396 134.278049,278.06966 134.216037,278.016926 C134.154026,277.964192 134.091933,277.911458 134.028091,277.859699 C133.964248,277.80794 133.898655,277.757161 133.829646,277.708333 C132.090062,276.411458 130.349176,275.124998 128.609268,273.84733 C126.86936,272.569662 125.130427,271.300781 123.394751,270.039061 C121.659075,268.777342 119.926653,267.522786 118.199764,266.273762 C116.472876,265.024738 114.751523,263.78125 113.037983,262.541666 Z"></path></g></g></svg>');
}

.dark .legal-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="UTF-8"%3F><svg viewBox="0 0 512 512" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>legal</title><g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"><g id="terms-and-conditions" fill="%23FFFFFF" transform="translate(156.212018, 42.729167)"><path d="M199.433814,233.916666 C199.092669,228.533854 198.147357,223.357421 196.668677,218.358153 C195.189998,213.358884 193.177955,208.536783 190.703346,203.862628 C188.228737,199.188474 185.291562,194.66227 181.962623,190.254799 C178.633684,185.847328 174.91298,181.558592 170.871314,177.359373 C166.829648,173.160154 162.467018,169.050453 157.854224,165.001056 C153.24143,160.951659 148.378476,156.962562 143.336157,153.004555 C138.293838,149.046547 133.072159,145.119627 127.741919,141.194577 C122.411679,137.269527 116.972878,133.346353 111.496315,129.395834 C110.660376,128.791667 109.822486,128.186197 108.982072,127.578735 C108.141659,126.971273 107.298723,126.361815 106.452694,125.749675 C105.606666,125.137534 104.757546,124.522705 103.90476,123.904501 C103.051975,123.286298 102.195532,122.664715 101.334855,122.039063 C100.474179,121.413412 99.6092703,120.783693 98.7395594,120.149212 C97.8698485,119.514731 96.9953375,118.87549 96.1154549,118.230795 C95.2355722,117.586099 94.3503178,116.935955 93.4591242,116.279663 C92.5679306,115.623371 91.6707935,114.960937 90.7671477,114.291667 C87.5952735,112.046876 84.7075765,109.756836 82.0906741,107.443117 C79.4737717,105.129397 77.1276618,102.791994 75.0389578,100.452476 C72.9502538,98.1129579 71.1189535,95.7713237 69.5316746,93.4491392 C67.9443957,91.1269547 66.6011317,88.8242197 65.4885023,86.5625024 C64.375873,84.3007851 63.4938741,82.0800811 62.8291189,79.9219584 C62.1643637,77.7638357 61.7168565,75.6682944 61.4732042,73.6569003 C61.2295519,71.6455061 61.1897567,69.7182613 61.3404319,67.8967275 C61.4911071,66.0751936 61.8322527,64.3593749 62.3504821,62.7708331 C62.8765237,61.1562496 63.5763935,59.630208 64.4439071,58.1959232 C65.3114207,56.7616384 66.3465759,55.4191083 67.5431903,54.1715499 C68.7398047,52.9239915 70.0978783,51.7714027 71.6112245,50.7170005 C73.1245706,49.6625984 74.7931914,48.7063808 76.6108981,47.8515627 C78.4286047,46.9967445 80.3954037,46.243328 82.5051039,45.5945237 C84.6148042,44.9457195 86.8674079,44.4015296 89.2567306,43.9651691 C91.6460533,43.5288085 94.1720949,43.2002773 96.8286709,42.9827883 C99.4852469,42.7652992 102.272355,42.6588544 105.183813,42.6666667 C110.181208,42.8307285 114.561091,43.5016277 118.399756,44.5507413 C122.23842,45.5998549 125.535864,47.0271808 128.368383,48.7041024 C131.200901,50.381024 133.568496,52.3075371 135.547459,54.3550229 C137.526422,56.4025088 139.116754,58.5709653 140.394749,60.7317717 C141.672743,62.8925781 142.638401,65.0457365 143.368016,67.062624 C144.097631,69.0795115 144.591201,70.9601259 144.925023,72.5758485 C145.258845,74.1915712 145.432916,75.5424021 145.523534,76.4997184 C145.614151,77.4570347 145.621313,78.0208363 145.621313,78.0625024 L188.28798,78.0625024 C188.28798,74.4192725 187.9413,70.4977237 187.217627,66.420576 C186.493953,62.3434283 185.393285,58.1106795 183.885311,53.845056 C182.377336,49.5794325 180.462053,45.280928 178.109147,41.0722688 C175.75624,36.8636096 172.965714,32.7447957 169.70725,28.8385451 C166.448786,24.9322944 162.722386,21.2386112 158.497738,17.8802112 C154.273089,14.5218112 149.550188,11.4987008 144.298723,8.93359573 C139.047259,6.36849067 133.267229,4.2613952 126.928321,2.7350272 C120.589413,1.2086592 113.691628,0.263022933 106.204647,0.0208341333 C106.113501,0.0208341333 106.022356,0.0205077333 105.93125,0.0199381333 C105.840144,0.0193685333 105.74908,0.0185557333 105.658098,0.0175786667 C105.567116,0.0166016 105.476214,0.0154624 105.385435,0.0142421333 C105.294655,0.0130218667 105.203997,0.0117184 105.113503,0.0104170667 C105.023009,0.00911573333 104.932675,0.00781226667 104.842548,0.006592 C104.752421,0.00537173333 104.662495,-2.13162821e-14 104.572814,-2.13162821e-14 C104.483133,-2.13162821e-14 104.393697,-2.13162821e-14 104.304545,-2.13162821e-14 C104.215393,-2.13162821e-14 104.126525,-2.13162821e-14 104.037985,-2.13162821e-14 C98.8609013,-2.13162821e-14 93.8517877,0.287761067 89.0296842,0.852132267 C84.2075807,1.41650347 79.5724895,2.25748693 75.1434527,3.36393173 C70.7144159,4.47037653 66.4914335,5.8422848 62.4935498,7.4685056 C58.4956661,9.0947264 54.7228767,10.9752597 51.1942325,13.0989589 C47.6655882,15.2226581 44.3810805,17.5895189 41.3597599,20.1883968 C38.3384394,22.7872747 35.5802997,25.6181632 33.1043871,28.6699221 C30.6284746,31.7216811 28.4347914,34.994304 26.5423754,38.4766443 C24.6499594,41.9589845 23.0588149,45.6510421 21.7879818,49.5416661 C20.8861258,52.3072917 20.1789322,55.1086421 19.6610293,57.9359744 C19.1431455,60.763296 18.8145525,63.6165973 18.6698997,66.4861248 C18.5252469,69.3556523 18.5645322,72.2414037 18.7824074,75.1336256 C19.0002613,78.0258581 19.396705,80.9245589 19.9663669,83.8199872 C20.5360287,86.7154155 21.2789066,89.6075648 22.189633,92.4866944 C23.1003786,95.3658133 24.1789727,98.2319125 25.4200607,101.075236 C26.6611487,103.91856 28.0647349,106.739104 29.6254645,109.527119 C31.1861749,112.315145 32.9040287,115.070637 34.7736586,117.783853 C31.6776309,121.00944 28.7899551,124.21578 26.1099829,127.405069 C23.4300319,130.594359 20.957761,133.766579 18.6925642,136.923949 C16.4273674,140.081318 14.3692298,143.223836 12.5175157,146.353658 C10.6657887,149.483501 9.02048528,152.600668 7.58095034,155.707356 C6.14141541,158.814044 4.90765114,161.910257 3.87900474,164.998189 C2.85036901,168.086099 2.02685328,171.165751 1.40781328,174.239298 C0.788773277,177.312845 0.374213277,180.38029 0.16348901,183.443846 C-0.047245923,186.507405 -0.0541429897,189.567057 0.142147144,192.624998 C0.483292744,198.00781 1.42860474,203.184243 2.90728421,208.183511 C4.38596368,213.18278 6.39800634,218.004881 8.87261541,222.679036 C11.3472245,227.35319 14.2843999,231.879394 17.6133386,236.286865 C20.9422773,240.694336 24.6629813,244.983072 28.7046474,249.182291 C32.7463135,253.38151 37.1089439,257.491211 41.7217375,261.540608 C46.3345311,265.590005 51.1974858,269.579102 56.2398047,273.537109 C61.2821237,277.495117 66.5038026,281.422037 71.8340426,285.347087 C77.1642826,289.272137 82.6030858,293.195313 88.079649,297.145835 C88.9155871,297.750001 89.7534773,298.355471 90.5938911,298.962933 C91.434305,299.570396 92.2772405,300.179853 93.1232693,300.791994 C93.9692981,301.404134 94.8184181,302.018963 95.6712031,302.637167 C96.5239882,303.255371 97.3804319,303.876954 98.2411082,304.502605 C99.1017845,305.128256 99.9666933,305.757975 100.836404,306.392457 C101.706115,307.026938 102.580626,307.666178 103.460509,308.310874 C104.340391,308.955569 105.225646,309.605713 106.116839,310.262005 C107.008033,310.918298 107.90517,311.580732 108.808816,312.250001 C111.98069,314.494793 114.868387,316.784832 117.48529,319.098551 C120.102192,321.412271 122.448302,323.749675 124.537006,326.089193 C126.62571,328.42871 128.45701,330.770345 130.044289,333.092529 C131.631568,335.414714 132.974832,337.717449 134.087461,339.979166 C135.200091,342.240883 136.08209,344.461587 136.746845,346.61971 C137.4116,348.777833 137.859109,350.873372 138.102762,352.884766 C138.346414,354.89616 138.386209,356.823405 138.235534,358.644939 C138.084859,360.466473 137.743713,362.182291 137.225484,363.770833 C136.699442,365.385417 135.997944,366.914063 135.127788,368.35258 C134.257631,369.791098 133.218811,371.139486 132.018128,372.393555 C130.817445,373.647625 129.454896,374.807373 127.937277,375.868612 C126.419658,376.929852 124.746968,377.892578 122.926006,378.752604 C121.105044,379.612629 119.135805,380.369954 117.025087,381.020386 C114.914369,381.670818 112.662173,382.214355 110.275291,382.64681 C107.888408,383.079264 105.366843,383.400634 102.717388,383.606731 C100.067933,383.812828 97.2905887,383.903646 94.3921525,383.874999 C89.3973599,383.710938 85.0197557,383.040038 81.1830858,381.990925 C77.3464159,380.941811 74.0506805,379.514485 71.2196255,377.837564 C68.3885706,376.160642 66.0221962,374.234129 64.0442506,372.186643 C62.066305,370.139157 60.4767861,367.970701 59.1994421,365.809894 C57.9220981,363.649088 56.956929,361.49593 56.227681,359.479042 C55.498433,357.462155 55.0051061,355.58154 54.6714463,353.965818 C54.3377866,352.350095 54.1637962,350.999264 54.0732213,350.041948 C53.9826463,349.084631 53.9754826,348.52083 53.9754826,348.479164 L11.3088159,348.479164 C11.3088159,352.122394 11.6554954,356.043942 12.3791285,360.12109 C13.1027615,364.198238 14.2033482,368.430987 15.7111605,372.69661 C17.2189727,376.962234 19.1340127,381.260738 21.4865503,385.469397 C23.8390879,389.678057 26.6291274,393.79687 29.8869407,397.703121 C33.1447541,401.609372 36.8703391,405.303055 41.0939722,408.661455 C45.3176053,412.019855 50.0392842,415.042965 55.2892853,417.60807 C60.5392863,420.173175 66.3176053,422.280271 72.6545205,423.806639 C78.9914357,425.333007 85.8869429,426.278643 93.3713183,426.520832 C93.462465,426.520832 93.5536095,426.521158 93.6447157,426.521728 C93.7358218,426.522298 93.8268853,426.52311 93.9178677,426.524087 C94.0088501,426.525065 94.0997514,426.526204 94.1905311,426.527424 C94.2813109,426.528644 94.371969,426.529948 94.4624629,426.531249 C94.5529567,426.53255 94.6432906,426.533854 94.7334175,426.535074 C94.8235445,426.536294 94.9134709,426.541666 95.0031519,426.541666 C95.092833,426.541666 95.1822687,426.541666 95.2714207,426.541666 C95.3605727,426.541666 95.449441,426.541666 95.5379807,426.541666 C100.715064,426.541666 105.724178,426.253905 110.546282,425.689534 C115.368385,425.125163 120.003476,424.284179 124.432513,423.177734 C128.86155,422.07129 133.084532,420.699381 137.082416,419.073161 C141.0803,417.44694 144.853087,415.566406 148.381733,413.442707 C151.91038,411.319008 155.194885,408.952147 158.216206,406.353269 C161.237526,403.754391 163.995666,400.923501 166.471576,397.871742 C168.947487,394.819983 171.141172,391.54736 173.033588,388.06502 C174.926004,384.582679 176.517149,380.890622 177.787982,377 C178.689838,374.234372 179.397031,371.433022 179.914934,368.605711 C180.432818,365.778359 180.761411,362.925047 180.906064,360.055539 C181.050717,357.186031 181.011431,354.30025 180.793556,351.408038 C180.575702,348.515787 180.179259,345.617105 179.609597,342.721677 C179.039935,339.826249 178.297057,336.93408 177.386331,334.05497 C176.475585,331.175859 175.396991,328.30973 174.155903,325.466428 C172.914815,322.623125 171.511229,319.802569 169.950499,317.014524 C168.389789,314.226519 166.671935,311.471025 164.802305,308.757809 C167.898333,305.532224 170.786008,302.325884 173.465981,299.136593 C176.145932,295.947302 178.618203,292.775083 180.883399,289.617713 C183.148596,286.460343 185.206723,283.317826 187.058448,280.188004 C188.910173,277.058163 190.555478,273.940994 191.995011,270.834306 C193.434544,267.727618 194.66831,264.631405 195.696957,261.543473 C196.725603,258.455563 197.54913,255.37591 198.168148,252.302364 C198.787167,249.228817 199.201759,246.161372 199.412492,243.097815 C199.623186,240.034261 199.630104,236.974609 199.433814,233.916666 Z M113.037983,262.541666 C104.183815,256.15625 95.4533471,249.858071 87.3150005,243.644205 C79.1766538,237.430338 71.6304309,231.300781 65.1447541,225.252604 C58.6590773,219.204427 53.2339466,213.23763 49.3377887,207.349284 C45.4416309,201.460939 43.0744415,195.651042 42.7046517,189.916668 C42.5220341,187.017579 42.8727839,183.962891 43.7390965,180.761312 C44.605409,177.559733 45.9872863,174.211264 47.8669237,170.72461 C49.746561,167.237956 52.1239605,163.613118 54.9813215,159.858805 C57.8386826,156.104493 61.1760031,152.220704 64.9754826,148.216145 C65.043841,148.264973 65.1089461,148.315755 65.1724639,148.367511 C65.2359818,148.419268 65.2979125,148.472004 65.3599242,148.524738 C65.4219359,148.577472 65.4840287,148.630206 65.5478709,148.681965 C65.611713,148.733724 65.6773066,148.784503 65.7463157,148.833331 C67.4858997,150.130206 69.226785,151.416666 70.9666933,152.694334 C72.7066015,153.972002 74.4455349,155.240883 76.1812106,156.502603 C77.9168863,157.764322 79.6493087,159.018878 81.3761973,160.267902 C83.1030858,161.516926 84.8244405,162.760414 86.5379807,163.999998 C95.3921482,170.385414 104.122616,176.683593 112.260963,182.897459 C120.39931,189.111326 127.945533,195.240883 134.43121,201.28906 C140.916886,207.337237 146.342017,213.304034 150.238175,219.19238 C154.134333,225.080725 156.501522,230.890622 156.871312,236.624996 C157.05393,239.524085 156.70318,242.578773 155.836867,245.780352 C154.970555,248.981931 153.588677,252.3304 151.70904,255.817054 C149.829403,259.303708 147.452001,262.928544 144.59464,266.682859 C141.737279,270.437173 138.399958,274.32096 134.600479,278.325519 C134.53212,278.276691 134.467015,278.225909 134.403498,278.174153 C134.33998,278.122396 134.278049,278.06966 134.216037,278.016926 C134.154026,277.964192 134.091933,277.911458 134.028091,277.859699 C133.964248,277.80794 133.898655,277.757161 133.829646,277.708333 C132.090062,276.411458 130.349176,275.124998 128.609268,273.84733 C126.86936,272.569662 125.130427,271.300781 123.394751,270.039061 C121.659075,268.777342 119.926653,267.522786 118.199764,266.273762 C116.472876,265.024738 114.751523,263.78125 113.037983,262.541666 Z"></path></g></g></svg>');
}

.youtube-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><svg fill="%23000000" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve"><g id="7935ec95c421cee6d86eb22ecd1368a9"><path style="display: inline;" d="M34.354,0.5h45.959l29.604,91.096h2.863L141.013,0.5h46.353l-53.107,133.338v94.589H88.641V138.08L34.354,0.5z M192.193,98.657c0-13.374,5.495-24.003,16.493-31.938c10.984-7.934,25.749-11.901,44.3-11.901c16.893,0,30.728,4.192,41.506,12.55c10.805,8.358,16.193,19.112,16.193,32.287v89.2c0,14.771-5.301,26.373-15.868,34.782c-10.579,8.408-25.151,12.625-43.684,12.625c-17.859,0-32.143-4.342-42.866-13.024c-10.709-8.683-16.074-20.36-16.074-35.057V98.657z M234.205,191.424c0,4.766,1.44,8.409,4.354,11.029c2.907,2.595,7.055,3.867,12.451,3.867c5.532,0,9.93-1.297,13.18-3.942c3.256-2.669,4.891-6.313,4.891-10.954V97.359c0-3.768-1.672-6.812-4.99-9.132c-3.318-2.321-7.679-3.494-13.081-3.494c-4.972,0-9.027,1.173-12.133,3.494c-3.119,2.32-4.672,5.364-4.672,9.132V191.424z M459.992,57.588v172.711h-40.883v-19.063c-7.547,7.037-15.381,12.375-23.541,16.069c-8.146,3.643-16.068,5.489-23.729,5.489c-9.455,0-16.592-2.57-21.383-7.71c-4.791-5.141-7.186-12.85-7.186-23.13V57.588h40.895v132.39c0,4.117,0.861,7.061,2.57,8.907c1.723,1.822,4.492,2.745,8.322,2.745c3.018,0,6.824-1.223,11.4-3.643c4.604-2.42,8.82-5.514,12.65-9.282V57.588H459.992z M421.68,363.262c-2.008-2.221-5.203-3.368-9.594-3.368c-4.59,0-7.883,1.147-9.879,3.368c-1.996,2.245-2.994,5.963-2.994,11.153v10.754h25.473v-10.754C424.686,369.225,423.688,365.507,421.68,363.262z M300.855,444.228c2.195,0.898,4.516,1.322,6.961,1.322c3.543,0,6.113-0.849,7.785-2.595c1.67-1.722,2.494-4.591,2.494-8.533v-62.178c0-4.191-1.023-7.36-3.068-9.531c-2.059-2.171-5.064-3.244-8.957-3.244c-2.059,0-4.092,0.399-6.102,1.198c-2.008,0.823-3.991,2.096-5.95,3.792v75.402C296.364,441.907,298.646,443.354,300.855,444.228z M490.496,312.587c0-29.941-30.754-54.219-68.654-54.219c-54.068-1.822-109.396-2.62-165.842-2.521c-56.427-0.1-111.756,0.698-165.843,2.521c-37.881,0-68.633,24.277-68.633,54.219c-2.277,23.678-3.263,47.381-3.175,71.085c-0.087,23.703,0.898,47.406,3.175,71.11c0,29.916,30.752,54.192,68.633,54.192c54.087,1.797,109.416,2.596,165.843,2.521c56.446,0.075,111.774-0.724,165.842-2.521c37.9,0,68.654-24.276,68.654-54.192c2.27-23.704,3.254-47.407,3.154-71.11C493.75,359.968,492.766,336.265,490.496,312.587z M121.251,463.465v1.797H88.778v-1.797V321.644H55.182v-1.771v-22.605v-1.771h99.672v1.771v22.605v1.771h-33.603V463.465z M236.768,341.33v122.135v1.797h-28.831v-1.797v-11.901c-5.327,5.064-10.848,8.882-16.592,11.527c-5.757,2.619-11.334,3.942-16.748,3.942c-6.662,0-11.684-1.847-15.065-5.515c-3.387-3.692-5.078-9.231-5.078-16.617v-1.797V341.33v-1.772h28.844v1.772v93.216c0,2.92,0.599,5.065,1.802,6.363c1.217,1.322,3.175,1.971,5.876,1.971c2.127,0,4.803-0.873,8.047-2.595c3.231-1.747,6.2-3.967,8.914-6.662V341.33v-1.772h28.831V341.33z M347.775,370.847v66.943v1.797c0,8.808-2.258,15.544-6.773,20.235c-4.518,4.641-11.055,6.986-19.588,6.986c-5.639,0-10.652-0.898-15.07-2.695c-4.428-1.821-8.532-4.616-12.325-8.384v7.735v1.797h-29.105v-1.797V297.267v-1.771h29.105v1.771v52.297c3.893-3.793,8.009-6.662,12.376-8.608c4.379-1.971,8.809-2.969,13.273-2.969c9.107,0,16.094,2.645,20.896,7.935c4.803,5.289,7.211,12.999,7.211,23.13V370.847z M454.365,374.64v29.767v1.797h-55.152v21.581c0,6.513,0.947,11.029,2.844,13.549c1.908,2.521,5.152,3.793,9.742,3.793c4.779,0,8.135-1.073,10.043-3.219c1.896-2.121,2.844-6.837,2.844-14.123v-6.811v-1.796h29.68v1.796v7.51v1.796c0,12.7-3.605,22.257-10.84,28.694c-7.225,6.438-18.016,9.631-32.375,9.631c-12.912,0-23.066-3.418-30.49-10.229c-7.41-6.812-11.127-16.193-11.127-28.096v-1.796V374.64v-1.771c0-10.754,4.078-19.512,12.213-26.299c8.146-6.762,18.689-10.155,31.588-10.155c13.199,0,23.328,3.144,30.416,9.406c7.061,6.264,10.615,15.296,10.615,27.048V374.64z"></path></g></svg>');
}

.dark .youtube-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><svg fill="%23FFFFFF" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve"><g id="7935ec95c421cee6d86eb22ecd1368a9"><path style="display: inline;" d="M34.354,0.5h45.959l29.604,91.096h2.863L141.013,0.5h46.353l-53.107,133.338v94.589H88.641V138.08L34.354,0.5z M192.193,98.657c0-13.374,5.495-24.003,16.493-31.938c10.984-7.934,25.749-11.901,44.3-11.901c16.893,0,30.728,4.192,41.506,12.55c10.805,8.358,16.193,19.112,16.193,32.287v89.2c0,14.771-5.301,26.373-15.868,34.782c-10.579,8.408-25.151,12.625-43.684,12.625c-17.859,0-32.143-4.342-42.866-13.024c-10.709-8.683-16.074-20.36-16.074-35.057V98.657z M234.205,191.424c0,4.766,1.44,8.409,4.354,11.029c2.907,2.595,7.055,3.867,12.451,3.867c5.532,0,9.93-1.297,13.18-3.942c3.256-2.669,4.891-6.313,4.891-10.954V97.359c0-3.768-1.672-6.812-4.99-9.132c-3.318-2.321-7.679-3.494-13.081-3.494c-4.972,0-9.027,1.173-12.133,3.494c-3.119,2.32-4.672,5.364-4.672,9.132V191.424z M459.992,57.588v172.711h-40.883v-19.063c-7.547,7.037-15.381,12.375-23.541,16.069c-8.146,3.643-16.068,5.489-23.729,5.489c-9.455,0-16.592-2.57-21.383-7.71c-4.791-5.141-7.186-12.85-7.186-23.13V57.588h40.895v132.39c0,4.117,0.861,7.061,2.57,8.907c1.723,1.822,4.492,2.745,8.322,2.745c3.018,0,6.824-1.223,11.4-3.643c4.604-2.42,8.82-5.514,12.65-9.282V57.588H459.992z M421.68,363.262c-2.008-2.221-5.203-3.368-9.594-3.368c-4.59,0-7.883,1.147-9.879,3.368c-1.996,2.245-2.994,5.963-2.994,11.153v10.754h25.473v-10.754C424.686,369.225,423.688,365.507,421.68,363.262z M300.855,444.228c2.195,0.898,4.516,1.322,6.961,1.322c3.543,0,6.113-0.849,7.785-2.595c1.67-1.722,2.494-4.591,2.494-8.533v-62.178c0-4.191-1.023-7.36-3.068-9.531c-2.059-2.171-5.064-3.244-8.957-3.244c-2.059,0-4.092,0.399-6.102,1.198c-2.008,0.823-3.991,2.096-5.95,3.792v75.402C296.364,441.907,298.646,443.354,300.855,444.228z M490.496,312.587c0-29.941-30.754-54.219-68.654-54.219c-54.068-1.822-109.396-2.62-165.842-2.521c-56.427-0.1-111.756,0.698-165.843,2.521c-37.881,0-68.633,24.277-68.633,54.219c-2.277,23.678-3.263,47.381-3.175,71.085c-0.087,23.703,0.898,47.406,3.175,71.11c0,29.916,30.752,54.192,68.633,54.192c54.087,1.797,109.416,2.596,165.843,2.521c56.446,0.075,111.774-0.724,165.842-2.521c37.9,0,68.654-24.276,68.654-54.192c2.27-23.704,3.254-47.407,3.154-71.11C493.75,359.968,492.766,336.265,490.496,312.587z M121.251,463.465v1.797H88.778v-1.797V321.644H55.182v-1.771v-22.605v-1.771h99.672v1.771v22.605v1.771h-33.603V463.465z M236.768,341.33v122.135v1.797h-28.831v-1.797v-11.901c-5.327,5.064-10.848,8.882-16.592,11.527c-5.757,2.619-11.334,3.942-16.748,3.942c-6.662,0-11.684-1.847-15.065-5.515c-3.387-3.692-5.078-9.231-5.078-16.617v-1.797V341.33v-1.772h28.844v1.772v93.216c0,2.92,0.599,5.065,1.802,6.363c1.217,1.322,3.175,1.971,5.876,1.971c2.127,0,4.803-0.873,8.047-2.595c3.231-1.747,6.2-3.967,8.914-6.662V341.33v-1.772h28.831V341.33z M347.775,370.847v66.943v1.797c0,8.808-2.258,15.544-6.773,20.235c-4.518,4.641-11.055,6.986-19.588,6.986c-5.639,0-10.652-0.898-15.07-2.695c-4.428-1.821-8.532-4.616-12.325-8.384v7.735v1.797h-29.105v-1.797V297.267v-1.771h29.105v1.771v52.297c3.893-3.793,8.009-6.662,12.376-8.608c4.379-1.971,8.809-2.969,13.273-2.969c9.107,0,16.094,2.645,20.896,7.935c4.803,5.289,7.211,12.999,7.211,23.13V370.847z M454.365,374.64v29.767v1.797h-55.152v21.581c0,6.513,0.947,11.029,2.844,13.549c1.908,2.521,5.152,3.793,9.742,3.793c4.779,0,8.135-1.073,10.043-3.219c1.896-2.121,2.844-6.837,2.844-14.123v-6.811v-1.796h29.68v1.796v7.51v1.796c0,12.7-3.605,22.257-10.84,28.694c-7.225,6.438-18.016,9.631-32.375,9.631c-12.912,0-23.066-3.418-30.49-10.229c-7.41-6.812-11.127-16.193-11.127-28.096v-1.796V374.64v-1.771c0-10.754,4.078-19.512,12.213-26.299c8.146-6.762,18.689-10.155,31.588-10.155c13.199,0,23.328,3.144,30.416,9.406c7.061,6.264,10.615,15.296,10.615,27.048V374.64z"></path></g></svg>');
}

.facebook-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M20 1C21.6569 1 23 2.34315 23 4V20C23 21.6569 21.6569 23 20 23H4C2.34315 23 1 21.6569 1 20V4C1 2.34315 2.34315 1 4 1H20ZM20 3C20.5523 3 21 3.44772 21 4V20C21 20.5523 20.5523 21 20 21H15V13.9999H17.0762C17.5066 13.9999 17.8887 13.7245 18.0249 13.3161L18.4679 11.9871C18.6298 11.5014 18.2683 10.9999 17.7564 10.9999H15V8.99992C15 8.49992 15.5 7.99992 16 7.99992H18C18.5523 7.99992 19 7.5522 19 6.99992V6.31393C19 5.99091 18.7937 5.7013 18.4813 5.61887C17.1705 5.27295 16 5.27295 16 5.27295C13.5 5.27295 12 6.99992 12 8.49992V10.9999H10C9.44772 10.9999 9 11.4476 9 11.9999V12.9999C9 13.5522 9.44771 13.9999 10 13.9999H12V21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3H20Z" fill="%23000000"/></svg>');
}

.dark .facebook-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M20 1C21.6569 1 23 2.34315 23 4V20C23 21.6569 21.6569 23 20 23H4C2.34315 23 1 21.6569 1 20V4C1 2.34315 2.34315 1 4 1H20ZM20 3C20.5523 3 21 3.44772 21 4V20C21 20.5523 20.5523 21 20 21H15V13.9999H17.0762C17.5066 13.9999 17.8887 13.7245 18.0249 13.3161L18.4679 11.9871C18.6298 11.5014 18.2683 10.9999 17.7564 10.9999H15V8.99992C15 8.49992 15.5 7.99992 16 7.99992H18C18.5523 7.99992 19 7.5522 19 6.99992V6.31393C19 5.99091 18.7937 5.7013 18.4813 5.61887C17.1705 5.27295 16 5.27295 16 5.27295C13.5 5.27295 12 6.99992 12 8.49992V10.9999H10C9.44772 10.9999 9 11.4476 9 11.9999V12.9999C9 13.5522 9.44771 13.9999 10 13.9999H12V21H4C3.44772 21 3 20.5523 3 20V4C3 3.44772 3.44772 3 4 3H20Z" fill="%23FFFFFF"/></svg>');
}

.app-store-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg fill="%23000000" viewBox="0 0 24 24" id="app-store" data-name="Flat Line" xmlns="http://www.w3.org/2000/svg" class="icon flat-line"><line id="primary" x1="21" y1="17" x2="18" y2="17" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;"></line><line id="primary-2" data-name="primary" x1="20" y1="21" x2="14.29" y2="10.72" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;"></line><line id="primary-3" data-name="primary" x1="12" y1="6.6" x2="10" y2="3" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;"></line><line id="primary-4" data-name="primary" x1="14" y1="3" x2="4" y2="21" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;"></line><line id="primary-5" data-name="primary" x1="13" y1="17" x2="3" y2="17" style="fill: none; stroke: rgb(0, 0, 0); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;"></line></svg>');
}

.dark .app-store-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg fill="%23FFFFFF" viewBox="0 0 24 24" id="app-store" data-name="Flat Line" xmlns="http://www.w3.org/2000/svg" class="icon flat-line"><line id="primary" x1="21" y1="17" x2="18" y2="17" style="fill: none; stroke: rgb(255,255,255); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;"></line><line id="primary-2" data-name="primary" x1="20" y1="21" x2="14.29" y2="10.72" style="fill: none; stroke: rgb(255,255,255); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;"></line><line id="primary-3" data-name="primary" x1="12" y1="6.6" x2="10" y2="3" style="fill: none; stroke: rgb(255,255,255); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;"></line><line id="primary-4" data-name="primary" x1="14" y1="3" x2="4" y2="21" style="fill: none; stroke: rgb(255,255,255); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;"></line><line id="primary-5" data-name="primary" x1="13" y1="17" x2="3" y2="17" style="fill: none; stroke: rgb(255,255,255); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2;"></line></svg>');
}

.google-play-icon{
  display: inline-block;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2 3.65629C2 2.15127 3.59967 1.18549 4.93149 1.88645L20.7844 10.2301C22.2091 10.9799 22.2091 13.0199 20.7844 13.7698L4.9315 22.1134C3.59968 22.8144 2 21.8486 2 20.3436V3.65629ZM19.8529 11.9999L16.2682 10.1132L14.2243 11.9999L16.2682 13.8866L19.8529 11.9999ZM14.3903 14.875L12.75 13.3608L6.75782 18.8921L14.3903 14.875ZM12.75 10.639L14.3903 9.12488L6.75782 5.10777L12.75 10.639ZM4 5.28391L11.2757 11.9999L4 18.7159V5.28391Z" fill="%23000000"/></svg>');
}

.dark .google-play-icon{
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M2 3.65629C2 2.15127 3.59967 1.18549 4.93149 1.88645L20.7844 10.2301C22.2091 10.9799 22.2091 13.0199 20.7844 13.7698L4.9315 22.1134C3.59968 22.8144 2 21.8486 2 20.3436V3.65629ZM19.8529 11.9999L16.2682 10.1132L14.2243 11.9999L16.2682 13.8866L19.8529 11.9999ZM14.3903 14.875L12.75 13.3608L6.75782 18.8921L14.3903 14.875ZM12.75 10.639L14.3903 9.12488L6.75782 5.10777L12.75 10.639ZM4 5.28391L11.2757 11.9999L4 18.7159V5.28391Z" fill="%23FFFFFF"/></svg>');
}

/*  end icons  */

/*  start navigation for desktop  */

.nav-desktop {
  padding-top: 10px;
  padding-left:20px;
}

.nav-desktop .navbar {
  overflow: hidden;
}

.nav-desktop .navbar a {
  float: left;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
}

.nav-desktop .dropdown {
  float: left;
  overflow: hidden;
}

.nav-desktop .dropdown .dropbtn {
  color: white;
  padding: 14px 16px;
}

.nav-desktop .navbar a:hover, .nav-desktop .dropdown:hover .dropbtn {
  background-color: var(--secondary-color);
  opacity: 0.75;
}

.nav-desktop .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.nav-desktop .dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.nav-desktop .dropdown-content a:hover {
  background-color: #ddd;
  opacity: 0.75;
}

.nav-desktop .dropdown:hover .dropdown-content {
  display: block;
}

.desktop-info {
  padding-top: 22px;
  padding-right:20px;
}

/*  end navigation for desktop */


/*  start navigation for mobile  */

#nav-mobile {
  display:none;
  opacity: 0;
  max-height: 0px;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
#nav-mobile.open {
  display:block;
  opacity: 1;
}

#nav-mobile .navbar{
  opacity: 0;
  visibility:hidden;
  transition: opacity 0.5s ease 0.2s; /* Delay to wait for max-height transition */
}

#nav-mobile.open .navbar {
  opacity: 1;
  visibility: visible;
}

#nav-mobile dropdown{
  padding: 10px;
}

#nav-mobile .dropbtn, #nav-mobile a{
  display: block;
  color: white;
  padding: 14px 16px;
}

#nav-mobile .dropdown-content {
  margin-bottom:20px;
  border-bottom: 1px solid white;
}

#nav-mobile .dropdown-content a:hover, #nav-mobile .navbar a:hover, #nav-mobile .dropdown:hover .dropbtn {
  background-color: var(--secondary-color);
  opacity: 0.75;
}

#nav-mobile a.toggle-light-dark:hover{
  background-color: var(--main-color);
}

/*  end navigation for mobile */

.bottom-border{
  border-bottom: 1px solid var(--color-grey);
  padding-bottom: 10px;
  margin-bottom:10px;
}


/* Breadcrumbs */
.breadcrumb {
  font-size: 0.9em;
  margin-top: 15px;
  margin-bottom: 15px;
}
.breadcrumb li {
  display: inline;
}
.breadcrumb li+li:before { 
  content: "› ";
  color: var(--color-grey);
}
.breadcrumb a {
  color: var(--secondary-color);
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}


/* END Breadcrumbs */

/*  Alert */
.alert {
  padding: 15px;
  background-color: var(--secondary-color);
  color: var(--font-color);
  margin-bottom: 20px;
  border-radius: var(--border-radius);
}
.alert strong {
  font-weight: bold;
}
/*  End Alert */


/* === HERO SECTION === */

.hero h1 {
  font-size: 3em;
  color: var(--secondary-color);
}

.hero .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--grid-gutter);
}

/* === QUICK STATS === */
.stats {
  display: flex;
  flex-wrap: wrap;
  margin: 40px auto;
}
.stat-card {
  background: var(--color-lightGrey);
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  flex: 1 1 200px;
  max-width: 220px;
  margin: calc(var(--grid-gutter) / 2);
}

/* tools 2 */
.tools-section {
  padding: 40px 20px;
  background-color: var(--bg-secondary-color);
  text-align: center;
  border-radius: var(--border-radius);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--grid-gutter);
}

.tool-card {
  background: var(--bg-color);
  border-radius: var(--border-radius);
  padding: var(--grid-gutter);
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.tool-card p {
  font-size: 1.2rem;
}


/* === APP PROMO === */
.app-promo {
  text-align: center;
}

.app-promo img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 10px auto;
  display: block;
}

.app-promo img.qr {
  max-width: 200px;
  margin: 10px;
}

/* === WHY LPG === */
.why-lpg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: var(--grid-gutter);
  background: var(--bg-secondary-color);
  padding: 40px 20px;
  border-radius: var(--border-radius);
}

.partners{
  max-height: 80px;
  max-width: 200px;
  margin: var(--grid-gutter); 
}

/* tables */
.table{
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.table-striped tbody tr:nth-child(odd) {
  background-color: var(--bg-secondary-color);
} 

.table-hover tbody tr:hover {
  background-color: var(--secondary-color);
  color: var(--font-color);
}

/* end tables */

/* css maps */
.css-map-container *{
  -moz-box-sizing: content-box !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important
 }
 /* end css maps */



/*  footer  */
footer {
  background-color: var(--bg-secondary-color);
  padding: 20px;
}

.footer-icon {
  width: 25px;
  height: 25px;
  margin-bottom: -5px;
  margin-right: 10px;
}

footer a{
  font-weight: 600
}

/*  end footer  */

