@charset "UTF-8";
/* ---
_____________________________________________________________________________

Copyright © 2023 BlazeCode.pl
Email: kontakt@blazecode.pl

Powielanie oraz rozpowszechnianie bez pisemnej zgody autora zakazane.
_____________________________________________________________________________
--- */
:root {
  /* --- COLORS update 08.2024--- */
  --primary-dark: #0c0047;
  --primary-100: #00218f;
  --primary-70: #185de3;
  --primary-50: #0970f6;
  --primary-30: #0083ff;
  --primary-20: #4495ff;
  --primary-10: #89c9ff;

  --gray-100: #3a394c;
  --gray-80: #50505e;
  --gray-60: #838391;
  --gray-40: #bebec5;
  --gray-10: #d9d9dd;
  --gray-05: #eaeaeb;
  --gray-00: #f2f2f3;

  --white-100: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-72: rgba(255, 255, 255, 0.72);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-10: rgba(255, 255, 255, 0.1);

  --success100: #116942;
  --success50: #1ba769;
  --success05: #def2e9;

  --warning100: #a64f21;
  --warning50: #e86825;
  --warning05: #ffe1be;

  --alert100: #9f1b1f;
  --alert50: #de1c22;
  --alert05: #ffe0e1;
}

/* --- IMPORT RESET --- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* --- IMPORT FONTS --- */
/* --- Jost FONT --- */
@font-face {
  font-family: "Jost-Black";
  src: url("../../fonts/Jost/Jost-Black.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Jost-Bold";
  src: url("../../fonts/Jost/Jost-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Jost-Medium";
  src: url("../../fonts/Jost/Jost-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Jost-Regular";
  src: url("../../fonts/Jost/Jost-Regular.ttf");
  font-display: swap;
}
/* --- IMPORT CONFIG --- */
/* --- -------------+----------- --- */
/* ---        CONFIG v0.1        --- */
/* --- -------------+----------- --- */
/* --- COLORS --- */
/* --- TEXTS --- */
/* --- CONTACT FORM POPUP --- */
/* --- BORDERS --- */
/* --- GRID --- */
/* --- MARGINS --- */
/* --- CONTAINER --- */
/* --- BREAKPOINTS --- */
/* --- TRANSITIONS --- */
/* --- HEIGHTS --- */
/* --- MAIN --- */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost-Regular", sans-serif;
  overflow-x: hidden;
  background: #ffffff;
  transition: 0.3s;
}

body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: #0d0f1f;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #185de3 0%, #00218f 100%);
  border-radius: 16px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #00218f;
}

a {
  color: #185de3;
  transition: 0.3s;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  transition: 0.5s;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .container {
    max-width: 100%;
    padding: 0 48px;
  }
}
@media screen and (max-width: 800px) {
  .container {
    padding: 0 24px;
  }
}

/* --- IMPORT BUTTONS --- */
/* --- -------------+----------- --- */
/* ---        BUTTONS v0.2       --- */
/* --- -------------+----------- --- */
.btn {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-sizing: border-box;
  width: fit-content;
  gap: 8px;
  height: 48px;
  padding: 12px 24px;
  transition: 0.3s;
  border: 0;
  color: #ffffff;
  font-size: 18px;
  font-family: "Jost-Bold", sans-serif;
  letter-spacing: 0.2px;
  border-radius: 100px;
}
.btn *:focus:not(:focus-visible) {
  outline: none;
}
.btn:active {
  transform: scale(0.95, 0.95);
}
.btn i {
  font-size: 16px;
  position: relative;
}
.btn_primary {
  background: #185de3;
}
.btn_primary:hover {
  background: #00218f;
  color: #ffffff;
}
.btn_primary_light {
  background: var(--primary-50);
}
.btn_primary_light:hover {
  background: #00218f;
  color: #ffffff;
}
.btn_secondary {
  background: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn_secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}
.btn_tertiary {
  background: #14172d;
  border: 0;
  color: #ffffff;
}
.btn_tertiary:hover {
  background: #1f2134;
}
.btn_contrast {
  background: #ffffff;
  border: 1px solid #eaeaeb;
  color: #185de3;
}
.btn_contrast:hover {
  background: #eef7ff;
  border-color: #eef7ff;
}
.btn_success {
  background: #1ba769;
}
.btn_success:hover {
  background: #116942;
}
.btn_warning {
  background: #e86825;
}
.btn_warning:hover {
  background: #a64f21;
}
.btn_alert {
  background: #de1c22;
}
.btn_alert:hover {
  background: #9f1b1f;
}
.btn_square {
  height: unset;
  width: 48px;
  padding: 8px;
  aspect-ratio: 1/1;
}
.btn_square svg {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* --- IMPORT GRIDER --- */
/* --- -------------+----------- --- */
/* ---          GRID v0.1        --- */
/* --- -------------+----------- --- */
.grider {
  display: flex;
  flex-direction: column;
}
.grider_hidden {
  overflow: hidden;
}
.grider_wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.grider_wrapper [class*="grider_g"] {
  width: 100%;
}
.grider_wrapper.outer {
  width: calc(100% + 48px);
  margin: calc(-48px / 2);
  margin-bottom: calc(48px / 2);
  /* --- -------------+-------------- */
  /* ---       GRID SIZER v0.3    --- */
  /* --- -------------+-------------- */
}
.grider_wrapper.outer .grider_g20 {
  max-width: calc(20% - 48px);
}
.grider_wrapper.outer .grider_g25 {
  max-width: calc(25% - 48px);
}
.grider_wrapper.outer .grider_g33 {
  max-width: calc(33.333% - 48px);
}
.grider_wrapper.outer .grider_g40 {
  max-width: calc(40% - 48px);
}
.grider_wrapper.outer .grider_g50 {
  max-width: calc(50% - 48px);
}
.grider_wrapper.outer .grider_g60 {
  max-width: calc(60% - 48px);
}
.grider_wrapper.outer .grider_g66 {
  max-width: calc(66.666% - 48px);
}
.grider_wrapper.outer .grider_g75 {
  max-width: calc(75% - 48px);
}
.grider_wrapper.outer .grider_g80 {
  max-width: calc(80% - 48px);
}
.grider_wrapper.outer .grider_g100 {
  max-width: calc(100% - 48px);
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.outer .grider_l_g20 {
    max-width: calc(20% - 48px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.outer .grider_l_g25 {
    max-width: calc(25% - 48px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.outer .grider_l_g33 {
    max-width: calc(33.333% - 48px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.outer .grider_l_g40 {
    max-width: calc(40% - 48px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.outer .grider_l_g50 {
    max-width: calc(50% - 48px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.outer .grider_l_g60 {
    max-width: calc(60% - 48px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.outer .grider_l_g66 {
    max-width: calc(66.666% - 48px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.outer .grider_l_g75 {
    max-width: calc(75% - 48px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.outer .grider_l_g80 {
    max-width: calc(80% - 48px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.outer .grider_l_g100 {
    max-width: calc(100% - 48px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.outer .grider_m_g20 {
    max-width: calc(20% - 48px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.outer .grider_m_g25 {
    max-width: calc(25% - 48px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.outer .grider_m_g33 {
    max-width: calc(33.333% - 48px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.outer .grider_m_g40 {
    max-width: calc(40% - 48px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.outer .grider_m_g50 {
    max-width: calc(50% - 48px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.outer .grider_m_g60 {
    max-width: calc(60% - 48px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.outer .grider_m_g66 {
    max-width: calc(66.666% - 48px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.outer .grider_m_g75 {
    max-width: calc(75% - 48px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.outer .grider_m_g80 {
    max-width: calc(80% - 48px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.outer .grider_m_g100 {
    max-width: calc(100% - 48px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.grider_m__col_reverse {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.outer .grider_s_g20 {
    max-width: calc(20% - 48px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.outer .grider_s_g25 {
    max-width: calc(25% - 48px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.outer .grider_s_g33 {
    max-width: calc(33.333% - 48px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.outer .grider_s_g40 {
    max-width: calc(40% - 48px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.outer .grider_s_g50 {
    max-width: calc(50% - 48px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.outer .grider_s_g60 {
    max-width: calc(60% - 48px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.outer .grider_s_g66 {
    max-width: calc(66.666% - 48px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.outer .grider_s_g75 {
    max-width: calc(75% - 48px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.outer .grider_s_g80 {
    max-width: calc(80% - 48px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.outer .grider_s_g100 {
    max-width: calc(100% - 48px) !important;
  }
}
.grider_wrapper.outer [class*="grider_g"] {
  margin: calc(48px / 2);
}
.grider_wrapper.outer:last-of-type {
  margin-bottom: calc(-48px / 2);
}
.grider_wrapper.inner {
  width: calc(100% + 32px);
  margin: calc(-32px / 2);
  margin-bottom: calc(32px / 2);
  /* --- -------------+-------------- */
  /* ---       GRID SIZER v0.3    --- */
  /* --- -------------+-------------- */
}
.grider_wrapper.inner .grider_g20 {
  max-width: calc(20% - 32px);
}
.grider_wrapper.inner .grider_g25 {
  max-width: calc(25% - 32px);
}
.grider_wrapper.inner .grider_g33 {
  max-width: calc(33.333% - 32px);
}
.grider_wrapper.inner .grider_g40 {
  max-width: calc(40% - 32px);
}
.grider_wrapper.inner .grider_g50 {
  max-width: calc(50% - 32px);
}
.grider_wrapper.inner .grider_g60 {
  max-width: calc(60% - 32px);
}
.grider_wrapper.inner .grider_g66 {
  max-width: calc(66.666% - 32px);
}
.grider_wrapper.inner .grider_g75 {
  max-width: calc(75% - 32px);
}
.grider_wrapper.inner .grider_g80 {
  max-width: calc(80% - 32px);
}
.grider_wrapper.inner .grider_g100 {
  max-width: calc(100% - 32px);
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.inner .grider_l_g20 {
    max-width: calc(20% - 32px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.inner .grider_l_g25 {
    max-width: calc(25% - 32px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.inner .grider_l_g33 {
    max-width: calc(33.333% - 32px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.inner .grider_l_g40 {
    max-width: calc(40% - 32px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.inner .grider_l_g50 {
    max-width: calc(50% - 32px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.inner .grider_l_g60 {
    max-width: calc(60% - 32px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.inner .grider_l_g66 {
    max-width: calc(66.666% - 32px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.inner .grider_l_g75 {
    max-width: calc(75% - 32px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.inner .grider_l_g80 {
    max-width: calc(80% - 32px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.inner .grider_l_g100 {
    max-width: calc(100% - 32px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.inner .grider_m_g20 {
    max-width: calc(20% - 32px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.inner .grider_m_g25 {
    max-width: calc(25% - 32px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.inner .grider_m_g33 {
    max-width: calc(33.333% - 32px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.inner .grider_m_g40 {
    max-width: calc(40% - 32px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.inner .grider_m_g50 {
    max-width: calc(50% - 32px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.inner .grider_m_g60 {
    max-width: calc(60% - 32px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.inner .grider_m_g66 {
    max-width: calc(66.666% - 32px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.inner .grider_m_g75 {
    max-width: calc(75% - 32px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.inner .grider_m_g80 {
    max-width: calc(80% - 32px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.inner .grider_m_g100 {
    max-width: calc(100% - 32px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.inner .grider_s_g20 {
    max-width: calc(20% - 32px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.inner .grider_s_g25 {
    max-width: calc(25% - 32px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.inner .grider_s_g33 {
    max-width: calc(33.333% - 32px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.inner .grider_s_g40 {
    max-width: calc(40% - 32px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.inner .grider_s_g50 {
    max-width: calc(50% - 32px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.inner .grider_s_g60 {
    max-width: calc(60% - 32px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.inner .grider_s_g66 {
    max-width: calc(66.666% - 32px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.inner .grider_s_g75 {
    max-width: calc(75% - 32px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.inner .grider_s_g80 {
    max-width: calc(80% - 32px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.inner .grider_s_g100 {
    max-width: calc(100% - 32px) !important;
  }
}
.grider_wrapper.inner [class*="grider_g"] {
  margin: calc(32px / 2);
}
.grider_wrapper.inner:last-of-type {
  margin-bottom: calc(-32px / 2);
}
.grider_wrapper.form {
  width: calc(100% + 16px);
  margin: calc(-16px / 2);
  margin-bottom: calc(16px / 2);
  /* --- -------------+-------------- */
  /* ---       GRID SIZER v0.3    --- */
  /* --- -------------+-------------- */
}
.grider_wrapper.form .grider_g20 {
  max-width: calc(20% - 16px);
}
.grider_wrapper.form .grider_g25 {
  max-width: calc(25% - 16px);
}
.grider_wrapper.form .grider_g33 {
  max-width: calc(33.333% - 16px);
}
.grider_wrapper.form .grider_g40 {
  max-width: calc(40% - 16px);
}
.grider_wrapper.form .grider_g50 {
  max-width: calc(50% - 16px);
}
.grider_wrapper.form .grider_g60 {
  max-width: calc(60% - 16px);
}
.grider_wrapper.form .grider_g66 {
  max-width: calc(66.666% - 16px);
}
.grider_wrapper.form .grider_g75 {
  max-width: calc(75% - 16px);
}
.grider_wrapper.form .grider_g80 {
  max-width: calc(80% - 16px);
}
.grider_wrapper.form .grider_g100 {
  max-width: calc(100% - 16px);
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.form .grider_l_g20 {
    max-width: calc(20% - 16px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.form .grider_l_g25 {
    max-width: calc(25% - 16px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.form .grider_l_g33 {
    max-width: calc(33.333% - 16px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.form .grider_l_g40 {
    max-width: calc(40% - 16px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.form .grider_l_g50 {
    max-width: calc(50% - 16px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.form .grider_l_g60 {
    max-width: calc(60% - 16px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.form .grider_l_g66 {
    max-width: calc(66.666% - 16px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.form .grider_l_g75 {
    max-width: calc(75% - 16px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.form .grider_l_g80 {
    max-width: calc(80% - 16px) !important;
  }
}
@media screen and (max-width: 1400px) {
  .grider_wrapper.form .grider_l_g100 {
    max-width: calc(100% - 16px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.form .grider_m_g20 {
    max-width: calc(20% - 16px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.form .grider_m_g25 {
    max-width: calc(25% - 16px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.form .grider_m_g33 {
    max-width: calc(33.333% - 16px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.form .grider_m_g40 {
    max-width: calc(40% - 16px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.form .grider_m_g50 {
    max-width: calc(50% - 16px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.form .grider_m_g60 {
    max-width: calc(60% - 16px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.form .grider_m_g66 {
    max-width: calc(66.666% - 16px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.form .grider_m_g75 {
    max-width: calc(75% - 16px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.form .grider_m_g80 {
    max-width: calc(80% - 16px) !important;
  }
}
@media screen and (max-width: 1150px) {
  .grider_wrapper.form .grider_m_g100 {
    max-width: calc(100% - 16px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.form .grider_s_g20 {
    max-width: calc(20% - 16px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.form .grider_s_g25 {
    max-width: calc(25% - 16px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.form .grider_s_g33 {
    max-width: calc(33.333% - 16px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.form .grider_s_g40 {
    max-width: calc(40% - 16px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.form .grider_s_g50 {
    max-width: calc(50% - 16px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.form .grider_s_g60 {
    max-width: calc(60% - 16px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.form .grider_s_g66 {
    max-width: calc(66.666% - 16px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.form .grider_s_g75 {
    max-width: calc(75% - 16px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.form .grider_s_g80 {
    max-width: calc(80% - 16px) !important;
  }
}
@media screen and (max-width: 800px) {
  .grider_wrapper.form .grider_s_g100 {
    max-width: calc(100% - 16px) !important;
  }
}
.grider_wrapper.form [class*="grider_g"] {
  margin: calc(16px / 2);
}
.grider_wrapper.form:last-of-type {
  margin-bottom: calc(-16px / 2);
}
.grider_wrapper.align_center {
  align-items: center;
}
.grider_wrapper.align_end {
  align-items: flex-end;
}
.grider_wrapper.align_start {
  align-items: flex-start;
}
.grider_wrapper.justify_center {
  justify-content: center;
}
.grider_wrapper.justify_end {
  justify-content: flex-end;
}
.grider_wrapper.justify_start {
  justify-content: flex-start;
}
.grider_wrapper.justify_between {
  justify-content: space-between;
}

.grider_wrapper_footer {
  border-bottom: 1px solid #eaeaeb;
  width: 100%;
  padding: 20px;
}

/* --- IMPORT ACCORDION --- */
/* --- ACCORDION --- */
.accordion {
  width: 100%;
  position: relative;
  transition: 0.3s;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #f2f2f3;
}
.accordion_head {
  padding: 24px calc(36px + 24px) 24px 24px;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  height: 100%;
  position: relative;
}
.accordion_button {
  min-width: 32px;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background: #eef7ff;
  position: absolute;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.accordion_button svg {
  transition: 0.3s;
  position: absolute;
  width: 20px;
  height: 20px;
}
.accordion_button svg path {
  fill: #3a394c;
}
.accordion_body {
  max-height: 1px;
  visibility: hidden;
  display: none;
  padding: 0 24px 24px;
  flex-direction: column;
  gap: 12px;
}
.accordion_body p {
  font-size: 16px;
}
.accordion_open {
  box-shadow: 0 69px 69px rgba(0, 0, 0, 0.09), 0 0 0 rgba(0, 0, 0, 0.1);
}
.accordion_open .accordion_body {
  display: flex;
  visibility: visible;
  max-height: 500px;
}
.accordion_open .accordion_head {
  padding-bottom: 16px;
}
.accordion_open .accordion_button {
  transform: rotate(180deg);
  background-color: #185de3;
}
.accordion_open .accordion_button path {
  fill: #ffffff;
}

.colormode_dark .accordion {
  background: #14172d;
  border-color: #1f2134;
}
.colormode_dark .accordion_button {
  background: #1f2134;
}
.colormode_dark .accordion_button svg path {
  fill: #ffffff;
}

/* --- IMPORT GRIDER LITE --- */
/* --- -------------+----------- --- */
/* ---     GRIDER LITE v0.1      --- */
/* --- -------------+----------- --- */
.flex,
.column,
.row {
  display: flex;
}

.row {
  flex-wrap: wrap;
}

.column {
  flex-direction: column;
}

.justify_center {
  justify-content: center;
  text-align: center;
}
.justify_end {
  justify-content: flex-end;
  text-align: right;
}
.justify_start {
  justify-content: flex-start;
  text-align: left;
}
.justify_between {
  justify-content: space-between;
}

.size_max {
  width: 100%;
}

.align_center {
  align-items: center;
  text-align: center;
}
.align_end {
  align-items: flex-end;
  text-align: right;
}
.align_start {
  align-items: flex-start;
  text-align: left;
}

.gap_xs {
  gap: 12px;
}
.gap_s {
  gap: 16px;
}
.gap_m {
  gap: 24px;
}
.gap_l {
  gap: 32px;
}
.gap_xl {
  gap: 48px;
}

/* --- IMPORT SECTIONER --- */
/* --- -------------+----------- --- */
/* ---       SECTIONER v0.1      --- */
/* --- -------------+----------- --- */
.sectioner {
  position: relative;
  width: 100%;
}
.sectioner.bg_white {
  background: #ffffff;
}
.sectioner.bg_gray {
  background: #f2f2f3;
}
.sectioner.pg_y__0 {
  padding: 0 0;
}
.sectioner.pg_y__xs {
  padding: 32px 0;
}
.sectioner.pg_y__s {
  padding: 48px 0;
}
.sectioner.pg_y__m {
  padding: 64px 0;
}
.sectioner.pg_y__l {
  padding: 96px 0;
}
.sectioner.pg_y__xl {
  padding: 128px 0;
}
.sectioner.pg_b__0 {
  padding-bottom: 0;
}
.sectioner.pg_b__xs {
  padding-bottom: 32px;
}
.sectioner.pg_b__s {
  padding-bottom: 48px;
}
.sectioner.pg_b__m {
  padding-bottom: 64px;
}
.sectioner.pg_b__l {
  padding-bottom: 96px;
}
.sectioner.pg_b__xl {
  padding-bottom: 128px;
}
.sectioner.pg_t__0 {
  padding-top: 0;
}
.sectioner.pg_t__xs {
  padding-top: 32px;
}
.sectioner.pg_t__s {
  padding-top: 48px;
}
.sectioner.pg_t__m {
  padding-top: 64px;
}
.sectioner.pg_t__l {
  padding-top: 96px;
}
.sectioner.pg_t__xl {
  padding-top: 128px;
}

/* --- TITLE --- */
.title {
  display: flex;
  margin-bottom: 48px;
}
@media screen and (max-width: 800px) {
  .title {
    flex-direction: column;
    gap: 16px;
  }
}
.title_main {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 800px) {
  .title_main h2 {
    font-size: 40px;
  }
}
.title_main p {
  font-size: 16px;
}
.title_left {
  justify-content: flex-start;
}
.title_left .title_main {
  text-align: left;
  align-items: flex-start;
}
.title_center {
  justify-content: center;
}
.title_center .title_main {
  text-align: center;
  align-items: center;
}
.title_right {
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.title_right .title_main {
  text-align: right;
  align-items: flex-end;
}

.colormode_dark .bg_white {
  background: #0d0f1f;
}
.colormode_dark .bg_gray {
  background: #14172d;
}

/* --- IMPORT TEXTS --- */
/* --- TEXTS --- */
p {
  font-size: 16px;
  color: #838391;
  line-height: 160%;
}
.like_p {
  color: #838391;
}
.like_p__small {
  font-size: 12px;
}
.like_p__med {
  font-size: 14px;
}
.like_p__normal {
  font-size: 16px;
  color: #838391;
}
.like_p__bigger {
  font-size: 18px !important;
}
.like_p__bigger-black {
  font-size: 20px !important;
  color: white;
  font-family: "Jost-Bold", sans-serif;
}
.like_p__mbigger {
  font-size: 20px;
}
.like_p__bolder {
  font-weight: bolder;
  letter-spacing: 1px;
}
.like_h1 {
  font-size: 72px;
  color: #3a394c;
  line-height: 1.3em;
  font-family: "Jost-Bold", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  .like_h1 {
    font-size: 56px;
  }
}

.like_h2 {
  font-size: 56px;
  color: #3a394c;
  line-height: 1.3em;
  font-family: "Jost-Bold", sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 800px) {
  .like_h2 {
    font-size: 40px;
    color: #3a394c;
    line-height: 1.3em;
    font-family: "Jost-Bold", sans-serif;
    font-weight: 700;
  }
}

.like_h3 {
  font-size: 40px;
  color: #50505e;
  line-height: 1.3em;
  font-family: "Jost-Bold", sans-serif;
  font-weight: 700;
}
.like_h4 {
  font-size: 32px;
  color: #50505e;
  line-height: 1.3em;
  font-family: "Jost-Bold", sans-serif;
  font-weight: 600;
}
.like_h5 {
  font-size: 24px;
  color: #50505e;
  line-height: 1.2em;
  font-family: "Jost-Bold", sans-serif;
}
.like_h6 {
  font-size: 20px;
  color: #50505e;
  line-height: 1.2em;
}
.like_h7 {
  font-size: 14px;
  color: #50505e;
  font-family: "Jost-Medium", sans-serif;
  line-height: 1.3em;
  font-weight: 500;
}
.like_h8 {
  font-size: 14px;
  color: #50505e;
  font-family: "Jost-Medium", sans-serif;
  line-height: 1.3em;
  font-weight: 500;
}
.like_px9 {
  font-size: 6px !important;
  color: #50505e !important;
  font-family: "Jost-Medium", sans-serif;
  line-height: 1.3em;
  font-weight: 500;
}

/* --- TEXTADD --- */
.textadd_color_primary100 {
  color: #00218f !important;
}
.textadd_color_primary50 {
  color: #185de3 !important;
}
.textadd_color_primary20 {
  color: #0970f6 !important;
}
.textadd_color_primary10 {
  color: #0083ff !important;
}
.textadd_color_primary05 {
  color: #89c9ff !important;
}
.textadd_color_secondary100 {
  color: #00218f !important;
}
.textadd_color_secondary50 {
  color: #185de3 !important;
}
.textadd_color_secondary20 {
  color: #0970f6 !important;
}
.textadd_color_secondary10 {
  color: #0083ff !important;
}
.textadd_color_secondary05 {
  color: #89c9ff !important;
}
.textadd_color_white {
  color: #ffffff !important;
}
.textadd_color_gray100 {
  color: #0d0f1f !important;
}
.textadd_color_gray80 {
  color: #14172d !important;
}
.textadd_color_gray60 {
  color: #1f2134 !important;
}
.textadd_color_gray40 {
  color: #313148 !important;
}
.textadd_color_gray20 {
  color: #838391 !important;
}
.textadd_color_gray10 {
  color: #d9d9dd !important;
}
.textadd_color_gray05 {
  color: #eaeaeb !important;
}
.textadd_color_gray0 {
  color: #f2f2f3 !important;
}
.textadd_color_success {
  color: #1ba769 !important;
}
.textadd_color_success05 {
  color: #def2e9 !important;
}
.textadd_color_warning {
  color: #e86825 !important;
}
.textadd_color_warning05 {
  color: #ffe1be !important;
}
.textadd_color_alert {
  color: #de1c22 !important;
}
.textadd_color_alert05 {
  color: #ffe0e1 !important;
}
.as_text__bold {
  font-family: "Jost-Bold", sans-serif !important;
}
.as_text__semibold {
  font-family: "Jost-Medium", sans-serif !important;
}
.as_text__regular {
  font-family: "Jost-Regular", sans-serif !important;
}
h2:is(.as_text__bluedark) {
  color: var(--primary-dark);
}
.colormode_dark p,
.colormode_dark .like_p {
  color: rgba(255, 255, 255, 0.72);
}
.colormode_dark .like_h2 {
  color: #ffffff;
}
.colormode_dark .like_h3,
.colormode_dark .like_h4,
.colormode_dark .like_h5,
.colormode_dark .like_h6,
.colormode_dark .like_h7,
.colormode_dark .like_h8 {
  color: var(--white-90);
}

/* --- SERWERY DEDYKOWANE/USŁUGI ADMINISTRACYJNE --- */
.as_h1,
.as_h2 {
  color: var(--gray-100);
}
.as_p {
  color: var(--gray-80);
}
.as_h3,
.as_h4,
.as_h5,
.as_h6,
.as_h7 {
  color: var(--gray-100);
}
.as_p12 {
  font-size: 12px;
}
.as_p14 {
  font-size: 14px;
}
.as_p {
  font-size: 16px;
}
.as_p18 {
  font-size: 18px;
}
.as_p20 {
  font-size: 20px;
}
.as_pbolder {
  font-weight: bolder;
  letter-spacing: 1px;
}
.as_h1 {
  font-size: 72px;
  line-height: 1.3em;
  font-family: "Jost-Bold", sans-serif;
  font-weight: 700;
}
.as_h2 {
  font-size: 56px;
  line-height: 1.3em;
  font-family: "Jost-Bold", sans-serif;
  font-weight: 700;
}
.as_h3 {
  font-size: 40px;
  line-height: 1.3em;
  font-family: "Jost-Bold", sans-serif;
  font-weight: 700;
}
.as_h4 {
  font-size: 32px;
  line-height: 1.3em;
  font-family: "Jost-Bold", sans-serif;
  font-weight: 600;
}
.as_h5 {
  font-size: 24px;
  line-height: 1.2em;
  font-family: "Jost-Medium", sans-serif;
}
.as_h6 {
  font-size: 20px;
  line-height: 1.2em;
}
.as_h7 {
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .as_h1 {
    font-size: 56px;
  }
  .as_h2 {
    font-size: 40px;
  }
}

.colormode_dark .as_h1,
.colormode_dark .as_h2 {
  color: var(--white-100);
}
.colormode_dark .as_h3,
.colormode_dark .as_h4,
.colormode_dark .as_h5,
.colormode_dark .as_h6,
.colormode_dark .as_h7,
.colormode_dark .as_text__bluedark {
  color: var(--white-90);
}
.colormode_dark .as_p {
  color: var(--white-72);
}

/* --- CONTACT FORM POPUP --- */
.popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

#contact_form_box {
  background-color: #ffffff;
  border-radius: 24px;
  margin-inline: 40px;
  width: auto;
  position: relative;
  max-height: 95vh;
  overflow-y: scroll;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
}
#contact_form_box::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
#contact_form_box .grider_g50 {
  padding: 0px 8px;
}
.title_form {
  width: 100%;
  padding: 24px 32px;
}
.close_form {
  cursor: pointer;
  transform: scale(1.5);
}
#contact_form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#contact_form .field {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 8px;
  position: relative;
}
#contact_form .error {
  color: red;
  font-size: 14px;
  display: none;
  position: absolute;
  bottom: -16px;
  left: 15px;
}
.field label {
  font-size: 14px;
  color: var(--gray-100);
  font-family: "Jost-Bold", sans-serif;
}
.field input,
.field textarea {
  box-sizing: border-box;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--gray-40);
  font-family: inherit;
  font-size: 14px;
  color: var(--gray-80);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px;
}
.field input:focus,
.field textarea:focus {
  outline: none !important;
  border: 1px solid #0970f6;
  box-shadow: 0 0 3px #89c9ff;
}
#contact_form button {
  margin-top: 50px;
  width: 100%;
}
/*-- checkbox --*/
#contact_form .checkbox {
  position: relative;
}
.checkbox input[type="checkbox"] {
  display: none;
  visibility: hidden;
}
.checkbox .checkbox_label {
  display: flex;
  cursor: pointer;
}
.checkbox .checkbox_label .box {
  position: relative;
  width: 19px;
  min-width: 19px;
  height: 19px;
  border-radius: 4px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid var(--gray-40);
  transition: all 0.2s ease;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 2px 0px;
}
.checkbox .checkbox_label .box svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.checkbox .checkbox_label .box:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #0970f6;
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}
.checkbox .checkbox_label:hover .box {
  border-color: #0970f6;
}
.checkbox .checkbox_input:checked + .checkbox_label .box {
  background: #0970f6;
  border-color: #0970f6;
}
.checkbox .checkbox_input:checked + .checkbox_label .box svg {
  stroke-dashoffset: 0;
}
.checkbox .checkbox_input:checked + .checkbox_label .box:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}
.checkbox .checkbox_label .text {
  padding-left: 8px;
  text-align: left;
  font-size: 14px;
}
@media screen and (max-width: 1150px) {
  #contact_form_box .as_h4 {
    font-size: 24px;
  }
  #contact_form_box .as_p18 {
    font-size: 16px;
  }
}
/* -------- PAGE-------- */
/* --- NAVBAR --- */
.navbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 16px;
  width: 100%;
  z-index: 9;
  transition: 0.3s;
}
.navbar_main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  transition: 0.3s margin-bottom;
  position: relative;
}

/* --- \/ \/ Dostępne serwery \/ \/ --- */
/* =========================================
   1. General Styles
   ========================================= */

#toggle-filters-btn {
  display: none;
}
.filters-wrapper .filter-label {
  cursor: pointer;
  display: block;
  margin: 1em;
}

.filters-wrapper .filter-label > input {
  display: none;
}

.filters-wrapper .filter-label span {
  font-family: "Jost-Medium", sans-serif;
  color: #838391;
  font-size: 0.85rem;
}

/* CPU, Location, Storage – checkboxy */
.filters-wrapper .cpu-filters .filter-label,
.filters-wrapper .location-filters .filter-label,
.filters-wrapper .storage-filters .filter-label {
  align-items: center;
  display: flex;
  margin: 5px 0;
  color: #fff;
  font-size: 0.95rem;
}

.filters-wrapper .cpu-filters .filter-label input[type="checkbox"],
.filters-wrapper .location-filters .filter-label input[type="checkbox"],
.filters-wrapper .storage-filters .filter-label input[type="checkbox"] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  transform: scale(1.1);
}

.filters-wrapper .filter-label i {
  display: inline-block;
  width: 30px;
  height: 15px;
  border-radius: 15px;
  vertical-align: middle;
  transition: 0.25s 0.09s;
  position: relative;
  background: rgb(212, 212, 212);
}

.filters-wrapper .filter-label i:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  top: 2px;
  left: 3px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.4);
  transition: 0.15s;
}

/* Checkbox zaznaczony */
.filters-wrapper .filter-label > input:checked + i {
  background: #1094fb;
}
.filters-wrapper .filter-label > input:checked + i:after {
  transform: translateX(15px);
}
.filters-wrapper .filter-label > input:checked + i + span {
  color: #b0b0c0;
}

/* Tryb dark */
.colormode_dark .filters-wrapper .filter-label > input:checked + i + span {
  color: rgb(212, 212, 212);
}

/* Zaznacz wszystko */
.filters-wrapper .select-all-checkbox i {
  width: 40px;
  height: 20px;
  border-radius: 20px;
}
.filters-wrapper .select-all-checkbox i:after {
  width: 13px;
  height: 13px;
  top: 3px;
  left: 4px;
}
.filters-wrapper .select-all-checkbox input:checked + i:after {
  transform: translateX(20px);
}
.filters-wrapper .select-all-checkbox {
  padding-top: 10px;
  padding-bottom: 10px;
}
.filters-wrapper .select-all-text {
  font-size: 1.25rem;
  margin-left: 10px;

  color: rgb(116, 116, 116) !important;
}
.colormode_dark .filters-wrapper .select-all-text {
  color: rgb(212, 212, 212) !important;
}

/* =========================================
   2. Hero Section
 
   ========================================= */

.description {
  text-align: center;
  margin-top: 15px;
  padding: 30px 20px;
  background: white;
}
.colormode_dark .description {
  background: #0f0f1e;
}

.description h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
}

.description p {
  margin: 10px 0 0;
  color: #a0a0b0;
  font-size: 1.1rem;
}

/* =========================================
   3. Filters Section
   ========================================= */

.filters-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 40px 70px 40px;
  background-color: rgba(0, 0, 0, 0.07);
}
.colormode_dark .filters-wrapper {
  background: #0f0f1e;
}

.filters-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1500px;
  max-height: 300px;
  justify-content: center;
  align-items: flex-start;
  background-color: white;
  border-radius: 10px;
  padding: 30px 60px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
  position: relative;
}
.colormode_dark .filters-inner {
  background: #1a1b2f;
}

.cpu-filters:not(:first-child),
.location-filters:not(:first-child),
.storage-filters:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 20px;
  margin-left: 20px;
  height: 100%;
}

.filters-inner::before,
.filters-inner::after {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}

.cpu-filters,
.location-filters,
.storage-filters {
  position: relative;
  z-index: 1;
  height: 100%;
}

.filters-title {
  color: black;
  font-weight: bold;
  text-align: center;
  font-size: 1.2rem;
  width: 100%;
  margin-bottom: 20px;
}
.colormode_dark .filters-title {
  color: #fff;
}

.cpu-checkboxes-container,
.location-checkboxes-container,
.storage-checkboxes-container {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 10px;
  align-items: start;
}

.cpu-checkboxes-container span,
.location-checkboxes-container span,
.storage-checkboxes-container span {
  margin-left: 10px;
}

.filters-wrapper .cpu-filters .filter-label:hover,
.filters-wrapper .location-filters .filter-label:hover,
.filters-wrapper .storage-filters .filter-label:hover {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.order-button {
  margin: auto;
}

/* =========================================
   4. Sliders Section
   ========================================= */

.sliders {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0 0 0;
  height: 213px;
  border-radius: 10px;
  margin: auto;
  min-width: 257px;
  background: transparent;
  justify-content: space-between;
}

.slider-group-element {
  padding: 0 0 40px 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto 0 auto auto;
}

.slider--title {
  color: black;
  font-weight: bold;
  margin: 0 0 10px 0;
  font-size: 1rem;
}
.colormode_dark .slider--title {
  color: #fff;
}

.slider-container {
  position: relative;
  width: 200px;
  margin-top: 10px;
  background: linear-gradient(to right, #dadae5, rgb(255, 255, 255), #dadae5);
  height: 5px;
  border-radius: 5px;
}

/* schowanie natywnego tracku i dostosowanie thumba */
.slider-container input[type="range"] {
  position: absolute;
  pointer-events: none;
  width: 100%;
  margin: 0;
  background: transparent;
  -webkit-appearance: none;
  margin-top: -4px;
  margin-left: 0;
}
.slider-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  cursor: pointer;
  background-color: white;
  border: 1px solid rgb(199, 199, 199);
}
.colormode_dark .slider-container input[type="range"]::-webkit-slider-thumb {
  background-color: rgb(255, 255, 255);
}
.slider-container input[type="range"]::-webkit-slider-runnable-track {
  background-color: transparent;
  height: 0px;
}

.slider-range {
  font-size: 0.8rem;
  text-align: center;
  padding-top: 10px;
  color: rgb(113, 113, 113);
}
.colormode_dark .slider-range {
  color: white;
}

/* =========================================
   5. Servers Section
   ========================================= */

.servers-section {
  padding: 20px 20px 40px 20px;
  min-height: 300px;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.07);
}
.colormode_dark .servers-section {
  background: #14172d;
}

#server-list {
  margin: auto;
  padding-left: 150px;
  padding-right: 150px;
}

#server-list-container {
  width: 100%;
  max-width: 1000px;
}

.server-card {
  display: flex;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1rem 1rem 3rem 1rem;
  width: 900px;
  background-color: white;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.4);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.colormode_dark .server-card {
  background-color: #1a1b2f;
}

.server-card__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 900px;
  margin: 0 auto;
  align-items: start;
  gap: 10px;
}

.server-card__specification {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  margin: auto 80px 0 0;
}

.server-card__section {
  margin-right: 2rem;
  margin-bottom: 10px;
}

.server-card__label {
  font-size: 0.9rem;
  color: #b0b0c0;
  margin: 0;
}

.server-card__value {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0.2rem 0 0 0;
  color: black;
}
.colormode_dark .server-card__value {
  color: #ffffff;
}

.server-card__value--name {
  color: black;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  width: 140px;
}
.colormode_dark .server-card__value--name {
  color: white;
}

.server-card__value--price {
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.colormode_dark .server-card__value--price {
  color: rgba(255, 255, 255, 0.9);
}

.server-card__price-text {
  font-size: 0.9rem;
  color: #b0b0c0;
  margin: 0;
}

.server-card__button:hover {
  background-color: #005bb5;
}

/* =========================================
   6. No Servers Message
   ========================================= */

#no-servers-message {
  margin: auto;
}
.colormode_dark .no-servers-text {
  color: #fff;
  background: #1a1b2f;
}

.no-servers-text {
  font-size: 1.1rem;
  text-align: center;
  color: rgb(110, 110, 110);
  background: rgb(212, 212, 212);
  padding: 20px;
  border-radius: 10px;
  margin-top: 0;
}

/* =========================================
   7. Additional Styles 
   ========================================= */

.filters-wrapper input[type="range"] {
  position: absolute;
  pointer-events: none;
  width: 102%;
  margin: 0;
  background: transparent;
  -webkit-appearance: none;
  margin-top: -5px;
  margin-left: 0;
}
.filters-wrapper input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
}

/* chwytak suwaka slidera */
.filters-wrapper input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: auto;
  background: white;
  border-radius: 100%;
  border: 1px solid #bcbfc5;
  cursor: pointer;
  width: 15px;
  height: 15px;
  cursor: pointer;
  position: relative;

  /* pionowe kreski */
  background-image: linear-gradient(to right, transparent 6px, #dbdfea 6px, #dbdfea 7px, transparent 7px, transparent 8px, #dbdfea 8px, #dbdfea 9px, transparent 9px);
  background-repeat: no-repeat;
  background-position: center right 3.5px;
  background-size: 80% 70%;
}

.filters-wrapper input[type="range"]::-moz-range-thumb {
  background: white;
  border-radius: 100%;
  box-shadow: 0 0 0.5px 0.7px #bcbfc5;
  cursor: pointer;
  width: 15px;
  height: 15px;

  background-image: linear-gradient(to right, transparent 6px, #dbdfea 6px, #dbdfea 7px, transparent 7px, transparent 8px, #dbdfea 8px, #dbdfea 9px, transparent 9px);
  background-repeat: no-repeat;
  background-position: center right 3px;
  background-size: 80% 70%;
}
.filters-wrapper input[type="range"]::-moz-range-track {
  background: transparent;
}
.filters-wrapper input[type="range"]::-moz-range-thumb {
  min-width: 15px;
  min-height: 15px;
}
.filters-wrapper input[type="range"] {
  -moz-appearance: none;
}

.colormode_dark .filters-wrapper input[type="range"]::-webkit-slider-thumb {
  background-color: white;
}
.filters-wrapper input[type="range"]::-webkit-slider-runnable-track {
  background-color: transparent;
  height: 0px;
}

.filters-wrapper .slider-container {
  background: linear-gradient(to right, #dadae5, rgb(255, 255, 255), #dadae5);
  height: 5px;
  border-radius: 10px;
}

/* =========================================
   8. Media Queries
   ========================================= */
.price_container {
  display: flex;
  gap: 10px;

  align-items: center;
}
.price_container .like_h5 {
  font-size: 30px;
}
/* Mobile <=600px */
@media (max-width: 600px) {
  .description h1 {
    font-size: 1.5rem;
  }
  .description p {
    font-size: 1rem;
  }

  .filters-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    max-height: none;
    padding: 20px;
  }

  .cpu-filters:not(:first-child),
  .location-filters,
  .storage-filters,
  .sliders {
    border-left: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .cpu-checkboxes-container,
  .location-checkboxes-container,
  .storage-checkboxes-container {
    grid-auto-flow: row;
    grid-template-rows: repeat(auto-fit, minmax(20px, auto));
    gap: 5px;
  }

  .slider-group {
    min-width: auto;
    width: 100%;
  }

  .slider-container {
    max-width: 250px;
  }

  .server-card {
    width: 100%;
    margin: 1rem 0;
    padding: 1rem;
  }

  .server-card__content {
    width: 100%;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .server-card__specification {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
  }

  .server-card__section {
    margin-right: 10px;
  }

  .server-card__value--name {
    font-size: 1.5rem;
    width: 100%;
  }

  .sliders {
    border: none !important;
  }

  #toggle-filters-btn {
    display: none;
  }
}

@media (max-width: 1392px) {
  #server-list {
    padding-left: 25px;
    padding-right: 25px;
    margin: auto;
  }

  .filters-inner {
    flex-wrap: wrap;
    gap: 20px;
    max-height: none;
  }

  .filters-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .cpu-filters,
  .location-filters,
  .storage-filters {
    border-left: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  .cpu-filters,
  .location-filters,
  .storage-filters,
  .sliders {
    width: 100%;
  }

  .server-card {
    width: 100%;
    margin: 1rem auto;
  }

  .server-card__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .server-card__specification {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 0 0;
  }

  .slider-group {
    flex-direction: column;
    align-items: center;
  }

  .slider-group-element {
    padding: 0;
    margin: auto;
    margin-bottom: 20px;
  }

  .sliders {
    border: none !important;
  }

  .filters-inner > * {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
  }

  #toggle-filters-btn {
    display: block;
    margin: auto;
    padding-bottom: 30px;
    background: none;
    border: none;
  }

  #toggle-filters-btn:hover {
    color: white;
  }

  .toggle-button-div {
    background-color: rgba(0, 0, 0, 0.07);
    padding-top: 30px;
  }
  .colormode_dark .toggle-button-div {
    background-color: #0f0f1e;
  }
  #toggle-filters-text {
    font-family: "Jost-Medium", sans-serif;
  }
}

/* --- \/ \/ PROMKA MINECRAFT \/ \/ --- */
.promo-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f2f2f3;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  margin-bottom: 0px;
  background-image: url("../../img/bg_primary.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.promo-header {
  font-size: 20px;
  font-weight: bold;
}

.promo-body {
  display: flex;
  align-items: center;
}

.countdown {
  font-size: 14px;
  margin-top: 10px;
}

.colormode_dark .promo-banner {
  background-color: #14172d;
  color: #f2f2f3;
}

.promo-banner button:hover {
  background: #eef7ff;
}

.promo-banner button:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(33, 150, 243, 0.5);
}

@media (max-width: 768px) {
  .promo-banner {
    font-size: 16px;
    padding: 15px 20px;
  }
  .promo-body {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .promo-banner {
    position: absolute;
    top: 0px;
    font-size: 14px;
    padding: 10px 15px;
  }
}

/* \/ \/ \/ Odliczanie VPS \/ \/ \/ */
.countdown_vps {
  width: 100%;
  justify-content: center;
  align-items: center;
  margin: auto;
  display: flex;
  padding-top: 20px;
  padding-bottom: 60px;
}
#countdown_vps {
  display: inline-block;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

#countdown_vps:hover {
  transform: scale(1.05);
}

.countdown-container {
  display: flex;
  gap: 20px;
}
.colormode_dark .countdown-element {
  background: linear-gradient(135deg, #1f2134, #1f2134);
}

.countdown-element {
  text-align: center;
  padding: 15px;
  background: linear-gradient(135deg, white, white);

  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 80px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.countdown-element h2 {
  font-size: 2rem;
  margin: 0;
  animation: fadeIn 1s ease-out;
  color: #3a394c;
}
.colormode_dark .countdown-element h2 {
  color: white;
}
/* HEADER */

.countdown-header {
  text-align: center;
  margin-bottom: 20px;

  animation: fadeIn 1s ease-out;
}

@media (max-width: 768px) {
  .countdown-header h1 {
    font-size: 1.5rem;
  }
}
/* HEADER */

.countdown-element p {
  font-size: 1rem;
  margin: 5px 0 0;
  opacity: 0.8;
  color: #838391;
}
.colormode_dark .countdown-element p {
  color: white;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .countdown-container {
    flex-direction: row;
    gap: 10px;
  }

  .countdown-element {
    width: 60px;
    height: 80px;
  }

  .countdown-element h2 {
    font-size: 1.5rem;
  }

  .countdown-element p {
    font-size: 0.9rem;
  }
}
.small-product-price {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
}
/* vps skreslona cena \/ */
.vps_discount {
  text-align: center;
}
.small-product-price .vps_discount {
  text-decoration: line-through;
}
@media (max-width: 768px) {
  .small-product-price .vps_discount {
    margin: 0;
  }
}

/* vps skreslona cena ^ */

/* ^^^ Odliczanie VPS ^^^ */
/* --- ^ ^ ^ PROMKA MINECRAFT ^ ^ ^ --- */

@media screen and (max-width: 1150px) {
  .navbar_main {
    flex-direction: column;
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 800px) {
  .navbar_main {
    padding: 24px 16px;
  }
}
.navbar_main_head {
  display: flex;
  justify-content: left;
  align-items: center;
  /* width: 301px; */
  margin-right: 15px;
}
@media screen and (max-width: 1150px) {
  .navbar_main_head {
    width: 100%;
    justify-content: space-between;
  }
}
.navbar_brand {
  height: 32px;
  width: 156px;
  position: relative;
}
.navbar_brand img,
.navbar_brand svg {
  width: 100%;
  height: 100%;
}
.navbar_phone {
  display: none;
  justify-content: space-between;
}
@media screen and (max-width: 1150px) {
  .navbar_phone {
    display: block;
  }
}
.navbar_phone_burger {
  width: 42px;
  height: 28px;
  position: relative;
  cursor: pointer;
}
.navbar_phone_burger:hover span:first-child {
  transform: translateY(3px);
}
@media screen and (max-width: 800px) {
  .navbar_phone_burger:hover span:first-child {
    transform: unset;
  }
}
.navbar_phone_burger:hover span:nth-child(2) {
  width: 80%;
}
@media screen and (max-width: 800px) {
  .navbar_phone_burger:hover span:nth-child(2) {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .navbar_phone_burger:hover span:last-child {
    transform: unset;
  }
}
.navbar_phone_burger span {
  position: absolute;
  display: block;
  height: 4px;
  width: inherit;
  background: #ffffff;
  transition: 0.3s;
  border-radius: 12px;
}
.navbar_phone_burger span:first-child {
  top: 0;
}
.navbar_phone_burger span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.navbar_phone_burger span:last-child {
  bottom: 0;
}
.navbar_body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 1150px) {
  .navbar_body {
    gap: 24px;
    display: none;
    flex-direction: column;
    margin-top: 24px;
    width: 100%;
    align-items: center;
  }
}
.navbar_nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1150px) {
  .navbar_nav {
    gap: 16px;
    flex-direction: column;
    width: 100%;
    justify-content: left;
  }
}
.navbar_nav__item {
  font-size: 16px;
  transition: 0.3s;
  display: flex;
  align-items: center;
}
.navbar_nav__item p {
  color: #ffffff;
  font-family: "Jost-Bold", sans-serif;
  transition: 0.3s;
  user-select: none;
}
.navbar_nav > .navbar_nav__item:hover p {
  color: #89c9ff;
}
.dropdown_content .navbar_nav__item:hover p {
  color: #185de3;
}
.navbar_nav__item.active > p {
  color: #89c9ff !important;
}
@media screen and (max-width: 1150px) {
  .navbar_nav__item.active > p {
    color: #ffffff;
  }
}
.navbar_support {
  width: 290px;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1150px) {
  .navbar_support {
    width: 100%;
    flex-direction: column;
    gap: 16px;
  }
  .navbar_support .btn_secondary {
    width: 100%;
    border: 1px solid #d9d9dd;
    color: #3a394c;
  }
  .navbar_support .btn_secondary:hover {
    background: #eef7ff;
  }
}

@media screen and (min-width: 1150px) and (max-width: 1400px) {
  .navbar_support {
    width: 240px;
    gap: 15px;
  }
  .navbar_nav {
    gap: 16px;
  }
}
@media screen and (max-width: 1150px) {
  .navbar_mobile .navbar_phone_burger span {
    transition: 0.3s;
  }
  .navbar_mobile .navbar_phone_burger span:first-child {
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
  }
  .navbar_mobile .navbar_phone_burger span:nth-child(2) {
    width: 0;
    opacity: 0;
  }
  .navbar_mobile .navbar_phone_burger span:last-child {
    bottom: 50%;
    transform: rotate(-45deg) translateY(50%);
  }
  .navbar_mobile .navbar_body {
    display: flex;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 16px;
    box-shadow: 0 2px 12px rgba(58, 57, 76, 0.1), 0 16px 24px -2px rgba(58, 57, 76, 0.12);
  }
}
@media screen and (max-width: 1150px) and (max-width: 1150px) {
  .navbar_mobile .navbar_nav__item {
    display: flex;
    align-items: center;
    font-size: 16px;
  }
}
@media screen and (max-width: 1150px) and (max-width: 1150px) {
  .navbar_mobile .navbar_nav__item p {
    color: #3a394c;
    font-family: "Jost-Medium", sans-serif;
  }
}
@media screen and (max-width: 1150px) {
  .navbar_mobile .navbar_nav__item:hover p {
    color: #0083ff;
  }
}

/* --- HERO --- */
.hero {
  padding: 192px 0;
  margin: 16px 16px 0;
  border-radius: 24px;
  background-image: url("../../img/bg_primary.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1150px) {
  .hero {
    padding: 128px 0 96px;
  }
}
.hero_body h1 {
  word-break: break-word;
}
.hero_thumb {
  margin: 0 0 0 auto;
  text-align: right;
  width: 100%;
}
@media screen and (max-width: 1150px) {
  .hero_thumb {
    margin: 24px auto 0;
    text-align: center;
  }
}
.hero_thumb img {
  object-fit: contain;
  max-width: 100%;
}
.hero_item {
  display: flex;
  justify-content: left;
  gap: 8px;
  align-items: center;
}
.hero_item svg {
  width: 24px;
  height: 24px;
}
.hero_item svg path {
  stroke: #89c9ff;
}
.hero_item p {
  font-size: 18px;
  color: #ffffff;
}
.hero_info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}
@media screen and (max-width: 800px) {
  .hero_info {
    flex-direction: column;
  }
}
.hero_info h1 {
  position: relative;
  margin-bottom: 12px;
}
@media screen and (max-width: 800px) {
  .hero_info h1 {
    margin-bottom: 0;
  }
}
.hero_info h1:after {
  content: "";
  height: 1px;
  background: #ffffff;
  right: 0;
  left: 0;
  bottom: -6px;
  position: absolute;
  width: 100%;
}
.hero_info .btn {
  cursor: default;
}
@media screen and (max-width: 800px) {
  .hero_info .btn {
    transform: rotate(90deg);
  }
}
.hero_details {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.hero_details_item {
  padding: 24px 32px;
  width: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 800px) {
  .hero_details_item {
    width: 100%;
  }
}
.hero_details_item:nth-child(1) {
  border-radius: 16px 0 0 0;
}
@media screen and (max-width: 800px) {
  .hero_details_item:nth-child(1) {
    border-radius: 16px 16px 0 0;
  }
}
.hero_details_item:nth-child(2) {
  border-radius: 0 16px 0 0;
}
@media screen and (max-width: 800px) {
  .hero_details_item:nth-child(2) {
    border-radius: 0;
  }
}
.hero_details_item:nth-child(3) {
  border-radius: 0 0 0 16px;
}
@media screen and (max-width: 800px) {
  .hero_details_item:nth-child(3) {
    border-radius: 0;
  }
}
.hero_details_item:nth-child(4) {
  border-radius: 0 0 16px 0;
}
@media screen and (max-width: 800px) {
  .hero_details_item:nth-child(4) {
    border-radius: 0 0 16px 16px;
  }
}
.hero_details_item .column {
  gap: 4px;
}
.hero_details_item h2 {
  color: #ffffff;
}
.hero_details_item a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 160%;
  width: fit-content;
}
.hero_details_item a:hover {
  color: #ffffff;
}
.hero.subhero {
  padding-bottom: 152px;
}
@media screen and (max-width: 800px) {
  .hero.subhero {
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 800px) {
  .hero.subhero h1 {
    font-size: 40px;
  }
}

/* --- SUBHEDEAR --- */
.subheader {
  margin-top: -64px;
}

/* --- LANG SWITCH --- */
.langswitch {
  position: relative;
  margin: auto 0;
}
@media screen and (max-width: 1150px) {
  .langswitch {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
  }
}
.langswitch_head {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 1150px) {
  .langswitch_head {
    display: none;
  }
}
.langswitch_head p {
  font-size: 14px;
  color: #ffffff;
  font-family: "Jost-Bold", sans-serif;
}
.langswitch_head svg path {
  fill: #ffffff;
}
.langswitch_body {
  position: absolute;
  top: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.currencyswitch_body {
  position: absolute;
  top: 100%;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

@media screen and (max-width: 1150px) {
  .langswitch_body {
    opacity: 1;
    visibility: visible;
    position: relative;
    top: unset;
    width: unset;
  }
}

@media screen and (max-width: 1150px) {
  .currencyswitch_body {
    opacity: 1;
    visibility: visible;
    position: relative;
    top: unset;
    width: unset;
  }
}

.langswitch_content {
  margin-top: 16px;
  padding: 8px;
  min-width: 64px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  position: relative;
  left: -12px;
}
@media screen and (max-width: 1150px) {
  .langswitch_content {
    margin-top: 0;
    padding: 0;
    min-width: unset;
    border-radius: 0;
    background: 0;
    left: unset;
    flex-direction: row;
  }
}

.currencyswitch_content {
  margin-top: 16px;
  padding: 8px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.currencyswitch_description {
  text-align: center;
  padding: 8px;
  color: #838391 !important;
  font-size: 13px;
}

.currencyswitch_options {
  display: flex;
  width: 275px;
}

@media screen and (max-width: 1150px) {
  .currencyswitch_options {
    width: auto;
  }
  .currencyswitch_content {
    margin-top: 0;
    padding: 0;
    min-width: unset;
    border-radius: 0;
    background: 0;
    left: unset;
    flex-direction: column;
  }
}

.langswitch_item {
  cursor: pointer;
  width: 100%;
  padding: 4px;
  opacity: 0.5;
  transition: 0.3s;
  text-align: center;
}
.langswitch_item p {
  font-size: 14px;
  color: #3a394c;
  font-family: "Jost-Bold", sans-serif;
  transition: 0.3s;
}
.langswitch_item:hover {
  opacity: 1;
}
.langswitch_item:hover p {
  color: #0970f6;
}
.langswitch_item.active {
  opacity: 1;
}
.langswitch_item.active p {
  color: #0970f6;
}
@media screen and (max-width: 1150px) {
  .langswitch_item {
    padding: 2px 16px;
    border-right: 1px solid #eaeaeb;
  }
  .langswitch_item:last-of-type {
    border-right: 0;
  }
}
.langswitch:hover .langswitch_body,
.langswitch:hover .currencyswitch_body {
  opacity: 1;
  visibility: visible;
}

/* --- DROPDOWN --- */
.dropdown {
  position: relative;
  margin: auto 0;
}
@media screen and (max-width: 1150px) {
  .dropdown {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    flex-direction: column;
    text-align: left;
  }
}
.dropdown_head {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 1150px) {
  .dropdown_head {
    justify-content: left;
    width: 100%;
  }
}
.dropdown_head p {
  font-size: 16px;
  color: #ffffff;
  font-family: "Jost-Bold", sans-serif;
}
@media screen and (max-width: 1150px) {
  .dropdown_head p {
    color: #50505e;
    font-family: "Jost-Medium", sans-serif;
    font-weight: 500;
  }
}
.dropdown_head svg {
  transition: 0.3s;
}
.dropdown_head svg path {
  fill: #ffffff;
}
@media screen and (max-width: 1150px) {
  .dropdown_head svg {
    display: none;
  }
}
.dropdown_body {
  position: absolute;
  top: 100%;
  right: -30px;
  width: 100%;
  min-width: 220px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.dropdown_content {
  margin-top: 16px;
  padding: 16px;
  width: 100%;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 1150px) {
  .dropdown_body {
    width: 100%;
    opacity: 1;
    visibility: visible;
    position: relative;
    top: unset;
    right: -25px;
  }
  .dropdown_content {
    margin-top: -10px;
    padding: 0;
    background: 0;
  }
  .navbar_nav__item:hover p {
    color: #185de3 !important;
  }
}
.dropdown_content .navbar_nav__item p {
  color: #50505e;
}
.dropdown_content .navbar_nav__item:hover p {
  color: #0083ff;
}
.dropdown:hover .dropdown_body {
  opacity: 1;
  visibility: visible;
}
.dropdown:hover .dropdown_head:hover p {
  color: #89c9ff;
}
.dropdown:hover .dropdown_head svg {
  transform: rotate(180deg);
  stroke: #89c9ff;
}

/* --- COLORMODE --- */
.colormode {
  display: block;
  height: 48px;
  cursor: pointer;
  user-select: none;
  position: relative;
}
@media screen and (max-width: 1150px) {
  .colormode {
    position: absolute;
    top: 16px;
    right: 58px;
  }
}
@media screen and (max-width: 800px) {
  .colormode {
    right: 74px;
  }
}

label.colormode {
  display: none;
}
label.colormode.show_icon {
  display: block;
}
.colormode_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.colormode_btn__icon {
  width: 24px;
  height: 24px;
  transition: 0.3s;
}
.colormode_btn__icon svg {
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.colormode input {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 0.1px;
  width: 0.1px;
  opacity: 0;
}
.colormode_btn__icon.moon {
  display: block;
}
.colormode_btn__icon.sun {
  display: none;
}
.colormode input:checked ~ .colormode_btn > .moon {
  display: none;
}
.colormode input:checked ~ .colormode_btn > .sun {
  display: block;
}
.colormode_btn__icon svg path {
  stroke: #eef7ff;
  transition: 0.3s;
}

/* --- CTA --- */
.cta {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .cta {
    padding-top: 64px;
  }
}
.cta_body {
  border-radius: 24px;
  background-image: url("../../img/bg_primary.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 64px;
}
@media screen and (max-width: 800px) {
  .cta_body {
    padding-top: calc(32px + 148px);
  }
}
@media screen and (max-width: 600px) {
  .cta_body {
    padding: calc(32px + 148px) 24px 48px;
  }
}
.cta_content {
  max-width: 60%;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .cta_content {
    max-width: 100%;
  }
}
.cta_content h2 {
  color: #ffffff;
}
@media screen and (max-width: 600px) {
  .cta_content h2 {
    font-size: 32px;
  }
}
.cta_content .hero_item p {
  color: #ffffff;
  font-family: "Jost-Medium", sans-serif;
}
.cta_thumb {
  position: absolute;
  right: 32px;
  width: 401px;
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 6/4;
}
@media screen and (max-width: 1150px) {
  .cta_thumb {
    width: 301px;
  }
}
@media screen and (max-width: 800px) {
  .cta_thumb {
    left: 50%;
    transform: translateX(-50%);
    right: unset;
    width: 301px;
    bottom: unset;
    top: 0;
  }
}
.cta_thumb img {
  width: 100%;
  object-fit: contain;
}

@media screen and (min-width: 800px) {
  .cta_thumb__r_b_corner {
    top: auto;
    transform: none;
    bottom: 0;
    right: 0;
  }
}

/* --- RECOMENDATION --- */
.recommendation {
  padding: 0 0 64px;
}
.recommendation_head {
  background-image: url("../../img/bg_primary.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 64px 0 calc(128px + 96px);
}
.recommendation_body {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  justify-content: left;
}
@media screen and (max-width: 800px) {
  .recommendation_body {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
}
.recommendation_user {
  max-width: 200px;
  aspect-ratio: 1/1;
  width: 100%;
  position: relative;
}
.recommendation_user__avatar {
  border-radius: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.recommendation_user__avatar img {
  width: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
}
.recommendation_user svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 64px;
  object-fit: contain;
}
.recommendation_user svg path {
  fill: #0970f6;
}
.recommendation_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.recommendation_content p {
  color: #ffffff;
}
.recommendation_content h3 {
  color: #ffffff;
  line-height: 1.5em;
}
@media screen and (max-width: 800px) {
  .recommendation_content h3 {
    font-size: 24px;
  }
}
.recommendation_footer {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 277px 111px rgba(0, 0, 0, 0.01), 0 156px 94px rgba(0, 0, 0, 0.05), 0 69px 69px rgba(0, 0, 0, 0.09), 0 17px 38px rgba(0, 0, 0, 0.1), 0 0 0 rgba(0, 0, 0, 0.1);
  padding: 48px 64px;
  margin-top: -128px;
}
@media screen and (max-width: 600px) {
  .recommendation_footer {
    padding: 32px 24px;
  }
}
.recommendation_footer_content {
  text-align: left;
}
@media screen and (max-width: 800px) {
  .recommendation_footer_content h2 {
    font-size: 32px;
  }
}
.recommendation_footer_thumb {
  text-align: right;
}
@media screen and (max-width: 800px) {
  .recommendation_footer_thumb {
    text-align: center;
  }
}
.recommendation_footer_thumb img {
  max-width: 251px;
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: contain;
}

/* --- SIDEBOXER --- */
.sideboxer {
  padding: 48px 0;
  position: relative;
}
@media screen and (max-width: 800px) {
  .sideboxer {
    padding: 0 0 48px;
  }
}
.sideboxer_accent {
  border-radius: 24px 0 0 24px;
  background: #eaeaeb;
  position: absolute;
  width: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .sideboxer_accent {
    width: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    height: auto;
    top: 33.33%;
    border-radius: 24px;
  }
}
.sideboxer_main {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 800px) {
  .sideboxer_main {
    flex-direction: column;
    gap: 48px;
  }
}
.sideboxer_head {
  max-width: 401px;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .sideboxer_head {
    max-width: 100%;
  }
}
.sideboxer_body {
  width: 100%;
}

/* --- REVIEWS --- */
.reviews {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}
.reviews_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.reviews_body .owl-stage {
  display: flex;
  align-items: stretch;
}
.reviews_body .owl-stage-outer {
  padding: 0 3px;
}
.reviews_footer {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}
.reviews_lister {
  display: flex;
}
.counter {
  animation: countNumber 4s;
  animation-timing-function: steps(10);
}
.reviews_lister__item {
  border: 1px solid #0d0f1f;
  border-radius: 100%;
  width: 32px;
  height: 32px;
  margin-left: -6px;
  overflow: hidden;
}
.reviews_lister__item:first-of-type {
  margin-left: 0;
}
.reviews_lister__item img {
  width: 100%;
  object-fit: contain;
}

/* --- BOXER --- */
.boxer {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  transition: 0.3s;
}
.boxer_icon {
  padding: 8px;
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.boxer_icon svg,
.boxer_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.boxer_center {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #f2f2f3;
}
.boxer_center h3 {
  font-family: "Jost-Bold", sans-serif;
}
.boxer_center .boxer_icon {
  width: 64px;
  height: 64px;
  background: #eef7ff;
  transition: 0.3s;
}

.boxer_review {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  border: 1px solid #f2f2f3;
  height: 100%;
}
.boxer_review__avatar {
  width: 64px;
  height: 64px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 100%;
}
.boxer_review__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.boxer_review:hover {
  border: 1px solid #d9d9dd;
}

.boxer_package {
  border: 0;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.boxer_package_head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.boxer_package_price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.boxer_package_price span {
  font-size: 12px;
  font-family: "Jost-Regular", sans-serif;
  font-weight: 400;
}
.boxer_package .btn {
  width: 100%;
}
.boxer_package_info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}
.boxer_package_info li {
  padding-left: 24px;
  color: #3a394c;
  position: relative;
}
.boxer_package_info li:before,
.boxer_package_info li:after {
  content: "";
  background: #185de3;
  width: 2px;
  height: 25px;
  position: absolute;
  left: 0;
}
.boxer_package_info li:before {
  transform: rotate(-45deg);
  height: 7px;
  left: 1px;
  top: 7px;
}
.boxer_package_info li:after {
  transform: rotate(45deg);
  height: 15px;
  left: 7.5px;
  top: 0.5px;
}
.boxer_package.highlight {
  background: #00218f;
}
.boxer_package.highlight h3,
.boxer_package.highlight p {
  color: #ffffff;
}
.boxer_package.highlight li {
  color: #ffffff;
}
.boxer_package.highlight li:before,
.boxer_package.highlight li:after {
  background: #ffffff;
}

.boxer_image {
  position: relative;
  padding: 0;
  background: 0;
}
.boxer_image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.boxer_image.full {
  background: #ffffff;
  overflow: hidden;
  border-radius: 24px;
  filter: drop-shadow(0px 277px 111px rgba(0, 0, 0, 0.01)) drop-shadow(0px 156px 94px rgba(0, 0, 0, 0.05)) drop-shadow(0px 69px 69px rgba(0, 0, 0, 0.09)) drop-shadow(0px 17px 38px rgba(0, 0, 0, 0.1)) drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.1));
}
.boxer_image.full img {
  object-fit: cover;
}
.boxer_image.as_4x3 {
  aspect-ratio: 4/3;
}
.boxer_image.as_3x6 {
  aspect-ratio: 3/6;
}
.boxer_image.as_16x9 {
  aspect-ratio: 16/9;
}
.boxer_image.as_16x10 {
  aspect-ratio: 16/10;
}

.boxer_stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #eaeaeb;
  border-radius: 0;
}
.boxer_stat h3 {
  font-family: "Jost-Bold", sans-serif;
}
.boxer_stat .boxer_icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: #ffffff;
  transition: 0.3s;
  box-shadow: 0 277px 111px rgba(0, 0, 0, 0.01), 0 156px 94px rgba(0, 0, 0, 0.05), 0 69px 69px rgba(0, 0, 0, 0.09), 0 17px 38px rgba(0, 0, 0, 0.1), 0 0 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  .boxer_stat .boxer_icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
}

.boxer_inter {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #f2f2f3;
  background: 0;
}
.boxer_inter h3 {
  font-family: "Jost-Bold", sans-serif;
}
.boxer_inter .boxer_icon {
  width: 64px;
  height: 64px;
  background: #eef7ff;
  transition: 0.3s;
}
.boxer_inter:hover {
  box-shadow: 0 69px 69px rgba(0, 0, 0, 0.09), 0 0 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.boxer_lister {
  padding: 0;
  background: 0;
  display: flex;
  align-items: flex-start;
  justify-content: left;
  gap: 16px;
}
.boxer_lister .boxer_icon {
  min-width: 48px;
  height: 48px;
  width: 48px;
  background: #eef7ff;
}
.boxer_lister_content {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.boxer_product {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.boxer_product .btn {
  width: 100%;
}
.boxer_product_head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.boxer_product_body {
  padding: 16px;
  border: 1px solid #eaeaeb;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.boxer_product_body p {
  font-size: 14px;
  font-weight: 600;
  font-family: "Jost-Bold", sans-serif;
}

.boxer_system {
  position: relative;
  margin-top: 48px;
  border-radius: 24px;
  background: #f2f2f3;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.boxer_system svg {
  color: #3a394c;
}

.boxer_system_iso {
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 10px;
  background-color: #185de3;
  border-radius: 0 24px 0 0;
}
/* --- REVIEWS AI --- */
.ai__list_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  width: 60%;
}
.ai__list {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.ai__list p {
  text-align: left;
  line-height: 100%;
  padding-bottom: 10px;
}
.ai__user {
  display: flex;
  gap: 24px;
}
.ai__title {
  font-size: 32px;
}
.ai__boxer {
  width: 100%;
}
.ai__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
  align-items: center;
}
@media (max-width: 1174px) {
  .ai__list_container {
    width: 50%;
  }
}
@media (max-width: 970px) {
  .ai__boxer {
    padding: 18px;
  }
  .ai__title {
    font-size: 24px;
  }
  .ai__description {
    font-size: 14px;
  }
  .ai__container {
    padding: 0 10px;
    justify-content: center;
  }
  .ai__list_container {
    width: 100%;
  }
  .ai__list p {
    text-align: center;
  }
}
@media (max-width: 556px) {
  .ai__container {
    padding: 0;
  }
  .ai__title {
    font-size: 20px;
  }
  .ai__description {
    font-size: 18px;
  }
  .ai__list p {
    font-size: 14px;
  }
  .ai__list_container {
    gap: 4px;
  }
  .ai__title {
    font-size: 19px;
  }
  .ai__description {
    font-size: 14px;
  }
  .ai__boxer {
    padding: 42px 16px;
    min-height: 342px;
  }
  .ai__list_container p {
    font-size: 16px;
    text-align: left;
  }
  .ai__list {
    min-width: 192px;
  }
  .ai__list_container {
    margin-top: 12px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
/* @media (max-width: 530px) {
  .ai__list_container p {
    margin-left: 100px;
  }
}
@media (max-width: 470px) {
  .ai__list_container p {
    margin-left: 100px;
  }
}
@media (max-width: 430px) {
  .ai__list_container p {
    margin-left: 60px;
  }
}
@media (max-width: 400px) {
  .ai__list_container p {
    margin-left: 30px;
  }
} */
/* --- STATER --- */
.stater {
  display: flex;
  align-items: stretch;
}
@media screen and (min-width: 1150px) {
  .mobile_only {
    display: none;
  }
}
@media screen and (max-width: 1150px) {
  .stater {
    flex-wrap: wrap;
  }
}
.stater .boxer {
  width: 100%;
}
@media screen and (max-width: 1150px) {
  .stater .boxer {
    width: 50%;
  }
}
.stater .boxer:first-of-type {
  border-radius: 16px 0 0 16px;
}
@media screen and (max-width: 1150px) {
  .stater .boxer:first-of-type {
    border-radius: 16px 0 0 0;
  }
}
.stater .boxer:last-of-type {
  border-radius: 0 16px 16px 0;
}
@media screen and (max-width: 1150px) {
  .stater .boxer:last-of-type {
    border-radius: 0 0 16px 0;
  }
}
@media screen and (max-width: 1150px) {
  .stater .boxer:nth-child(2) {
    border-radius: 0 16px 0 0;
  }
  .stater .boxer:nth-child(3) {
    border-radius: 0 0 0 16px;
  }
}
@media screen and (max-width: 800px) {
  .stater h3 {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .stats {
    font-size: 22px;
  }
  .stats_desc {
    font-size: 18px;
  }
}
@media (max-width: 370px) {
  .stats {
    font-size: 20px;
  }
  .stats_desc {
    font-size: 16px;
  }
}
@media screen and(max-width: 500px) {
  .stats .counter {
    font-size: 28px;
  }
  .boxer .like_h5 {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .stats_security_header .counter {
    font-size: 32px;
  }
}
/* --- LAPTOPER --- */
.laptoper_main {
  position: sticky;
  height: 451px;
  top: 64px;
}
@media screen and (max-width: 1150px) {
  .laptoper_main {
    width: fit-content;
    margin: 0 auto;
    position: relative;
    top: unset;
    height: unset;
  }
}
.laptoper_main > img {
  height: 451px;
  object-fit: contain;
  position: absolute;
  aspect-ratio: 227/130;
  z-index: 2;
}
@media screen and (max-width: 1150px) {
  .laptoper_main > img {
    position: relative;
    height: unset;
    width: 100%;
  }
}
.laptoper_main_thumb {
  position: absolute;
  aspect-ratio: 16/10;
  top: 21px;
  left: 84px;
  bottom: 0;
  z-index: 1;
  width: 618px;
}
@media screen and (max-width: 1150px) {
  .laptoper_main_thumb {
    left: 10.7%;
    width: 78.5%;
    top: 4.65%;
  }
}
.colormode_dark .tabex_main img.lightmode,
.colormode_light .tabex_main img.darkmode {
  display: none;
  opacity: 0;
}

.colocation-table td {
  padding-right: 15px;
  padding-bottom: 5px;
}

.colormode_dark .dark .like_h6 {
  color: #50505e !important;
}
.colormode_dark .dark p {
  color: #838391 !important;
}
.tabex_main.active img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
}

/* --- STARS --- */
.stars {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
}

/* --- PACKAGES --- */
.packages {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.packages_head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.packages_body {
  position: relative;
}
.packages_footer {
  border-top: 1px solid #eaeaeb;
  padding-top: 24px;
}

/* --- TABEX --- */
.tabex_main {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 100%;
  transition: none;
  display: none;
}
.tabex_main.active {
  position: relative;
  visibility: visible;
  opacity: 1;
  height: auto;
  display: block;
}

.tabex_main.width100.active {
  height: 100%;
}
/* --- GRAPHER --- */
.grapher_body {
  margin-top: 64px;
}
.grapher_thumb {
  width: 100%;
}
.grapher_thumb img,
.grapher_thumb svg {
  object-fit: contain;
  width: 100%;
  height: auto;
}

/* --- SWITCHER --- */
.switcher {
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: 0.3s;
}
.switcher_icon {
  padding: 8px;
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.switcher_icon svg,
.switcher_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.switcher_button {
  padding: 8px 16px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #eaeaeb;
}
.switcher_button p {
  font-size: 14px;
  color: #3a394c;
  font-weight: 600;
  font-family: "Jost-Bold", sans-serif;
}
.switcher_button:hover {
  border-color: #0970f6;
}
.switcher_button.active {
  background: #185de3;
  border-color: #185de3;
}
.switcher_button.active p {
  color: #ffffff;
}
.switcher_liner {
  padding: 8px 16px;
  border-bottom: 1px solid #d9d9dd;
}
.switcher_liner p {
  font-size: 14px;
  color: #3a394c;
  font-weight: 600;
  font-family: "Jost-Bold", sans-serif;
  transition: 0.3s;
}
.switcher_liner:after {
  position: absolute;
  content: "";
  left: 50%;
  height: 1px;
  background: #185de3;
  transform: translateX(-50%);
  bottom: -1px;
  width: 0;
  transition: 0.3s;
}
.switcher_liner:hover p {
  color: #185de3;
}
.switcher_liner.active p {
  color: #185de3;
}
.switcher_liner.active:after {
  width: 101%;
}
.switcher_box {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #eaeaeb;
  display: flex;
  align-items: flex-start;
  justify-content: left;
  gap: 16px;
}
.switcher_box .switcher_icon {
  min-width: 48px;
  height: 48px;
  width: 48px;
  background: #eef7ff;
}
.switcher_box:before {
  content: "";
  position: absolute;
  width: 8px;
  left: -5px;
  opacity: 0;
  transform: translateX(-5px);
  top: 24px;
  height: 48px;
  border-radius: 16px;
  background: #0970f6;
  transition: 0.3s;
}
.switcher_box_content {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.switcher_box_content p {
  transition: 0.1s;
  overflow: hidden;
  opacity: 0;
  height: 0;
}
.switcher_box:hover {
  border-color: #d9d9dd;
}
.switcher_box.active {
  background: #ffffff;
  box-shadow: 0 69px 69px rgba(0, 0, 0, 0.09), 0 0 0 rgba(0, 0, 0, 0.1);
}
.switcher_box.active p {
  height: fit-content;
  opacity: 1;
}
.switcher_box.active:before {
  transform: translateX(0);
  opacity: 1;
}
/* --- CUSTOM --- */
.btn-special {
  font-size: 14px !important;
}

/* --- FAQ --- */
.faq_main {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  align-items: flex-start;
}
@media screen and (max-width: 1150px) {
  .faq_main {
    flex-direction: column;
  }
}
.faq_info {
  max-width: 415px;
  width: 100%;
  min-width: 415px;
}
@media screen and (max-width: 800px) {
  .faq_info {
    max-width: 100%;
    min-width: unset;
  }
}
.faq_info h2 {
  margin-bottom: 8px;
}
.faq_info > p {
  font-size: 16px;
}
.faq_info_cta {
  margin-top: 48px;
  border-radius: 24px;
  background: #f2f2f3;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq_content {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- PRODUCTS --- */
.products {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}
.products_head {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- ITEM OF LIST / LIST ITEM --- */
.list_item {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.list_item > div.list_item__header {
  flex-grow: 3;
}
.list_item > div.list_item__body {
  flex-grow: 1;
}
.list_item > div.list_item__cta {
  flex-grow: 3;
}
.list_item__header {
  min-width: 20%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-self: flex-start;
}
.list_item__header .param_data,
.item_service__header .as_h7,
.param_data .as_h7,
.cta_price .as_h7 {
  font-size: 18px;
  font-family: "Jost-Bold", sans-serif;
}
.list_item__header_col {
  display: none;
}
.list_item__body {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
  align-content: flex-start;
  max-width: 725px;
}
.list_item.recommend_item {
  border: 3px solid var(--primary-100);
  box-sizing: border-box;
  position: relative;
}
.recommend_item::before {
  position: absolute;
  content: "Popularny";
  height: 40px;
  width: 120px;
  left: calc(50% - 60px);
  right: 50%;
  top: -23px;
  background-color: var(--primary-100);
  border-radius: 32px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost-Medium", sans-serif;
}
.params__container {
  display: flex;
  justify-content: center;
}
.list_item__param {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 170px;
}
.list_item__param > .param_data {
  line-height: 100%;
  display: flex;
}
.param_data.icon_flag::before {
  content: url("../../img/icons/icon_poland.svg");
  display: inline-block;
  width: 20px;
  height: 16px;
}
.params_ram.responsive_s {
  display: none;
}
.list_item__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.list_item__cta a {
  font-size: 16px;
  font-family: "Jost-Medium";
}
.list_item__cta > .cta_price {
  display: none;
}
/* radio */
.radio_select_box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.radio_select_ram {
  display: flex;
}
.radio_select {
  display: flex;
  position: relative;
  align-items: flex-end;
  justify-content: center;
  padding-block: 8px;
  color: #838391;
  font-family: "Jost-Regular", sans-serif;
  cursor: pointer;
  border: 2px solid #b5bfd9;
  width: 70px;
  user-select: none;
  -webkit-user-select: none;
}
.radio_select.i_first {
  border-radius: 16px 0px 0px 16px;
  border-right: 0px;
}
.radio_select.i_middle {
  border-right: 0px;
}
.radio_select.i_last,
label.radio_select.i_last.active::after {
  border-radius: 0px 16px 16px 0px;
}
label.radio_select.i_first.active::after {
  border-radius: 16px 0px 0px 16px;
}
.params_ram input[type="radio"] {
  display: none;
}
input[type="radio"] + label.radio_select.active {
  color: #185de3;
  font-family: "Jost-Bold", sans-serif;
}
input[type="radio"] + label.radio_select.active::after {
  content: "";
  position: absolute;
  box-shadow: 0 0 0 2px #185de3;
  background: #ffffff;
  left: 0;
  bottom: 0;
  background: none;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.colormode_dark .radio_select {
  color: var(--white-72);
}
@media screen and (max-width: 1400px) {
  .list_item__cta > .cta_price {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .list_item__param.price {
    display: none;
  }
}
@media screen and (max-width: 1150px) {
  .list_item__body {
    max-width: 355px;
  }
}
.list_item__cta span.as_h3 {
  display: none;
}
@media screen and (max-width: 800px) {
  .list_item {
    flex-direction: column;
    gap: 40px;
  }
  .list_item.col_reverse {
    flex-direction: column-reverse;
  }
  .list_item__header {
    display: none;
  }
  .list_item__header_col {
    display: block;
    padding-bottom: 10px;
  }
  .list_item__body {
    flex-direction: column;
  }
  .list_item__param {
    flex-direction: row;
    width: 300px;
  }
  .param_name {
    width: 110px;
  }
  .list_item__cta > .cta_price {
    display: flex;
    flex-direction: row;
  }
  .list_item__cta span.as_h3 {
    margin-top: -15px;
    padding-inline: 15px;
    display: block;
  }
  .cta_price .as_h7 {
    display: none;
  }
  .list_item__cta,
  .list_item__cta .btn {
    width: 100% !important;
  }
  .param_data.param_ram.d_none {
    display: none;
  }
  .params_ram.responsive_s {
    display: flex;
  }
  .radio_select {
    padding-block: 4px;
  }
}

/* item_service */
.item_service > div.item_service__header {
  flex-grow: 1;
  width: -webkit-fill-available;
  padding-right: 15px;
}
.item_service > .list_item__body {
  max-width: 30%;
  min-width: 330px;
}
.item_service > div.list_item__cta {
  width: 20%;
  min-width: 155px;
  justify-content: center;
}
.item_service .list_item__param {
  width: 100px;
  height: 100%;
}
.item_service .list_item__param > .param_data {
  height: 100%;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .item_service {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .item_service__header {
    text-align: center;
  }
  .param_name.d_none {
    display: none;
  }
  .item_service__header .like_h6 {
    padding-inline: 50px;
  }
  .item_service .list_item__param {
    width: 100%;
  }
  .item_service .list_item__param p {
    width: 50%;
  }
}

/* --- WELCOME PAGE INDEX.PHP --- */
ul.advantages_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  gap: 10px;
}
ul.advantages_list > li {
  width: 210px;
  display: flex;
  gap: 10px;
  align-items: center;
}
ul.advantages_list > li path {
  fill: #1ba769;
}
ul.advantages_list.blue_semibold > li path {
  fill: var(--primary-20);
}
.advantages_list.blue_semibold p {
  font-family: "Jost-Medium", sans-serif;
}
.image_thumb__500 {
  width: 100%;
  max-width: 500px;
}
/* --- POSITION --- */
.position_relative {
  position: relative;
}
.position_relative.icon_nvidia::before {
  content: url("../../img/img_nvidialogo.png");
  position: absolute;
  top: -40px;
  left: 0;
}
.colormode_dark .position_relative.icon_nvidia::before {
  content: url("../../img/img_nvidialogo_dark.png");
}

/* --- FOOTER --- */
.footer {
  margin-top: 64px;
}

.footer.no_margin {
  margin-top: 0px;
}

.footer_head {
  overflow: hidden;
}
.footer_head_info {
  background-image: url("../../img/abs_map.svg");
  background-position: 25% top;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 64px 0;
}
.footer_head_info_content {
  max-width: 736px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .footer_head_info_content h2 {
    font-size: 32px;
  }
}
.footer_head_info__item {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 8px;
}
.footer_head_info__item svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.footer_head_info__item svg path {
  fill: #1ba769;
}
.footer_head_info_mockup {
  width: 351px;
  aspect-ratio: 10/17;
  position: absolute;
  right: 0;
  top: -32px;
}
.footer_head_info_mockup img {
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1150px) {
  .footer_head_info_mockup {
    top: 0;
    width: 251px;
  }
}
@media screen and (max-width: 800px) {
  .footer_head_info_mockup {
    display: none;
  }
}
.footer_head_discord {
  padding: 64px 0;
  background: #00218f;
}
.footer_head_discord h2 {
  color: #ffffff;
}
.footer_body {
  background: #00218f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 800px) {
  .footer_body {
    padding: 24px 0;
  }
}
.footer_body .wrapper {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .footer_body .wrapper {
    flex-direction: column;
  }
}
.footer_box {
  padding: 32px 48px;
  width: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer_box:first-of-type {
  padding-left: 0;
}
.footer_box:last-of-type {
  padding-right: 0;
  border-right: 0;
}
.footer_box__sk {
  width: 156px;
  height: 32px;
  object-fit: contain;
}
.footer_box__pk {
  width: 64px;
  height: 56px;
  object-fit: contain;
}
.footer_box p,
.footer_box a {
  color: rgba(255, 255, 255, 0.72);
}
.footer_box h3 {
  color: #ffffff;
}
.footer_box a {
  display: block;
  width: fit-content;
}
.footer_box a:hover {
  color: #ffffff;
}
@media screen and (max-width: 800px) {
  .footer_box {
    border-right: 0;
    padding: 24px 0;
  }
}
.footer_authors {
  background: #00218f;
  padding: 48px 0 32px;
  position: relative;
}
.footer_authors p,
.footer_authors a {
  font-size: 14px;
}
.footer_authors .docs p {
  color: #ffffff;
}
.footer_authors .docs a {
  color: rgba(255, 255, 255, 0.72);
}
.footer_authors .docs a:hover {
  color: #ffffff;
}
.footer_authors__item {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 8px;
}
.footer_authors__item svg path {
  fill: #ffffff;
}
.footer_authors__item a {
  color: rgba(255, 255, 255, 0.5);
}
.footer_authors__item a:hover {
  color: #ffffff;
}

.footer_authors_socials__item {
  gap: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_authors_socials__item svg path {
  fill: rgba(255, 255, 255, 0.72);
  transition: 0.3s;
}
.footer_authors_socials__item p {
  color: rgba(255, 255, 255, 0.72);
  transition: 0.3s;
}
.footer_authors_socials__item:hover svg path {
  fill: #ffffff;
}
.footer_authors_socials__item:hover p {
  color: #ffffff;
}
.footer_author {
  position: absolute;
  top: -16px;
  left: 0;
  color: #00218f !important;
  cursor: default;
  user-select: none;
}
.footer_author a {
  color: #00218f;
  cursor: default;
}
.footer_author a:hover {
  cursor: default;
}

/* --- COLORMODE COLORS --- */
.colormode_light {
  background: #ffffff;
}
.colormode_light .hero h1 {
  color: #ffffff;
}
.colormode_light .hero p {
  color: rgba(255, 255, 255, 0.72);
}

.colormode_dark {
  background: #0d0f1f;
}
.colormode_dark .hero h1 {
  color: #ffffff;
}
.colormode_dark .hero p {
  color: rgba(255, 255, 255, 0.72);
}
.colormode_dark .recommendation_footer {
  background: #14172d;
}
.colormode_dark .sideboxer_accent {
  background: #1f2134;
}
.colormode_dark .boxer_center {
  background: #14172d;
  border-color: #1f2134;
}
.colormode_dark .boxer_center .boxer_icon {
  background: #1f2134;
}
.colormode_dark .boxer_review {
  background: #0d0f1f;
  border-color: #1f2134;
}
.colormode_dark .boxer_review:hover {
  background: #14172d;
}
.colormode_dark .boxer_package {
  background: #1f2134;
}
.colormode_dark .boxer_package li {
  color: rgba(255, 255, 255, 0.9);
}
.colormode_dark .boxer_package.highlight {
  background: #00218f;
}
.colormode_dark .boxer_stat {
  background: #14172d;
  border-color: #1f2134;
}
.colormode_dark .boxer_stat .boxer_icon {
  background: #1f2134;
}
.colormode_dark .boxer_inter {
  border-color: #1f2134;
}
.colormode_dark .boxer_inter:hover {
  background: #14172d;
}
.colormode_dark .boxer_inter .boxer_icon {
  background: #1f2134;
}
.colormode_dark .boxer_lister .boxer_icon {
  background: #1f2134;
}
.colormode_dark .boxer_product {
  background: #0d0f1f;
}
.colormode_dark .boxer_product_body {
  border-color: #1f2134;
  background: #14172d;
}
.colormode_dark .reviews_lister__item {
  border-color: #ffffff;
}
.colormode_dark .switcher p {
  color: #ffffff;
}
.colormode_dark .switcher_button {
  background: #1f2134;
  border-color: #313148;
}
.colormode_dark .switcher_button:hover {
  border-color: #0970f6;
}
.colormode_dark .switcher_button.active {
  background: #185de3;
  border-color: #185de3;
}
.colormode_dark .switcher_liner {
  border-color: #313148;
}
.colormode_dark .switcher_liner:hover p {
  color: #0970f6;
}
.colormode_dark .switcher_liner.active p {
  color: #0970f6;
}
.colormode_dark .switcher_box {
  border-color: #14172d;
}
.colormode_dark .switcher_box.active {
  background: #14172d;
}
.colormode_dark .switcher_box:hover {
  border-color: #1f2134;
}
.colormode_dark .switcher_box .switcher_icon {
  background: #1f2134;
}
.colormode_dark .packages_footer {
  border-color: #313148;
}
.colormode_dark .grider_wrapper_footer {
  border-color: #313148;
}
.colormode_dark .faq_info_cta {
  background: #14172d;
}
.colormode_dark .boxer_system {
  background: #14172d;
}

.colormode_dark .boxer_system svg {
  color: rgb(68, 149, 255);
}

.colormode_dark .boxer_system_iso {
  color: #fff;
}
.colormode_dark .list_item {
  background: #1f2134;
}
.colormode_dark .item_service {
  background: #1f2134;
}
.float-header {
  transform: translatey(0px);
  animation: floathead 6s ease-in-out infinite;
}

/* --- AVATAR --- */
.round_avatar_wrapper {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 100%;
}

.round_avatar_wrapper.avatar_xs {
  width: 36px;
  height: 36px;
}

.round_avatar_wrapper.avatar_m {
  width: 64px;
  height: 64px;
}

.round_avatar_wrapper img {
  width: 100%;
  object-fit: contain;
}

/* --- BLOG --- */
.hero.blog {
  background-image: url("../../img/bg_blog_primary.webp");
}

.hero.blog.blog_details {
  padding: 48px 0;
}

.hero .hero_blog p {
  color: #ffffff;
}

.container.container_blog {
  padding: 0px 75px;
}

.container_blog .like_h5,
.container_blog .like_h4 {
  color: #181a2a;
}

.colormode_dark .container_blog .like_h5,
.colormode_dark .container_blog .like_h4 {
  color: #ffffff;
}

.container_blog .boxer_lister_content p {
  color: #3b3c4a;
  line-height: 120%;
}

.colormode_dark .container_blog .boxer_lister_content p {
  color: #ffffff;
  line-height: 120%;
}

img.blog_image {
  border-radius: 12px;
  width: 100%;
}
/* --- POST CARD --- */
.post_cards_wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.post_card {
  background-color: #ffffff;
  border: 1px solid #e8e8ea;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
  max-width: 700px;
}

.post_card.post_card__absolute {
  position: absolute;
  bottom: -64px;
  left: 64px;
  box-shadow: 0px 12px 24px rgba(24, 26, 42, 0.12);
  padding: 40px;
  gap: 24px;
  max-width: 600px;
}

@media screen and (min-width: 600px) and (max-width: 800px) {
  .post_card {
    flex-direction: row;
  }
}

@media screen and (max-width: 800px) {
  .container.container_blog {
    padding: 0px 30px !important;
  }
  .grider_wrapper .post_card:not(.post_card__absolute) {
    width: 100%;
  }
  .post_card.post_card__absolute {
    bottom: -30px;
    left: 40px;
    padding: 20px;
  }
  .relative_background {
    height: 500px;
  }
}

@media screen and (min-width: 800px) {
  .container.container_blog {
    padding: 0px 50px;
  }
  .grider_wrapper .post_card:not(.post_card__absolute) {
    width: calc(50% - 20px / 2);
  }
}

@media screen and (min-width: 1150px) {
  .grider_wrapper .post_card:not(.post_card__absolute) {
    width: calc(33.33% - 40px / 3) !important;
  }
}

.post_card__image {
  border-radius: 6px;
  aspect-ratio: 4/3;
  overflow: hidden;
  min-width: 220px;
  max-height: 320px;
}

.post_card__image img {
  height: 100%;
  object-fit: contain;
}

.post_card__heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post_card__title {
  font-size: 24px;
  line-height: 120%;
  color: black;
  font-weight: bold;
}

.post_card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 15px;
}

.post_card__short_info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.post_card__short_info :is(p) {
  color: rgba(151, 152, 159);
}

.post_card__user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.post_card__user p {
  font-weight: 600;
  line-height: 120%;
}

.post_card_overlay {
  /* background-image: url("../../img/blog/post_card_overlay.jpg"); */
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  gap: 16px;
  width: 100%;
  height: 300px;
  margin: 20px 0;
}

.post_card_overlay :is(.post_card__title, p) {
  color: #ffffff;
}

.colormode_dark .post_card {
  background-color: rgba(20, 23, 45);
  border-color: rgba(84, 85, 105);
}

.colormode_dark .post_card__title {
  color: #ffffff;
}

/* --- BADGE --- */
.badge {
  background-color: rgba(75, 107, 251, 0.05);
  border-radius: 6px;
  padding: 4px 10px;
  width: fit-content;
}

.badge :is(p) {
  font-size: 14px;
  font-weight: bold;
  color: rgba(75, 107, 251);
}

.badge.badge__light_blue {
  background-color: rgba(105, 170, 255);
}

.badge__light_blue :is(p) {
  color: #ffffff;
}

.colormode_dark .post_card .badge {
  background-color: rgba(75, 107, 251, 0.05);
}

.custom_box_text {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
}

.custom_box_text .like_p__normal {
  color: #5a5a63;
}
.colormode_dark .custom_box_text .like_p__normal {
  color: #a8a8b3;
}

.info_box {
  background-color: #eef7fc;
}
.info_box::before {
  content: url("../../img/icons/info_icon.svg");
  display: inline-block;
  width: 50px;
  height: 50px;
}
.colormode_dark .info_box {
  background-color: #00a4ff26;
}

.alert_box {
  background-color: #fff8d6;
}
.alert_box::before {
  content: url("../../img/icons/alert_icon.svg");
  display: inline-block;
  width: 50px;
  height: 50px;
}
.colormode_dark .alert_box {
  background-color: #ffd10021;
}

/* --- RELATIVE BACKGROUND --- */
.relative_background {
  background-image: url("../../img/blog/relative_background.jpg");
  background-position: center;
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.relative_background:has(.post_card__absolute) {
  margin-bottom: calc(64px + 20px);
}

.relative_background .post_card__title {
  font-size: 36px;
}

.relative_background .badge {
  background-color: rgba(75, 107, 251);
}

.relative_background .badge p {
  color: #ffffff;
}

.colormode_dark .relative_background .post_card {
  background-color: rgba(0, 33, 143);
}

.colormode_dark .relative_background .badge {
  background-color: #ffffff;
}

.colormode_dark .relative_background .badge p {
  color: rgba(0, 33, 143);
}

.quote_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 32px;
  background-color: rgba(246, 246, 247);
  border-left: 4px solid rgba(232, 232, 234);
  border-radius: 12px;
}

.quote_box p {
  text-align: center;
}

.colormode_dark .quote_box {
  background-color: rgba(20, 23, 45, 1);
  border-left: none;
}

/* --- \/ \/ MATERIALY \/ \/ --- */

.guideline_container {
  border: 1px solid #f2f2f3;
  border-radius: 16px;
  width: 400px;
  height: 330px;
  padding: 40px;
}

.example {
  padding: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.example_hr {
  max-width: calc(100% - 30px);
  border: 1px solid #f2f2f3;
  margin: 0 auto;
}

.example_icon {
  padding-right: 16px;
  max-width: 36px;
}

.colormode_dark .guideline_container {
  border: 1px solid #3a394c;
}

.colormode_dark .example_hr {
  border: 1px solid #3a394c;
}

.colormode_dark .downloads__icon {
  background-color: #14172d;
}

.colormode_dark .downloads__header {
  color: var(--white-90);
}

.colormode_dark .downloads__item {
  border: 1px solid #3a394c;
}

/* Press section styles */
.press_wrapper {
  padding: 0 20px;
}

.press__header__title {
  text-align: left;
}

.press__header__description {
  text-align: left;
}

.download_documents {
  padding-bottom: 60px;
  color: #3a394c;
  font-size: 40px;
  font-family: Jost-Regular;
  text-align: center;
}

.downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1280px;
  margin: auto;
}

.downloads__item {
  flex: 1 1 calc(33.33% - 40px);
  max-width: calc(33.33% - 40px);
  height: 330px;
  border: 1px solid #f2f2f3;
  padding: 20px;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.downloads__description {
  min-height: 170px;
}

.downloads__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 20px;
  border-radius: 100%;
  width: 64px;
  height: 64px;
  background-color: #e2f2ff;
}

.downloads__header {
  margin: auto;
  padding-top: 30px;
  text-align: center;
  font-family: Jost-Medium;
  font-size: 20px;
}

.downloads__desc {
  margin: auto;
  padding-top: 10px;
  font-size: 14px;
  color: #50505e;
  font-family: Jost-Regular;
  text-align: center;
}

.downloads__button {
  outline: none;
  border: none;
  padding: 12px 0;
  border-radius: 24px;
  width: 100%;
  margin: auto;
  margin-top: 20px;
  color: white;
  font-family: Jost-Regular;
  background-color: #0970f6;
  cursor: pointer;
}

.colormode_dark .downloads__item {
  border: 1px solid #3a394c;
}
.colormode_dark .downloads__icon {
  background-color: #14172d;
}
.colormode_dark .downloads__header {
  color: var(--white-90);
}

.materialy_cta {
  max-width: 80%;
  margin: auto;
}

.materialy_float {
  height: 100%;
  display: flex;
  max-width: 300px;
  margin-right: 64px;
}

.press_cta_image {
  margin: auto;
}

@media (max-width: 465px) {
  .downloads {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .guideline_container {
    width: 300px;
  }
}

@media (max-width: 1200px) {
  .download_section {
    padding: 0 30px;
  }

  .press_wrapper {
    padding: 0 20px;
  }

  .press__header__description {
    display: flex;
    font-size: 16px;
    margin: auto;
    max-width: 300px;
    text-align: left;
  }

  .press__header__title {
    display: flex;
    text-align: left;
    margin: auto;
    font-size: 18px;
  }

  .download_documents {
    font-size: 28px;
    padding-bottom: 30px;
  }

  .downloads {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .downloads__item {
    flex: 1 0 100%;
    width: 100%;
    margin-bottom: 50px;
    max-width: 500px;
    height: auto;
  }

  .hero.subhero {
    padding-bottom: 100px;
  }

  .press_cta {
    display: flex;
    flex-direction: column;
    padding: 50px;
  }

  .materialy_cta {
    display: flex;
    flex-direction: column;
  }

  .materialy_float {
    justify-content: center !important;
    align-items: center !important;
    margin: auto !important;
    padding: 0 !important;
    position: relative !important;
  }

  .press_cta_content {
    max-width: 100%;
    padding-top: 50px;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin: auto;
  }
}

@media (max-width: 576px) {
  .downloads {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .downloads__item {
    flex: 1 0 100%;
    width: 100%;
    max-width: 300px;
    margin: auto;
    margin-bottom: 30px;
    height: auto;
  }

  .press__header__div {
    margin: auto;
    width: 100%;
  }

  .press_wrapper {
    display: flex;
    margin: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .press__header__description {
    display: flex;
    font-size: 16px;
    margin: auto;
    max-width: 250px;
    text-align: center;
  }

  .press__header__title {
    display: flex;
    text-align: center;
    margin: auto;
    font-size: 16px;
  }

  .downloads {
    margin: auto;
    padding: 30px;
  }

  .download_documents {
    font-size: 24px;
    padding-bottom: 20px;
  }

  .downloads__header {
    font-size: 18px;
  }

  .downloads__desc {
    font-size: 12px;
  }

  .downloads__button {
    padding: 10px 0;
  }

  .hero.subhero {
    padding-bottom: 80px;
  }

  .press_cta {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .materialy_float {
    display: flex !important;
    width: 100%;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }

  .press_cta_content {
    padding-top: 80px;
  }

  .press_cta_image {
    margin: auto;
  }
}

@media (max-width: 490px) {
  .press_cta_btn {
    font-size: 12px;
  }

  .press_cta_content {
    padding-top: 40px;
  }

  .press_cta_text {
    margin-bottom: 20px;
    margin-top: 0px;
    font-size: 20px;
  }
}

/* ========= CONTACT FORM =========== */
.skypass-form {
  display: flex;
  margin: auto;
  margin-top: 30px;
  border-radius: 10px;
  padding: 30px;
  max-width: 900px;
  border: 1px solid rgba(116, 116, 116, 0.3);
  background-color: #f2f2f3;
  color: rgb(90,90,90)
}
.colormode_dark .skypass-form {
  background-color: none !important;
  background: none !important;
}
.skypass-form .colormode_dark {
  background-color: white !important;
}

.skypass-form__group {
  margin-bottom: 25px;
}

.skypass-form__row {
  display: flex;
  gap: 20px;
}

.skypass-form__row .skypass-form__group {
  flex: 1;
}

.skypass-form__label {
  display: block;
  margin-bottom: 10px;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}
.colormode_dark .skypass-form__label {
  color: #ccc !important;
}

.skypass-form__required {
  color: #185de3;
}

.colormode_dark .skypass-form__input {
  background-color: rgba(0, 131, 255, 0.05) !important;
  color: rgb(190,190,190)
}
.colormode_dark .skypass-form__textarea {
  background-color: rgba(0, 131, 255, 0.05) !important;
  color: rgb(190,190,190)
}
.skypass-form__input:focus,
.skypass-form__textarea:focus {
  outline: none;
  background-color: #2a2a2a;
}

.skypass-form__textarea {
  min-height: 150px;
  resize: vertical;
}

.skypass-form__input::placeholder,
.skypass-form__textarea::placeholder {
  color: #666;
  padding-left: 10;
}

.skypass-form__group--checkbox {
  display: flex;
  align-items: flex-start;

  max-width: calc(100% - 30px);
  margin: auto;
  gap: 10px;
  padding-right: 60px;
}

.skypass-form__checkbox {
  margin-top: 5px;
  margin-right: 10px;
  width: 18px;
  height: 18px;
  accent-color: #185de3;
}

.skypass-form__checkbox-label {
  font-size: 14px;
  line-height: 1.5;
  color: #999;
}

.skypass-form__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.skypass-form__cloudflare {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.skypass-form__success-icon {
  background-color: #2ecc71;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.skypass-form__success-text {
  color: #fff;
  margin-right: 15px;
}

.skypass-form__cloudflare-logo {
  height: 20px;
  margin: 0 15px 0 0;
}

.skypass-form__links {
  display: flex;
  font-size: 12px;
}

.skypass-form__link {
  color: #666;
  text-decoration: none;
  margin-left: 10px;
  position: relative;
}

.skypass-form__link:first-child::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  height: 10px;
  width: 1px;
  background-color: #666;
}

.skypass-form__submit-btn {
  background-color: #185de3;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 500;
}

.skypass-form__submit-btn:hover {
  background-color: #1a9690;
}
#skypass-consent-error {
  padding-left: 10px;
}

@media (max-width: 768px) {
  .skypass-form {
    padding: 20px;
  }
  .skypass-form__row {
    flex-direction: column;
    gap: 0;
  }

  .skypass-form__footer {
    flex-direction: column;
    gap: 20px;
  }

  .skypass-form__cloudflare {
    margin-bottom: 10px;
  }
}

@media (max-width: 500px) {
  .skypass-form {
    padding: 10px !important;
  }
  #skypass-consent-error {
    padding-top: 10px;
  }
}
@media (max-width: 370px) {
  .skypass-form {
    padding: 20px !important;
  }
  .skypass-form__input,
  .skypass-form__textarea {
    box-sizing: border-box !important;
    width: 85% !important;
    margin-left: 10px;
  }
  .skypass-form__label {
    margin-left: 10px;
  }
}

@keyframes floathead {
  0% {
    /*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translatey(0px);
  }
  50% {
    /*box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);*/
    transform: translatey(-20px);
  }
  100% {
    /*box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);*/
    transform: translatey(0px);
  }
}
/* --- CHARTS --- */
/* --- L4 CHART --- */
@keyframes CH4_animate-svg-stroke-1 {
  0% {
    stroke-dashoffset: 1277.5183105469px;
    stroke-dasharray: 1277.5183105469px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1277.5183105469px;
  }
}
.L4_chart-1 {
  animation: CH4_animate-svg-stroke-1 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.75s both, CH4_animate-svg-fill-1 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.75s both;
}

@keyframes CH4_animate-svg-stroke-2 {
  0% {
    stroke-dashoffset: 1106.0350341797px;
    stroke-dasharray: 1106.0350341797px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1106.0350341797px;
  }
}
.L4_chart-2 {
  animation: CH4_animate-svg-stroke-2 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.775s both, CH4_animate-svg-fill-2 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.775s both;
}

@keyframes CH4_animate-svg-stroke-3 {
  0% {
    stroke-dashoffset: 30.2743338823px;
    stroke-dasharray: 30.2743338823px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 30.2743338823px;
  }
}
@keyframes CH4_animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #c9c9c9;
  }
}
.L4_chart-3 {
  animation: CH4_animate-svg-stroke-3 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both, CH4_animate-svg-fill-3 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

@keyframes CH4_animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 1170.318359375px;
    stroke-dasharray: 1170.318359375px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1170.318359375px;
  }
}
.L4_chart-4 {
  animation: CH4_animate-svg-stroke-4 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.825s both, CH4_animate-svg-fill-4 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.825s both;
}

@keyframes CH4_animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 803.9501342773px;
    stroke-dasharray: 803.9501342773px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 803.9501342773px;
  }
}
@keyframes CH4_animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-6 {
  animation: CH4_animate-svg-stroke-6 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.875s both, CH4_animate-svg-fill-6 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.875s both;
}

@keyframes CH4_animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 463.7303771973px;
    stroke-dasharray: 463.7303771973px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 463.7303771973px;
  }
}
@keyframes CH4_animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-7 {
  animation: CH4_animate-svg-stroke-7 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both, CH4_animate-svg-fill-7 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

@keyframes CH4_animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 120.2685470581px;
    stroke-dasharray: 120.2685470581px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 120.2685470581px;
  }
}
@keyframes CH4_animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-8 {
  animation: CH4_animate-svg-stroke-8 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.925s both, CH4_animate-svg-fill-8 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.925s both;
}

@keyframes CH4_animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 120.2685928345px;
    stroke-dasharray: 120.2685928345px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 120.2685928345px;
  }
}
@keyframes CH4_animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-9 {
  animation: CH4_animate-svg-stroke-9 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.95s both, CH4_animate-svg-fill-9 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.95s both;
}

@keyframes CH4_animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 839.2041015625px;
    stroke-dasharray: 839.2041015625px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 839.2041015625px;
  }
}
@keyframes CH4_animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-10 {
  animation: CH4_animate-svg-stroke-10 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.975s both, CH4_animate-svg-fill-10 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.975s both;
}

@keyframes CH4_animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 760.2574462891px;
    stroke-dasharray: 760.2574462891px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 760.2574462891px;
  }
}
@keyframes CH4_animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-11 {
  animation: CH4_animate-svg-stroke-11 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both, CH4_animate-svg-fill-11 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@keyframes CH4_animate-svg-stroke-12 {
  0% {
    stroke-dashoffset: 505.5513305664px;
    stroke-dasharray: 505.5513305664px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 505.5513305664px;
  }
}
@keyframes CH4_animate-svg-fill-12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-12 {
  animation: CH4_animate-svg-stroke-12 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.025s both, CH4_animate-svg-fill-12 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.025s both;
}

@keyframes CH4_animate-svg-stroke-13 {
  0% {
    stroke-dashoffset: 1025.3155517578px;
    stroke-dasharray: 1025.3155517578px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1025.3155517578px;
  }
}
@keyframes CH4_animate-svg-fill-13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-13 {
  animation: CH4_animate-svg-stroke-13 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.05s both, CH4_animate-svg-fill-13 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.05s both;
}

@keyframes CH4_animate-svg-stroke-14 {
  0% {
    stroke-dashoffset: 218.7647399902px;
    stroke-dasharray: 218.7647399902px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 218.7647399902px;
  }
}
@keyframes CH4_animate-svg-fill-14 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-14 {
  animation: CH4_animate-svg-stroke-14 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.075s both, CH4_animate-svg-fill-14 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.075s both;
}

@keyframes CH4_animate-svg-stroke-15 {
  0% {
    stroke-dashoffset: 238.513092041px;
    stroke-dasharray: 238.513092041px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 238.513092041px;
  }
}
@keyframes CH4_animate-svg-fill-15 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-15 {
  animation: CH4_animate-svg-stroke-15 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both, CH4_animate-svg-fill-15 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@keyframes CH4_animate-svg-stroke-16 {
  0% {
    stroke-dashoffset: 238.5728149414px;
    stroke-dasharray: 238.5728149414px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 238.5728149414px;
  }
}
@keyframes CH4_animate-svg-fill-16 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-16 {
  animation: CH4_animate-svg-stroke-16 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.125s both, CH4_animate-svg-fill-16 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.125s both;
}

@keyframes CH4_animate-svg-stroke-17 {
  0% {
    stroke-dashoffset: 935.9927368164px;
    stroke-dasharray: 935.9927368164px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 935.9927368164px;
  }
}
@keyframes CH4_animate-svg-fill-17 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-17 {
  animation: CH4_animate-svg-stroke-17 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.15s both, CH4_animate-svg-fill-17 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.15s both;
}

@keyframes CH4_animate-svg-stroke-18 {
  0% {
    stroke-dashoffset: 435.4389648438px;
    stroke-dasharray: 435.4389648438px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 435.4389648438px;
  }
}
@keyframes CH4_animate-svg-fill-18 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-18 {
  animation: CH4_animate-svg-stroke-18 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.175s both, CH4_animate-svg-fill-18 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.175s both;
}

@keyframes CH4_animate-svg-stroke-19 {
  0% {
    stroke-dashoffset: 4866.2421875px;
    stroke-dasharray: 4866.2421875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4866.2421875px;
  }
}
@keyframes CH4_animate-svg-fill-19 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-19 {
  animation: CH4_animate-svg-stroke-19 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both, CH4_animate-svg-fill-19 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
}

@keyframes CH4_animate-svg-stroke-20 {
  0% {
    stroke-dashoffset: 5.9306361675px;
    stroke-dasharray: 5.9306361675px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.9306361675px;
  }
}
@keyframes CH4_animate-svg-fill-20 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-20 {
  animation: CH4_animate-svg-stroke-20 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.225s both, CH4_animate-svg-fill-20 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.225s both;
}

@keyframes CH4_animate-svg-stroke-21 {
  0% {
    stroke-dashoffset: 4.2760000229px;
    stroke-dasharray: 4.2760000229px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2760000229px;
  }
}
@keyframes CH4_animate-svg-fill-21 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-21 {
  animation: CH4_animate-svg-stroke-21 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.25s both, CH4_animate-svg-fill-21 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.25s both;
}

@keyframes CH4_animate-svg-stroke-22 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH4_animate-svg-fill-22 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-22 {
  animation: CH4_animate-svg-stroke-22 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.275s both, CH4_animate-svg-fill-22 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.275s both;
}

@keyframes CH4_animate-svg-stroke-23 {
  0% {
    stroke-dashoffset: 5.362503767px;
    stroke-dasharray: 5.362503767px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.362503767px;
  }
}
@keyframes CH4_animate-svg-fill-23 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-23 {
  animation: CH4_animate-svg-stroke-23 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both, CH4_animate-svg-fill-23 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

@keyframes CH4_animate-svg-stroke-24 {
  0% {
    stroke-dashoffset: 4.5053758621px;
    stroke-dasharray: 4.5053758621px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5053758621px;
  }
}
@keyframes CH4_animate-svg-fill-24 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-24 {
  animation: CH4_animate-svg-stroke-24 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.325s both, CH4_animate-svg-fill-24 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.325s both;
}

@keyframes CH4_animate-svg-stroke-25 {
  0% {
    stroke-dashoffset: 4.2858533859px;
    stroke-dasharray: 4.2858533859px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2858533859px;
  }
}
@keyframes CH4_animate-svg-fill-25 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-25 {
  animation: CH4_animate-svg-stroke-25 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.35s both, CH4_animate-svg-fill-25 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.35s both;
}

@keyframes CH4_animate-svg-stroke-26 {
  0% {
    stroke-dashoffset: 6.0950031281px;
    stroke-dasharray: 6.0950031281px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.0950031281px;
  }
}
@keyframes CH4_animate-svg-fill-26 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-26 {
  animation: CH4_animate-svg-stroke-26 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.375s both, CH4_animate-svg-fill-26 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.375s both;
}

@keyframes CH4_animate-svg-stroke-27 {
  0% {
    stroke-dashoffset: 4.1381387711px;
    stroke-dasharray: 4.1381387711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.1381387711px;
  }
}
@keyframes CH4_animate-svg-fill-27 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-27 {
  animation: CH4_animate-svg-stroke-27 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both, CH4_animate-svg-fill-27 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
}

@keyframes CH4_animate-svg-stroke-28 {
  0% {
    stroke-dashoffset: 4.7520041466px;
    stroke-dasharray: 4.7520041466px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.7520041466px;
  }
}
@keyframes CH4_animate-svg-fill-28 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-28 {
  animation: CH4_animate-svg-stroke-28 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.425s both, CH4_animate-svg-fill-28 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.425s both;
}

@keyframes CH4_animate-svg-stroke-30 {
  0% {
    stroke-dashoffset: 1107.1085205078px;
    stroke-dasharray: 1107.1085205078px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1107.1085205078px;
  }
}
@keyframes CH4_animate-svg-fill-30 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-30 {
  animation: CH4_animate-svg-stroke-30 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.475s both, CH4_animate-svg-fill-30 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.475s both;
}

@keyframes CH4_animate-svg-stroke-31 {
  0% {
    stroke-dashoffset: 670.8262263933px;
    stroke-dasharray: 670.8262263933px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 670.8262263933px;
  }
}
@keyframes CH4_animate-svg-fill-31 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-31 {
  animation: CH4_animate-svg-stroke-31 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both, CH4_animate-svg-fill-31 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

@keyframes CH4_animate-svg-stroke-32 {
  0% {
    stroke-dashoffset: 240.8374633789px;
    stroke-dasharray: 240.8374633789px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 240.8374633789px;
  }
}
@keyframes CH4_animate-svg-fill-32 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-32 {
  animation: CH4_animate-svg-stroke-32 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.525s both, CH4_animate-svg-fill-32 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.525s both;
}

@keyframes CH4_animate-svg-stroke-33 {
  0% {
    stroke-dashoffset: 240.8372497559px;
    stroke-dasharray: 240.8372497559px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 240.8372497559px;
  }
}
@keyframes CH4_animate-svg-fill-33 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-33 {
  animation: CH4_animate-svg-stroke-33 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.55s both, CH4_animate-svg-fill-33 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.55s both;
}

@keyframes CH4_animate-svg-stroke-34 {
  0% {
    stroke-dashoffset: 345.8635559082px;
    stroke-dasharray: 345.8635559082px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 345.8635559082px;
  }
}
@keyframes CH4_animate-svg-fill-34 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-34 {
  animation: CH4_animate-svg-stroke-34 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.575s both, CH4_animate-svg-fill-34 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.575s both;
}

@keyframes CH4_animate-svg-stroke-35 {
  0% {
    stroke-dashoffset: 40.4148674011px;
    stroke-dasharray: 40.4148674011px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 40.4148674011px;
  }
}
@keyframes CH4_animate-svg-fill-35 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-35 {
  animation: CH4_animate-svg-stroke-35 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both, CH4_animate-svg-fill-35 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}

@keyframes CH4_animate-svg-stroke-36 {
  0% {
    stroke-dashoffset: 81.3086013794px;
    stroke-dasharray: 81.3086013794px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 81.3086013794px;
  }
}
@keyframes CH4_animate-svg-fill-36 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-36 {
  animation: CH4_animate-svg-stroke-36 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.625s both, CH4_animate-svg-fill-36 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.625s both;
}

@keyframes CH4_animate-svg-stroke-37 {
  0% {
    stroke-dashoffset: 58.3619232178px;
    stroke-dasharray: 58.3619232178px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3619232178px;
  }
}
@keyframes CH4_animate-svg-fill-37 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-37 {
  animation: CH4_animate-svg-stroke-37 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.65s both, CH4_animate-svg-fill-37 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.65s both;
}

@keyframes CH4_animate-svg-stroke-38 {
  0% {
    stroke-dashoffset: 58.3558197021px;
    stroke-dasharray: 58.3558197021px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3558197021px;
  }
}
@keyframes CH4_animate-svg-fill-38 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-38 {
  animation: CH4_animate-svg-stroke-38 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.675s both, CH4_animate-svg-fill-38 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.675s both;
}

@keyframes CH4_animate-svg-stroke-39 {
  0% {
    stroke-dashoffset: 81.3084487915px;
    stroke-dasharray: 81.3084487915px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 81.3084487915px;
  }
}
@keyframes CH4_animate-svg-fill-39 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-39 {
  animation: CH4_animate-svg-stroke-39 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both, CH4_animate-svg-fill-39 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
}

@keyframes CH4_animate-svg-stroke-40 {
  0% {
    stroke-dashoffset: 58.3620834351px;
    stroke-dasharray: 58.3620834351px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3620834351px;
  }
}
@keyframes CH4_animate-svg-fill-40 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-40 {
  animation: CH4_animate-svg-stroke-40 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.725s both, CH4_animate-svg-fill-40 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.725s both;
}

@keyframes CH4_animate-svg-stroke-41 {
  0% {
    stroke-dashoffset: 58.3569259644px;
    stroke-dasharray: 58.3569259644px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3569259644px;
  }
}
@keyframes CH4_animate-svg-fill-41 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-41 {
  animation: CH4_animate-svg-stroke-41 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.75s both, CH4_animate-svg-fill-41 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.75s both;
}

@keyframes CH4_animate-svg-stroke-42 {
  0% {
    stroke-dashoffset: 2669.0480957031px;
    stroke-dasharray: 2669.0480957031px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2669.0480957031px;
  }
}
@keyframes CH4_animate-svg-fill-42 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-42 {
  animation: CH4_animate-svg-stroke-42 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.775s both, CH4_animate-svg-fill-42 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.775s both;
}

@keyframes CH4_animate-svg-stroke-43 {
  0% {
    stroke-dashoffset: 1339.5141601563px;
    stroke-dasharray: 1339.5141601563px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1339.5141601563px;
  }
}
@keyframes CH4_animate-svg-fill-43 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-43 {
  animation: CH4_animate-svg-stroke-43 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both, CH4_animate-svg-fill-43 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
}

@keyframes CH4_animate-svg-stroke-44 {
  0% {
    stroke-dashoffset: 5.874402523px;
    stroke-dasharray: 5.874402523px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.874402523px;
  }
}
@keyframes CH4_animate-svg-fill-44 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-44 {
  animation: CH4_animate-svg-stroke-44 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.825s both, CH4_animate-svg-fill-44 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.825s both;
}

@keyframes CH4_animate-svg-stroke-45 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH4_animate-svg-fill-45 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-45 {
  animation: CH4_animate-svg-stroke-45 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.85s both, CH4_animate-svg-fill-45 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.85s both;
}

@keyframes CH4_animate-svg-stroke-46 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH4_animate-svg-fill-46 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-46 {
  animation: CH4_animate-svg-stroke-46 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.875s both, CH4_animate-svg-fill-46 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.875s both;
}

@keyframes CH4_animate-svg-stroke-47 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH4_animate-svg-fill-47 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-47 {
  animation: CH4_animate-svg-stroke-47 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both, CH4_animate-svg-fill-47 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both;
}

@keyframes CH4_animate-svg-stroke-48 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH4_animate-svg-fill-48 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-48 {
  animation: CH4_animate-svg-stroke-48 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.925s both, CH4_animate-svg-fill-48 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.925s both;
}

@keyframes CH4_animate-svg-stroke-49 {
  0% {
    stroke-dashoffset: 4.2760000229px;
    stroke-dasharray: 4.2760000229px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2760000229px;
  }
}
@keyframes CH4_animate-svg-fill-49 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-49 {
  animation: CH4_animate-svg-stroke-49 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.95s both, CH4_animate-svg-fill-49 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.95s both;
}

@keyframes CH4_animate-svg-stroke-51 {
  0% {
    stroke-dashoffset: 1107.1085205078px;
    stroke-dasharray: 1107.1085205078px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1107.1085205078px;
  }
}
@keyframes CH4_animate-svg-fill-51 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-51 {
  animation: CH4_animate-svg-stroke-51 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both, CH4_animate-svg-fill-51 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

@keyframes CH4_animate-svg-stroke-52 {
  0% {
    stroke-dashoffset: 670.8262263933px;
    stroke-dasharray: 670.8262263933px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 670.8262263933px;
  }
}
@keyframes CH4_animate-svg-fill-52 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-52 {
  animation: CH4_animate-svg-stroke-52 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.025s both, CH4_animate-svg-fill-52 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.025s both;
}

@keyframes CH4_animate-svg-stroke-53 {
  0% {
    stroke-dashoffset: 240.8374633789px;
    stroke-dasharray: 240.8374633789px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 240.8374633789px;
  }
}
@keyframes CH4_animate-svg-fill-53 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-53 {
  animation: CH4_animate-svg-stroke-53 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.05s both, CH4_animate-svg-fill-53 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.05s both;
}

@keyframes CH4_animate-svg-stroke-54 {
  0% {
    stroke-dashoffset: 240.8372497559px;
    stroke-dasharray: 240.8372497559px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 240.8372497559px;
  }
}
@keyframes CH4_animate-svg-fill-54 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-54 {
  animation: CH4_animate-svg-stroke-54 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.075s both, CH4_animate-svg-fill-54 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.075s both;
}

@keyframes CH4_animate-svg-stroke-55 {
  0% {
    stroke-dashoffset: 345.8635559082px;
    stroke-dasharray: 345.8635559082px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 345.8635559082px;
  }
}
@keyframes CH4_animate-svg-fill-55 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-55 {
  animation: CH4_animate-svg-stroke-55 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both, CH4_animate-svg-fill-55 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
}

@keyframes CH4_animate-svg-stroke-56 {
  0% {
    stroke-dashoffset: 40.4148674011px;
    stroke-dasharray: 40.4148674011px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 40.4148674011px;
  }
}
@keyframes CH4_animate-svg-fill-56 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-56 {
  animation: CH4_animate-svg-stroke-56 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.125s both, CH4_animate-svg-fill-56 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.125s both;
}

@keyframes CH4_animate-svg-stroke-57 {
  0% {
    stroke-dashoffset: 81.3086013794px;
    stroke-dasharray: 81.3086013794px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 81.3086013794px;
  }
}
@keyframes CH4_animate-svg-fill-57 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-57 {
  animation: CH4_animate-svg-stroke-57 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.15s both, CH4_animate-svg-fill-57 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.15s both;
}

@keyframes CH4_animate-svg-stroke-58 {
  0% {
    stroke-dashoffset: 58.3619232178px;
    stroke-dasharray: 58.3619232178px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3619232178px;
  }
}
@keyframes CH4_animate-svg-fill-58 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-58 {
  animation: CH4_animate-svg-stroke-58 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.175s both, CH4_animate-svg-fill-58 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.175s both;
}

@keyframes CH4_animate-svg-stroke-59 {
  0% {
    stroke-dashoffset: 58.3558197021px;
    stroke-dasharray: 58.3558197021px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3558197021px;
  }
}
@keyframes CH4_animate-svg-fill-59 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-59 {
  animation: CH4_animate-svg-stroke-59 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both, CH4_animate-svg-fill-59 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
}

@keyframes CH4_animate-svg-stroke-60 {
  0% {
    stroke-dashoffset: 81.3084487915px;
    stroke-dasharray: 81.3084487915px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 81.3084487915px;
  }
}
@keyframes CH4_animate-svg-fill-60 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-60 {
  animation: CH4_animate-svg-stroke-60 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.225s both, CH4_animate-svg-fill-60 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.225s both;
}

@keyframes CH4_animate-svg-stroke-61 {
  0% {
    stroke-dashoffset: 58.3620834351px;
    stroke-dasharray: 58.3620834351px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3620834351px;
  }
}
@keyframes CH4_animate-svg-fill-61 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-61 {
  animation: CH4_animate-svg-stroke-61 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.25s both, CH4_animate-svg-fill-61 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.25s both;
}

@keyframes CH4_animate-svg-stroke-62 {
  0% {
    stroke-dashoffset: 58.3569259644px;
    stroke-dasharray: 58.3569259644px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3569259644px;
  }
}
@keyframes CH4_animate-svg-fill-62 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-62 {
  animation: CH4_animate-svg-stroke-62 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.275s both, CH4_animate-svg-fill-62 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.275s both;
}

@keyframes CH4_animate-svg-stroke-63 {
  0% {
    stroke-dashoffset: 2669.0480957031px;
    stroke-dasharray: 2669.0480957031px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2669.0480957031px;
  }
}
@keyframes CH4_animate-svg-fill-63 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-63 {
  animation: CH4_animate-svg-stroke-63 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both, CH4_animate-svg-fill-63 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
}

@keyframes CH4_animate-svg-stroke-64 {
  0% {
    stroke-dashoffset: 1339.5141601563px;
    stroke-dasharray: 1339.5141601563px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1339.5141601563px;
  }
}
@keyframes CH4_animate-svg-fill-64 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-64 {
  animation: CH4_animate-svg-stroke-64 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.325s both, CH4_animate-svg-fill-64 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.325s both;
}

@keyframes CH4_animate-svg-stroke-65 {
  0% {
    stroke-dashoffset: 5.874402523px;
    stroke-dasharray: 5.874402523px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.874402523px;
  }
}
@keyframes CH4_animate-svg-fill-65 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-65 {
  animation: CH4_animate-svg-stroke-65 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.35s both, CH4_animate-svg-fill-65 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.35s both;
}

@keyframes CH4_animate-svg-stroke-66 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH4_animate-svg-fill-66 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-66 {
  animation: CH4_animate-svg-stroke-66 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.375s both, CH4_animate-svg-fill-66 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.375s both;
}

@keyframes CH4_animate-svg-stroke-67 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH4_animate-svg-fill-67 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-67 {
  animation: CH4_animate-svg-stroke-67 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both, CH4_animate-svg-fill-67 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
}

@keyframes CH4_animate-svg-stroke-68 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH4_animate-svg-fill-68 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-68 {
  animation: CH4_animate-svg-stroke-68 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.425s both, CH4_animate-svg-fill-68 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.425s both;
}

@keyframes CH4_animate-svg-stroke-69 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH4_animate-svg-fill-69 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-69 {
  animation: CH4_animate-svg-stroke-69 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.45s both, CH4_animate-svg-fill-69 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.45s both;
}

@keyframes CH4_animate-svg-stroke-70 {
  0% {
    stroke-dashoffset: 4.2760000229px;
    stroke-dasharray: 4.2760000229px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2760000229px;
  }
}
@keyframes CH4_animate-svg-fill-70 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-70 {
  animation: CH4_animate-svg-stroke-70 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.475s both, CH4_animate-svg-fill-70 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.475s both;
}

@keyframes CH4_animate-svg-stroke-71 {
  0% {
    stroke-dashoffset: 4.3964703083px;
    stroke-dasharray: 4.3964703083px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.3964703083px;
  }
}
@keyframes CH4_animate-svg-fill-71 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-71 {
  animation: CH4_animate-svg-stroke-71 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both, CH4_animate-svg-fill-71 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
}

@keyframes CH4_animate-svg-stroke-72 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH4_animate-svg-fill-72 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-72 {
  animation: CH4_animate-svg-stroke-72 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.525s both, CH4_animate-svg-fill-72 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.525s both;
}

@keyframes CH4_animate-svg-stroke-73 {
  0% {
    stroke-dashoffset: 6.499625206px;
    stroke-dasharray: 6.499625206px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.499625206px;
  }
}
@keyframes CH4_animate-svg-fill-73 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-73 {
  animation: CH4_animate-svg-stroke-73 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.55s both, CH4_animate-svg-fill-73 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.55s both;
}

@keyframes CH4_animate-svg-stroke-74 {
  0% {
    stroke-dashoffset: 3.9227753878px;
    stroke-dasharray: 3.9227753878px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.9227753878px;
  }
}
@keyframes CH4_animate-svg-fill-74 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-74 {
  animation: CH4_animate-svg-stroke-74 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.575s both, CH4_animate-svg-fill-74 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.575s both;
}

@keyframes CH4_animate-svg-stroke-75 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH4_animate-svg-fill-75 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-75 {
  animation: CH4_animate-svg-stroke-75 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s both, CH4_animate-svg-fill-75 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s both;
}

@keyframes CH4_animate-svg-stroke-76 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH4_animate-svg-fill-76 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-76 {
  animation: CH4_animate-svg-stroke-76 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.625s both, CH4_animate-svg-fill-76 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.625s both;
}

@keyframes CH4_animate-svg-stroke-77 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH4_animate-svg-fill-77 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-77 {
  animation: CH4_animate-svg-stroke-77 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.65s both, CH4_animate-svg-fill-77 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.65s both;
}

@keyframes CH4_animate-svg-stroke-78 {
  0% {
    stroke-dashoffset: 4.1381387711px;
    stroke-dasharray: 4.1381387711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.1381387711px;
  }
}
@keyframes CH4_animate-svg-fill-78 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-78 {
  animation: CH4_animate-svg-stroke-78 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.675s both, CH4_animate-svg-fill-78 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.675s both;
}

@keyframes CH4_animate-svg-stroke-79 {
  0% {
    stroke-dashoffset: 4.3964703083px;
    stroke-dasharray: 4.3964703083px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.3964703083px;
  }
}
@keyframes CH4_animate-svg-fill-79 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-79 {
  animation: CH4_animate-svg-stroke-79 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s both, CH4_animate-svg-fill-79 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s both;
}

@keyframes CH4_animate-svg-stroke-80 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH4_animate-svg-fill-80 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-80 {
  animation: CH4_animate-svg-stroke-80 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.725s both, CH4_animate-svg-fill-80 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.725s both;
}

@keyframes CH4_animate-svg-stroke-81 {
  0% {
    stroke-dashoffset: 4.7520041466px;
    stroke-dasharray: 4.7520041466px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.7520041466px;
  }
}
@keyframes CH4_animate-svg-fill-81 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-81 {
  animation: CH4_animate-svg-stroke-81 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.75s both, CH4_animate-svg-fill-81 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.75s both;
}

@keyframes CH4_animate-svg-stroke-83 {
  0% {
    stroke-dashoffset: 907.9606323242px;
    stroke-dasharray: 907.9606323242px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 907.9606323242px;
  }
}
@keyframes CH4_animate-svg-fill-83 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-83 {
  animation: CH4_animate-svg-stroke-83 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s both, CH4_animate-svg-fill-83 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s both;
}

@keyframes CH4_animate-svg-stroke-84 {
  0% {
    stroke-dashoffset: 646.2387695313px;
    stroke-dasharray: 646.2387695313px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 646.2387695313px;
  }
}
@keyframes CH4_animate-svg-fill-84 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-84 {
  animation: CH4_animate-svg-stroke-84 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.825s both, CH4_animate-svg-fill-84 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.825s both;
}

@keyframes CH4_animate-svg-stroke-85 {
  0% {
    stroke-dashoffset: 376.407989502px;
    stroke-dasharray: 376.407989502px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 376.407989502px;
  }
}
@keyframes CH4_animate-svg-fill-85 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-85 {
  animation: CH4_animate-svg-stroke-85 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.85s both, CH4_animate-svg-fill-85 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.85s both;
}

@keyframes CH4_animate-svg-stroke-86 {
  0% {
    stroke-dashoffset: 260.9696350098px;
    stroke-dasharray: 260.9696350098px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 260.9696350098px;
  }
}
@keyframes CH4_animate-svg-fill-86 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-86 {
  animation: CH4_animate-svg-stroke-86 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.875s both, CH4_animate-svg-fill-86 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.875s both;
}

@keyframes CH4_animate-svg-stroke-87 {
  0% {
    stroke-dashoffset: 383.0101318359px;
    stroke-dasharray: 383.0101318359px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 383.0101318359px;
  }
}
@keyframes CH4_animate-svg-fill-87 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-87 {
  animation: CH4_animate-svg-stroke-87 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s both, CH4_animate-svg-fill-87 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s both;
}

@keyframes CH4_animate-svg-stroke-88 {
  0% {
    stroke-dashoffset: 260.9698181152px;
    stroke-dasharray: 260.9698181152px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 260.9698181152px;
  }
}
@keyframes CH4_animate-svg-fill-88 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-88 {
  animation: CH4_animate-svg-stroke-88 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.925s both, CH4_animate-svg-fill-88 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.925s both;
}

@keyframes CH4_animate-svg-stroke-89 {
  0% {
    stroke-dashoffset: 383.0104370117px;
    stroke-dasharray: 383.0104370117px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 383.0104370117px;
  }
}
@keyframes CH4_animate-svg-fill-89 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-89 {
  animation: CH4_animate-svg-stroke-89 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.95s both, CH4_animate-svg-fill-89 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.95s both;
}

@keyframes CH4_animate-svg-stroke-90 {
  0% {
    stroke-dashoffset: 260.9698181152px;
    stroke-dasharray: 260.9698181152px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 260.9698181152px;
  }
}
@keyframes CH4_animate-svg-fill-90 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-90 {
  animation: CH4_animate-svg-stroke-90 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.975s both, CH4_animate-svg-fill-90 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.975s both;
}

@keyframes CH4_animate-svg-stroke-91 {
  0% {
    stroke-dashoffset: 383.0105285645px;
    stroke-dasharray: 383.0105285645px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 383.0105285645px;
  }
}
@keyframes CH4_animate-svg-fill-91 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-91 {
  animation: CH4_animate-svg-stroke-91 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both, CH4_animate-svg-fill-91 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;
}

@keyframes CH4_animate-svg-stroke-92 {
  0% {
    stroke-dashoffset: 166.0991821289px;
    stroke-dasharray: 166.0991821289px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 166.0991821289px;
  }
}
@keyframes CH4_animate-svg-fill-92 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-92 {
  animation: CH4_animate-svg-stroke-92 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.025s both, CH4_animate-svg-fill-92 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.025s both;
}

@keyframes CH4_animate-svg-stroke-93 {
  0% {
    stroke-dashoffset: 220.2425231934px;
    stroke-dasharray: 220.2425231934px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 220.2425231934px;
  }
}
@keyframes CH4_animate-svg-fill-93 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-93 {
  animation: CH4_animate-svg-stroke-93 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.05s both, CH4_animate-svg-fill-93 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.05s both;
}

@keyframes CH4_animate-svg-stroke-94 {
  0% {
    stroke-dashoffset: 221.4580383301px;
    stroke-dasharray: 221.4580383301px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 221.4580383301px;
  }
}
@keyframes CH4_animate-svg-fill-94 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-94 {
  animation: CH4_animate-svg-stroke-94 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.075s both, CH4_animate-svg-fill-94 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.075s both;
}

@keyframes CH4_animate-svg-stroke-95 {
  0% {
    stroke-dashoffset: 1814.1239013672px;
    stroke-dasharray: 1814.1239013672px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1814.1239013672px;
  }
}
@keyframes CH4_animate-svg-fill-95 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-95 {
  animation: CH4_animate-svg-stroke-95 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s both, CH4_animate-svg-fill-95 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s both;
}

@keyframes CH4_animate-svg-stroke-96 {
  0% {
    stroke-dashoffset: 1290.4592285156px;
    stroke-dasharray: 1290.4592285156px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1290.4592285156px;
  }
}
@keyframes CH4_animate-svg-fill-96 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-96 {
  animation: CH4_animate-svg-stroke-96 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.125s both, CH4_animate-svg-fill-96 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.125s both;
}

@keyframes CH4_animate-svg-stroke-97 {
  0% {
    stroke-dashoffset: 764.0560302734px;
    stroke-dasharray: 764.0560302734px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 764.0560302734px;
  }
}
@keyframes CH4_animate-svg-fill-97 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-97 {
  animation: CH4_animate-svg-stroke-97 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.15s both, CH4_animate-svg-fill-97 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.15s both;
}

@keyframes CH4_animate-svg-stroke-98 {
  0% {
    stroke-dashoffset: 764.0404052734px;
    stroke-dasharray: 764.0404052734px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 764.0404052734px;
  }
}
@keyframes CH4_animate-svg-fill-98 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-98 {
  animation: CH4_animate-svg-stroke-98 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.175s both, CH4_animate-svg-fill-98 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.175s both;
}

@keyframes CH4_animate-svg-stroke-99 {
  0% {
    stroke-dashoffset: 750.6166381836px;
    stroke-dasharray: 750.6166381836px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 750.6166381836px;
  }
}
@keyframes CH4_animate-svg-fill-99 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-99 {
  animation: CH4_animate-svg-stroke-99 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s both, CH4_animate-svg-fill-99 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s both;
}

@keyframes CH4_animate-svg-stroke-100 {
  0% {
    stroke-dashoffset: 764.0567016602px;
    stroke-dasharray: 764.0567016602px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 764.0567016602px;
  }
}
@keyframes CH4_animate-svg-fill-100 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-100 {
  animation: CH4_animate-svg-stroke-100 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.225s both, CH4_animate-svg-fill-100 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.225s both;
}

@keyframes CH4_animate-svg-stroke-101 {
  0% {
    stroke-dashoffset: 519.8569335938px;
    stroke-dasharray: 519.8569335938px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 519.8569335938px;
  }
}
@keyframes CH4_animate-svg-fill-101 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-101 {
  animation: CH4_animate-svg-stroke-101 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.25s both, CH4_animate-svg-fill-101 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.25s both;
}

@keyframes CH4_animate-svg-stroke-102 {
  0% {
    stroke-dashoffset: 519.8397827148px;
    stroke-dasharray: 519.8397827148px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 519.8397827148px;
  }
}
@keyframes CH4_animate-svg-fill-102 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-102 {
  animation: CH4_animate-svg-stroke-102 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.275s both, CH4_animate-svg-fill-102 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.275s both;
}

@keyframes CH4_animate-svg-stroke-103 {
  0% {
    stroke-dashoffset: 519.8549194336px;
    stroke-dasharray: 519.8549194336px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 519.8549194336px;
  }
}
@keyframes CH4_animate-svg-fill-103 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-103 {
  animation: CH4_animate-svg-stroke-103 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s both, CH4_animate-svg-fill-103 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s both;
}

@keyframes CH4_animate-svg-stroke-104 {
  0% {
    stroke-dashoffset: 5.9821596146px;
    stroke-dasharray: 5.9821596146px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.9821596146px;
  }
}
@keyframes CH4_animate-svg-fill-104 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-104 {
  animation: CH4_animate-svg-stroke-104 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.325s both, CH4_animate-svg-fill-104 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.325s both;
}

@keyframes CH4_animate-svg-stroke-105 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH4_animate-svg-fill-105 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-105 {
  animation: CH4_animate-svg-stroke-105 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.35s both, CH4_animate-svg-fill-105 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.35s both;
}

@keyframes CH4_animate-svg-stroke-106 {
  0% {
    stroke-dashoffset: 4.2858533859px;
    stroke-dasharray: 4.2858533859px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2858533859px;
  }
}
@keyframes CH4_animate-svg-fill-106 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-106 {
  animation: CH4_animate-svg-stroke-106 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.375s both, CH4_animate-svg-fill-106 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.375s both;
}

@keyframes CH4_animate-svg-stroke-107 {
  0% {
    stroke-dashoffset: 6.0565705299px;
    stroke-dasharray: 6.0565705299px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.0565705299px;
  }
}
@keyframes CH4_animate-svg-fill-107 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-107 {
  animation: CH4_animate-svg-stroke-107 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s both, CH4_animate-svg-fill-107 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s both;
}

@keyframes CH4_animate-svg-stroke-108 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH4_animate-svg-fill-108 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-108 {
  animation: CH4_animate-svg-stroke-108 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.425s both, CH4_animate-svg-fill-108 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.425s both;
}

@keyframes CH4_animate-svg-stroke-109 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH4_animate-svg-fill-109 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-109 {
  animation: CH4_animate-svg-stroke-109 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.45s both, CH4_animate-svg-fill-109 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.45s both;
}

@keyframes CH4_animate-svg-stroke-110 {
  0% {
    stroke-dashoffset: 4.8722293377px;
    stroke-dasharray: 4.8722293377px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.8722293377px;
  }
}
@keyframes CH4_animate-svg-fill-110 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-110 {
  animation: CH4_animate-svg-stroke-110 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.475s both, CH4_animate-svg-fill-110 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.475s both;
}

@keyframes CH4_animate-svg-stroke-111 {
  0% {
    stroke-dashoffset: 4.2831850052px;
    stroke-dasharray: 4.2831850052px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2831850052px;
  }
}
@keyframes CH4_animate-svg-fill-111 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-111 {
  animation: CH4_animate-svg-stroke-111 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s both, CH4_animate-svg-fill-111 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s both;
}

@keyframes CH4_animate-svg-stroke-112 {
  0% {
    stroke-dashoffset: 4.3964703083px;
    stroke-dasharray: 4.3964703083px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.3964703083px;
  }
}
@keyframes CH4_animate-svg-fill-112 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-112 {
  animation: CH4_animate-svg-stroke-112 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.525s both, CH4_animate-svg-fill-112 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.525s both;
}

@keyframes CH4_animate-svg-stroke-113 {
  0% {
    stroke-dashoffset: 4.7520041466px;
    stroke-dasharray: 4.7520041466px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.7520041466px;
  }
}
@keyframes CH4_animate-svg-fill-113 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-113 {
  animation: CH4_animate-svg-stroke-113 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.55s both, CH4_animate-svg-fill-113 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.55s both;
}

@keyframes CH4_animate-svg-stroke-114 {
  0% {
    stroke-dashoffset: 5.6265974045px;
    stroke-dasharray: 5.6265974045px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.6265974045px;
  }
}
@keyframes CH4_animate-svg-fill-114 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-114 {
  animation: CH4_animate-svg-stroke-114 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.575s both, CH4_animate-svg-fill-114 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.575s both;
}

@keyframes CH4_animate-svg-stroke-115 {
  0% {
    stroke-dashoffset: 5.7592151165px;
    stroke-dasharray: 5.7592151165px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.7592151165px;
  }
}
@keyframes CH4_animate-svg-fill-115 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-115 {
  animation: CH4_animate-svg-stroke-115 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s both, CH4_animate-svg-fill-115 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s both;
}

@keyframes CH4_animate-svg-stroke-116 {
  0% {
    stroke-dashoffset: 5.6265974045px;
    stroke-dasharray: 5.6265974045px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.6265974045px;
  }
}
@keyframes CH4_animate-svg-fill-116 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-116 {
  animation: CH4_animate-svg-stroke-116 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.625s both, CH4_animate-svg-fill-116 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.625s both;
}

@keyframes CH4_animate-svg-stroke-120 {
  0% {
    stroke-dashoffset: 490.764831543px;
    stroke-dasharray: 490.764831543px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 490.764831543px;
  }
}
.L4_chart-120 {
  animation: CH4_animate-svg-stroke-120 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.725s both, CH4_animate-svg-fill-120 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.725s both;
}

@keyframes CH4_animate-svg-stroke-121 {
  0% {
    stroke-dashoffset: 286.2255249023px;
    stroke-dasharray: 286.2255249023px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 286.2255249023px;
  }
}
.L4_chart-121 {
  animation: CH4_animate-svg-stroke-121 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.75s both, CH4_animate-svg-fill-121 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.75s both;
}

@keyframes CH4_animate-svg-stroke-122 {
  0% {
    stroke-dashoffset: 621.4570922852px;
    stroke-dasharray: 621.4570922852px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 621.4570922852px;
  }
}
.L4_chart-122 {
  animation: CH4_animate-svg-stroke-122 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.775s both, CH4_animate-svg-fill-122 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.775s both;
}

@keyframes CH4_animate-svg-stroke-123 {
  0% {
    stroke-dashoffset: 284.1627197266px;
    stroke-dasharray: 284.1627197266px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 284.1627197266px;
  }
}
.L4_chart-123 {
  animation: CH4_animate-svg-stroke-123 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s both, CH4_animate-svg-fill-123 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s both;
}

@keyframes CH4_animate-svg-stroke-124 {
  0% {
    stroke-dashoffset: 87.3432617188px;
    stroke-dasharray: 87.3432617188px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 87.3432617188px;
  }
}
.L4_chart-124 {
  animation: CH4_animate-svg-stroke-124 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.825s both, CH4_animate-svg-fill-124 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.825s both;
}

@keyframes CH4_animate-svg-stroke-125 {
  0% {
    stroke-dashoffset: 284.6095581055px;
    stroke-dasharray: 284.6095581055px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 284.6095581055px;
  }
}
.L4_chart-125 {
  animation: CH4_animate-svg-stroke-125 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.85s both, CH4_animate-svg-fill-125 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.85s both;
}

@keyframes CH4_animate-svg-stroke-126 {
  0% {
    stroke-dashoffset: 371.2759399414px;
    stroke-dasharray: 371.2759399414px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 371.2759399414px;
  }
}
.L4_chart-126 {
  animation: CH4_animate-svg-stroke-126 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.875s both, CH4_animate-svg-fill-126 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.875s both;
}

@keyframes CH4_animate-svg-stroke-127 {
  0% {
    stroke-dashoffset: 240.1725921631px;
    stroke-dasharray: 240.1725921631px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 240.1725921631px;
  }
}
.L4_chart-127 {
  animation: CH4_animate-svg-stroke-127 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9s both, CH4_animate-svg-fill-127 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9s both;
}

@keyframes CH4_animate-svg-stroke-128 {
  0% {
    stroke-dashoffset: 235.6546020508px;
    stroke-dasharray: 235.6546020508px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 235.6546020508px;
  }
}
.L4_chart-128 {
  animation: CH4_animate-svg-stroke-128 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.925s both, CH4_animate-svg-fill-128 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.925s both;
}

@keyframes CH4_animate-svg-stroke-129 {
  0% {
    stroke-dashoffset: 106.8436737061px;
    stroke-dasharray: 106.8436737061px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 106.8436737061px;
  }
}
.L4_chart-129 {
  animation: CH4_animate-svg-stroke-129 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.95s both, CH4_animate-svg-fill-129 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.95s both;
}

@keyframes CH4_animate-svg-stroke-130 {
  0% {
    stroke-dashoffset: 415.4557800293px;
    stroke-dasharray: 415.4557800293px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 415.4557800293px;
  }
}
.L4_chart-130 {
  animation: CH4_animate-svg-stroke-130 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.975s both, CH4_animate-svg-fill-130 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.975s both;
}

@keyframes CH4_animate-svg-stroke-131 {
  0% {
    stroke-dashoffset: 299.6350708008px;
    stroke-dasharray: 299.6350708008px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 299.6350708008px;
  }
}
.L4_chart-131 {
  animation: CH4_animate-svg-stroke-131 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4s both, CH4_animate-svg-fill-131 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4s both;
}

@keyframes CH4_animate-svg-stroke-132 {
  0% {
    stroke-dashoffset: 116.6752319336px;
    stroke-dasharray: 116.6752319336px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 116.6752319336px;
  }
}
.L4_chart-132 {
  animation: CH4_animate-svg-stroke-132 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.025s both, CH4_animate-svg-fill-132 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.025s both;
}

@keyframes CH4_animate-svg-stroke-133 {
  0% {
    stroke-dashoffset: 243.982421875px;
    stroke-dasharray: 243.982421875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 243.982421875px;
  }
}
.L4_chart-133 {
  animation: CH4_animate-svg-stroke-133 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.05s both, CH4_animate-svg-fill-133 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.05s both;
}

@keyframes CH4_animate-svg-stroke-134 {
  0% {
    stroke-dashoffset: 342.6938476563px;
    stroke-dasharray: 342.6938476563px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 342.6938476563px;
  }
}
.L4_chart-134 {
  animation: CH4_animate-svg-stroke-134 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.075s both, CH4_animate-svg-fill-134 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.075s both;
}

@keyframes CH4_animate-svg-stroke-135 {
  0% {
    stroke-dashoffset: 180.1971435547px;
    stroke-dasharray: 180.1971435547px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 180.1971435547px;
  }
}
.L4_chart-135 {
  animation: CH4_animate-svg-stroke-135 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1s both, CH4_animate-svg-fill-135 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1s both;
}

@keyframes CH4_animate-svg-stroke-136 {
  0% {
    stroke-dashoffset: 286.8273010254px;
    stroke-dasharray: 286.8273010254px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 286.8273010254px;
  }
}
.L4_chart-136 {
  animation: CH4_animate-svg-stroke-136 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.125s both, CH4_animate-svg-fill-136 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.125s both;
}

@keyframes CH4_animate-svg-stroke-138 {
  0% {
    stroke-dashoffset: 200.7539825439px;
    stroke-dasharray: 200.7539825439px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 200.7539825439px;
  }
}
@keyframes CH4_animate-svg-fill-138 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-138 {
  animation: CH4_animate-svg-stroke-138 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.175s both, CH4_animate-svg-fill-138 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.175s both;
}

@keyframes CH4_animate-svg-stroke-139 {
  0% {
    stroke-dashoffset: 310.5420227051px;
    stroke-dasharray: 310.5420227051px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 310.5420227051px;
  }
}
@keyframes CH4_animate-svg-fill-139 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-139 {
  animation: CH4_animate-svg-stroke-139 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s both, CH4_animate-svg-fill-139 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s both;
}

@keyframes CH4_animate-svg-stroke-140 {
  0% {
    stroke-dashoffset: 310.5419921875px;
    stroke-dasharray: 310.5419921875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 310.5419921875px;
  }
}
@keyframes CH4_animate-svg-fill-140 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-140 {
  animation: CH4_animate-svg-stroke-140 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.225s both, CH4_animate-svg-fill-140 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.225s both;
}

@keyframes CH4_animate-svg-stroke-141 {
  0% {
    stroke-dashoffset: 200.7539672852px;
    stroke-dasharray: 200.7539672852px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 200.7539672852px;
  }
}
@keyframes CH4_animate-svg-fill-141 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-141 {
  animation: CH4_animate-svg-stroke-141 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.25s both, CH4_animate-svg-fill-141 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.25s both;
}

@keyframes CH4_animate-svg-stroke-142 {
  0% {
    stroke-dashoffset: 310.5420227051px;
    stroke-dasharray: 310.5420227051px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 310.5420227051px;
  }
}
@keyframes CH4_animate-svg-fill-142 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-142 {
  animation: CH4_animate-svg-stroke-142 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.275s both, CH4_animate-svg-fill-142 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.275s both;
}

@keyframes CH4_animate-svg-stroke-143 {
  0% {
    stroke-dashoffset: 310.5420532227px;
    stroke-dasharray: 310.5420532227px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 310.5420532227px;
  }
}
@keyframes CH4_animate-svg-fill-143 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-143 {
  animation: CH4_animate-svg-stroke-143 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s both, CH4_animate-svg-fill-143 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s both;
}

@keyframes CH4_animate-svg-stroke-144 {
  0% {
    stroke-dashoffset: 310.5420532227px;
    stroke-dasharray: 310.5420532227px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 310.5420532227px;
  }
}
@keyframes CH4_animate-svg-fill-144 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-144 {
  animation: CH4_animate-svg-stroke-144 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.325s both, CH4_animate-svg-fill-144 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.325s both;
}

@keyframes CH4_animate-svg-stroke-145 {
  0% {
    stroke-dashoffset: 200.7559967041px;
    stroke-dasharray: 200.7559967041px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 200.7559967041px;
  }
}
@keyframes CH4_animate-svg-fill-145 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-145 {
  animation: CH4_animate-svg-stroke-145 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.35s both, CH4_animate-svg-fill-145 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.35s both;
}

@keyframes CH4_animate-svg-stroke-146 {
  0% {
    stroke-dashoffset: 310.5420227051px;
    stroke-dasharray: 310.5420227051px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 310.5420227051px;
  }
}
@keyframes CH4_animate-svg-fill-146 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-146 {
  animation: CH4_animate-svg-stroke-146 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.375s both, CH4_animate-svg-fill-146 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.375s both;
}

@keyframes CH4_animate-svg-stroke-147 {
  0% {
    stroke-dashoffset: 310.5419921875px;
    stroke-dasharray: 310.5419921875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 310.5419921875px;
  }
}
@keyframes CH4_animate-svg-fill-147 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-147 {
  animation: CH4_animate-svg-stroke-147 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s both, CH4_animate-svg-fill-147 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s both;
}

@keyframes CH4_animate-svg-stroke-148 {
  0% {
    stroke-dashoffset: 200.7559814453px;
    stroke-dasharray: 200.7559814453px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 200.7559814453px;
  }
}
@keyframes CH4_animate-svg-fill-148 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-148 {
  animation: CH4_animate-svg-stroke-148 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.425s both, CH4_animate-svg-fill-148 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.425s both;
}

@keyframes CH4_animate-svg-stroke-149 {
  0% {
    stroke-dashoffset: 310.5420227051px;
    stroke-dasharray: 310.5420227051px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 310.5420227051px;
  }
}
@keyframes CH4_animate-svg-fill-149 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-149 {
  animation: CH4_animate-svg-stroke-149 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.45s both, CH4_animate-svg-fill-149 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.45s both;
}

@keyframes CH4_animate-svg-stroke-150 {
  0% {
    stroke-dashoffset: 310.5420532227px;
    stroke-dasharray: 310.5420532227px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 310.5420532227px;
  }
}
@keyframes CH4_animate-svg-fill-150 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-150 {
  animation: CH4_animate-svg-stroke-150 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.475s both, CH4_animate-svg-fill-150 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.475s both;
}

@keyframes CH4_animate-svg-stroke-151 {
  0% {
    stroke-dashoffset: 310.5420532227px;
    stroke-dasharray: 310.5420532227px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 310.5420532227px;
  }
}
@keyframes CH4_animate-svg-fill-151 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-151 {
  animation: CH4_animate-svg-stroke-151 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s both, CH4_animate-svg-fill-151 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s both;
}

@keyframes CH4_animate-svg-stroke-152 {
  0% {
    stroke-dashoffset: 1063.9255371094px;
    stroke-dasharray: 1063.9255371094px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1063.9255371094px;
  }
}
@keyframes CH4_animate-svg-fill-152 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-152 {
  animation: CH4_animate-svg-stroke-152 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.525s both, CH4_animate-svg-fill-152 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.525s both;
}

@keyframes CH4_animate-svg-stroke-153 {
  0% {
    stroke-dashoffset: 471.9565429688px;
    stroke-dasharray: 471.9565429688px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 471.9565429688px;
  }
}
@keyframes CH4_animate-svg-fill-153 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-153 {
  animation: CH4_animate-svg-stroke-153 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.55s both, CH4_animate-svg-fill-153 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.55s both;
}

@keyframes CH4_animate-svg-stroke-154 {
  0% {
    stroke-dashoffset: 6728.7080078125px;
    stroke-dasharray: 6728.7080078125px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6728.7080078125px;
  }
}
@keyframes CH4_animate-svg-fill-154 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-154 {
  animation: CH4_animate-svg-stroke-154 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.575s both, CH4_animate-svg-fill-154 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.575s both;
}

@keyframes CH4_animate-svg-stroke-155 {
  0% {
    stroke-dashoffset: 5.6265974045px;
    stroke-dasharray: 5.6265974045px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.6265974045px;
  }
}
@keyframes CH4_animate-svg-fill-155 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-155 {
  animation: CH4_animate-svg-stroke-155 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s both, CH4_animate-svg-fill-155 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s both;
}

@keyframes CH4_animate-svg-stroke-156 {
  0% {
    stroke-dashoffset: 3.9227753878px;
    stroke-dasharray: 3.9227753878px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.9227753878px;
  }
}
@keyframes CH4_animate-svg-fill-156 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-156 {
  animation: CH4_animate-svg-stroke-156 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.625s both, CH4_animate-svg-fill-156 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.625s both;
}

@keyframes CH4_animate-svg-stroke-157 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH4_animate-svg-fill-157 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-157 {
  animation: CH4_animate-svg-stroke-157 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.65s both, CH4_animate-svg-fill-157 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.65s both;
}

@keyframes CH4_animate-svg-stroke-158 {
  0% {
    stroke-dashoffset: 4.8083336353px;
    stroke-dasharray: 4.8083336353px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.8083336353px;
  }
}
@keyframes CH4_animate-svg-fill-158 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-158 {
  animation: CH4_animate-svg-stroke-158 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.675s both, CH4_animate-svg-fill-158 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.675s both;
}

@keyframes CH4_animate-svg-stroke-159 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH4_animate-svg-fill-159 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-159 {
  animation: CH4_animate-svg-stroke-159 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.7s both, CH4_animate-svg-fill-159 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.7s both;
}

@keyframes CH4_animate-svg-stroke-160 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH4_animate-svg-fill-160 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-160 {
  animation: CH4_animate-svg-stroke-160 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.725s both, CH4_animate-svg-fill-160 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.725s both;
}

@keyframes CH4_animate-svg-stroke-161 {
  0% {
    stroke-dashoffset: 4.2760000229px;
    stroke-dasharray: 4.2760000229px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2760000229px;
  }
}
@keyframes CH4_animate-svg-fill-161 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-161 {
  animation: CH4_animate-svg-stroke-161 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.75s both, CH4_animate-svg-fill-161 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.75s both;
}

@keyframes CH4_animate-svg-stroke-162 {
  0% {
    stroke-dashoffset: 3.9227753878px;
    stroke-dasharray: 3.9227753878px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.9227753878px;
  }
}
@keyframes CH4_animate-svg-fill-162 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-162 {
  animation: CH4_animate-svg-stroke-162 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.775s both, CH4_animate-svg-fill-162 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.775s both;
}

@keyframes CH4_animate-svg-stroke-163 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH4_animate-svg-fill-163 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-163 {
  animation: CH4_animate-svg-stroke-163 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s both, CH4_animate-svg-fill-163 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s both;
}

@keyframes CH4_animate-svg-stroke-164 {
  0% {
    stroke-dashoffset: 4.1381387711px;
    stroke-dasharray: 4.1381387711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.1381387711px;
  }
}
@keyframes CH4_animate-svg-fill-164 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-164 {
  animation: CH4_animate-svg-stroke-164 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.825s both, CH4_animate-svg-fill-164 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.825s both;
}

@keyframes CH4_animate-svg-stroke-165 {
  0% {
    stroke-dashoffset: 4.2858533859px;
    stroke-dasharray: 4.2858533859px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2858533859px;
  }
}
@keyframes CH4_animate-svg-fill-165 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-165 {
  animation: CH4_animate-svg-stroke-165 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.85s both, CH4_animate-svg-fill-165 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.85s both;
}

@keyframes CH4_animate-svg-stroke-166 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH4_animate-svg-fill-166 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-166 {
  animation: CH4_animate-svg-stroke-166 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.875s both, CH4_animate-svg-fill-166 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.875s both;
}

@keyframes CH4_animate-svg-stroke-168 {
  0% {
    stroke-dashoffset: 1249.3483886719px;
    stroke-dasharray: 1249.3483886719px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1249.3483886719px;
  }
}
@keyframes CH4_animate-svg-fill-168 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-168 {
  animation: CH4_animate-svg-stroke-168 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.925s both, CH4_animate-svg-fill-168 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.925s both;
}

@keyframes CH4_animate-svg-stroke-169 {
  0% {
    stroke-dashoffset: 853.9693603516px;
    stroke-dasharray: 853.9693603516px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 853.9693603516px;
  }
}
@keyframes CH4_animate-svg-fill-169 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-169 {
  animation: CH4_animate-svg-stroke-169 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.95s both, CH4_animate-svg-fill-169 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.95s both;
}

@keyframes CH4_animate-svg-stroke-170 {
  0% {
    stroke-dashoffset: 790.8578491211px;
    stroke-dasharray: 790.8578491211px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 790.8578491211px;
  }
}
@keyframes CH4_animate-svg-fill-170 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-170 {
  animation: CH4_animate-svg-stroke-170 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.975s both, CH4_animate-svg-fill-170 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.975s both;
}

@keyframes CH4_animate-svg-stroke-171 {
  0% {
    stroke-dashoffset: 562.9673461914px;
    stroke-dasharray: 562.9673461914px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 562.9673461914px;
  }
}
@keyframes CH4_animate-svg-fill-171 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-171 {
  animation: CH4_animate-svg-stroke-171 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5s both, CH4_animate-svg-fill-171 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5s both;
}

@keyframes CH4_animate-svg-stroke-172 {
  0% {
    stroke-dashoffset: 328.0137634277px;
    stroke-dasharray: 328.0137634277px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 328.0137634277px;
  }
}
@keyframes CH4_animate-svg-fill-172 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-172 {
  animation: CH4_animate-svg-stroke-172 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.025s both, CH4_animate-svg-fill-172 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.025s both;
}

@keyframes CH4_animate-svg-stroke-173 {
  0% {
    stroke-dashoffset: 47.1039123535px;
    stroke-dasharray: 47.1039123535px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 47.1039123535px;
  }
}
@keyframes CH4_animate-svg-fill-173 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-173 {
  animation: CH4_animate-svg-stroke-173 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.05s both, CH4_animate-svg-fill-173 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.05s both;
}

@keyframes CH4_animate-svg-stroke-174 {
  0% {
    stroke-dashoffset: 47.0939102173px;
    stroke-dasharray: 47.0939102173px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 47.0939102173px;
  }
}
@keyframes CH4_animate-svg-fill-174 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-174 {
  animation: CH4_animate-svg-stroke-174 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.075s both, CH4_animate-svg-fill-174 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.075s both;
}

@keyframes CH4_animate-svg-stroke-175 {
  0% {
    stroke-dashoffset: 47.1041183472px;
    stroke-dasharray: 47.1041183472px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 47.1041183472px;
  }
}
@keyframes CH4_animate-svg-fill-175 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-175 {
  animation: CH4_animate-svg-stroke-175 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.1s both, CH4_animate-svg-fill-175 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.1s both;
}

@keyframes CH4_animate-svg-stroke-176 {
  0% {
    stroke-dashoffset: 293.7383117676px;
    stroke-dasharray: 293.7383117676px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 293.7383117676px;
  }
}
@keyframes CH4_animate-svg-fill-176 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-176 {
  animation: CH4_animate-svg-stroke-176 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.125s both, CH4_animate-svg-fill-176 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.125s both;
}

@keyframes CH4_animate-svg-stroke-177 {
  0% {
    stroke-dashoffset: 158.8003234863px;
    stroke-dasharray: 158.8003234863px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 158.8003234863px;
  }
}
@keyframes CH4_animate-svg-fill-177 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-177 {
  animation: CH4_animate-svg-stroke-177 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.15s both, CH4_animate-svg-fill-177 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.15s both;
}

@keyframes CH4_animate-svg-stroke-178 {
  0% {
    stroke-dashoffset: 123.5722351074px;
    stroke-dasharray: 123.5722351074px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.5722351074px;
  }
}
@keyframes CH4_animate-svg-fill-178 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-178 {
  animation: CH4_animate-svg-stroke-178 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.175s both, CH4_animate-svg-fill-178 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.175s both;
}

@keyframes CH4_animate-svg-stroke-179 {
  0% {
    stroke-dashoffset: 155.0939941406px;
    stroke-dasharray: 155.0939941406px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 155.0939941406px;
  }
}
@keyframes CH4_animate-svg-fill-179 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-179 {
  animation: CH4_animate-svg-stroke-179 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s both, CH4_animate-svg-fill-179 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s both;
}

@keyframes CH4_animate-svg-stroke-180 {
  0% {
    stroke-dashoffset: 54.970161438px;
    stroke-dasharray: 54.970161438px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.970161438px;
  }
}
@keyframes CH4_animate-svg-fill-180 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-180 {
  animation: CH4_animate-svg-stroke-180 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.225s both, CH4_animate-svg-fill-180 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.225s both;
}

@keyframes CH4_animate-svg-stroke-181 {
  0% {
    stroke-dashoffset: 158.8003234863px;
    stroke-dasharray: 158.8003234863px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 158.8003234863px;
  }
}
@keyframes CH4_animate-svg-fill-181 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-181 {
  animation: CH4_animate-svg-stroke-181 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.25s both, CH4_animate-svg-fill-181 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.25s both;
}

@keyframes CH4_animate-svg-stroke-182 {
  0% {
    stroke-dashoffset: 123.5722351074px;
    stroke-dasharray: 123.5722351074px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.5722351074px;
  }
}
@keyframes CH4_animate-svg-fill-182 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-182 {
  animation: CH4_animate-svg-stroke-182 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.275s both, CH4_animate-svg-fill-182 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.275s both;
}

@keyframes CH4_animate-svg-stroke-183 {
  0% {
    stroke-dashoffset: 155.0942382813px;
    stroke-dasharray: 155.0942382813px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 155.0942382813px;
  }
}
@keyframes CH4_animate-svg-fill-183 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-183 {
  animation: CH4_animate-svg-stroke-183 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.3s both, CH4_animate-svg-fill-183 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.3s both;
}

@keyframes CH4_animate-svg-stroke-184 {
  0% {
    stroke-dashoffset: 54.9702682495px;
    stroke-dasharray: 54.9702682495px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.9702682495px;
  }
}
@keyframes CH4_animate-svg-fill-184 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-184 {
  animation: CH4_animate-svg-stroke-184 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.325s both, CH4_animate-svg-fill-184 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.325s both;
}

@keyframes CH4_animate-svg-stroke-185 {
  0% {
    stroke-dashoffset: 123.572052002px;
    stroke-dasharray: 123.572052002px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.572052002px;
  }
}
@keyframes CH4_animate-svg-fill-185 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-185 {
  animation: CH4_animate-svg-stroke-185 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.35s both, CH4_animate-svg-fill-185 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.35s both;
}

@keyframes CH4_animate-svg-stroke-186 {
  0% {
    stroke-dashoffset: 155.094619751px;
    stroke-dasharray: 155.094619751px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 155.094619751px;
  }
}
@keyframes CH4_animate-svg-fill-186 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-186 {
  animation: CH4_animate-svg-stroke-186 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.375s both, CH4_animate-svg-fill-186 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.375s both;
}

@keyframes CH4_animate-svg-stroke-187 {
  0% {
    stroke-dashoffset: 54.970085144px;
    stroke-dasharray: 54.970085144px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.970085144px;
  }
}
@keyframes CH4_animate-svg-fill-187 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-187 {
  animation: CH4_animate-svg-stroke-187 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.4s both, CH4_animate-svg-fill-187 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.4s both;
}

@keyframes CH4_animate-svg-stroke-188 {
  0% {
    stroke-dashoffset: 158.8102722168px;
    stroke-dasharray: 158.8102722168px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 158.8102722168px;
  }
}
@keyframes CH4_animate-svg-fill-188 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-188 {
  animation: CH4_animate-svg-stroke-188 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.425s both, CH4_animate-svg-fill-188 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.425s both;
}

@keyframes CH4_animate-svg-stroke-189 {
  0% {
    stroke-dashoffset: 123.5724487305px;
    stroke-dasharray: 123.5724487305px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.5724487305px;
  }
}
@keyframes CH4_animate-svg-fill-189 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-189 {
  animation: CH4_animate-svg-stroke-189 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.45s both, CH4_animate-svg-fill-189 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.45s both;
}

@keyframes CH4_animate-svg-stroke-190 {
  0% {
    stroke-dashoffset: 155.0944976807px;
    stroke-dasharray: 155.0944976807px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 155.0944976807px;
  }
}
@keyframes CH4_animate-svg-fill-190 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-190 {
  animation: CH4_animate-svg-stroke-190 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.475s both, CH4_animate-svg-fill-190 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.475s both;
}

@keyframes CH4_animate-svg-stroke-191 {
  0% {
    stroke-dashoffset: 54.9703369141px;
    stroke-dasharray: 54.9703369141px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.9703369141px;
  }
}
@keyframes CH4_animate-svg-fill-191 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-191 {
  animation: CH4_animate-svg-stroke-191 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.5s both, CH4_animate-svg-fill-191 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.5s both;
}

@keyframes CH4_animate-svg-stroke-192 {
  0% {
    stroke-dashoffset: 158.8102874756px;
    stroke-dasharray: 158.8102874756px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 158.8102874756px;
  }
}
@keyframes CH4_animate-svg-fill-192 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-192 {
  animation: CH4_animate-svg-stroke-192 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.525s both, CH4_animate-svg-fill-192 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.525s both;
}

@keyframes CH4_animate-svg-stroke-193 {
  0% {
    stroke-dashoffset: 193.6942596436px;
    stroke-dasharray: 193.6942596436px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 193.6942596436px;
  }
}
@keyframes CH4_animate-svg-fill-193 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-193 {
  animation: CH4_animate-svg-stroke-193 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.55s both, CH4_animate-svg-fill-193 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.55s both;
}

@keyframes CH4_animate-svg-stroke-194 {
  0% {
    stroke-dashoffset: 148.8175201416px;
    stroke-dasharray: 148.8175201416px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 148.8175201416px;
  }
}
@keyframes CH4_animate-svg-fill-194 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-194 {
  animation: CH4_animate-svg-stroke-194 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.575s both, CH4_animate-svg-fill-194 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.575s both;
}

@keyframes CH4_animate-svg-stroke-195 {
  0% {
    stroke-dashoffset: 4564.10546875px;
    stroke-dasharray: 4564.10546875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4564.10546875px;
  }
}
@keyframes CH4_animate-svg-fill-195 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-195 {
  animation: CH4_animate-svg-stroke-195 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.6s both, CH4_animate-svg-fill-195 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.6s both;
}

@keyframes CH4_animate-svg-stroke-196 {
  0% {
    stroke-dashoffset: 1123.9262695313px;
    stroke-dasharray: 1123.9262695313px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1123.9262695313px;
  }
}
@keyframes CH4_animate-svg-fill-196 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-196 {
  animation: CH4_animate-svg-stroke-196 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.625s both, CH4_animate-svg-fill-196 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.625s both;
}

@keyframes CH4_animate-svg-stroke-197 {
  0% {
    stroke-dashoffset: 653.8746948242px;
    stroke-dasharray: 653.8746948242px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 653.8746948242px;
  }
}
@keyframes CH4_animate-svg-fill-197 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-197 {
  animation: CH4_animate-svg-stroke-197 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.65s both, CH4_animate-svg-fill-197 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.65s both;
}

@keyframes CH4_animate-svg-stroke-198 {
  0% {
    stroke-dashoffset: 5.1649143696px;
    stroke-dasharray: 5.1649143696px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.1649143696px;
  }
}
@keyframes CH4_animate-svg-fill-198 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-198 {
  animation: CH4_animate-svg-stroke-198 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.675s both, CH4_animate-svg-fill-198 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.675s both;
}

@keyframes CH4_animate-svg-stroke-199 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH4_animate-svg-fill-199 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-199 {
  animation: CH4_animate-svg-stroke-199 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.7s both, CH4_animate-svg-fill-199 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.7s both;
}

@keyframes CH4_animate-svg-stroke-200 {
  0% {
    stroke-dashoffset: 4.1381387711px;
    stroke-dasharray: 4.1381387711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.1381387711px;
  }
}
@keyframes CH4_animate-svg-fill-200 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-200 {
  animation: CH4_animate-svg-stroke-200 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.725s both, CH4_animate-svg-fill-200 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.725s both;
}

@keyframes CH4_animate-svg-stroke-201 {
  0% {
    stroke-dashoffset: 5.4016542435px;
    stroke-dasharray: 5.4016542435px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.4016542435px;
  }
}
@keyframes CH4_animate-svg-fill-201 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-201 {
  animation: CH4_animate-svg-stroke-201 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.75s both, CH4_animate-svg-fill-201 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.75s both;
}

@keyframes CH4_animate-svg-stroke-202 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH4_animate-svg-fill-202 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-202 {
  animation: CH4_animate-svg-stroke-202 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.775s both, CH4_animate-svg-fill-202 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.775s both;
}

@keyframes CH4_animate-svg-stroke-204 {
  0% {
    stroke-dashoffset: 1575.1325683594px;
    stroke-dasharray: 1575.1325683594px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1575.1325683594px;
  }
}
@keyframes CH4_animate-svg-fill-204 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-204 {
  animation: CH4_animate-svg-stroke-204 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.825s both, CH4_animate-svg-fill-204 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.825s both;
}

@keyframes CH4_animate-svg-stroke-205 {
  0% {
    stroke-dashoffset: 327.6021118164px;
    stroke-dasharray: 327.6021118164px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 327.6021118164px;
  }
}
@keyframes CH4_animate-svg-fill-205 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-205 {
  animation: CH4_animate-svg-stroke-205 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.85s both, CH4_animate-svg-fill-205 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.85s both;
}

@keyframes CH4_animate-svg-stroke-206 {
  0% {
    stroke-dashoffset: 790.8579711914px;
    stroke-dasharray: 790.8579711914px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 790.8579711914px;
  }
}
@keyframes CH4_animate-svg-fill-206 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-206 {
  animation: CH4_animate-svg-stroke-206 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.875s both, CH4_animate-svg-fill-206 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.875s both;
}

@keyframes CH4_animate-svg-stroke-207 {
  0% {
    stroke-dashoffset: 546.0590209961px;
    stroke-dasharray: 546.0590209961px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 546.0590209961px;
  }
}
@keyframes CH4_animate-svg-fill-207 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-207 {
  animation: CH4_animate-svg-stroke-207 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.9s both, CH4_animate-svg-fill-207 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.9s both;
}

@keyframes CH4_animate-svg-stroke-208 {
  0% {
    stroke-dashoffset: 121.4977264404px;
    stroke-dasharray: 121.4977264404px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 121.4977264404px;
  }
}
@keyframes CH4_animate-svg-fill-208 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-208 {
  animation: CH4_animate-svg-stroke-208 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.925s both, CH4_animate-svg-fill-208 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.925s both;
}

@keyframes CH4_animate-svg-stroke-209 {
  0% {
    stroke-dashoffset: 158.8105163574px;
    stroke-dasharray: 158.8105163574px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 158.8105163574px;
  }
}
@keyframes CH4_animate-svg-fill-209 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-209 {
  animation: CH4_animate-svg-stroke-209 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.95s both, CH4_animate-svg-fill-209 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.95s both;
}

@keyframes CH4_animate-svg-stroke-210 {
  0% {
    stroke-dashoffset: 123.5719985962px;
    stroke-dasharray: 123.5719985962px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.5719985962px;
  }
}
@keyframes CH4_animate-svg-fill-210 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-210 {
  animation: CH4_animate-svg-stroke-210 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.975s both, CH4_animate-svg-fill-210 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.975s both;
}

@keyframes CH4_animate-svg-stroke-211 {
  0% {
    stroke-dashoffset: 155.0942840576px;
    stroke-dasharray: 155.0942840576px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 155.0942840576px;
  }
}
@keyframes CH4_animate-svg-fill-211 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-211 {
  animation: CH4_animate-svg-stroke-211 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6s both, CH4_animate-svg-fill-211 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6s both;
}

@keyframes CH4_animate-svg-stroke-212 {
  0% {
    stroke-dashoffset: 54.9704780579px;
    stroke-dasharray: 54.9704780579px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.9704780579px;
  }
}
@keyframes CH4_animate-svg-fill-212 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-212 {
  animation: CH4_animate-svg-stroke-212 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.025s both, CH4_animate-svg-fill-212 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.025s both;
}

@keyframes CH4_animate-svg-stroke-213 {
  0% {
    stroke-dashoffset: 158.80027771px;
    stroke-dasharray: 158.80027771px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 158.80027771px;
  }
}
@keyframes CH4_animate-svg-fill-213 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-213 {
  animation: CH4_animate-svg-stroke-213 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.05s both, CH4_animate-svg-fill-213 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.05s both;
}

@keyframes CH4_animate-svg-stroke-214 {
  0% {
    stroke-dashoffset: 123.5722427368px;
    stroke-dasharray: 123.5722427368px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.5722427368px;
  }
}
@keyframes CH4_animate-svg-fill-214 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-214 {
  animation: CH4_animate-svg-stroke-214 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.075s both, CH4_animate-svg-fill-214 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.075s both;
}

@keyframes CH4_animate-svg-stroke-215 {
  0% {
    stroke-dashoffset: 155.0940856934px;
    stroke-dasharray: 155.0940856934px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 155.0940856934px;
  }
}
@keyframes CH4_animate-svg-fill-215 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-215 {
  animation: CH4_animate-svg-stroke-215 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.1s both, CH4_animate-svg-fill-215 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.1s both;
}

@keyframes CH4_animate-svg-stroke-216 {
  0% {
    stroke-dashoffset: 54.9702758789px;
    stroke-dasharray: 54.9702758789px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.9702758789px;
  }
}
@keyframes CH4_animate-svg-fill-216 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-216 {
  animation: CH4_animate-svg-stroke-216 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.125s both, CH4_animate-svg-fill-216 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.125s both;
}

@keyframes CH4_animate-svg-stroke-217 {
  0% {
    stroke-dashoffset: 123.5720214844px;
    stroke-dasharray: 123.5720214844px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.5720214844px;
  }
}
@keyframes CH4_animate-svg-fill-217 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-217 {
  animation: CH4_animate-svg-stroke-217 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.15s both, CH4_animate-svg-fill-217 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.15s both;
}

@keyframes CH4_animate-svg-stroke-218 {
  0% {
    stroke-dashoffset: 155.0942382813px;
    stroke-dasharray: 155.0942382813px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 155.0942382813px;
  }
}
@keyframes CH4_animate-svg-fill-218 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-218 {
  animation: CH4_animate-svg-stroke-218 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.175s both, CH4_animate-svg-fill-218 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.175s both;
}

@keyframes CH4_animate-svg-stroke-219 {
  0% {
    stroke-dashoffset: 54.9702911377px;
    stroke-dasharray: 54.9702911377px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.9702911377px;
  }
}
@keyframes CH4_animate-svg-fill-219 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-219 {
  animation: CH4_animate-svg-stroke-219 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.2s both, CH4_animate-svg-fill-219 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.2s both;
}

@keyframes CH4_animate-svg-stroke-220 {
  0% {
    stroke-dashoffset: 158.8002929688px;
    stroke-dasharray: 158.8002929688px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 158.8002929688px;
  }
}
@keyframes CH4_animate-svg-fill-220 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-220 {
  animation: CH4_animate-svg-stroke-220 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.225s both, CH4_animate-svg-fill-220 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.225s both;
}

@keyframes CH4_animate-svg-stroke-221 {
  0% {
    stroke-dashoffset: 123.572265625px;
    stroke-dasharray: 123.572265625px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.572265625px;
  }
}
@keyframes CH4_animate-svg-fill-221 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-221 {
  animation: CH4_animate-svg-stroke-221 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.25s both, CH4_animate-svg-fill-221 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.25s both;
}

@keyframes CH4_animate-svg-stroke-222 {
  0% {
    stroke-dashoffset: 205.1524658203px;
    stroke-dasharray: 205.1524658203px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 205.1524658203px;
  }
}
@keyframes CH4_animate-svg-fill-222 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-222 {
  animation: CH4_animate-svg-stroke-222 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.275s both, CH4_animate-svg-fill-222 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.275s both;
}

@keyframes CH4_animate-svg-stroke-223 {
  0% {
    stroke-dashoffset: 54.9702606201px;
    stroke-dasharray: 54.9702606201px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.9702606201px;
  }
}
@keyframes CH4_animate-svg-fill-223 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-223 {
  animation: CH4_animate-svg-stroke-223 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.3s both, CH4_animate-svg-fill-223 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.3s both;
}

@keyframes CH4_animate-svg-stroke-224 {
  0% {
    stroke-dashoffset: 158.8002929688px;
    stroke-dasharray: 158.8002929688px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 158.8002929688px;
  }
}
@keyframes CH4_animate-svg-fill-224 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-224 {
  animation: CH4_animate-svg-stroke-224 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.325s both, CH4_animate-svg-fill-224 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.325s both;
}

@keyframes CH4_animate-svg-stroke-225 {
  0% {
    stroke-dashoffset: 123.572265625px;
    stroke-dasharray: 123.572265625px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.572265625px;
  }
}
@keyframes CH4_animate-svg-fill-225 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-225 {
  animation: CH4_animate-svg-stroke-225 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.35s both, CH4_animate-svg-fill-225 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.35s both;
}

@keyframes CH4_animate-svg-stroke-226 {
  0% {
    stroke-dashoffset: 123.5720291138px;
    stroke-dasharray: 123.5720291138px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.5720291138px;
  }
}
@keyframes CH4_animate-svg-fill-226 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-226 {
  animation: CH4_animate-svg-stroke-226 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.375s both, CH4_animate-svg-fill-226 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.375s both;
}

@keyframes CH4_animate-svg-stroke-227 {
  0% {
    stroke-dashoffset: 155.094039917px;
    stroke-dasharray: 155.094039917px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 155.094039917px;
  }
}
@keyframes CH4_animate-svg-fill-227 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-227 {
  animation: CH4_animate-svg-stroke-227 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.4s both, CH4_animate-svg-fill-227 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.4s both;
}

@keyframes CH4_animate-svg-stroke-228 {
  0% {
    stroke-dashoffset: 54.9699249268px;
    stroke-dasharray: 54.9699249268px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.9699249268px;
  }
}
@keyframes CH4_animate-svg-fill-228 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-228 {
  animation: CH4_animate-svg-stroke-228 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.425s both, CH4_animate-svg-fill-228 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.425s both;
}

@keyframes CH4_animate-svg-stroke-229 {
  0% {
    stroke-dashoffset: 1090.0028076172px;
    stroke-dasharray: 1090.0028076172px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1090.0028076172px;
  }
}
@keyframes CH4_animate-svg-fill-229 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-229 {
  animation: CH4_animate-svg-stroke-229 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.45s both, CH4_animate-svg-fill-229 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.45s both;
}

@keyframes CH4_animate-svg-stroke-230 {
  0% {
    stroke-dashoffset: 4423.6513671875px;
    stroke-dasharray: 4423.6513671875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4423.6513671875px;
  }
}
@keyframes CH4_animate-svg-fill-230 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-230 {
  animation: CH4_animate-svg-stroke-230 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.475s both, CH4_animate-svg-fill-230 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.475s both;
}

@keyframes CH4_animate-svg-stroke-231 {
  0% {
    stroke-dashoffset: 270.7440185547px;
    stroke-dasharray: 270.7440185547px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 270.7440185547px;
  }
}
@keyframes CH4_animate-svg-fill-231 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-231 {
  animation: CH4_animate-svg-stroke-231 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.5s both, CH4_animate-svg-fill-231 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.5s both;
}

@keyframes CH4_animate-svg-stroke-232 {
  0% {
    stroke-dashoffset: 5.9306361675px;
    stroke-dasharray: 5.9306361675px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.9306361675px;
  }
}
@keyframes CH4_animate-svg-fill-232 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-232 {
  animation: CH4_animate-svg-stroke-232 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.525s both, CH4_animate-svg-fill-232 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.525s both;
}

@keyframes CH4_animate-svg-stroke-233 {
  0% {
    stroke-dashoffset: 5.1649143696px;
    stroke-dasharray: 5.1649143696px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.1649143696px;
  }
}
@keyframes CH4_animate-svg-fill-233 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-233 {
  animation: CH4_animate-svg-stroke-233 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.55s both, CH4_animate-svg-fill-233 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.55s both;
}

@keyframes CH4_animate-svg-stroke-234 {
  0% {
    stroke-dashoffset: 4.243999958px;
    stroke-dasharray: 4.243999958px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.243999958px;
  }
}
@keyframes CH4_animate-svg-fill-234 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-234 {
  animation: CH4_animate-svg-stroke-234 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.575s both, CH4_animate-svg-fill-234 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.575s both;
}

@keyframes CH4_animate-svg-stroke-236 {
  0% {
    stroke-dashoffset: 785.7648925781px;
    stroke-dasharray: 785.7648925781px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 785.7648925781px;
  }
}
@keyframes CH4_animate-svg-fill-236 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-236 {
  animation: CH4_animate-svg-stroke-236 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.625s both, CH4_animate-svg-fill-236 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.625s both;
}

@keyframes CH4_animate-svg-stroke-237 {
  0% {
    stroke-dashoffset: 543.8128051758px;
    stroke-dasharray: 543.8128051758px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 543.8128051758px;
  }
}
@keyframes CH4_animate-svg-fill-237 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-237 {
  animation: CH4_animate-svg-stroke-237 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.65s both, CH4_animate-svg-fill-237 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.65s both;
}

@keyframes CH4_animate-svg-stroke-238 {
  0% {
    stroke-dashoffset: 129.1368942261px;
    stroke-dasharray: 129.1368942261px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1368942261px;
  }
}
@keyframes CH4_animate-svg-fill-238 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-238 {
  animation: CH4_animate-svg-stroke-238 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.675s both, CH4_animate-svg-fill-238 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.675s both;
}

@keyframes CH4_animate-svg-stroke-239 {
  0% {
    stroke-dashoffset: 129.1368408203px;
    stroke-dasharray: 129.1368408203px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1368408203px;
  }
}
@keyframes CH4_animate-svg-fill-239 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-239 {
  animation: CH4_animate-svg-stroke-239 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.7s both, CH4_animate-svg-fill-239 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.7s both;
}

@keyframes CH4_animate-svg-stroke-240 {
  0% {
    stroke-dashoffset: 129.1370849609px;
    stroke-dasharray: 129.1370849609px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1370849609px;
  }
}
@keyframes CH4_animate-svg-fill-240 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-240 {
  animation: CH4_animate-svg-stroke-240 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.725s both, CH4_animate-svg-fill-240 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.725s both;
}

@keyframes CH4_animate-svg-stroke-241 {
  0% {
    stroke-dashoffset: 129.1371459961px;
    stroke-dasharray: 129.1371459961px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1371459961px;
  }
}
@keyframes CH4_animate-svg-fill-241 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-241 {
  animation: CH4_animate-svg-stroke-241 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.75s both, CH4_animate-svg-fill-241 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.75s both;
}

@keyframes CH4_animate-svg-stroke-242 {
  0% {
    stroke-dashoffset: 129.1371002197px;
    stroke-dasharray: 129.1371002197px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1371002197px;
  }
}
@keyframes CH4_animate-svg-fill-242 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-242 {
  animation: CH4_animate-svg-stroke-242 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.775s both, CH4_animate-svg-fill-242 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.775s both;
}

@keyframes CH4_animate-svg-stroke-243 {
  0% {
    stroke-dashoffset: 129.1373291016px;
    stroke-dasharray: 129.1373291016px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1373291016px;
  }
}
@keyframes CH4_animate-svg-fill-243 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-243 {
  animation: CH4_animate-svg-stroke-243 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.8s both, CH4_animate-svg-fill-243 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.8s both;
}

@keyframes CH4_animate-svg-stroke-244 {
  0% {
    stroke-dashoffset: 129.1368560791px;
    stroke-dasharray: 129.1368560791px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1368560791px;
  }
}
@keyframes CH4_animate-svg-fill-244 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-244 {
  animation: CH4_animate-svg-stroke-244 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.825s both, CH4_animate-svg-fill-244 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.825s both;
}

@keyframes CH4_animate-svg-stroke-245 {
  0% {
    stroke-dashoffset: 129.1365814209px;
    stroke-dasharray: 129.1365814209px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1365814209px;
  }
}
@keyframes CH4_animate-svg-fill-245 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-245 {
  animation: CH4_animate-svg-stroke-245 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.85s both, CH4_animate-svg-fill-245 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.85s both;
}

@keyframes CH4_animate-svg-stroke-246 {
  0% {
    stroke-dashoffset: 129.1368560791px;
    stroke-dasharray: 129.1368560791px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1368560791px;
  }
}
@keyframes CH4_animate-svg-fill-246 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-246 {
  animation: CH4_animate-svg-stroke-246 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.875s both, CH4_animate-svg-fill-246 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.875s both;
}

@keyframes CH4_animate-svg-stroke-247 {
  0% {
    stroke-dashoffset: 129.1368942261px;
    stroke-dasharray: 129.1368942261px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1368942261px;
  }
}
@keyframes CH4_animate-svg-fill-247 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-247 {
  animation: CH4_animate-svg-stroke-247 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.9s both, CH4_animate-svg-fill-247 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.9s both;
}

@keyframes CH4_animate-svg-stroke-248 {
  0% {
    stroke-dashoffset: 129.1369018555px;
    stroke-dasharray: 129.1369018555px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1369018555px;
  }
}
@keyframes CH4_animate-svg-fill-248 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-248 {
  animation: CH4_animate-svg-stroke-248 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.925s both, CH4_animate-svg-fill-248 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.925s both;
}

@keyframes CH4_animate-svg-stroke-249 {
  0% {
    stroke-dashoffset: 129.1366119385px;
    stroke-dasharray: 129.1366119385px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1366119385px;
  }
}
@keyframes CH4_animate-svg-fill-249 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-249 {
  animation: CH4_animate-svg-stroke-249 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.95s both, CH4_animate-svg-fill-249 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.95s both;
}

@keyframes CH4_animate-svg-stroke-250 {
  0% {
    stroke-dashoffset: 129.1369171143px;
    stroke-dasharray: 129.1369171143px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1369171143px;
  }
}
@keyframes CH4_animate-svg-fill-250 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-250 {
  animation: CH4_animate-svg-stroke-250 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.975s both, CH4_animate-svg-fill-250 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.975s both;
}

@keyframes CH4_animate-svg-stroke-251 {
  0% {
    stroke-dashoffset: 290.6289367676px;
    stroke-dasharray: 290.6289367676px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 290.6289367676px;
  }
}
@keyframes CH4_animate-svg-fill-251 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-251 {
  animation: CH4_animate-svg-stroke-251 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7s both, CH4_animate-svg-fill-251 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7s both;
}

@keyframes CH4_animate-svg-stroke-252 {
  0% {
    stroke-dashoffset: 329.5381164551px;
    stroke-dasharray: 329.5381164551px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 329.5381164551px;
  }
}
@keyframes CH4_animate-svg-fill-252 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-252 {
  animation: CH4_animate-svg-stroke-252 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.025s both, CH4_animate-svg-fill-252 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.025s both;
}

@keyframes CH4_animate-svg-stroke-253 {
  0% {
    stroke-dashoffset: 1569.2091064453px;
    stroke-dasharray: 1569.2091064453px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1569.2091064453px;
  }
}
@keyframes CH4_animate-svg-fill-253 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-253 {
  animation: CH4_animate-svg-stroke-253 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.05s both, CH4_animate-svg-fill-253 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.05s both;
}

@keyframes CH4_animate-svg-stroke-254 {
  0% {
    stroke-dashoffset: 310.0852966309px;
    stroke-dasharray: 310.0852966309px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 310.0852966309px;
  }
}
@keyframes CH4_animate-svg-fill-254 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-254 {
  animation: CH4_animate-svg-stroke-254 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.075s both, CH4_animate-svg-fill-254 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.075s both;
}

@keyframes CH4_animate-svg-stroke-255 {
  0% {
    stroke-dashoffset: 329.538269043px;
    stroke-dasharray: 329.538269043px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 329.538269043px;
  }
}
@keyframes CH4_animate-svg-fill-255 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-255 {
  animation: CH4_animate-svg-stroke-255 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.1s both, CH4_animate-svg-fill-255 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.1s both;
}

@keyframes CH4_animate-svg-stroke-256 {
  0% {
    stroke-dashoffset: 290.62890625px;
    stroke-dasharray: 290.62890625px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 290.62890625px;
  }
}
@keyframes CH4_animate-svg-fill-256 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-256 {
  animation: CH4_animate-svg-stroke-256 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.125s both, CH4_animate-svg-fill-256 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.125s both;
}

@keyframes CH4_animate-svg-stroke-257 {
  0% {
    stroke-dashoffset: 310.0849304199px;
    stroke-dasharray: 310.0849304199px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 310.0849304199px;
  }
}
@keyframes CH4_animate-svg-fill-257 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-257 {
  animation: CH4_animate-svg-stroke-257 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.15s both, CH4_animate-svg-fill-257 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.15s both;
}

@keyframes CH4_animate-svg-stroke-258 {
  0% {
    stroke-dashoffset: 319.8165893555px;
    stroke-dasharray: 319.8165893555px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 319.8165893555px;
  }
}
@keyframes CH4_animate-svg-fill-258 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-258 {
  animation: CH4_animate-svg-stroke-258 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.175s both, CH4_animate-svg-fill-258 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.175s both;
}

@keyframes CH4_animate-svg-stroke-259 {
  0% {
    stroke-dashoffset: 329.5407409668px;
    stroke-dasharray: 329.5407409668px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 329.5407409668px;
  }
}
@keyframes CH4_animate-svg-fill-259 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-259 {
  animation: CH4_animate-svg-stroke-259 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.2s both, CH4_animate-svg-fill-259 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.2s both;
}

@keyframes CH4_animate-svg-stroke-260 {
  0% {
    stroke-dashoffset: 329.5405273438px;
    stroke-dasharray: 329.5405273438px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 329.5405273438px;
  }
}
@keyframes CH4_animate-svg-fill-260 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-260 {
  animation: CH4_animate-svg-stroke-260 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.225s both, CH4_animate-svg-fill-260 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.225s both;
}

@keyframes CH4_animate-svg-stroke-261 {
  0% {
    stroke-dashoffset: 329.525177002px;
    stroke-dasharray: 329.525177002px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 329.525177002px;
  }
}
@keyframes CH4_animate-svg-fill-261 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-261 {
  animation: CH4_animate-svg-stroke-261 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.25s both, CH4_animate-svg-fill-261 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.25s both;
}

@keyframes CH4_animate-svg-stroke-262 {
  0% {
    stroke-dashoffset: 329.5255126953px;
    stroke-dasharray: 329.5255126953px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 329.5255126953px;
  }
}
@keyframes CH4_animate-svg-fill-262 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-262 {
  animation: CH4_animate-svg-stroke-262 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.275s both, CH4_animate-svg-fill-262 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.275s both;
}

@keyframes CH4_animate-svg-stroke-263 {
  0% {
    stroke-dashoffset: 329.5398864746px;
    stroke-dasharray: 329.5398864746px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 329.5398864746px;
  }
}
@keyframes CH4_animate-svg-fill-263 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-263 {
  animation: CH4_animate-svg-stroke-263 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.3s both, CH4_animate-svg-fill-263 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.3s both;
}

@keyframes CH4_animate-svg-stroke-264 {
  0% {
    stroke-dashoffset: 1080.1782226563px;
    stroke-dasharray: 1080.1782226563px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1080.1782226563px;
  }
}
@keyframes CH4_animate-svg-fill-264 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-264 {
  animation: CH4_animate-svg-stroke-264 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.325s both, CH4_animate-svg-fill-264 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.325s both;
}

@keyframes CH4_animate-svg-stroke-265 {
  0% {
    stroke-dashoffset: 288.0829467773px;
    stroke-dasharray: 288.0829467773px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 288.0829467773px;
  }
}
@keyframes CH4_animate-svg-fill-265 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-265 {
  animation: CH4_animate-svg-stroke-265 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.35s both, CH4_animate-svg-fill-265 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.35s both;
}

@keyframes CH4_animate-svg-stroke-266 {
  0% {
    stroke-dashoffset: 6.74264431px;
    stroke-dasharray: 6.74264431px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.74264431px;
  }
}
@keyframes CH4_animate-svg-fill-266 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-266 {
  animation: CH4_animate-svg-stroke-266 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.375s both, CH4_animate-svg-fill-266 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.375s both;
}

@keyframes CH4_animate-svg-stroke-267 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH4_animate-svg-fill-267 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-267 {
  animation: CH4_animate-svg-stroke-267 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.4s both, CH4_animate-svg-fill-267 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.4s both;
}

@keyframes CH4_animate-svg-stroke-268 {
  0% {
    stroke-dashoffset: 4.2760000229px;
    stroke-dasharray: 4.2760000229px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2760000229px;
  }
}
@keyframes CH4_animate-svg-fill-268 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-268 {
  animation: CH4_animate-svg-stroke-268 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.425s both, CH4_animate-svg-fill-268 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.425s both;
}

@keyframes CH4_animate-svg-stroke-269 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH4_animate-svg-fill-269 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-269 {
  animation: CH4_animate-svg-stroke-269 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.45s both, CH4_animate-svg-fill-269 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.45s both;
}

@keyframes CH4_animate-svg-stroke-270 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH4_animate-svg-fill-270 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-270 {
  animation: CH4_animate-svg-stroke-270 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.475s both, CH4_animate-svg-fill-270 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.475s both;
}

@keyframes CH4_animate-svg-stroke-271 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH4_animate-svg-fill-271 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-271 {
  animation: CH4_animate-svg-stroke-271 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.5s both, CH4_animate-svg-fill-271 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.5s both;
}

@keyframes CH4_animate-svg-stroke-272 {
  0% {
    stroke-dashoffset: 5.7588114738px;
    stroke-dasharray: 5.7588114738px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.7588114738px;
  }
}
@keyframes CH4_animate-svg-fill-272 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-272 {
  animation: CH4_animate-svg-stroke-272 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.525s both, CH4_animate-svg-fill-272 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.525s both;
}

@keyframes CH4_animate-svg-stroke-273 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH4_animate-svg-fill-273 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-273 {
  animation: CH4_animate-svg-stroke-273 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.55s both, CH4_animate-svg-fill-273 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.55s both;
}

@keyframes CH4_animate-svg-stroke-274 {
  0% {
    stroke-dashoffset: 4.2760000229px;
    stroke-dasharray: 4.2760000229px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2760000229px;
  }
}
@keyframes CH4_animate-svg-fill-274 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-274 {
  animation: CH4_animate-svg-stroke-274 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.575s both, CH4_animate-svg-fill-274 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.575s both;
}

@keyframes CH4_animate-svg-stroke-276 {
  0% {
    stroke-dashoffset: 1320.8176269531px;
    stroke-dasharray: 1320.8176269531px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1320.8176269531px;
  }
}
@keyframes CH4_animate-svg-fill-276 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-276 {
  animation: CH4_animate-svg-stroke-276 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.625s both, CH4_animate-svg-fill-276 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.625s both;
}

@keyframes CH4_animate-svg-stroke-277 {
  0% {
    stroke-dashoffset: 1272.7642822266px;
    stroke-dasharray: 1272.7642822266px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1272.7642822266px;
  }
}
@keyframes CH4_animate-svg-fill-277 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-277 {
  animation: CH4_animate-svg-stroke-277 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.65s both, CH4_animate-svg-fill-277 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.65s both;
}

@keyframes CH4_animate-svg-stroke-278 {
  0% {
    stroke-dashoffset: 396.0347900391px;
    stroke-dasharray: 396.0347900391px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 396.0347900391px;
  }
}
@keyframes CH4_animate-svg-fill-278 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-278 {
  animation: CH4_animate-svg-stroke-278 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.675s both, CH4_animate-svg-fill-278 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.675s both;
}

@keyframes CH4_animate-svg-stroke-279 {
  0% {
    stroke-dashoffset: 260.9595947266px;
    stroke-dasharray: 260.9595947266px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 260.9595947266px;
  }
}
@keyframes CH4_animate-svg-fill-279 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-279 {
  animation: CH4_animate-svg-stroke-279 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.7s both, CH4_animate-svg-fill-279 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.7s both;
}

@keyframes CH4_animate-svg-stroke-280 {
  0% {
    stroke-dashoffset: 38.8269081116px;
    stroke-dasharray: 38.8269081116px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 38.8269081116px;
  }
}
@keyframes CH4_animate-svg-fill-280 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-280 {
  animation: CH4_animate-svg-stroke-280 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.725s both, CH4_animate-svg-fill-280 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.725s both;
}

@keyframes CH4_animate-svg-stroke-281 {
  0% {
    stroke-dashoffset: 789.8776245117px;
    stroke-dasharray: 789.8776245117px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 789.8776245117px;
  }
}
@keyframes CH4_animate-svg-fill-281 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-281 {
  animation: CH4_animate-svg-stroke-281 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.75s both, CH4_animate-svg-fill-281 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.75s both;
}

@keyframes CH4_animate-svg-stroke-282 {
  0% {
    stroke-dashoffset: 4529.4467773438px;
    stroke-dasharray: 4529.4467773438px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4529.4467773438px;
  }
}
@keyframes CH4_animate-svg-fill-282 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-282 {
  animation: CH4_animate-svg-stroke-282 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.775s both, CH4_animate-svg-fill-282 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.775s both;
}

@keyframes CH4_animate-svg-stroke-283 {
  0% {
    stroke-dashoffset: 5.9306361675px;
    stroke-dasharray: 5.9306361675px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.9306361675px;
  }
}
@keyframes CH4_animate-svg-fill-283 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-283 {
  animation: CH4_animate-svg-stroke-283 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.8s both, CH4_animate-svg-fill-283 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.8s both;
}

@keyframes CH4_animate-svg-stroke-284 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH4_animate-svg-fill-284 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-284 {
  animation: CH4_animate-svg-stroke-284 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.825s both, CH4_animate-svg-fill-284 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.825s both;
}

@keyframes CH4_animate-svg-stroke-285 {
  0% {
    stroke-dashoffset: 6.499625206px;
    stroke-dasharray: 6.499625206px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.499625206px;
  }
}
@keyframes CH4_animate-svg-fill-285 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-285 {
  animation: CH4_animate-svg-stroke-285 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.85s both, CH4_animate-svg-fill-285 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.85s both;
}

@keyframes CH4_animate-svg-stroke-286 {
  0% {
    stroke-dashoffset: 4.3741643429px;
    stroke-dasharray: 4.3741643429px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.3741643429px;
  }
}
@keyframes CH4_animate-svg-fill-286 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-286 {
  animation: CH4_animate-svg-stroke-286 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.875s both, CH4_animate-svg-fill-286 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.875s both;
}

@keyframes CH4_animate-svg-stroke-287 {
  0% {
    stroke-dashoffset: 3.9227753878px;
    stroke-dasharray: 3.9227753878px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.9227753878px;
  }
}
@keyframes CH4_animate-svg-fill-287 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-287 {
  animation: CH4_animate-svg-stroke-287 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.9s both, CH4_animate-svg-fill-287 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.9s both;
}

@keyframes CH4_animate-svg-stroke-288 {
  0% {
    stroke-dashoffset: 4.7520041466px;
    stroke-dasharray: 4.7520041466px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.7520041466px;
  }
}
@keyframes CH4_animate-svg-fill-288 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-288 {
  animation: CH4_animate-svg-stroke-288 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.925s both, CH4_animate-svg-fill-288 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.925s both;
}

@keyframes CH4_animate-svg-stroke-289 {
  0% {
    stroke-dashoffset: 4.2760000229px;
    stroke-dasharray: 4.2760000229px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2760000229px;
  }
}
@keyframes CH4_animate-svg-fill-289 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-289 {
  animation: CH4_animate-svg-stroke-289 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.95s both, CH4_animate-svg-fill-289 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.95s both;
}

@keyframes CH4_animate-svg-stroke-290 {
  0% {
    stroke-dashoffset: 5.7588114738px;
    stroke-dasharray: 5.7588114738px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.7588114738px;
  }
}
@keyframes CH4_animate-svg-fill-290 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-290 {
  animation: CH4_animate-svg-stroke-290 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.975s both, CH4_animate-svg-fill-290 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.975s both;
}

@keyframes CH4_animate-svg-stroke-291 {
  0% {
    stroke-dashoffset: 5.9306361675px;
    stroke-dasharray: 5.9306361675px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.9306361675px;
  }
}
@keyframes CH4_animate-svg-fill-291 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-291 {
  animation: CH4_animate-svg-stroke-291 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8s both, CH4_animate-svg-fill-291 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8s both;
}

@keyframes CH4_animate-svg-stroke-292 {
  0% {
    stroke-dashoffset: 3.689999938px;
    stroke-dasharray: 3.689999938px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.689999938px;
  }
}
@keyframes CH4_animate-svg-fill-292 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-292 {
  animation: CH4_animate-svg-stroke-292 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.025s both, CH4_animate-svg-fill-292 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.025s both;
}

@keyframes CH4_animate-svg-stroke-294 {
  0% {
    stroke-dashoffset: 434.1703491211px;
    stroke-dasharray: 434.1703491211px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 434.1703491211px;
  }
}
@keyframes CH4_animate-svg-fill-294 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-294 {
  animation: CH4_animate-svg-stroke-294 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.075s both, CH4_animate-svg-fill-294 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.075s both;
}

@keyframes CH4_animate-svg-stroke-295 {
  0% {
    stroke-dashoffset: 738.2448730469px;
    stroke-dasharray: 738.2448730469px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 738.2448730469px;
  }
}
@keyframes CH4_animate-svg-fill-295 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-295 {
  animation: CH4_animate-svg-stroke-295 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.1s both, CH4_animate-svg-fill-295 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.1s both;
}

@keyframes CH4_animate-svg-stroke-296 {
  0% {
    stroke-dashoffset: 434.1688842773px;
    stroke-dasharray: 434.1688842773px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 434.1688842773px;
  }
}
@keyframes CH4_animate-svg-fill-296 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-296 {
  animation: CH4_animate-svg-stroke-296 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.125s both, CH4_animate-svg-fill-296 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.125s both;
}

@keyframes CH4_animate-svg-stroke-297 {
  0% {
    stroke-dashoffset: 1042.5262451172px;
    stroke-dasharray: 1042.5262451172px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1042.5262451172px;
  }
}
@keyframes CH4_animate-svg-fill-297 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-297 {
  animation: CH4_animate-svg-stroke-297 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.15s both, CH4_animate-svg-fill-297 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.15s both;
}

@keyframes CH4_animate-svg-stroke-298 {
  0% {
    stroke-dashoffset: 434.1489868164px;
    stroke-dasharray: 434.1489868164px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 434.1489868164px;
  }
}
@keyframes CH4_animate-svg-fill-298 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-298 {
  animation: CH4_animate-svg-stroke-298 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.175s both, CH4_animate-svg-fill-298 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.175s both;
}

@keyframes CH4_animate-svg-stroke-299 {
  0% {
    stroke-dashoffset: 649.135925293px;
    stroke-dasharray: 649.135925293px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 649.135925293px;
  }
}
@keyframes CH4_animate-svg-fill-299 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-299 {
  animation: CH4_animate-svg-stroke-299 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.2s both, CH4_animate-svg-fill-299 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.2s both;
}

@keyframes CH4_animate-svg-stroke-300 {
  0% {
    stroke-dashoffset: 449.360168457px;
    stroke-dasharray: 449.360168457px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 449.360168457px;
  }
}
@keyframes CH4_animate-svg-fill-300 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-300 {
  animation: CH4_animate-svg-stroke-300 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.225s both, CH4_animate-svg-fill-300 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.225s both;
}

@keyframes CH4_animate-svg-stroke-301 {
  0% {
    stroke-dashoffset: 129.1369171143px;
    stroke-dasharray: 129.1369171143px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1369171143px;
  }
}
@keyframes CH4_animate-svg-fill-301 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-301 {
  animation: CH4_animate-svg-stroke-301 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.25s both, CH4_animate-svg-fill-301 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.25s both;
}

@keyframes CH4_animate-svg-stroke-302 {
  0% {
    stroke-dashoffset: 288.0827636719px;
    stroke-dasharray: 288.0827636719px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 288.0827636719px;
  }
}
@keyframes CH4_animate-svg-fill-302 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-302 {
  animation: CH4_animate-svg-stroke-302 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.275s both, CH4_animate-svg-fill-302 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.275s both;
}

@keyframes CH4_animate-svg-stroke-303 {
  0% {
    stroke-dashoffset: 857.7414550781px;
    stroke-dasharray: 857.7414550781px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 857.7414550781px;
  }
}
@keyframes CH4_animate-svg-fill-303 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-303 {
  animation: CH4_animate-svg-stroke-303 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.3s both, CH4_animate-svg-fill-303 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.3s both;
}

@keyframes CH4_animate-svg-stroke-304 {
  0% {
    stroke-dashoffset: 891.2951660156px;
    stroke-dasharray: 891.2951660156px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 891.2951660156px;
  }
}
@keyframes CH4_animate-svg-fill-304 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-304 {
  animation: CH4_animate-svg-stroke-304 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.325s both, CH4_animate-svg-fill-304 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.325s both;
}

@keyframes CH4_animate-svg-stroke-305 {
  0% {
    stroke-dashoffset: 1295.8068847656px;
    stroke-dasharray: 1295.8068847656px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1295.8068847656px;
  }
}
@keyframes CH4_animate-svg-fill-305 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-305 {
  animation: CH4_animate-svg-stroke-305 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.35s both, CH4_animate-svg-fill-305 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.35s both;
}

@keyframes CH4_animate-svg-stroke-306 {
  0% {
    stroke-dashoffset: 857.7902832031px;
    stroke-dasharray: 857.7902832031px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 857.7902832031px;
  }
}
@keyframes CH4_animate-svg-fill-306 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-306 {
  animation: CH4_animate-svg-stroke-306 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.375s both, CH4_animate-svg-fill-306 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.375s both;
}

@keyframes CH4_animate-svg-stroke-307 {
  0% {
    stroke-dashoffset: 857.7990112305px;
    stroke-dasharray: 857.7990112305px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 857.7990112305px;
  }
}
@keyframes CH4_animate-svg-fill-307 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-307 {
  animation: CH4_animate-svg-stroke-307 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.4s both, CH4_animate-svg-fill-307 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.4s both;
}

@keyframes CH4_animate-svg-stroke-308 {
  0% {
    stroke-dashoffset: 1465.4553222656px;
    stroke-dasharray: 1465.4553222656px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1465.4553222656px;
  }
}
@keyframes CH4_animate-svg-fill-308 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-308 {
  animation: CH4_animate-svg-stroke-308 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.425s both, CH4_animate-svg-fill-308 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.425s both;
}

@keyframes CH4_animate-svg-stroke-309 {
  0% {
    stroke-dashoffset: 2073.9116210938px;
    stroke-dasharray: 2073.9116210938px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2073.9116210938px;
  }
}
@keyframes CH4_animate-svg-fill-309 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-309 {
  animation: CH4_animate-svg-stroke-309 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.45s both, CH4_animate-svg-fill-309 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.45s both;
}

@keyframes CH4_animate-svg-stroke-310 {
  0% {
    stroke-dashoffset: 5.3960001469px;
    stroke-dasharray: 5.3960001469px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.3960001469px;
  }
}
@keyframes CH4_animate-svg-fill-310 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-310 {
  animation: CH4_animate-svg-stroke-310 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.475s both, CH4_animate-svg-fill-310 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.475s both;
}

@keyframes CH4_animate-svg-stroke-311 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH4_animate-svg-fill-311 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-311 {
  animation: CH4_animate-svg-stroke-311 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.5s both, CH4_animate-svg-fill-311 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.5s both;
}

@keyframes CH4_animate-svg-stroke-312 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH4_animate-svg-fill-312 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-312 {
  animation: CH4_animate-svg-stroke-312 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.525s both, CH4_animate-svg-fill-312 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.525s both;
}

@keyframes CH4_animate-svg-stroke-313 {
  0% {
    stroke-dashoffset: 4.2760000229px;
    stroke-dasharray: 4.2760000229px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2760000229px;
  }
}
@keyframes CH4_animate-svg-fill-313 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-313 {
  animation: CH4_animate-svg-stroke-313 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.55s both, CH4_animate-svg-fill-313 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.55s both;
}

@keyframes CH4_animate-svg-stroke-314 {
  0% {
    stroke-dashoffset: 3.9227753878px;
    stroke-dasharray: 3.9227753878px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.9227753878px;
  }
}
@keyframes CH4_animate-svg-fill-314 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-314 {
  animation: CH4_animate-svg-stroke-314 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.575s both, CH4_animate-svg-fill-314 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.575s both;
}

@keyframes CH4_animate-svg-stroke-315 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH4_animate-svg-fill-315 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-315 {
  animation: CH4_animate-svg-stroke-315 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.6s both, CH4_animate-svg-fill-315 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.6s both;
}

@keyframes CH4_animate-svg-stroke-316 {
  0% {
    stroke-dashoffset: 4.1381387711px;
    stroke-dasharray: 4.1381387711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.1381387711px;
  }
}
@keyframes CH4_animate-svg-fill-316 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-316 {
  animation: CH4_animate-svg-stroke-316 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.625s both, CH4_animate-svg-fill-316 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.625s both;
}

@keyframes CH4_animate-svg-stroke-317 {
  0% {
    stroke-dashoffset: 4.2858533859px;
    stroke-dasharray: 4.2858533859px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2858533859px;
  }
}
@keyframes CH4_animate-svg-fill-317 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-317 {
  animation: CH4_animate-svg-stroke-317 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.65s both, CH4_animate-svg-fill-317 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.65s both;
}

@keyframes CH4_animate-svg-stroke-318 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH4_animate-svg-fill-318 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-318 {
  animation: CH4_animate-svg-stroke-318 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.675s both, CH4_animate-svg-fill-318 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.675s both;
}

@keyframes CH4_animate-svg-stroke-319 {
  0% {
    stroke-dashoffset: 5.9306361675px;
    stroke-dasharray: 5.9306361675px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.9306361675px;
  }
}
@keyframes CH4_animate-svg-fill-319 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-319 {
  animation: CH4_animate-svg-stroke-319 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.7s both, CH4_animate-svg-fill-319 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.7s both;
}

@keyframes CH4_animate-svg-stroke-320 {
  0% {
    stroke-dashoffset: 5.8551411629px;
    stroke-dasharray: 5.8551411629px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.8551411629px;
  }
}
@keyframes CH4_animate-svg-fill-320 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-320 {
  animation: CH4_animate-svg-stroke-320 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.725s both, CH4_animate-svg-fill-320 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.725s both;
}

@keyframes CH4_animate-svg-stroke-321 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH4_animate-svg-fill-321 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-321 {
  animation: CH4_animate-svg-stroke-321 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.75s both, CH4_animate-svg-fill-321 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.75s both;
}

@keyframes CH4_animate-svg-stroke-322 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH4_animate-svg-fill-322 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-322 {
  animation: CH4_animate-svg-stroke-322 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.775s both, CH4_animate-svg-fill-322 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.775s both;
}

@keyframes CH4_animate-svg-stroke-323 {
  0% {
    stroke-dashoffset: 5.362503767px;
    stroke-dasharray: 5.362503767px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.362503767px;
  }
}
@keyframes CH4_animate-svg-fill-323 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-323 {
  animation: CH4_animate-svg-stroke-323 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.8s both, CH4_animate-svg-fill-323 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.8s both;
}

@keyframes CH4_animate-svg-stroke-324 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH4_animate-svg-fill-324 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-324 {
  animation: CH4_animate-svg-stroke-324 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.825s both, CH4_animate-svg-fill-324 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.825s both;
}

@keyframes CH4_animate-svg-stroke-325 {
  0% {
    stroke-dashoffset: 4.1381387711px;
    stroke-dasharray: 4.1381387711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.1381387711px;
  }
}
@keyframes CH4_animate-svg-fill-325 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-325 {
  animation: CH4_animate-svg-stroke-325 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.85s both, CH4_animate-svg-fill-325 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.85s both;
}

@keyframes CH4_animate-svg-stroke-326 {
  0% {
    stroke-dashoffset: 4.7520041466px;
    stroke-dasharray: 4.7520041466px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.7520041466px;
  }
}
@keyframes CH4_animate-svg-fill-326 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-326 {
  animation: CH4_animate-svg-stroke-326 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.875s both, CH4_animate-svg-fill-326 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.875s both;
}

@keyframes CH4_animate-svg-stroke-327 {
  0% {
    stroke-dashoffset: 4.2858533859px;
    stroke-dasharray: 4.2858533859px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2858533859px;
  }
}
@keyframes CH4_animate-svg-fill-327 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-327 {
  animation: CH4_animate-svg-stroke-327 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.9s both, CH4_animate-svg-fill-327 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.9s both;
}

@keyframes CH4_animate-svg-stroke-328 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH4_animate-svg-fill-328 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-328 {
  animation: CH4_animate-svg-stroke-328 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.925s both, CH4_animate-svg-fill-328 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.925s both;
}

@keyframes CH4_animate-svg-stroke-329 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH4_animate-svg-fill-329 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-329 {
  animation: CH4_animate-svg-stroke-329 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.95s both, CH4_animate-svg-fill-329 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.95s both;
}

@keyframes CH4_animate-svg-stroke-331 {
  0% {
    stroke-dashoffset: 976.9063720703px;
    stroke-dasharray: 976.9063720703px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 976.9063720703px;
  }
}
@keyframes CH4_animate-svg-fill-331 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-331 {
  animation: CH4_animate-svg-stroke-331 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9s both, CH4_animate-svg-fill-331 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9s both;
}

@keyframes CH4_animate-svg-stroke-332 {
  0% {
    stroke-dashoffset: 183.1056213379px;
    stroke-dasharray: 183.1056213379px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 183.1056213379px;
  }
}
@keyframes CH4_animate-svg-fill-332 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-332 {
  animation: CH4_animate-svg-stroke-332 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.025s both, CH4_animate-svg-fill-332 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.025s both;
}

@keyframes CH4_animate-svg-stroke-333 {
  0% {
    stroke-dashoffset: 976.9059448242px;
    stroke-dasharray: 976.9059448242px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 976.9059448242px;
  }
}
@keyframes CH4_animate-svg-fill-333 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-333 {
  animation: CH4_animate-svg-stroke-333 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.05s both, CH4_animate-svg-fill-333 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.05s both;
}

@keyframes CH4_animate-svg-stroke-334 {
  0% {
    stroke-dashoffset: 183.1054534912px;
    stroke-dasharray: 183.1054534912px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 183.1054534912px;
  }
}
@keyframes CH4_animate-svg-fill-334 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-334 {
  animation: CH4_animate-svg-stroke-334 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.075s both, CH4_animate-svg-fill-334 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.075s both;
}

@keyframes CH4_animate-svg-stroke-335 {
  0% {
    stroke-dashoffset: 976.9064941406px;
    stroke-dasharray: 976.9064941406px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 976.9064941406px;
  }
}
@keyframes CH4_animate-svg-fill-335 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-335 {
  animation: CH4_animate-svg-stroke-335 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.1s both, CH4_animate-svg-fill-335 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.1s both;
}

@keyframes CH4_animate-svg-stroke-336 {
  0% {
    stroke-dashoffset: 183.10546875px;
    stroke-dasharray: 183.10546875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 183.10546875px;
  }
}
@keyframes CH4_animate-svg-fill-336 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-336 {
  animation: CH4_animate-svg-stroke-336 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.125s both, CH4_animate-svg-fill-336 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.125s both;
}

@keyframes CH4_animate-svg-stroke-337 {
  0% {
    stroke-dashoffset: 785.7643432617px;
    stroke-dasharray: 785.7643432617px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 785.7643432617px;
  }
}
@keyframes CH4_animate-svg-fill-337 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L4_chart-337 {
  animation: CH4_animate-svg-stroke-337 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.15s both, CH4_animate-svg-fill-337 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.15s both;
}

@keyframes CH4_animate-svg-stroke-338 {
  0% {
    stroke-dashoffset: 543.8131103516px;
    stroke-dasharray: 543.8131103516px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 543.8131103516px;
  }
}
@keyframes CH4_animate-svg-fill-338 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L4_chart-338 {
  animation: CH4_animate-svg-stroke-338 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.175s both, CH4_animate-svg-fill-338 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.175s both;
}

@keyframes CH4_animate-svg-stroke-339 {
  0% {
    stroke-dashoffset: 129.1368713379px;
    stroke-dasharray: 129.1368713379px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1368713379px;
  }
}
@keyframes CH4_animate-svg-fill-339 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L4_chart-339 {
  animation: CH4_animate-svg-stroke-339 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.2s both, CH4_animate-svg-fill-339 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.2s both;
}

@keyframes CH4_animate-svg-stroke-340 {
  0% {
    stroke-dashoffset: 54.090385437px;
    stroke-dasharray: 54.090385437px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.090385437px;
  }
}
@keyframes CH4_animate-svg-fill-340 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-340 {
  animation: CH4_animate-svg-stroke-340 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.225s both, CH4_animate-svg-fill-340 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.225s both;
}

@keyframes CH4_animate-svg-stroke-341 {
  0% {
    stroke-dashoffset: 54.0906295776px;
    stroke-dasharray: 54.0906295776px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0906295776px;
  }
}
@keyframes CH4_animate-svg-fill-341 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-341 {
  animation: CH4_animate-svg-stroke-341 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.25s both, CH4_animate-svg-fill-341 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.25s both;
}

@keyframes CH4_animate-svg-stroke-342 {
  0% {
    stroke-dashoffset: 54.090637207px;
    stroke-dasharray: 54.090637207px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.090637207px;
  }
}
@keyframes CH4_animate-svg-fill-342 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-342 {
  animation: CH4_animate-svg-stroke-342 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.275s both, CH4_animate-svg-fill-342 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.275s both;
}

@keyframes CH4_animate-svg-stroke-343 {
  0% {
    stroke-dashoffset: 54.102645874px;
    stroke-dasharray: 54.102645874px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102645874px;
  }
}
@keyframes CH4_animate-svg-fill-343 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-343 {
  animation: CH4_animate-svg-stroke-343 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.3s both, CH4_animate-svg-fill-343 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.3s both;
}

@keyframes CH4_animate-svg-stroke-344 {
  0% {
    stroke-dashoffset: 54.1028671265px;
    stroke-dasharray: 54.1028671265px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028671265px;
  }
}
@keyframes CH4_animate-svg-fill-344 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-344 {
  animation: CH4_animate-svg-stroke-344 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.325s both, CH4_animate-svg-fill-344 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.325s both;
}

@keyframes CH4_animate-svg-stroke-345 {
  0% {
    stroke-dashoffset: 54.1028709412px;
    stroke-dasharray: 54.1028709412px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028709412px;
  }
}
@keyframes CH4_animate-svg-fill-345 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-345 {
  animation: CH4_animate-svg-stroke-345 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.35s both, CH4_animate-svg-fill-345 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.35s both;
}

@keyframes CH4_animate-svg-stroke-346 {
  0% {
    stroke-dashoffset: 54.1006622314px;
    stroke-dasharray: 54.1006622314px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1006622314px;
  }
}
@keyframes CH4_animate-svg-fill-346 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-346 {
  animation: CH4_animate-svg-stroke-346 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.375s both, CH4_animate-svg-fill-346 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.375s both;
}

@keyframes CH4_animate-svg-stroke-347 {
  0% {
    stroke-dashoffset: 54.1008796692px;
    stroke-dasharray: 54.1008796692px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008796692px;
  }
}
@keyframes CH4_animate-svg-fill-347 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-347 {
  animation: CH4_animate-svg-stroke-347 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.4s both, CH4_animate-svg-fill-347 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.4s both;
}

@keyframes CH4_animate-svg-stroke-348 {
  0% {
    stroke-dashoffset: 54.1008834839px;
    stroke-dasharray: 54.1008834839px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008834839px;
  }
}
@keyframes CH4_animate-svg-fill-348 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-348 {
  animation: CH4_animate-svg-stroke-348 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.425s both, CH4_animate-svg-fill-348 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.425s both;
}

@keyframes CH4_animate-svg-stroke-349 {
  0% {
    stroke-dashoffset: 54.1024742126px;
    stroke-dasharray: 54.1024742126px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1024742126px;
  }
}
@keyframes CH4_animate-svg-fill-349 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-349 {
  animation: CH4_animate-svg-stroke-349 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.45s both, CH4_animate-svg-fill-349 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.45s both;
}

@keyframes CH4_animate-svg-stroke-350 {
  0% {
    stroke-dashoffset: 54.102684021px;
    stroke-dasharray: 54.102684021px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102684021px;
  }
}
@keyframes CH4_animate-svg-fill-350 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-350 {
  animation: CH4_animate-svg-stroke-350 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.475s both, CH4_animate-svg-fill-350 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.475s both;
}

@keyframes CH4_animate-svg-stroke-351 {
  0% {
    stroke-dashoffset: 54.102684021px;
    stroke-dasharray: 54.102684021px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102684021px;
  }
}
@keyframes CH4_animate-svg-fill-351 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-351 {
  animation: CH4_animate-svg-stroke-351 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.5s both, CH4_animate-svg-fill-351 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.5s both;
}

@keyframes CH4_animate-svg-stroke-352 {
  0% {
    stroke-dashoffset: 54.102684021px;
    stroke-dasharray: 54.102684021px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102684021px;
  }
}
@keyframes CH4_animate-svg-fill-352 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-352 {
  animation: CH4_animate-svg-stroke-352 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.525s both, CH4_animate-svg-fill-352 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.525s both;
}

@keyframes CH4_animate-svg-stroke-353 {
  0% {
    stroke-dashoffset: 54.1028938293px;
    stroke-dasharray: 54.1028938293px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028938293px;
  }
}
@keyframes CH4_animate-svg-fill-353 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-353 {
  animation: CH4_animate-svg-stroke-353 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.55s both, CH4_animate-svg-fill-353 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.55s both;
}

@keyframes CH4_animate-svg-stroke-354 {
  0% {
    stroke-dashoffset: 54.1028900146px;
    stroke-dasharray: 54.1028900146px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028900146px;
  }
}
@keyframes CH4_animate-svg-fill-354 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-354 {
  animation: CH4_animate-svg-stroke-354 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.575s both, CH4_animate-svg-fill-354 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.575s both;
}

@keyframes CH4_animate-svg-stroke-355 {
  0% {
    stroke-dashoffset: 54.0905990601px;
    stroke-dasharray: 54.0905990601px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0905990601px;
  }
}
@keyframes CH4_animate-svg-fill-355 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-355 {
  animation: CH4_animate-svg-stroke-355 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.6s both, CH4_animate-svg-fill-355 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.6s both;
}

@keyframes CH4_animate-svg-stroke-356 {
  0% {
    stroke-dashoffset: 54.0905990601px;
    stroke-dasharray: 54.0905990601px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0905990601px;
  }
}
@keyframes CH4_animate-svg-fill-356 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-356 {
  animation: CH4_animate-svg-stroke-356 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.625s both, CH4_animate-svg-fill-356 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.625s both;
}

@keyframes CH4_animate-svg-stroke-357 {
  0% {
    stroke-dashoffset: 54.0906333923px;
    stroke-dasharray: 54.0906333923px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0906333923px;
  }
}
@keyframes CH4_animate-svg-fill-357 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-357 {
  animation: CH4_animate-svg-stroke-357 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.65s both, CH4_animate-svg-fill-357 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.65s both;
}

@keyframes CH4_animate-svg-stroke-358 {
  0% {
    stroke-dashoffset: 54.1028366089px;
    stroke-dasharray: 54.1028366089px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028366089px;
  }
}
@keyframes CH4_animate-svg-fill-358 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-358 {
  animation: CH4_animate-svg-stroke-358 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.675s both, CH4_animate-svg-fill-358 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.675s both;
}

@keyframes CH4_animate-svg-stroke-359 {
  0% {
    stroke-dashoffset: 54.1028366089px;
    stroke-dasharray: 54.1028366089px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028366089px;
  }
}
@keyframes CH4_animate-svg-fill-359 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-359 {
  animation: CH4_animate-svg-stroke-359 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.7s both, CH4_animate-svg-fill-359 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.7s both;
}

@keyframes CH4_animate-svg-stroke-360 {
  0% {
    stroke-dashoffset: 54.1028671265px;
    stroke-dasharray: 54.1028671265px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028671265px;
  }
}
@keyframes CH4_animate-svg-fill-360 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-360 {
  animation: CH4_animate-svg-stroke-360 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.725s both, CH4_animate-svg-fill-360 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.725s both;
}

@keyframes CH4_animate-svg-stroke-361 {
  0% {
    stroke-dashoffset: 54.1008377075px;
    stroke-dasharray: 54.1008377075px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008377075px;
  }
}
@keyframes CH4_animate-svg-fill-361 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-361 {
  animation: CH4_animate-svg-stroke-361 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.75s both, CH4_animate-svg-fill-361 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.75s both;
}

@keyframes CH4_animate-svg-stroke-362 {
  0% {
    stroke-dashoffset: 54.1008415222px;
    stroke-dasharray: 54.1008415222px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008415222px;
  }
}
@keyframes CH4_animate-svg-fill-362 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-362 {
  animation: CH4_animate-svg-stroke-362 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.775s both, CH4_animate-svg-fill-362 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.775s both;
}

@keyframes CH4_animate-svg-stroke-363 {
  0% {
    stroke-dashoffset: 54.1008834839px;
    stroke-dasharray: 54.1008834839px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008834839px;
  }
}
@keyframes CH4_animate-svg-fill-363 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-363 {
  animation: CH4_animate-svg-stroke-363 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.8s both, CH4_animate-svg-fill-363 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.8s both;
}

@keyframes CH4_animate-svg-stroke-364 {
  0% {
    stroke-dashoffset: 54.102848053px;
    stroke-dasharray: 54.102848053px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102848053px;
  }
}
@keyframes CH4_animate-svg-fill-364 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-364 {
  animation: CH4_animate-svg-stroke-364 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.825s both, CH4_animate-svg-fill-364 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.825s both;
}

@keyframes CH4_animate-svg-stroke-365 {
  0% {
    stroke-dashoffset: 54.102848053px;
    stroke-dasharray: 54.102848053px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102848053px;
  }
}
@keyframes CH4_animate-svg-fill-365 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-365 {
  animation: CH4_animate-svg-stroke-365 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.85s both, CH4_animate-svg-fill-365 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.85s both;
}

@keyframes CH4_animate-svg-stroke-366 {
  0% {
    stroke-dashoffset: 54.1028251648px;
    stroke-dasharray: 54.1028251648px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028251648px;
  }
}
@keyframes CH4_animate-svg-fill-366 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-366 {
  animation: CH4_animate-svg-stroke-366 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.875s both, CH4_animate-svg-fill-366 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.875s both;
}

@keyframes CH4_animate-svg-stroke-367 {
  0% {
    stroke-dashoffset: 54.0906486511px;
    stroke-dasharray: 54.0906486511px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0906486511px;
  }
}
@keyframes CH4_animate-svg-fill-367 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-367 {
  animation: CH4_animate-svg-stroke-367 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.9s both, CH4_animate-svg-fill-367 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.9s both;
}

@keyframes CH4_animate-svg-stroke-368 {
  0% {
    stroke-dashoffset: 54.0906524658px;
    stroke-dasharray: 54.0906524658px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0906524658px;
  }
}
@keyframes CH4_animate-svg-fill-368 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-368 {
  animation: CH4_animate-svg-stroke-368 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.925s both, CH4_animate-svg-fill-368 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.925s both;
}

@keyframes CH4_animate-svg-stroke-369 {
  0% {
    stroke-dashoffset: 54.0906486511px;
    stroke-dasharray: 54.0906486511px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0906486511px;
  }
}
@keyframes CH4_animate-svg-fill-369 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-369 {
  animation: CH4_animate-svg-stroke-369 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.95s both, CH4_animate-svg-fill-369 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.95s both;
}

@keyframes CH4_animate-svg-stroke-370 {
  0% {
    stroke-dashoffset: 54.1028823853px;
    stroke-dasharray: 54.1028823853px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028823853px;
  }
}
@keyframes CH4_animate-svg-fill-370 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-370 {
  animation: CH4_animate-svg-stroke-370 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.975s both, CH4_animate-svg-fill-370 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.975s both;
}

@keyframes CH4_animate-svg-stroke-371 {
  0% {
    stroke-dashoffset: 54.1028862px;
    stroke-dasharray: 54.1028862px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028862px;
  }
}
@keyframes CH4_animate-svg-fill-371 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-371 {
  animation: CH4_animate-svg-stroke-371 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10s both, CH4_animate-svg-fill-371 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10s both;
}

@keyframes CH4_animate-svg-stroke-372 {
  0% {
    stroke-dashoffset: 54.1028823853px;
    stroke-dasharray: 54.1028823853px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028823853px;
  }
}
@keyframes CH4_animate-svg-fill-372 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-372 {
  animation: CH4_animate-svg-stroke-372 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.025s both, CH4_animate-svg-fill-372 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.025s both;
}

@keyframes CH4_animate-svg-stroke-373 {
  0% {
    stroke-dashoffset: 54.1008987427px;
    stroke-dasharray: 54.1008987427px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008987427px;
  }
}
@keyframes CH4_animate-svg-fill-373 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-373 {
  animation: CH4_animate-svg-stroke-373 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.05s both, CH4_animate-svg-fill-373 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.05s both;
}

@keyframes CH4_animate-svg-stroke-374 {
  0% {
    stroke-dashoffset: 54.1008987427px;
    stroke-dasharray: 54.1008987427px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008987427px;
  }
}
@keyframes CH4_animate-svg-fill-374 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-374 {
  animation: CH4_animate-svg-stroke-374 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.075s both, CH4_animate-svg-fill-374 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.075s both;
}

@keyframes CH4_animate-svg-stroke-375 {
  0% {
    stroke-dashoffset: 54.1008987427px;
    stroke-dasharray: 54.1008987427px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008987427px;
  }
}
@keyframes CH4_animate-svg-fill-375 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-375 {
  animation: CH4_animate-svg-stroke-375 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.1s both, CH4_animate-svg-fill-375 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.1s both;
}

@keyframes CH4_animate-svg-stroke-376 {
  0% {
    stroke-dashoffset: 364.1209106445px;
    stroke-dasharray: 364.1209106445px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 364.1209106445px;
  }
}
@keyframes CH4_animate-svg-fill-376 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-376 {
  animation: CH4_animate-svg-stroke-376 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.125s both, CH4_animate-svg-fill-376 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.125s both;
}

@keyframes CH4_animate-svg-stroke-377 {
  0% {
    stroke-dashoffset: 364.1211853027px;
    stroke-dasharray: 364.1211853027px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 364.1211853027px;
  }
}
@keyframes CH4_animate-svg-fill-377 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-377 {
  animation: CH4_animate-svg-stroke-377 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.15s both, CH4_animate-svg-fill-377 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.15s both;
}

@keyframes CH4_animate-svg-stroke-378 {
  0% {
    stroke-dashoffset: 364.1212463379px;
    stroke-dasharray: 364.1212463379px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 364.1212463379px;
  }
}
@keyframes CH4_animate-svg-fill-378 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-378 {
  animation: CH4_animate-svg-stroke-378 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.175s both, CH4_animate-svg-fill-378 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.175s both;
}

@keyframes CH4_animate-svg-stroke-379 {
  0% {
    stroke-dashoffset: 6363.8266601563px;
    stroke-dasharray: 6363.8266601563px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6363.8266601563px;
  }
}
@keyframes CH4_animate-svg-fill-379 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-379 {
  animation: CH4_animate-svg-stroke-379 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.2s both, CH4_animate-svg-fill-379 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.2s both;
}

@keyframes CH4_animate-svg-stroke-380 {
  0% {
    stroke-dashoffset: 1080.1723632813px;
    stroke-dasharray: 1080.1723632813px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1080.1723632813px;
  }
}
@keyframes CH4_animate-svg-fill-380 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-380 {
  animation: CH4_animate-svg-stroke-380 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.225s both, CH4_animate-svg-fill-380 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.225s both;
}

@keyframes CH4_animate-svg-stroke-381 {
  0% {
    stroke-dashoffset: 288.0575256348px;
    stroke-dasharray: 288.0575256348px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 288.0575256348px;
  }
}
@keyframes CH4_animate-svg-fill-381 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L4_chart-381 {
  animation: CH4_animate-svg-stroke-381 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.25s both, CH4_animate-svg-fill-381 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.25s both;
}

@keyframes CH4_animate-svg-stroke-382 {
  0% {
    stroke-dashoffset: 5.2903769016px;
    stroke-dasharray: 5.2903769016px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2903769016px;
  }
}
@keyframes CH4_animate-svg-fill-382 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-382 {
  animation: CH4_animate-svg-stroke-382 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.275s both, CH4_animate-svg-fill-382 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.275s both;
}

@keyframes CH4_animate-svg-stroke-383 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH4_animate-svg-fill-383 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-383 {
  animation: CH4_animate-svg-stroke-383 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.3s both, CH4_animate-svg-fill-383 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.3s both;
}

@keyframes CH4_animate-svg-stroke-384 {
  0% {
    stroke-dashoffset: 3.9227753878px;
    stroke-dasharray: 3.9227753878px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.9227753878px;
  }
}
@keyframes CH4_animate-svg-fill-384 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-384 {
  animation: CH4_animate-svg-stroke-384 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.325s both, CH4_animate-svg-fill-384 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.325s both;
}

@keyframes CH4_animate-svg-stroke-385 {
  0% {
    stroke-dashoffset: 5.1987850666px;
    stroke-dasharray: 5.1987850666px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.1987850666px;
  }
}
@keyframes CH4_animate-svg-fill-385 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-385 {
  animation: CH4_animate-svg-stroke-385 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.35s both, CH4_animate-svg-fill-385 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.35s both;
}

@keyframes CH4_animate-svg-stroke-386 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH4_animate-svg-fill-386 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-386 {
  animation: CH4_animate-svg-stroke-386 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.375s both, CH4_animate-svg-fill-386 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.375s both;
}

@keyframes CH4_animate-svg-stroke-387 {
  0% {
    stroke-dashoffset: 3.9227753878px;
    stroke-dasharray: 3.9227753878px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.9227753878px;
  }
}
@keyframes CH4_animate-svg-fill-387 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L4_chart-387 {
  animation: CH4_animate-svg-stroke-387 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.4s both, CH4_animate-svg-fill-387 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.4s both;
}

@keyframes CH4_animate-svg-stroke-388 {
  0% {
    stroke-dashoffset: 1277.5183105469px;
    stroke-dasharray: 1277.5183105469px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1277.5183105469px;
  }
}
.L4_chart-388 {
  animation: CH4_animate-svg-stroke-388 10s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both, CH4_animate-svg-fill-388 10s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@keyframes CH4_animate-svg-stroke-389 {
  0% {
    stroke-dashoffset: 1106.0350341797px;
    stroke-dasharray: 1106.0350341797px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1106.0350341797px;
  }
}
.L4_chart-389 {
  animation: CH4_animate-svg-stroke-389 10s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both, CH4_animate-svg-fill-389 10s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@keyframes CH4_animate-svg-stroke-390 {
  0% {
    stroke-dashoffset: 30.2743338823px;
    stroke-dasharray: 30.2743338823px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 30.2743338823px;
  }
}
@keyframes CH4_animate-svg-fill-390 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #ec7575;
  }
}
.L4_chart-390 {
  animation: CH4_animate-svg-stroke-390 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11s both, CH4_animate-svg-fill-390 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11s both;
}

@keyframes CH4_animate-svg-stroke-391 {
  0% {
    stroke-dashoffset: 1170.318359375px;
    stroke-dasharray: 1170.318359375px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1170.318359375px;
  }
}
.L4_chart-391 {
  animation: CH4_animate-svg-stroke-391 10s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both, CH4_animate-svg-fill-391 10s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

/* --- L7 CHART --- */
@keyframes CH7_animate-svg-stroke-4 {
  0% {
    stroke-dashoffset: 1170.318359375px;
    stroke-dasharray: 1170.318359375px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1170.318359375px;
  }
}
.L7_chart-4 {
  animation: CH7_animate-svg-stroke-4 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.825s both, CH7_animate-svg-fill-4 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.825s both;
}

@keyframes CH7_animate-svg-stroke-6 {
  0% {
    stroke-dashoffset: 803.9501342773px;
    stroke-dasharray: 803.9501342773px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 803.9501342773px;
  }
}
@keyframes CH7_animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-6 {
  animation: CH7_animate-svg-stroke-6 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.875s both, CH7_animate-svg-fill-6 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.875s both;
}

@keyframes CH7_animate-svg-stroke-7 {
  0% {
    stroke-dashoffset: 463.7303771973px;
    stroke-dasharray: 463.7303771973px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 463.7303771973px;
  }
}
@keyframes CH7_animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-7 {
  animation: CH7_animate-svg-stroke-7 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both, CH7_animate-svg-fill-7 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

@keyframes CH7_animate-svg-stroke-8 {
  0% {
    stroke-dashoffset: 120.2685470581px;
    stroke-dasharray: 120.2685470581px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 120.2685470581px;
  }
}
@keyframes CH7_animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-8 {
  animation: CH7_animate-svg-stroke-8 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.925s both, CH7_animate-svg-fill-8 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.925s both;
}

@keyframes CH7_animate-svg-stroke-9 {
  0% {
    stroke-dashoffset: 120.2685928345px;
    stroke-dasharray: 120.2685928345px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 120.2685928345px;
  }
}
@keyframes CH7_animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-9 {
  animation: CH7_animate-svg-stroke-9 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.95s both, CH7_animate-svg-fill-9 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.95s both;
}

@keyframes CH7_animate-svg-stroke-10 {
  0% {
    stroke-dashoffset: 839.2041015625px;
    stroke-dasharray: 839.2041015625px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 839.2041015625px;
  }
}
@keyframes CH7_animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-10 {
  animation: CH7_animate-svg-stroke-10 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.975s both, CH7_animate-svg-fill-10 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 0.975s both;
}

@keyframes CH7_animate-svg-stroke-11 {
  0% {
    stroke-dashoffset: 760.2574462891px;
    stroke-dasharray: 760.2574462891px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 760.2574462891px;
  }
}
@keyframes CH7_animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-11 {
  animation: CH7_animate-svg-stroke-11 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both, CH7_animate-svg-fill-11 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@keyframes CH7_animate-svg-stroke-12 {
  0% {
    stroke-dashoffset: 505.5513305664px;
    stroke-dasharray: 505.5513305664px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 505.5513305664px;
  }
}
@keyframes CH7_animate-svg-fill-12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-12 {
  animation: CH7_animate-svg-stroke-12 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.025s both, CH7_animate-svg-fill-12 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.025s both;
}

@keyframes CH7_animate-svg-stroke-13 {
  0% {
    stroke-dashoffset: 1025.3155517578px;
    stroke-dasharray: 1025.3155517578px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1025.3155517578px;
  }
}
@keyframes CH7_animate-svg-fill-13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L7_chart-13 {
  animation: CH7_animate-svg-stroke-13 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.05s both, CH7_animate-svg-fill-13 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.05s both;
}

@keyframes CH7_animate-svg-stroke-14 {
  0% {
    stroke-dashoffset: 218.7647399902px;
    stroke-dasharray: 218.7647399902px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 218.7647399902px;
  }
}
@keyframes CH7_animate-svg-fill-14 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-14 {
  animation: CH7_animate-svg-stroke-14 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.075s both, CH7_animate-svg-fill-14 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.075s both;
}

@keyframes CH7_animate-svg-stroke-15 {
  0% {
    stroke-dashoffset: 238.513092041px;
    stroke-dasharray: 238.513092041px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 238.513092041px;
  }
}
@keyframes CH7_animate-svg-fill-15 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-15 {
  animation: CH7_animate-svg-stroke-15 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both, CH7_animate-svg-fill-15 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}

@keyframes CH7_animate-svg-stroke-16 {
  0% {
    stroke-dashoffset: 238.5728149414px;
    stroke-dasharray: 238.5728149414px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 238.5728149414px;
  }
}
@keyframes CH7_animate-svg-fill-16 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-16 {
  animation: CH7_animate-svg-stroke-16 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.125s both, CH7_animate-svg-fill-16 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.125s both;
}

@keyframes CH7_animate-svg-stroke-17 {
  0% {
    stroke-dashoffset: 935.9927368164px;
    stroke-dasharray: 935.9927368164px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 935.9927368164px;
  }
}
@keyframes CH7_animate-svg-fill-17 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-17 {
  animation: CH7_animate-svg-stroke-17 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.15s both, CH7_animate-svg-fill-17 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.15s both;
}

@keyframes CH7_animate-svg-stroke-18 {
  0% {
    stroke-dashoffset: 435.4389648438px;
    stroke-dasharray: 435.4389648438px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 435.4389648438px;
  }
}
@keyframes CH7_animate-svg-fill-18 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-18 {
  animation: CH7_animate-svg-stroke-18 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.175s both, CH7_animate-svg-fill-18 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.175s both;
}

@keyframes CH7_animate-svg-stroke-19 {
  0% {
    stroke-dashoffset: 4866.2421875px;
    stroke-dasharray: 4866.2421875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4866.2421875px;
  }
}
@keyframes CH7_animate-svg-fill-19 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-19 {
  animation: CH7_animate-svg-stroke-19 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both, CH7_animate-svg-fill-19 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
}

@keyframes CH7_animate-svg-stroke-20 {
  0% {
    stroke-dashoffset: 5.9306361675px;
    stroke-dasharray: 5.9306361675px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.9306361675px;
  }
}
@keyframes CH7_animate-svg-fill-20 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-20 {
  animation: CH7_animate-svg-stroke-20 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.225s both, CH7_animate-svg-fill-20 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.225s both;
}

@keyframes CH7_animate-svg-stroke-21 {
  0% {
    stroke-dashoffset: 4.2760000229px;
    stroke-dasharray: 4.2760000229px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2760000229px;
  }
}
@keyframes CH7_animate-svg-fill-21 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-21 {
  animation: CH7_animate-svg-stroke-21 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.25s both, CH7_animate-svg-fill-21 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.25s both;
}

@keyframes CH7_animate-svg-stroke-22 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH7_animate-svg-fill-22 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-22 {
  animation: CH7_animate-svg-stroke-22 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.275s both, CH7_animate-svg-fill-22 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.275s both;
}

@keyframes CH7_animate-svg-stroke-23 {
  0% {
    stroke-dashoffset: 5.362503767px;
    stroke-dasharray: 5.362503767px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.362503767px;
  }
}
@keyframes CH7_animate-svg-fill-23 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-23 {
  animation: CH7_animate-svg-stroke-23 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both, CH7_animate-svg-fill-23 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}

@keyframes CH7_animate-svg-stroke-24 {
  0% {
    stroke-dashoffset: 4.5053758621px;
    stroke-dasharray: 4.5053758621px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5053758621px;
  }
}
@keyframes CH7_animate-svg-fill-24 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-24 {
  animation: CH7_animate-svg-stroke-24 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.325s both, CH7_animate-svg-fill-24 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.325s both;
}

@keyframes CH7_animate-svg-stroke-25 {
  0% {
    stroke-dashoffset: 4.2858533859px;
    stroke-dasharray: 4.2858533859px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2858533859px;
  }
}
@keyframes CH7_animate-svg-fill-25 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-25 {
  animation: CH7_animate-svg-stroke-25 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.35s both, CH7_animate-svg-fill-25 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.35s both;
}

@keyframes CH7_animate-svg-stroke-26 {
  0% {
    stroke-dashoffset: 6.0950031281px;
    stroke-dasharray: 6.0950031281px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.0950031281px;
  }
}
@keyframes CH7_animate-svg-fill-26 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-26 {
  animation: CH7_animate-svg-stroke-26 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.375s both, CH7_animate-svg-fill-26 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.375s both;
}

@keyframes CH7_animate-svg-stroke-27 {
  0% {
    stroke-dashoffset: 4.1381387711px;
    stroke-dasharray: 4.1381387711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.1381387711px;
  }
}
@keyframes CH7_animate-svg-fill-27 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-27 {
  animation: CH7_animate-svg-stroke-27 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both, CH7_animate-svg-fill-27 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
}

@keyframes CH7_animate-svg-stroke-28 {
  0% {
    stroke-dashoffset: 4.7520041466px;
    stroke-dasharray: 4.7520041466px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.7520041466px;
  }
}
@keyframes CH7_animate-svg-fill-28 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-28 {
  animation: CH7_animate-svg-stroke-28 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.425s both, CH7_animate-svg-fill-28 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.425s both;
}

@keyframes CH7_animate-svg-stroke-30 {
  0% {
    stroke-dashoffset: 1107.1085205078px;
    stroke-dasharray: 1107.1085205078px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1107.1085205078px;
  }
}
@keyframes CH7_animate-svg-fill-30 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L7_chart-30 {
  animation: CH7_animate-svg-stroke-30 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.475s both, CH7_animate-svg-fill-30 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.475s both;
}

@keyframes CH7_animate-svg-stroke-31 {
  0% {
    stroke-dashoffset: 670.8262263933px;
    stroke-dasharray: 670.8262263933px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 670.8262263933px;
  }
}
@keyframes CH7_animate-svg-fill-31 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-31 {
  animation: CH7_animate-svg-stroke-31 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both, CH7_animate-svg-fill-31 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}

@keyframes CH7_animate-svg-stroke-32 {
  0% {
    stroke-dashoffset: 240.8374633789px;
    stroke-dasharray: 240.8374633789px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 240.8374633789px;
  }
}
@keyframes CH7_animate-svg-fill-32 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-32 {
  animation: CH7_animate-svg-stroke-32 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.525s both, CH7_animate-svg-fill-32 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.525s both;
}

@keyframes CH7_animate-svg-stroke-33 {
  0% {
    stroke-dashoffset: 240.8372497559px;
    stroke-dasharray: 240.8372497559px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 240.8372497559px;
  }
}
@keyframes CH7_animate-svg-fill-33 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-33 {
  animation: CH7_animate-svg-stroke-33 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.55s both, CH7_animate-svg-fill-33 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.55s both;
}

@keyframes CH7_animate-svg-stroke-34 {
  0% {
    stroke-dashoffset: 345.8635559082px;
    stroke-dasharray: 345.8635559082px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 345.8635559082px;
  }
}
@keyframes CH7_animate-svg-fill-34 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-34 {
  animation: CH7_animate-svg-stroke-34 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.575s both, CH7_animate-svg-fill-34 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.575s both;
}

@keyframes CH7_animate-svg-stroke-35 {
  0% {
    stroke-dashoffset: 40.4148674011px;
    stroke-dasharray: 40.4148674011px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 40.4148674011px;
  }
}
@keyframes CH7_animate-svg-fill-35 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-35 {
  animation: CH7_animate-svg-stroke-35 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both, CH7_animate-svg-fill-35 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}

@keyframes CH7_animate-svg-stroke-36 {
  0% {
    stroke-dashoffset: 81.3086013794px;
    stroke-dasharray: 81.3086013794px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 81.3086013794px;
  }
}
@keyframes CH7_animate-svg-fill-36 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-36 {
  animation: CH7_animate-svg-stroke-36 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.625s both, CH7_animate-svg-fill-36 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.625s both;
}

@keyframes CH7_animate-svg-stroke-37 {
  0% {
    stroke-dashoffset: 58.3619232178px;
    stroke-dasharray: 58.3619232178px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3619232178px;
  }
}
@keyframes CH7_animate-svg-fill-37 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-37 {
  animation: CH7_animate-svg-stroke-37 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.65s both, CH7_animate-svg-fill-37 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.65s both;
}

@keyframes CH7_animate-svg-stroke-38 {
  0% {
    stroke-dashoffset: 58.3558197021px;
    stroke-dasharray: 58.3558197021px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3558197021px;
  }
}
@keyframes CH7_animate-svg-fill-38 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-38 {
  animation: CH7_animate-svg-stroke-38 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.675s both, CH7_animate-svg-fill-38 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.675s both;
}

@keyframes CH7_animate-svg-stroke-39 {
  0% {
    stroke-dashoffset: 81.3084487915px;
    stroke-dasharray: 81.3084487915px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 81.3084487915px;
  }
}
@keyframes CH7_animate-svg-fill-39 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-39 {
  animation: CH7_animate-svg-stroke-39 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both, CH7_animate-svg-fill-39 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
}

@keyframes CH7_animate-svg-stroke-40 {
  0% {
    stroke-dashoffset: 58.3620834351px;
    stroke-dasharray: 58.3620834351px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3620834351px;
  }
}
@keyframes CH7_animate-svg-fill-40 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-40 {
  animation: CH7_animate-svg-stroke-40 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.725s both, CH7_animate-svg-fill-40 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.725s both;
}

@keyframes CH7_animate-svg-stroke-41 {
  0% {
    stroke-dashoffset: 58.3569259644px;
    stroke-dasharray: 58.3569259644px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3569259644px;
  }
}
@keyframes CH7_animate-svg-fill-41 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-41 {
  animation: CH7_animate-svg-stroke-41 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.75s both, CH7_animate-svg-fill-41 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.75s both;
}

@keyframes CH7_animate-svg-stroke-42 {
  0% {
    stroke-dashoffset: 2669.0480957031px;
    stroke-dasharray: 2669.0480957031px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2669.0480957031px;
  }
}
@keyframes CH7_animate-svg-fill-42 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-42 {
  animation: CH7_animate-svg-stroke-42 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.775s both, CH7_animate-svg-fill-42 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.775s both;
}

@keyframes CH7_animate-svg-stroke-43 {
  0% {
    stroke-dashoffset: 1339.5141601563px;
    stroke-dasharray: 1339.5141601563px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1339.5141601563px;
  }
}
@keyframes CH7_animate-svg-fill-43 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-43 {
  animation: CH7_animate-svg-stroke-43 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both, CH7_animate-svg-fill-43 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
}

@keyframes CH7_animate-svg-stroke-44 {
  0% {
    stroke-dashoffset: 5.874402523px;
    stroke-dasharray: 5.874402523px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.874402523px;
  }
}
@keyframes CH7_animate-svg-fill-44 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-44 {
  animation: CH7_animate-svg-stroke-44 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.825s both, CH7_animate-svg-fill-44 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.825s both;
}

@keyframes CH7_animate-svg-stroke-45 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH7_animate-svg-fill-45 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-45 {
  animation: CH7_animate-svg-stroke-45 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.85s both, CH7_animate-svg-fill-45 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.85s both;
}

@keyframes CH7_animate-svg-stroke-46 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH7_animate-svg-fill-46 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-46 {
  animation: CH7_animate-svg-stroke-46 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.875s both, CH7_animate-svg-fill-46 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.875s both;
}

@keyframes CH7_animate-svg-stroke-47 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-47 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-47 {
  animation: CH7_animate-svg-stroke-47 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both, CH7_animate-svg-fill-47 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both;
}

@keyframes CH7_animate-svg-stroke-48 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH7_animate-svg-fill-48 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-48 {
  animation: CH7_animate-svg-stroke-48 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.925s both, CH7_animate-svg-fill-48 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.925s both;
}

@keyframes CH7_animate-svg-stroke-49 {
  0% {
    stroke-dashoffset: 4.2760000229px;
    stroke-dasharray: 4.2760000229px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2760000229px;
  }
}
@keyframes CH7_animate-svg-fill-49 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-49 {
  animation: CH7_animate-svg-stroke-49 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.95s both, CH7_animate-svg-fill-49 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 1.95s both;
}

@keyframes CH7_animate-svg-stroke-51 {
  0% {
    stroke-dashoffset: 1107.1085205078px;
    stroke-dasharray: 1107.1085205078px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1107.1085205078px;
  }
}
@keyframes CH7_animate-svg-fill-51 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L7_chart-51 {
  animation: CH7_animate-svg-stroke-51 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both, CH7_animate-svg-fill-51 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}

@keyframes CH7_animate-svg-stroke-52 {
  0% {
    stroke-dashoffset: 670.8262263933px;
    stroke-dasharray: 670.8262263933px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 670.8262263933px;
  }
}
@keyframes CH7_animate-svg-fill-52 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-52 {
  animation: CH7_animate-svg-stroke-52 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.025s both, CH7_animate-svg-fill-52 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.025s both;
}

@keyframes CH7_animate-svg-stroke-53 {
  0% {
    stroke-dashoffset: 240.8374633789px;
    stroke-dasharray: 240.8374633789px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 240.8374633789px;
  }
}
@keyframes CH7_animate-svg-fill-53 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-53 {
  animation: CH7_animate-svg-stroke-53 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.05s both, CH7_animate-svg-fill-53 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.05s both;
}

@keyframes CH7_animate-svg-stroke-54 {
  0% {
    stroke-dashoffset: 240.8372497559px;
    stroke-dasharray: 240.8372497559px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 240.8372497559px;
  }
}
@keyframes CH7_animate-svg-fill-54 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-54 {
  animation: CH7_animate-svg-stroke-54 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.075s both, CH7_animate-svg-fill-54 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.075s both;
}

@keyframes CH7_animate-svg-stroke-55 {
  0% {
    stroke-dashoffset: 345.8635559082px;
    stroke-dasharray: 345.8635559082px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 345.8635559082px;
  }
}
@keyframes CH7_animate-svg-fill-55 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-55 {
  animation: CH7_animate-svg-stroke-55 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both, CH7_animate-svg-fill-55 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
}

@keyframes CH7_animate-svg-stroke-56 {
  0% {
    stroke-dashoffset: 40.4148674011px;
    stroke-dasharray: 40.4148674011px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 40.4148674011px;
  }
}
@keyframes CH7_animate-svg-fill-56 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-56 {
  animation: CH7_animate-svg-stroke-56 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.125s both, CH7_animate-svg-fill-56 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.125s both;
}

@keyframes CH7_animate-svg-stroke-57 {
  0% {
    stroke-dashoffset: 81.3086013794px;
    stroke-dasharray: 81.3086013794px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 81.3086013794px;
  }
}
@keyframes CH7_animate-svg-fill-57 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-57 {
  animation: CH7_animate-svg-stroke-57 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.15s both, CH7_animate-svg-fill-57 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.15s both;
}

@keyframes CH7_animate-svg-stroke-58 {
  0% {
    stroke-dashoffset: 58.3619232178px;
    stroke-dasharray: 58.3619232178px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3619232178px;
  }
}
@keyframes CH7_animate-svg-fill-58 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-58 {
  animation: CH7_animate-svg-stroke-58 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.175s both, CH7_animate-svg-fill-58 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.175s both;
}

@keyframes CH7_animate-svg-stroke-59 {
  0% {
    stroke-dashoffset: 58.3558197021px;
    stroke-dasharray: 58.3558197021px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3558197021px;
  }
}
@keyframes CH7_animate-svg-fill-59 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-59 {
  animation: CH7_animate-svg-stroke-59 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both, CH7_animate-svg-fill-59 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
}

@keyframes CH7_animate-svg-stroke-60 {
  0% {
    stroke-dashoffset: 81.3084487915px;
    stroke-dasharray: 81.3084487915px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 81.3084487915px;
  }
}
@keyframes CH7_animate-svg-fill-60 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-60 {
  animation: CH7_animate-svg-stroke-60 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.225s both, CH7_animate-svg-fill-60 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.225s both;
}

@keyframes CH7_animate-svg-stroke-61 {
  0% {
    stroke-dashoffset: 58.3620834351px;
    stroke-dasharray: 58.3620834351px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3620834351px;
  }
}
@keyframes CH7_animate-svg-fill-61 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-61 {
  animation: CH7_animate-svg-stroke-61 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.25s both, CH7_animate-svg-fill-61 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.25s both;
}

@keyframes CH7_animate-svg-stroke-62 {
  0% {
    stroke-dashoffset: 58.3569259644px;
    stroke-dasharray: 58.3569259644px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 58.3569259644px;
  }
}
@keyframes CH7_animate-svg-fill-62 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-62 {
  animation: CH7_animate-svg-stroke-62 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.275s both, CH7_animate-svg-fill-62 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.275s both;
}

@keyframes CH7_animate-svg-stroke-63 {
  0% {
    stroke-dashoffset: 2669.0480957031px;
    stroke-dasharray: 2669.0480957031px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2669.0480957031px;
  }
}
@keyframes CH7_animate-svg-fill-63 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-63 {
  animation: CH7_animate-svg-stroke-63 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both, CH7_animate-svg-fill-63 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
}

@keyframes CH7_animate-svg-stroke-64 {
  0% {
    stroke-dashoffset: 1339.5141601563px;
    stroke-dasharray: 1339.5141601563px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1339.5141601563px;
  }
}
@keyframes CH7_animate-svg-fill-64 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-64 {
  animation: CH7_animate-svg-stroke-64 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.325s both, CH7_animate-svg-fill-64 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.325s both;
}

@keyframes CH7_animate-svg-stroke-65 {
  0% {
    stroke-dashoffset: 5.874402523px;
    stroke-dasharray: 5.874402523px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.874402523px;
  }
}
@keyframes CH7_animate-svg-fill-65 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-65 {
  animation: CH7_animate-svg-stroke-65 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.35s both, CH7_animate-svg-fill-65 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.35s both;
}

@keyframes CH7_animate-svg-stroke-66 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH7_animate-svg-fill-66 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-66 {
  animation: CH7_animate-svg-stroke-66 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.375s both, CH7_animate-svg-fill-66 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.375s both;
}

@keyframes CH7_animate-svg-stroke-67 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH7_animate-svg-fill-67 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-67 {
  animation: CH7_animate-svg-stroke-67 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both, CH7_animate-svg-fill-67 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
}

@keyframes CH7_animate-svg-stroke-68 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-68 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-68 {
  animation: CH7_animate-svg-stroke-68 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.425s both, CH7_animate-svg-fill-68 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.425s both;
}

@keyframes CH7_animate-svg-stroke-69 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH7_animate-svg-fill-69 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-69 {
  animation: CH7_animate-svg-stroke-69 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.45s both, CH7_animate-svg-fill-69 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.45s both;
}

@keyframes CH7_animate-svg-stroke-70 {
  0% {
    stroke-dashoffset: 4.2760000229px;
    stroke-dasharray: 4.2760000229px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2760000229px;
  }
}
@keyframes CH7_animate-svg-fill-70 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-70 {
  animation: CH7_animate-svg-stroke-70 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.475s both, CH7_animate-svg-fill-70 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.475s both;
}

@keyframes CH7_animate-svg-stroke-71 {
  0% {
    stroke-dashoffset: 4.3964703083px;
    stroke-dasharray: 4.3964703083px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.3964703083px;
  }
}
@keyframes CH7_animate-svg-fill-71 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-71 {
  animation: CH7_animate-svg-stroke-71 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both, CH7_animate-svg-fill-71 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
}

@keyframes CH7_animate-svg-stroke-72 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH7_animate-svg-fill-72 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-72 {
  animation: CH7_animate-svg-stroke-72 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.525s both, CH7_animate-svg-fill-72 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.525s both;
}

@keyframes CH7_animate-svg-stroke-73 {
  0% {
    stroke-dashoffset: 6.499625206px;
    stroke-dasharray: 6.499625206px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.499625206px;
  }
}
@keyframes CH7_animate-svg-fill-73 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-73 {
  animation: CH7_animate-svg-stroke-73 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.55s both, CH7_animate-svg-fill-73 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.55s both;
}

@keyframes CH7_animate-svg-stroke-74 {
  0% {
    stroke-dashoffset: 3.9227753878px;
    stroke-dasharray: 3.9227753878px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.9227753878px;
  }
}
@keyframes CH7_animate-svg-fill-74 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-74 {
  animation: CH7_animate-svg-stroke-74 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.575s both, CH7_animate-svg-fill-74 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.575s both;
}

@keyframes CH7_animate-svg-stroke-75 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH7_animate-svg-fill-75 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-75 {
  animation: CH7_animate-svg-stroke-75 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s both, CH7_animate-svg-fill-75 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s both;
}

@keyframes CH7_animate-svg-stroke-76 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH7_animate-svg-fill-76 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-76 {
  animation: CH7_animate-svg-stroke-76 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.625s both, CH7_animate-svg-fill-76 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.625s both;
}

@keyframes CH7_animate-svg-stroke-77 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH7_animate-svg-fill-77 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-77 {
  animation: CH7_animate-svg-stroke-77 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.65s both, CH7_animate-svg-fill-77 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.65s both;
}

@keyframes CH7_animate-svg-stroke-78 {
  0% {
    stroke-dashoffset: 4.1381387711px;
    stroke-dasharray: 4.1381387711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.1381387711px;
  }
}
@keyframes CH7_animate-svg-fill-78 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-78 {
  animation: CH7_animate-svg-stroke-78 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.675s both, CH7_animate-svg-fill-78 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.675s both;
}

@keyframes CH7_animate-svg-stroke-79 {
  0% {
    stroke-dashoffset: 4.3964703083px;
    stroke-dasharray: 4.3964703083px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.3964703083px;
  }
}
@keyframes CH7_animate-svg-fill-79 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-79 {
  animation: CH7_animate-svg-stroke-79 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s both, CH7_animate-svg-fill-79 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s both;
}

@keyframes CH7_animate-svg-stroke-80 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH7_animate-svg-fill-80 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-80 {
  animation: CH7_animate-svg-stroke-80 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.725s both, CH7_animate-svg-fill-80 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.725s both;
}

@keyframes CH7_animate-svg-stroke-81 {
  0% {
    stroke-dashoffset: 4.7520041466px;
    stroke-dasharray: 4.7520041466px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.7520041466px;
  }
}
@keyframes CH7_animate-svg-fill-81 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-81 {
  animation: CH7_animate-svg-stroke-81 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.75s both, CH7_animate-svg-fill-81 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.75s both;
}

@keyframes CH7_animate-svg-stroke-83 {
  0% {
    stroke-dashoffset: 907.9606323242px;
    stroke-dasharray: 907.9606323242px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 907.9606323242px;
  }
}
@keyframes CH7_animate-svg-fill-83 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L7_chart-83 {
  animation: CH7_animate-svg-stroke-83 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s both, CH7_animate-svg-fill-83 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s both;
}

@keyframes CH7_animate-svg-stroke-84 {
  0% {
    stroke-dashoffset: 646.2387695313px;
    stroke-dasharray: 646.2387695313px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 646.2387695313px;
  }
}
@keyframes CH7_animate-svg-fill-84 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-84 {
  animation: CH7_animate-svg-stroke-84 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.825s both, CH7_animate-svg-fill-84 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.825s both;
}

@keyframes CH7_animate-svg-stroke-85 {
  0% {
    stroke-dashoffset: 376.407989502px;
    stroke-dasharray: 376.407989502px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 376.407989502px;
  }
}
@keyframes CH7_animate-svg-fill-85 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-85 {
  animation: CH7_animate-svg-stroke-85 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.85s both, CH7_animate-svg-fill-85 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.85s both;
}

@keyframes CH7_animate-svg-stroke-86 {
  0% {
    stroke-dashoffset: 260.9696350098px;
    stroke-dasharray: 260.9696350098px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 260.9696350098px;
  }
}
@keyframes CH7_animate-svg-fill-86 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-86 {
  animation: CH7_animate-svg-stroke-86 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.875s both, CH7_animate-svg-fill-86 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.875s both;
}

@keyframes CH7_animate-svg-stroke-87 {
  0% {
    stroke-dashoffset: 383.0101318359px;
    stroke-dasharray: 383.0101318359px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 383.0101318359px;
  }
}
@keyframes CH7_animate-svg-fill-87 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-87 {
  animation: CH7_animate-svg-stroke-87 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s both, CH7_animate-svg-fill-87 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s both;
}

@keyframes CH7_animate-svg-stroke-88 {
  0% {
    stroke-dashoffset: 260.9698181152px;
    stroke-dasharray: 260.9698181152px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 260.9698181152px;
  }
}
@keyframes CH7_animate-svg-fill-88 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-88 {
  animation: CH7_animate-svg-stroke-88 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.925s both, CH7_animate-svg-fill-88 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.925s both;
}

@keyframes CH7_animate-svg-stroke-89 {
  0% {
    stroke-dashoffset: 383.0104370117px;
    stroke-dasharray: 383.0104370117px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 383.0104370117px;
  }
}
@keyframes CH7_animate-svg-fill-89 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-89 {
  animation: CH7_animate-svg-stroke-89 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.95s both, CH7_animate-svg-fill-89 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.95s both;
}

@keyframes CH7_animate-svg-stroke-90 {
  0% {
    stroke-dashoffset: 260.9698181152px;
    stroke-dasharray: 260.9698181152px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 260.9698181152px;
  }
}
@keyframes CH7_animate-svg-fill-90 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-90 {
  animation: CH7_animate-svg-stroke-90 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.975s both, CH7_animate-svg-fill-90 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 2.975s both;
}

@keyframes CH7_animate-svg-stroke-91 {
  0% {
    stroke-dashoffset: 383.0105285645px;
    stroke-dasharray: 383.0105285645px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 383.0105285645px;
  }
}
@keyframes CH7_animate-svg-fill-91 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-91 {
  animation: CH7_animate-svg-stroke-91 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both, CH7_animate-svg-fill-91 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;
}

@keyframes CH7_animate-svg-stroke-92 {
  0% {
    stroke-dashoffset: 166.0991821289px;
    stroke-dasharray: 166.0991821289px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 166.0991821289px;
  }
}
@keyframes CH7_animate-svg-fill-92 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-92 {
  animation: CH7_animate-svg-stroke-92 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.025s both, CH7_animate-svg-fill-92 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.025s both;
}

@keyframes CH7_animate-svg-stroke-93 {
  0% {
    stroke-dashoffset: 220.2425231934px;
    stroke-dasharray: 220.2425231934px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 220.2425231934px;
  }
}
@keyframes CH7_animate-svg-fill-93 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-93 {
  animation: CH7_animate-svg-stroke-93 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.05s both, CH7_animate-svg-fill-93 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.05s both;
}

@keyframes CH7_animate-svg-stroke-94 {
  0% {
    stroke-dashoffset: 221.4580383301px;
    stroke-dasharray: 221.4580383301px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 221.4580383301px;
  }
}
@keyframes CH7_animate-svg-fill-94 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-94 {
  animation: CH7_animate-svg-stroke-94 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.075s both, CH7_animate-svg-fill-94 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.075s both;
}

@keyframes CH7_animate-svg-stroke-95 {
  0% {
    stroke-dashoffset: 1814.1239013672px;
    stroke-dasharray: 1814.1239013672px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1814.1239013672px;
  }
}
@keyframes CH7_animate-svg-fill-95 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-95 {
  animation: CH7_animate-svg-stroke-95 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s both, CH7_animate-svg-fill-95 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s both;
}

@keyframes CH7_animate-svg-stroke-96 {
  0% {
    stroke-dashoffset: 1290.4592285156px;
    stroke-dasharray: 1290.4592285156px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1290.4592285156px;
  }
}
@keyframes CH7_animate-svg-fill-96 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-96 {
  animation: CH7_animate-svg-stroke-96 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.125s both, CH7_animate-svg-fill-96 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.125s both;
}

@keyframes CH7_animate-svg-stroke-97 {
  0% {
    stroke-dashoffset: 764.0560302734px;
    stroke-dasharray: 764.0560302734px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 764.0560302734px;
  }
}
@keyframes CH7_animate-svg-fill-97 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-97 {
  animation: CH7_animate-svg-stroke-97 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.15s both, CH7_animate-svg-fill-97 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.15s both;
}

@keyframes CH7_animate-svg-stroke-98 {
  0% {
    stroke-dashoffset: 764.0404052734px;
    stroke-dasharray: 764.0404052734px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 764.0404052734px;
  }
}
@keyframes CH7_animate-svg-fill-98 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-98 {
  animation: CH7_animate-svg-stroke-98 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.175s both, CH7_animate-svg-fill-98 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.175s both;
}

@keyframes CH7_animate-svg-stroke-99 {
  0% {
    stroke-dashoffset: 750.6166381836px;
    stroke-dasharray: 750.6166381836px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 750.6166381836px;
  }
}
@keyframes CH7_animate-svg-fill-99 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-99 {
  animation: CH7_animate-svg-stroke-99 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s both, CH7_animate-svg-fill-99 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s both;
}

@keyframes CH7_animate-svg-stroke-100 {
  0% {
    stroke-dashoffset: 764.0567016602px;
    stroke-dasharray: 764.0567016602px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 764.0567016602px;
  }
}
@keyframes CH7_animate-svg-fill-100 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-100 {
  animation: CH7_animate-svg-stroke-100 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.225s both, CH7_animate-svg-fill-100 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.225s both;
}

@keyframes CH7_animate-svg-stroke-101 {
  0% {
    stroke-dashoffset: 519.8569335938px;
    stroke-dasharray: 519.8569335938px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 519.8569335938px;
  }
}
@keyframes CH7_animate-svg-fill-101 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-101 {
  animation: CH7_animate-svg-stroke-101 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.25s both, CH7_animate-svg-fill-101 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.25s both;
}

@keyframes CH7_animate-svg-stroke-102 {
  0% {
    stroke-dashoffset: 519.8397827148px;
    stroke-dasharray: 519.8397827148px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 519.8397827148px;
  }
}
@keyframes CH7_animate-svg-fill-102 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-102 {
  animation: CH7_animate-svg-stroke-102 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.275s both, CH7_animate-svg-fill-102 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.275s both;
}

@keyframes CH7_animate-svg-stroke-103 {
  0% {
    stroke-dashoffset: 519.8549194336px;
    stroke-dasharray: 519.8549194336px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 519.8549194336px;
  }
}
@keyframes CH7_animate-svg-fill-103 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-103 {
  animation: CH7_animate-svg-stroke-103 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s both, CH7_animate-svg-fill-103 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s both;
}

@keyframes CH7_animate-svg-stroke-104 {
  0% {
    stroke-dashoffset: 5.9821596146px;
    stroke-dasharray: 5.9821596146px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.9821596146px;
  }
}
@keyframes CH7_animate-svg-fill-104 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-104 {
  animation: CH7_animate-svg-stroke-104 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.325s both, CH7_animate-svg-fill-104 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.325s both;
}

@keyframes CH7_animate-svg-stroke-105 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH7_animate-svg-fill-105 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-105 {
  animation: CH7_animate-svg-stroke-105 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.35s both, CH7_animate-svg-fill-105 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.35s both;
}

@keyframes CH7_animate-svg-stroke-106 {
  0% {
    stroke-dashoffset: 4.2858533859px;
    stroke-dasharray: 4.2858533859px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2858533859px;
  }
}
@keyframes CH7_animate-svg-fill-106 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-106 {
  animation: CH7_animate-svg-stroke-106 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.375s both, CH7_animate-svg-fill-106 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.375s both;
}

@keyframes CH7_animate-svg-stroke-107 {
  0% {
    stroke-dashoffset: 6.0565705299px;
    stroke-dasharray: 6.0565705299px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.0565705299px;
  }
}
@keyframes CH7_animate-svg-fill-107 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-107 {
  animation: CH7_animate-svg-stroke-107 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s both, CH7_animate-svg-fill-107 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s both;
}

@keyframes CH7_animate-svg-stroke-108 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH7_animate-svg-fill-108 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-108 {
  animation: CH7_animate-svg-stroke-108 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.425s both, CH7_animate-svg-fill-108 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.425s both;
}

@keyframes CH7_animate-svg-stroke-109 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH7_animate-svg-fill-109 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-109 {
  animation: CH7_animate-svg-stroke-109 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.45s both, CH7_animate-svg-fill-109 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.45s both;
}

@keyframes CH7_animate-svg-stroke-110 {
  0% {
    stroke-dashoffset: 4.8722293377px;
    stroke-dasharray: 4.8722293377px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.8722293377px;
  }
}
@keyframes CH7_animate-svg-fill-110 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-110 {
  animation: CH7_animate-svg-stroke-110 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.475s both, CH7_animate-svg-fill-110 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.475s both;
}

@keyframes CH7_animate-svg-stroke-111 {
  0% {
    stroke-dashoffset: 4.2831850052px;
    stroke-dasharray: 4.2831850052px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2831850052px;
  }
}
@keyframes CH7_animate-svg-fill-111 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-111 {
  animation: CH7_animate-svg-stroke-111 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s both, CH7_animate-svg-fill-111 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s both;
}

@keyframes CH7_animate-svg-stroke-112 {
  0% {
    stroke-dashoffset: 4.3964703083px;
    stroke-dasharray: 4.3964703083px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.3964703083px;
  }
}
@keyframes CH7_animate-svg-fill-112 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-112 {
  animation: CH7_animate-svg-stroke-112 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.525s both, CH7_animate-svg-fill-112 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.525s both;
}

@keyframes CH7_animate-svg-stroke-113 {
  0% {
    stroke-dashoffset: 4.7520041466px;
    stroke-dasharray: 4.7520041466px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.7520041466px;
  }
}
@keyframes CH7_animate-svg-fill-113 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-113 {
  animation: CH7_animate-svg-stroke-113 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.55s both, CH7_animate-svg-fill-113 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.55s both;
}

@keyframes CH7_animate-svg-stroke-114 {
  0% {
    stroke-dashoffset: 5.6265974045px;
    stroke-dasharray: 5.6265974045px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.6265974045px;
  }
}
@keyframes CH7_animate-svg-fill-114 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-114 {
  animation: CH7_animate-svg-stroke-114 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.575s both, CH7_animate-svg-fill-114 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.575s both;
}

@keyframes CH7_animate-svg-stroke-115 {
  0% {
    stroke-dashoffset: 5.7592151165px;
    stroke-dasharray: 5.7592151165px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.7592151165px;
  }
}
@keyframes CH7_animate-svg-fill-115 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-115 {
  animation: CH7_animate-svg-stroke-115 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s both, CH7_animate-svg-fill-115 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s both;
}

@keyframes CH7_animate-svg-stroke-116 {
  0% {
    stroke-dashoffset: 5.6265974045px;
    stroke-dasharray: 5.6265974045px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.6265974045px;
  }
}
@keyframes CH7_animate-svg-fill-116 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-116 {
  animation: CH7_animate-svg-stroke-116 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.625s both, CH7_animate-svg-fill-116 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.625s both;
}

@keyframes CH7_animate-svg-stroke-120 {
  0% {
    stroke-dashoffset: 490.764831543px;
    stroke-dasharray: 490.764831543px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 490.764831543px;
  }
}
.L7_chart-120 {
  animation: CH7_animate-svg-stroke-120 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.725s both, CH7_animate-svg-fill-120 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.725s both;
}

@keyframes CH7_animate-svg-stroke-121 {
  0% {
    stroke-dashoffset: 286.2255249023px;
    stroke-dasharray: 286.2255249023px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 286.2255249023px;
  }
}
.L7_chart-121 {
  animation: CH7_animate-svg-stroke-121 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.75s both, CH7_animate-svg-fill-121 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.75s both;
}

@keyframes CH7_animate-svg-stroke-122 {
  0% {
    stroke-dashoffset: 621.4570922852px;
    stroke-dasharray: 621.4570922852px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 621.4570922852px;
  }
}
.L7_chart-122 {
  animation: CH7_animate-svg-stroke-122 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.775s both, CH7_animate-svg-fill-122 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.775s both;
}

@keyframes CH7_animate-svg-stroke-123 {
  0% {
    stroke-dashoffset: 284.1627197266px;
    stroke-dasharray: 284.1627197266px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 284.1627197266px;
  }
}
.L7_chart-123 {
  animation: CH7_animate-svg-stroke-123 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s both, CH7_animate-svg-fill-123 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s both;
}

@keyframes CH7_animate-svg-stroke-124 {
  0% {
    stroke-dashoffset: 87.3432617188px;
    stroke-dasharray: 87.3432617188px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 87.3432617188px;
  }
}
.L7_chart-124 {
  animation: CH7_animate-svg-stroke-124 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.825s both, CH7_animate-svg-fill-124 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.825s both;
}

@keyframes CH7_animate-svg-stroke-125 {
  0% {
    stroke-dashoffset: 284.6095581055px;
    stroke-dasharray: 284.6095581055px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 284.6095581055px;
  }
}
.L7_chart-125 {
  animation: CH7_animate-svg-stroke-125 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.85s both, CH7_animate-svg-fill-125 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.85s both;
}

@keyframes CH7_animate-svg-stroke-126 {
  0% {
    stroke-dashoffset: 371.2759399414px;
    stroke-dasharray: 371.2759399414px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 371.2759399414px;
  }
}
.L7_chart-126 {
  animation: CH7_animate-svg-stroke-126 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.875s both, CH7_animate-svg-fill-126 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.875s both;
}

@keyframes CH7_animate-svg-stroke-127 {
  0% {
    stroke-dashoffset: 240.1725921631px;
    stroke-dasharray: 240.1725921631px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 240.1725921631px;
  }
}
.L7_chart-127 {
  animation: CH7_animate-svg-stroke-127 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9s both, CH7_animate-svg-fill-127 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9s both;
}

@keyframes CH7_animate-svg-stroke-128 {
  0% {
    stroke-dashoffset: 235.6546020508px;
    stroke-dasharray: 235.6546020508px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 235.6546020508px;
  }
}
.L7_chart-128 {
  animation: CH7_animate-svg-stroke-128 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.925s both, CH7_animate-svg-fill-128 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.925s both;
}

@keyframes CH7_animate-svg-stroke-129 {
  0% {
    stroke-dashoffset: 106.8436737061px;
    stroke-dasharray: 106.8436737061px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 106.8436737061px;
  }
}
.L7_chart-129 {
  animation: CH7_animate-svg-stroke-129 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.95s both, CH7_animate-svg-fill-129 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.95s both;
}

@keyframes CH7_animate-svg-stroke-130 {
  0% {
    stroke-dashoffset: 415.4557800293px;
    stroke-dasharray: 415.4557800293px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 415.4557800293px;
  }
}
.L7_chart-130 {
  animation: CH7_animate-svg-stroke-130 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.975s both, CH7_animate-svg-fill-130 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 3.975s both;
}

@keyframes CH7_animate-svg-stroke-131 {
  0% {
    stroke-dashoffset: 299.6350708008px;
    stroke-dasharray: 299.6350708008px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 299.6350708008px;
  }
}
.L7_chart-131 {
  animation: CH7_animate-svg-stroke-131 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4s both, CH7_animate-svg-fill-131 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4s both;
}

@keyframes CH7_animate-svg-stroke-132 {
  0% {
    stroke-dashoffset: 116.6752319336px;
    stroke-dasharray: 116.6752319336px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 116.6752319336px;
  }
}
.L7_chart-132 {
  animation: CH7_animate-svg-stroke-132 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.025s both, CH7_animate-svg-fill-132 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.025s both;
}

@keyframes CH7_animate-svg-stroke-133 {
  0% {
    stroke-dashoffset: 243.982421875px;
    stroke-dasharray: 243.982421875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 243.982421875px;
  }
}
.L7_chart-133 {
  animation: CH7_animate-svg-stroke-133 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.05s both, CH7_animate-svg-fill-133 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.05s both;
}

@keyframes CH7_animate-svg-stroke-134 {
  0% {
    stroke-dashoffset: 342.6938476563px;
    stroke-dasharray: 342.6938476563px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 342.6938476563px;
  }
}
.L7_chart-134 {
  animation: CH7_animate-svg-stroke-134 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.075s both, CH7_animate-svg-fill-134 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.075s both;
}

@keyframes CH7_animate-svg-stroke-135 {
  0% {
    stroke-dashoffset: 180.1971435547px;
    stroke-dasharray: 180.1971435547px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 180.1971435547px;
  }
}
.L7_chart-135 {
  animation: CH7_animate-svg-stroke-135 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1s both, CH7_animate-svg-fill-135 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1s both;
}

@keyframes CH7_animate-svg-stroke-136 {
  0% {
    stroke-dashoffset: 286.8273010254px;
    stroke-dasharray: 286.8273010254px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 286.8273010254px;
  }
}
.L7_chart-136 {
  animation: CH7_animate-svg-stroke-136 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.125s both, CH7_animate-svg-fill-136 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.125s both;
}

@keyframes CH7_animate-svg-stroke-138 {
  0% {
    stroke-dashoffset: 1484.6196289063px;
    stroke-dasharray: 1484.6196289063px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1484.6196289063px;
  }
}
@keyframes CH7_animate-svg-fill-138 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L7_chart-138 {
  animation: CH7_animate-svg-stroke-138 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.175s both, CH7_animate-svg-fill-138 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.175s both;
}

@keyframes CH7_animate-svg-stroke-139 {
  0% {
    stroke-dashoffset: 1434.8823242188px;
    stroke-dasharray: 1434.8823242188px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1434.8823242188px;
  }
}
@keyframes CH7_animate-svg-fill-139 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-139 {
  animation: CH7_animate-svg-stroke-139 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s both, CH7_animate-svg-fill-139 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s both;
}

@keyframes CH7_animate-svg-stroke-140 {
  0% {
    stroke-dashoffset: 348.0647888184px;
    stroke-dasharray: 348.0647888184px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 348.0647888184px;
  }
}
@keyframes CH7_animate-svg-fill-140 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-140 {
  animation: CH7_animate-svg-stroke-140 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.225s both, CH7_animate-svg-fill-140 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.225s both;
}

@keyframes CH7_animate-svg-stroke-141 {
  0% {
    stroke-dashoffset: 814.9502563477px;
    stroke-dasharray: 814.9502563477px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 814.9502563477px;
  }
}
@keyframes CH7_animate-svg-fill-141 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-141 {
  animation: CH7_animate-svg-stroke-141 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.25s both, CH7_animate-svg-fill-141 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.25s both;
}

@keyframes CH7_animate-svg-stroke-142 {
  0% {
    stroke-dashoffset: 563.9858398438px;
    stroke-dasharray: 563.9858398438px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 563.9858398438px;
  }
}
@keyframes CH7_animate-svg-fill-142 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-142 {
  animation: CH7_animate-svg-stroke-142 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.275s both, CH7_animate-svg-fill-142 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.275s both;
}

@keyframes CH7_animate-svg-stroke-143 {
  0% {
    stroke-dashoffset: 133.869934082px;
    stroke-dasharray: 133.869934082px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 133.869934082px;
  }
}
@keyframes CH7_animate-svg-fill-143 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L7_chart-143 {
  animation: CH7_animate-svg-stroke-143 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s both, CH7_animate-svg-fill-143 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s both;
}

@keyframes CH7_animate-svg-stroke-144 {
  0% {
    stroke-dashoffset: 693.9744873047px;
    stroke-dasharray: 693.9744873047px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 693.9744873047px;
  }
}
@keyframes CH7_animate-svg-fill-144 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-144 {
  animation: CH7_animate-svg-stroke-144 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.325s both, CH7_animate-svg-fill-144 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.325s both;
}

@keyframes CH7_animate-svg-stroke-145 {
  0% {
    stroke-dashoffset: 4763.1196289063px;
    stroke-dasharray: 4763.1196289063px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4763.1196289063px;
  }
}
@keyframes CH7_animate-svg-fill-145 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-145 {
  animation: CH7_animate-svg-stroke-145 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.35s both, CH7_animate-svg-fill-145 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.35s both;
}

@keyframes CH7_animate-svg-stroke-146 {
  0% {
    stroke-dashoffset: 1120.5178222656px;
    stroke-dasharray: 1120.5178222656px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1120.5178222656px;
  }
}
@keyframes CH7_animate-svg-fill-146 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-146 {
  animation: CH7_animate-svg-stroke-146 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.375s both, CH7_animate-svg-fill-146 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.375s both;
}

@keyframes CH7_animate-svg-stroke-147 {
  0% {
    stroke-dashoffset: 298.8354187012px;
    stroke-dasharray: 298.8354187012px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 298.8354187012px;
  }
}
@keyframes CH7_animate-svg-fill-147 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-147 {
  animation: CH7_animate-svg-stroke-147 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s both, CH7_animate-svg-fill-147 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s both;
}

@keyframes CH7_animate-svg-stroke-148 {
  0% {
    stroke-dashoffset: 5.1649143696px;
    stroke-dasharray: 5.1649143696px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.1649143696px;
  }
}
@keyframes CH7_animate-svg-fill-148 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-148 {
  animation: CH7_animate-svg-stroke-148 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.425s both, CH7_animate-svg-fill-148 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.425s both;
}

@keyframes CH7_animate-svg-stroke-149 {
  0% {
    stroke-dashoffset: 6.3847746849px;
    stroke-dasharray: 6.3847746849px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.3847746849px;
  }
}
@keyframes CH7_animate-svg-fill-149 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-149 {
  animation: CH7_animate-svg-stroke-149 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.45s both, CH7_animate-svg-fill-149 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.45s both;
}

@keyframes CH7_animate-svg-stroke-150 {
  0% {
    stroke-dashoffset: 5.9821596146px;
    stroke-dasharray: 5.9821596146px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.9821596146px;
  }
}
@keyframes CH7_animate-svg-fill-150 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-150 {
  animation: CH7_animate-svg-stroke-150 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.475s both, CH7_animate-svg-fill-150 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.475s both;
}

@keyframes CH7_animate-svg-stroke-151 {
  0% {
    stroke-dashoffset: 4.2649669647px;
    stroke-dasharray: 4.2649669647px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2649669647px;
  }
}
@keyframes CH7_animate-svg-fill-151 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-151 {
  animation: CH7_animate-svg-stroke-151 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s both, CH7_animate-svg-fill-151 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s both;
}

@keyframes CH7_animate-svg-stroke-152 {
  0% {
    stroke-dashoffset: 5.1649143696px;
    stroke-dasharray: 5.1649143696px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.1649143696px;
  }
}
@keyframes CH7_animate-svg-fill-152 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-152 {
  animation: CH7_animate-svg-stroke-152 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.525s both, CH7_animate-svg-fill-152 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.525s both;
}

@keyframes CH7_animate-svg-stroke-153 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH7_animate-svg-fill-153 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-153 {
  animation: CH7_animate-svg-stroke-153 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.55s both, CH7_animate-svg-fill-153 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.55s both;
}

@keyframes CH7_animate-svg-stroke-154 {
  0% {
    stroke-dashoffset: 4.1381387711px;
    stroke-dasharray: 4.1381387711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.1381387711px;
  }
}
@keyframes CH7_animate-svg-fill-154 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-154 {
  animation: CH7_animate-svg-stroke-154 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.575s both, CH7_animate-svg-fill-154 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.575s both;
}

@keyframes CH7_animate-svg-stroke-155 {
  0% {
    stroke-dashoffset: 5.4016542435px;
    stroke-dasharray: 5.4016542435px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.4016542435px;
  }
}
@keyframes CH7_animate-svg-fill-155 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-155 {
  animation: CH7_animate-svg-stroke-155 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s both, CH7_animate-svg-fill-155 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s both;
}

@keyframes CH7_animate-svg-stroke-156 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-156 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-156 {
  animation: CH7_animate-svg-stroke-156 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.625s both, CH7_animate-svg-fill-156 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.625s both;
}

@keyframes CH7_animate-svg-stroke-157 {
  0% {
    stroke-dashoffset: 4.265837431px;
    stroke-dasharray: 4.265837431px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.265837431px;
  }
}
@keyframes CH7_animate-svg-fill-157 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-157 {
  animation: CH7_animate-svg-stroke-157 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.65s both, CH7_animate-svg-fill-157 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.65s both;
}

@keyframes CH7_animate-svg-stroke-159 {
  0% {
    stroke-dashoffset: 1575.1325683594px;
    stroke-dasharray: 1575.1325683594px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1575.1325683594px;
  }
}
@keyframes CH7_animate-svg-fill-159 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-159 {
  animation: CH7_animate-svg-stroke-159 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.7s both, CH7_animate-svg-fill-159 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.7s both;
}

@keyframes CH7_animate-svg-stroke-160 {
  0% {
    stroke-dashoffset: 327.6021118164px;
    stroke-dasharray: 327.6021118164px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 327.6021118164px;
  }
}
@keyframes CH7_animate-svg-fill-160 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L7_chart-160 {
  animation: CH7_animate-svg-stroke-160 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.725s both, CH7_animate-svg-fill-160 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.725s both;
}

@keyframes CH7_animate-svg-stroke-161 {
  0% {
    stroke-dashoffset: 790.8579711914px;
    stroke-dasharray: 790.8579711914px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 790.8579711914px;
  }
}
@keyframes CH7_animate-svg-fill-161 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L7_chart-161 {
  animation: CH7_animate-svg-stroke-161 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.75s both, CH7_animate-svg-fill-161 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.75s both;
}

@keyframes CH7_animate-svg-stroke-162 {
  0% {
    stroke-dashoffset: 546.0590209961px;
    stroke-dasharray: 546.0590209961px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 546.0590209961px;
  }
}
@keyframes CH7_animate-svg-fill-162 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-162 {
  animation: CH7_animate-svg-stroke-162 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.775s both, CH7_animate-svg-fill-162 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.775s both;
}

@keyframes CH7_animate-svg-stroke-163 {
  0% {
    stroke-dashoffset: 121.4977264404px;
    stroke-dasharray: 121.4977264404px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 121.4977264404px;
  }
}
@keyframes CH7_animate-svg-fill-163 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-163 {
  animation: CH7_animate-svg-stroke-163 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s both, CH7_animate-svg-fill-163 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s both;
}

@keyframes CH7_animate-svg-stroke-164 {
  0% {
    stroke-dashoffset: 158.8105163574px;
    stroke-dasharray: 158.8105163574px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 158.8105163574px;
  }
}
@keyframes CH7_animate-svg-fill-164 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-164 {
  animation: CH7_animate-svg-stroke-164 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.825s both, CH7_animate-svg-fill-164 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.825s both;
}

@keyframes CH7_animate-svg-stroke-165 {
  0% {
    stroke-dashoffset: 123.5719985962px;
    stroke-dasharray: 123.5719985962px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.5719985962px;
  }
}
@keyframes CH7_animate-svg-fill-165 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-165 {
  animation: CH7_animate-svg-stroke-165 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.85s both, CH7_animate-svg-fill-165 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.85s both;
}

@keyframes CH7_animate-svg-stroke-166 {
  0% {
    stroke-dashoffset: 155.0942840576px;
    stroke-dasharray: 155.0942840576px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 155.0942840576px;
  }
}
@keyframes CH7_animate-svg-fill-166 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-166 {
  animation: CH7_animate-svg-stroke-166 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.875s both, CH7_animate-svg-fill-166 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.875s both;
}

@keyframes CH7_animate-svg-stroke-167 {
  0% {
    stroke-dashoffset: 54.9704780579px;
    stroke-dasharray: 54.9704780579px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.9704780579px;
  }
}
@keyframes CH7_animate-svg-fill-167 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-167 {
  animation: CH7_animate-svg-stroke-167 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.9s both, CH7_animate-svg-fill-167 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.9s both;
}

@keyframes CH7_animate-svg-stroke-168 {
  0% {
    stroke-dashoffset: 158.80027771px;
    stroke-dasharray: 158.80027771px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 158.80027771px;
  }
}
@keyframes CH7_animate-svg-fill-168 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-168 {
  animation: CH7_animate-svg-stroke-168 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.925s both, CH7_animate-svg-fill-168 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.925s both;
}

@keyframes CH7_animate-svg-stroke-169 {
  0% {
    stroke-dashoffset: 123.5722427368px;
    stroke-dasharray: 123.5722427368px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.5722427368px;
  }
}
@keyframes CH7_animate-svg-fill-169 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-169 {
  animation: CH7_animate-svg-stroke-169 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.95s both, CH7_animate-svg-fill-169 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.95s both;
}

@keyframes CH7_animate-svg-stroke-170 {
  0% {
    stroke-dashoffset: 155.0940856934px;
    stroke-dasharray: 155.0940856934px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 155.0940856934px;
  }
}
@keyframes CH7_animate-svg-fill-170 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-170 {
  animation: CH7_animate-svg-stroke-170 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.975s both, CH7_animate-svg-fill-170 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 4.975s both;
}

@keyframes CH7_animate-svg-stroke-171 {
  0% {
    stroke-dashoffset: 54.9702758789px;
    stroke-dasharray: 54.9702758789px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.9702758789px;
  }
}
@keyframes CH7_animate-svg-fill-171 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-171 {
  animation: CH7_animate-svg-stroke-171 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5s both, CH7_animate-svg-fill-171 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5s both;
}

@keyframes CH7_animate-svg-stroke-172 {
  0% {
    stroke-dashoffset: 123.5720214844px;
    stroke-dasharray: 123.5720214844px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.5720214844px;
  }
}
@keyframes CH7_animate-svg-fill-172 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-172 {
  animation: CH7_animate-svg-stroke-172 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.025s both, CH7_animate-svg-fill-172 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.025s both;
}

@keyframes CH7_animate-svg-stroke-173 {
  0% {
    stroke-dashoffset: 155.0942382813px;
    stroke-dasharray: 155.0942382813px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 155.0942382813px;
  }
}
@keyframes CH7_animate-svg-fill-173 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-173 {
  animation: CH7_animate-svg-stroke-173 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.05s both, CH7_animate-svg-fill-173 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.05s both;
}

@keyframes CH7_animate-svg-stroke-174 {
  0% {
    stroke-dashoffset: 54.9702911377px;
    stroke-dasharray: 54.9702911377px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.9702911377px;
  }
}
@keyframes CH7_animate-svg-fill-174 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-174 {
  animation: CH7_animate-svg-stroke-174 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.075s both, CH7_animate-svg-fill-174 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.075s both;
}

@keyframes CH7_animate-svg-stroke-175 {
  0% {
    stroke-dashoffset: 158.8002929688px;
    stroke-dasharray: 158.8002929688px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 158.8002929688px;
  }
}
@keyframes CH7_animate-svg-fill-175 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-175 {
  animation: CH7_animate-svg-stroke-175 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.1s both, CH7_animate-svg-fill-175 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.1s both;
}

@keyframes CH7_animate-svg-stroke-176 {
  0% {
    stroke-dashoffset: 123.572265625px;
    stroke-dasharray: 123.572265625px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.572265625px;
  }
}
@keyframes CH7_animate-svg-fill-176 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-176 {
  animation: CH7_animate-svg-stroke-176 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.125s both, CH7_animate-svg-fill-176 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.125s both;
}

@keyframes CH7_animate-svg-stroke-177 {
  0% {
    stroke-dashoffset: 205.1524658203px;
    stroke-dasharray: 205.1524658203px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 205.1524658203px;
  }
}
@keyframes CH7_animate-svg-fill-177 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-177 {
  animation: CH7_animate-svg-stroke-177 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.15s both, CH7_animate-svg-fill-177 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.15s both;
}

@keyframes CH7_animate-svg-stroke-178 {
  0% {
    stroke-dashoffset: 54.9702606201px;
    stroke-dasharray: 54.9702606201px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.9702606201px;
  }
}
@keyframes CH7_animate-svg-fill-178 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-178 {
  animation: CH7_animate-svg-stroke-178 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.175s both, CH7_animate-svg-fill-178 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.175s both;
}

@keyframes CH7_animate-svg-stroke-179 {
  0% {
    stroke-dashoffset: 158.8002929688px;
    stroke-dasharray: 158.8002929688px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 158.8002929688px;
  }
}
@keyframes CH7_animate-svg-fill-179 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-179 {
  animation: CH7_animate-svg-stroke-179 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s both, CH7_animate-svg-fill-179 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s both;
}

@keyframes CH7_animate-svg-stroke-180 {
  0% {
    stroke-dashoffset: 123.572265625px;
    stroke-dasharray: 123.572265625px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.572265625px;
  }
}
@keyframes CH7_animate-svg-fill-180 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-180 {
  animation: CH7_animate-svg-stroke-180 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.225s both, CH7_animate-svg-fill-180 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.225s both;
}

@keyframes CH7_animate-svg-stroke-181 {
  0% {
    stroke-dashoffset: 123.5720291138px;
    stroke-dasharray: 123.5720291138px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 123.5720291138px;
  }
}
@keyframes CH7_animate-svg-fill-181 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-181 {
  animation: CH7_animate-svg-stroke-181 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.25s both, CH7_animate-svg-fill-181 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.25s both;
}

@keyframes CH7_animate-svg-stroke-182 {
  0% {
    stroke-dashoffset: 155.094039917px;
    stroke-dasharray: 155.094039917px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 155.094039917px;
  }
}
@keyframes CH7_animate-svg-fill-182 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-182 {
  animation: CH7_animate-svg-stroke-182 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.275s both, CH7_animate-svg-fill-182 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.275s both;
}

@keyframes CH7_animate-svg-stroke-183 {
  0% {
    stroke-dashoffset: 54.9699249268px;
    stroke-dasharray: 54.9699249268px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.9699249268px;
  }
}
@keyframes CH7_animate-svg-fill-183 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-183 {
  animation: CH7_animate-svg-stroke-183 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.3s both, CH7_animate-svg-fill-183 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.3s both;
}

@keyframes CH7_animate-svg-stroke-184 {
  0% {
    stroke-dashoffset: 1090.0028076172px;
    stroke-dasharray: 1090.0028076172px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1090.0028076172px;
  }
}
@keyframes CH7_animate-svg-fill-184 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-184 {
  animation: CH7_animate-svg-stroke-184 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.325s both, CH7_animate-svg-fill-184 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.325s both;
}

@keyframes CH7_animate-svg-stroke-185 {
  0% {
    stroke-dashoffset: 4423.6513671875px;
    stroke-dasharray: 4423.6513671875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4423.6513671875px;
  }
}
@keyframes CH7_animate-svg-fill-185 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-185 {
  animation: CH7_animate-svg-stroke-185 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.35s both, CH7_animate-svg-fill-185 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.35s both;
}

@keyframes CH7_animate-svg-stroke-186 {
  0% {
    stroke-dashoffset: 270.7440185547px;
    stroke-dasharray: 270.7440185547px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 270.7440185547px;
  }
}
@keyframes CH7_animate-svg-fill-186 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-186 {
  animation: CH7_animate-svg-stroke-186 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.375s both, CH7_animate-svg-fill-186 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.375s both;
}

@keyframes CH7_animate-svg-stroke-187 {
  0% {
    stroke-dashoffset: 6.74264431px;
    stroke-dasharray: 6.74264431px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.74264431px;
  }
}
@keyframes CH7_animate-svg-fill-187 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-187 {
  animation: CH7_animate-svg-stroke-187 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.4s both, CH7_animate-svg-fill-187 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.4s both;
}

@keyframes CH7_animate-svg-stroke-188 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-188 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-188 {
  animation: CH7_animate-svg-stroke-188 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.425s both, CH7_animate-svg-fill-188 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.425s both;
}

@keyframes CH7_animate-svg-stroke-189 {
  0% {
    stroke-dashoffset: 6.499625206px;
    stroke-dasharray: 6.499625206px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.499625206px;
  }
}
@keyframes CH7_animate-svg-fill-189 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-189 {
  animation: CH7_animate-svg-stroke-189 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.45s both, CH7_animate-svg-fill-189 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.45s both;
}

@keyframes CH7_animate-svg-stroke-190 {
  0% {
    stroke-dashoffset: 4.5053758621px;
    stroke-dasharray: 4.5053758621px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5053758621px;
  }
}
@keyframes CH7_animate-svg-fill-190 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-190 {
  animation: CH7_animate-svg-stroke-190 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.475s both, CH7_animate-svg-fill-190 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.475s both;
}

@keyframes CH7_animate-svg-stroke-191 {
  0% {
    stroke-dashoffset: 4.6973972321px;
    stroke-dasharray: 4.6973972321px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.6973972321px;
  }
}
@keyframes CH7_animate-svg-fill-191 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-191 {
  animation: CH7_animate-svg-stroke-191 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.5s both, CH7_animate-svg-fill-191 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.5s both;
}

@keyframes CH7_animate-svg-stroke-192 {
  0% {
    stroke-dashoffset: 4.7520041466px;
    stroke-dasharray: 4.7520041466px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.7520041466px;
  }
}
@keyframes CH7_animate-svg-fill-192 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-192 {
  animation: CH7_animate-svg-stroke-192 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.525s both, CH7_animate-svg-fill-192 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.525s both;
}

@keyframes CH7_animate-svg-stroke-193 {
  0% {
    stroke-dashoffset: 5.362503767px;
    stroke-dasharray: 5.362503767px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.362503767px;
  }
}
@keyframes CH7_animate-svg-fill-193 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-193 {
  animation: CH7_animate-svg-stroke-193 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.55s both, CH7_animate-svg-fill-193 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.55s both;
}

@keyframes CH7_animate-svg-stroke-194 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH7_animate-svg-fill-194 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-194 {
  animation: CH7_animate-svg-stroke-194 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.575s both, CH7_animate-svg-fill-194 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.575s both;
}

@keyframes CH7_animate-svg-stroke-195 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH7_animate-svg-fill-195 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-195 {
  animation: CH7_animate-svg-stroke-195 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.6s both, CH7_animate-svg-fill-195 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.6s both;
}

@keyframes CH7_animate-svg-stroke-196 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-196 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-196 {
  animation: CH7_animate-svg-stroke-196 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.625s both, CH7_animate-svg-fill-196 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.625s both;
}

@keyframes CH7_animate-svg-stroke-197 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH7_animate-svg-fill-197 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-197 {
  animation: CH7_animate-svg-stroke-197 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.65s both, CH7_animate-svg-fill-197 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.65s both;
}

@keyframes CH7_animate-svg-stroke-198 {
  0% {
    stroke-dashoffset: 4.1381387711px;
    stroke-dasharray: 4.1381387711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.1381387711px;
  }
}
@keyframes CH7_animate-svg-fill-198 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-198 {
  animation: CH7_animate-svg-stroke-198 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.675s both, CH7_animate-svg-fill-198 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.675s both;
}

@keyframes CH7_animate-svg-stroke-199 {
  0% {
    stroke-dashoffset: 5.362503767px;
    stroke-dasharray: 5.362503767px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.362503767px;
  }
}
@keyframes CH7_animate-svg-fill-199 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-199 {
  animation: CH7_animate-svg-stroke-199 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.7s both, CH7_animate-svg-fill-199 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.7s both;
}

@keyframes CH7_animate-svg-stroke-200 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH7_animate-svg-fill-200 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-200 {
  animation: CH7_animate-svg-stroke-200 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.725s both, CH7_animate-svg-fill-200 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.725s both;
}

@keyframes CH7_animate-svg-stroke-201 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-201 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-201 {
  animation: CH7_animate-svg-stroke-201 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.75s both, CH7_animate-svg-fill-201 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.75s both;
}

@keyframes CH7_animate-svg-stroke-203 {
  0% {
    stroke-dashoffset: 1320.8176269531px;
    stroke-dasharray: 1320.8176269531px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1320.8176269531px;
  }
}
@keyframes CH7_animate-svg-fill-203 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-203 {
  animation: CH7_animate-svg-stroke-203 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.8s both, CH7_animate-svg-fill-203 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.8s both;
}

@keyframes CH7_animate-svg-stroke-204 {
  0% {
    stroke-dashoffset: 1272.7642822266px;
    stroke-dasharray: 1272.7642822266px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1272.7642822266px;
  }
}
@keyframes CH7_animate-svg-fill-204 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L7_chart-204 {
  animation: CH7_animate-svg-stroke-204 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.825s both, CH7_animate-svg-fill-204 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.825s both;
}

@keyframes CH7_animate-svg-stroke-205 {
  0% {
    stroke-dashoffset: 396.0347900391px;
    stroke-dasharray: 396.0347900391px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 396.0347900391px;
  }
}
@keyframes CH7_animate-svg-fill-205 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-205 {
  animation: CH7_animate-svg-stroke-205 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.85s both, CH7_animate-svg-fill-205 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.85s both;
}

@keyframes CH7_animate-svg-stroke-206 {
  0% {
    stroke-dashoffset: 260.9595947266px;
    stroke-dasharray: 260.9595947266px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 260.9595947266px;
  }
}
@keyframes CH7_animate-svg-fill-206 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-206 {
  animation: CH7_animate-svg-stroke-206 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.875s both, CH7_animate-svg-fill-206 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.875s both;
}

@keyframes CH7_animate-svg-stroke-207 {
  0% {
    stroke-dashoffset: 38.8269081116px;
    stroke-dasharray: 38.8269081116px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 38.8269081116px;
  }
}
@keyframes CH7_animate-svg-fill-207 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-207 {
  animation: CH7_animate-svg-stroke-207 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.9s both, CH7_animate-svg-fill-207 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.9s both;
}

@keyframes CH7_animate-svg-stroke-208 {
  0% {
    stroke-dashoffset: 789.8776245117px;
    stroke-dasharray: 789.8776245117px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 789.8776245117px;
  }
}
@keyframes CH7_animate-svg-fill-208 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-208 {
  animation: CH7_animate-svg-stroke-208 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.925s both, CH7_animate-svg-fill-208 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.925s both;
}

@keyframes CH7_animate-svg-stroke-209 {
  0% {
    stroke-dashoffset: 4529.4467773438px;
    stroke-dasharray: 4529.4467773438px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4529.4467773438px;
  }
}
@keyframes CH7_animate-svg-fill-209 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-209 {
  animation: CH7_animate-svg-stroke-209 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.95s both, CH7_animate-svg-fill-209 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.95s both;
}

@keyframes CH7_animate-svg-stroke-210 {
  0% {
    stroke-dashoffset: 5.3955564499px;
    stroke-dasharray: 5.3955564499px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.3955564499px;
  }
}
@keyframes CH7_animate-svg-fill-210 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-210 {
  animation: CH7_animate-svg-stroke-210 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.975s both, CH7_animate-svg-fill-210 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 5.975s both;
}

@keyframes CH7_animate-svg-stroke-211 {
  0% {
    stroke-dashoffset: 4.1381387711px;
    stroke-dasharray: 4.1381387711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.1381387711px;
  }
}
@keyframes CH7_animate-svg-fill-211 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-211 {
  animation: CH7_animate-svg-stroke-211 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6s both, CH7_animate-svg-fill-211 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6s both;
}

@keyframes CH7_animate-svg-stroke-212 {
  0% {
    stroke-dashoffset: 4.3964703083px;
    stroke-dasharray: 4.3964703083px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.3964703083px;
  }
}
@keyframes CH7_animate-svg-fill-212 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-212 {
  animation: CH7_animate-svg-stroke-212 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.025s both, CH7_animate-svg-fill-212 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.025s both;
}

@keyframes CH7_animate-svg-stroke-213 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-213 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-213 {
  animation: CH7_animate-svg-stroke-213 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.05s both, CH7_animate-svg-fill-213 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.05s both;
}

@keyframes CH7_animate-svg-stroke-214 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH7_animate-svg-fill-214 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-214 {
  animation: CH7_animate-svg-stroke-214 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.075s both, CH7_animate-svg-fill-214 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.075s both;
}

@keyframes CH7_animate-svg-stroke-215 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH7_animate-svg-fill-215 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-215 {
  animation: CH7_animate-svg-stroke-215 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.1s both, CH7_animate-svg-fill-215 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.1s both;
}

@keyframes CH7_animate-svg-stroke-216 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-216 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-216 {
  animation: CH7_animate-svg-stroke-216 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.125s both, CH7_animate-svg-fill-216 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.125s both;
}

@keyframes CH7_animate-svg-stroke-217 {
  0% {
    stroke-dashoffset: 6.4225697517px;
    stroke-dasharray: 6.4225697517px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.4225697517px;
  }
}
@keyframes CH7_animate-svg-fill-217 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-217 {
  animation: CH7_animate-svg-stroke-217 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.15s both, CH7_animate-svg-fill-217 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.15s both;
}

@keyframes CH7_animate-svg-stroke-218 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH7_animate-svg-fill-218 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-218 {
  animation: CH7_animate-svg-stroke-218 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.175s both, CH7_animate-svg-fill-218 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.175s both;
}

@keyframes CH7_animate-svg-stroke-219 {
  0% {
    stroke-dashoffset: 4.2831850052px;
    stroke-dasharray: 4.2831850052px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2831850052px;
  }
}
@keyframes CH7_animate-svg-fill-219 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-219 {
  animation: CH7_animate-svg-stroke-219 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.2s both, CH7_animate-svg-fill-219 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.2s both;
}

@keyframes CH7_animate-svg-stroke-220 {
  0% {
    stroke-dashoffset: 4.3964703083px;
    stroke-dasharray: 4.3964703083px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.3964703083px;
  }
}
@keyframes CH7_animate-svg-fill-220 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-220 {
  animation: CH7_animate-svg-stroke-220 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.225s both, CH7_animate-svg-fill-220 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.225s both;
}

@keyframes CH7_animate-svg-stroke-221 {
  0% {
    stroke-dashoffset: 4.7520041466px;
    stroke-dasharray: 4.7520041466px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.7520041466px;
  }
}
@keyframes CH7_animate-svg-fill-221 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-221 {
  animation: CH7_animate-svg-stroke-221 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.25s both, CH7_animate-svg-fill-221 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.25s both;
}

@keyframes CH7_animate-svg-stroke-222 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH7_animate-svg-fill-222 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-222 {
  animation: CH7_animate-svg-stroke-222 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.275s both, CH7_animate-svg-fill-222 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.275s both;
}

@keyframes CH7_animate-svg-stroke-223 {
  0% {
    stroke-dashoffset: 4.3741643429px;
    stroke-dasharray: 4.3741643429px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.3741643429px;
  }
}
@keyframes CH7_animate-svg-fill-223 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-223 {
  animation: CH7_animate-svg-stroke-223 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.3s both, CH7_animate-svg-fill-223 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.3s both;
}

@keyframes CH7_animate-svg-stroke-224 {
  0% {
    stroke-dashoffset: 5.1987850666px;
    stroke-dasharray: 5.1987850666px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.1987850666px;
  }
}
@keyframes CH7_animate-svg-fill-224 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-224 {
  animation: CH7_animate-svg-stroke-224 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.325s both, CH7_animate-svg-fill-224 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.325s both;
}

@keyframes CH7_animate-svg-stroke-225 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-225 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-225 {
  animation: CH7_animate-svg-stroke-225 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.35s both, CH7_animate-svg-fill-225 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.35s both;
}

@keyframes CH7_animate-svg-stroke-227 {
  0% {
    stroke-dashoffset: 785.7648925781px;
    stroke-dasharray: 785.7648925781px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 785.7648925781px;
  }
}
@keyframes CH7_animate-svg-fill-227 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L7_chart-227 {
  animation: CH7_animate-svg-stroke-227 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.4s both, CH7_animate-svg-fill-227 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.4s both;
}

@keyframes CH7_animate-svg-stroke-228 {
  0% {
    stroke-dashoffset: 543.8128051758px;
    stroke-dasharray: 543.8128051758px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 543.8128051758px;
  }
}
@keyframes CH7_animate-svg-fill-228 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-228 {
  animation: CH7_animate-svg-stroke-228 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.425s both, CH7_animate-svg-fill-228 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.425s both;
}

@keyframes CH7_animate-svg-stroke-229 {
  0% {
    stroke-dashoffset: 129.1368942261px;
    stroke-dasharray: 129.1368942261px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1368942261px;
  }
}
@keyframes CH7_animate-svg-fill-229 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-229 {
  animation: CH7_animate-svg-stroke-229 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.45s both, CH7_animate-svg-fill-229 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.45s both;
}

@keyframes CH7_animate-svg-stroke-230 {
  0% {
    stroke-dashoffset: 129.1368408203px;
    stroke-dasharray: 129.1368408203px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1368408203px;
  }
}
@keyframes CH7_animate-svg-fill-230 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-230 {
  animation: CH7_animate-svg-stroke-230 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.475s both, CH7_animate-svg-fill-230 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.475s both;
}

@keyframes CH7_animate-svg-stroke-231 {
  0% {
    stroke-dashoffset: 129.1370849609px;
    stroke-dasharray: 129.1370849609px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1370849609px;
  }
}
@keyframes CH7_animate-svg-fill-231 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-231 {
  animation: CH7_animate-svg-stroke-231 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.5s both, CH7_animate-svg-fill-231 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.5s both;
}

@keyframes CH7_animate-svg-stroke-232 {
  0% {
    stroke-dashoffset: 129.1371459961px;
    stroke-dasharray: 129.1371459961px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1371459961px;
  }
}
@keyframes CH7_animate-svg-fill-232 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-232 {
  animation: CH7_animate-svg-stroke-232 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.525s both, CH7_animate-svg-fill-232 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.525s both;
}

@keyframes CH7_animate-svg-stroke-233 {
  0% {
    stroke-dashoffset: 129.1371002197px;
    stroke-dasharray: 129.1371002197px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1371002197px;
  }
}
@keyframes CH7_animate-svg-fill-233 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-233 {
  animation: CH7_animate-svg-stroke-233 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.55s both, CH7_animate-svg-fill-233 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.55s both;
}

@keyframes CH7_animate-svg-stroke-234 {
  0% {
    stroke-dashoffset: 129.1373291016px;
    stroke-dasharray: 129.1373291016px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1373291016px;
  }
}
@keyframes CH7_animate-svg-fill-234 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-234 {
  animation: CH7_animate-svg-stroke-234 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.575s both, CH7_animate-svg-fill-234 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.575s both;
}

@keyframes CH7_animate-svg-stroke-235 {
  0% {
    stroke-dashoffset: 129.1368560791px;
    stroke-dasharray: 129.1368560791px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1368560791px;
  }
}
@keyframes CH7_animate-svg-fill-235 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-235 {
  animation: CH7_animate-svg-stroke-235 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.6s both, CH7_animate-svg-fill-235 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.6s both;
}

@keyframes CH7_animate-svg-stroke-236 {
  0% {
    stroke-dashoffset: 129.1365814209px;
    stroke-dasharray: 129.1365814209px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1365814209px;
  }
}
@keyframes CH7_animate-svg-fill-236 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-236 {
  animation: CH7_animate-svg-stroke-236 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.625s both, CH7_animate-svg-fill-236 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.625s both;
}

@keyframes CH7_animate-svg-stroke-237 {
  0% {
    stroke-dashoffset: 129.1368560791px;
    stroke-dasharray: 129.1368560791px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1368560791px;
  }
}
@keyframes CH7_animate-svg-fill-237 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-237 {
  animation: CH7_animate-svg-stroke-237 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.65s both, CH7_animate-svg-fill-237 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.65s both;
}

@keyframes CH7_animate-svg-stroke-238 {
  0% {
    stroke-dashoffset: 129.1368942261px;
    stroke-dasharray: 129.1368942261px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1368942261px;
  }
}
@keyframes CH7_animate-svg-fill-238 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-238 {
  animation: CH7_animate-svg-stroke-238 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.675s both, CH7_animate-svg-fill-238 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.675s both;
}

@keyframes CH7_animate-svg-stroke-239 {
  0% {
    stroke-dashoffset: 129.1369018555px;
    stroke-dasharray: 129.1369018555px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1369018555px;
  }
}
@keyframes CH7_animate-svg-fill-239 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-239 {
  animation: CH7_animate-svg-stroke-239 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.7s both, CH7_animate-svg-fill-239 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.7s both;
}

@keyframes CH7_animate-svg-stroke-240 {
  0% {
    stroke-dashoffset: 129.1366119385px;
    stroke-dasharray: 129.1366119385px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1366119385px;
  }
}
@keyframes CH7_animate-svg-fill-240 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-240 {
  animation: CH7_animate-svg-stroke-240 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.725s both, CH7_animate-svg-fill-240 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.725s both;
}

@keyframes CH7_animate-svg-stroke-241 {
  0% {
    stroke-dashoffset: 129.1369171143px;
    stroke-dasharray: 129.1369171143px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1369171143px;
  }
}
@keyframes CH7_animate-svg-fill-241 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-241 {
  animation: CH7_animate-svg-stroke-241 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.75s both, CH7_animate-svg-fill-241 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.75s both;
}

@keyframes CH7_animate-svg-stroke-242 {
  0% {
    stroke-dashoffset: 290.6289367676px;
    stroke-dasharray: 290.6289367676px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 290.6289367676px;
  }
}
@keyframes CH7_animate-svg-fill-242 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-242 {
  animation: CH7_animate-svg-stroke-242 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.775s both, CH7_animate-svg-fill-242 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.775s both;
}

@keyframes CH7_animate-svg-stroke-243 {
  0% {
    stroke-dashoffset: 329.5381164551px;
    stroke-dasharray: 329.5381164551px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 329.5381164551px;
  }
}
@keyframes CH7_animate-svg-fill-243 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-243 {
  animation: CH7_animate-svg-stroke-243 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.8s both, CH7_animate-svg-fill-243 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.8s both;
}

@keyframes CH7_animate-svg-stroke-244 {
  0% {
    stroke-dashoffset: 1569.2091064453px;
    stroke-dasharray: 1569.2091064453px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1569.2091064453px;
  }
}
@keyframes CH7_animate-svg-fill-244 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-244 {
  animation: CH7_animate-svg-stroke-244 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.825s both, CH7_animate-svg-fill-244 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.825s both;
}

@keyframes CH7_animate-svg-stroke-245 {
  0% {
    stroke-dashoffset: 310.0852966309px;
    stroke-dasharray: 310.0852966309px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 310.0852966309px;
  }
}
@keyframes CH7_animate-svg-fill-245 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-245 {
  animation: CH7_animate-svg-stroke-245 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.85s both, CH7_animate-svg-fill-245 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.85s both;
}

@keyframes CH7_animate-svg-stroke-246 {
  0% {
    stroke-dashoffset: 329.538269043px;
    stroke-dasharray: 329.538269043px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 329.538269043px;
  }
}
@keyframes CH7_animate-svg-fill-246 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-246 {
  animation: CH7_animate-svg-stroke-246 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.875s both, CH7_animate-svg-fill-246 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.875s both;
}

@keyframes CH7_animate-svg-stroke-247 {
  0% {
    stroke-dashoffset: 290.62890625px;
    stroke-dasharray: 290.62890625px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 290.62890625px;
  }
}
@keyframes CH7_animate-svg-fill-247 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-247 {
  animation: CH7_animate-svg-stroke-247 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.9s both, CH7_animate-svg-fill-247 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.9s both;
}

@keyframes CH7_animate-svg-stroke-248 {
  0% {
    stroke-dashoffset: 310.0849304199px;
    stroke-dasharray: 310.0849304199px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 310.0849304199px;
  }
}
@keyframes CH7_animate-svg-fill-248 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-248 {
  animation: CH7_animate-svg-stroke-248 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.925s both, CH7_animate-svg-fill-248 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.925s both;
}

@keyframes CH7_animate-svg-stroke-249 {
  0% {
    stroke-dashoffset: 319.8165893555px;
    stroke-dasharray: 319.8165893555px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 319.8165893555px;
  }
}
@keyframes CH7_animate-svg-fill-249 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-249 {
  animation: CH7_animate-svg-stroke-249 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.95s both, CH7_animate-svg-fill-249 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.95s both;
}

@keyframes CH7_animate-svg-stroke-250 {
  0% {
    stroke-dashoffset: 329.5407409668px;
    stroke-dasharray: 329.5407409668px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 329.5407409668px;
  }
}
@keyframes CH7_animate-svg-fill-250 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-250 {
  animation: CH7_animate-svg-stroke-250 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.975s both, CH7_animate-svg-fill-250 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 6.975s both;
}

@keyframes CH7_animate-svg-stroke-251 {
  0% {
    stroke-dashoffset: 329.5405273438px;
    stroke-dasharray: 329.5405273438px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 329.5405273438px;
  }
}
@keyframes CH7_animate-svg-fill-251 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-251 {
  animation: CH7_animate-svg-stroke-251 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7s both, CH7_animate-svg-fill-251 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7s both;
}

@keyframes CH7_animate-svg-stroke-252 {
  0% {
    stroke-dashoffset: 329.525177002px;
    stroke-dasharray: 329.525177002px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 329.525177002px;
  }
}
@keyframes CH7_animate-svg-fill-252 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-252 {
  animation: CH7_animate-svg-stroke-252 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.025s both, CH7_animate-svg-fill-252 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.025s both;
}

@keyframes CH7_animate-svg-stroke-253 {
  0% {
    stroke-dashoffset: 329.5255126953px;
    stroke-dasharray: 329.5255126953px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 329.5255126953px;
  }
}
@keyframes CH7_animate-svg-fill-253 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-253 {
  animation: CH7_animate-svg-stroke-253 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.05s both, CH7_animate-svg-fill-253 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.05s both;
}

@keyframes CH7_animate-svg-stroke-254 {
  0% {
    stroke-dashoffset: 329.5398864746px;
    stroke-dasharray: 329.5398864746px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 329.5398864746px;
  }
}
@keyframes CH7_animate-svg-fill-254 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-254 {
  animation: CH7_animate-svg-stroke-254 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.075s both, CH7_animate-svg-fill-254 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.075s both;
}

@keyframes CH7_animate-svg-stroke-255 {
  0% {
    stroke-dashoffset: 1080.1782226563px;
    stroke-dasharray: 1080.1782226563px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1080.1782226563px;
  }
}
@keyframes CH7_animate-svg-fill-255 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-255 {
  animation: CH7_animate-svg-stroke-255 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.1s both, CH7_animate-svg-fill-255 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.1s both;
}

@keyframes CH7_animate-svg-stroke-256 {
  0% {
    stroke-dashoffset: 288.0829467773px;
    stroke-dasharray: 288.0829467773px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 288.0829467773px;
  }
}
@keyframes CH7_animate-svg-fill-256 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-256 {
  animation: CH7_animate-svg-stroke-256 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.125s both, CH7_animate-svg-fill-256 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.125s both;
}

@keyframes CH7_animate-svg-stroke-257 {
  0% {
    stroke-dashoffset: 6.74264431px;
    stroke-dasharray: 6.74264431px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.74264431px;
  }
}
@keyframes CH7_animate-svg-fill-257 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-257 {
  animation: CH7_animate-svg-stroke-257 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.15s both, CH7_animate-svg-fill-257 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.15s both;
}

@keyframes CH7_animate-svg-stroke-258 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH7_animate-svg-fill-258 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-258 {
  animation: CH7_animate-svg-stroke-258 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.175s both, CH7_animate-svg-fill-258 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.175s both;
}

@keyframes CH7_animate-svg-stroke-259 {
  0% {
    stroke-dashoffset: 4.2760000229px;
    stroke-dasharray: 4.2760000229px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2760000229px;
  }
}
@keyframes CH7_animate-svg-fill-259 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-259 {
  animation: CH7_animate-svg-stroke-259 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.2s both, CH7_animate-svg-fill-259 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.2s both;
}

@keyframes CH7_animate-svg-stroke-260 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-260 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-260 {
  animation: CH7_animate-svg-stroke-260 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.225s both, CH7_animate-svg-fill-260 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.225s both;
}

@keyframes CH7_animate-svg-stroke-261 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH7_animate-svg-fill-261 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-261 {
  animation: CH7_animate-svg-stroke-261 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.25s both, CH7_animate-svg-fill-261 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.25s both;
}

@keyframes CH7_animate-svg-stroke-262 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH7_animate-svg-fill-262 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-262 {
  animation: CH7_animate-svg-stroke-262 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.275s both, CH7_animate-svg-fill-262 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.275s both;
}

@keyframes CH7_animate-svg-stroke-263 {
  0% {
    stroke-dashoffset: 5.7588114738px;
    stroke-dasharray: 5.7588114738px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.7588114738px;
  }
}
@keyframes CH7_animate-svg-fill-263 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-263 {
  animation: CH7_animate-svg-stroke-263 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.3s both, CH7_animate-svg-fill-263 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.3s both;
}

@keyframes CH7_animate-svg-stroke-264 {
  0% {
    stroke-dashoffset: 3.6472499371px;
    stroke-dasharray: 3.6472499371px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.6472499371px;
  }
}
@keyframes CH7_animate-svg-fill-264 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-264 {
  animation: CH7_animate-svg-stroke-264 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.325s both, CH7_animate-svg-fill-264 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.325s both;
}

@keyframes CH7_animate-svg-stroke-265 {
  0% {
    stroke-dashoffset: 4.2760000229px;
    stroke-dasharray: 4.2760000229px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.2760000229px;
  }
}
@keyframes CH7_animate-svg-fill-265 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-265 {
  animation: CH7_animate-svg-stroke-265 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.35s both, CH7_animate-svg-fill-265 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.35s both;
}

@keyframes CH7_animate-svg-stroke-267 {
  0% {
    stroke-dashoffset: 406.4566650391px;
    stroke-dasharray: 406.4566650391px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 406.4566650391px;
  }
}
@keyframes CH7_animate-svg-fill-267 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-267 {
  animation: CH7_animate-svg-stroke-267 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.4s both, CH7_animate-svg-fill-267 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.4s both;
}

@keyframes CH7_animate-svg-stroke-268 {
  0% {
    stroke-dashoffset: 406.4564819336px;
    stroke-dasharray: 406.4564819336px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 406.4564819336px;
  }
}
@keyframes CH7_animate-svg-fill-268 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-268 {
  animation: CH7_animate-svg-stroke-268 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.425s both, CH7_animate-svg-fill-268 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.425s both;
}

@keyframes CH7_animate-svg-stroke-269 {
  0% {
    stroke-dashoffset: 406.4550476074px;
    stroke-dasharray: 406.4550476074px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 406.4550476074px;
  }
}
@keyframes CH7_animate-svg-fill-269 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-269 {
  animation: CH7_animate-svg-stroke-269 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.45s both, CH7_animate-svg-fill-269 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.45s both;
}

@keyframes CH7_animate-svg-stroke-270 {
  0% {
    stroke-dashoffset: 406.455078125px;
    stroke-dasharray: 406.455078125px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 406.455078125px;
  }
}
@keyframes CH7_animate-svg-fill-270 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-270 {
  animation: CH7_animate-svg-stroke-270 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.475s both, CH7_animate-svg-fill-270 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.475s both;
}

@keyframes CH7_animate-svg-stroke-271 {
  0% {
    stroke-dashoffset: 1138.2687988281px;
    stroke-dasharray: 1138.2687988281px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1138.2687988281px;
  }
}
@keyframes CH7_animate-svg-fill-271 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L7_chart-271 {
  animation: CH7_animate-svg-stroke-271 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.5s both, CH7_animate-svg-fill-271 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.5s both;
}

@keyframes CH7_animate-svg-stroke-272 {
  0% {
    stroke-dashoffset: 656.7053833008px;
    stroke-dasharray: 656.7053833008px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 656.7053833008px;
  }
}
@keyframes CH7_animate-svg-fill-272 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-272 {
  animation: CH7_animate-svg-stroke-272 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.525s both, CH7_animate-svg-fill-272 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.525s both;
}

@keyframes CH7_animate-svg-stroke-273 {
  0% {
    stroke-dashoffset: 267.7208251953px;
    stroke-dasharray: 267.7208251953px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 267.7208251953px;
  }
}
@keyframes CH7_animate-svg-fill-273 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-273 {
  animation: CH7_animate-svg-stroke-273 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.55s both, CH7_animate-svg-fill-273 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.55s both;
}

@keyframes CH7_animate-svg-stroke-274 {
  0% {
    stroke-dashoffset: 1311.1105957031px;
    stroke-dasharray: 1311.1105957031px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1311.1105957031px;
  }
}
@keyframes CH7_animate-svg-fill-274 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-274 {
  animation: CH7_animate-svg-stroke-274 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.575s both, CH7_animate-svg-fill-274 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.575s both;
}

@keyframes CH7_animate-svg-stroke-275 {
  0% {
    stroke-dashoffset: 2275.1955566406px;
    stroke-dasharray: 2275.1955566406px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 2275.1955566406px;
  }
}
@keyframes CH7_animate-svg-fill-275 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-275 {
  animation: CH7_animate-svg-stroke-275 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.6s both, CH7_animate-svg-fill-275 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.6s both;
}

@keyframes CH7_animate-svg-stroke-276 {
  0% {
    stroke-dashoffset: 808.608581543px;
    stroke-dasharray: 808.608581543px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 808.608581543px;
  }
}
@keyframes CH7_animate-svg-fill-276 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-276 {
  animation: CH7_animate-svg-stroke-276 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.625s both, CH7_animate-svg-fill-276 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.625s both;
}

@keyframes CH7_animate-svg-stroke-277 {
  0% {
    stroke-dashoffset: 808.6072387695px;
    stroke-dasharray: 808.6072387695px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 808.6072387695px;
  }
}
@keyframes CH7_animate-svg-fill-277 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-277 {
  animation: CH7_animate-svg-stroke-277 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.65s both, CH7_animate-svg-fill-277 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.65s both;
}

@keyframes CH7_animate-svg-stroke-278 {
  0% {
    stroke-dashoffset: 808.5923461914px;
    stroke-dasharray: 808.5923461914px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 808.5923461914px;
  }
}
@keyframes CH7_animate-svg-fill-278 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-278 {
  animation: CH7_animate-svg-stroke-278 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.675s both, CH7_animate-svg-fill-278 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.675s both;
}

@keyframes CH7_animate-svg-stroke-279 {
  0% {
    stroke-dashoffset: 808.5919189453px;
    stroke-dasharray: 808.5919189453px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 808.5919189453px;
  }
}
@keyframes CH7_animate-svg-fill-279 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-279 {
  animation: CH7_animate-svg-stroke-279 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.7s both, CH7_animate-svg-fill-279 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.7s both;
}

@keyframes CH7_animate-svg-stroke-280 {
  0% {
    stroke-dashoffset: 4.4570226669px;
    stroke-dasharray: 4.4570226669px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.4570226669px;
  }
}
@keyframes CH7_animate-svg-fill-280 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-280 {
  animation: CH7_animate-svg-stroke-280 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.725s both, CH7_animate-svg-fill-280 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.725s both;
}

@keyframes CH7_animate-svg-stroke-281 {
  0% {
    stroke-dashoffset: 5.2903769016px;
    stroke-dasharray: 5.2903769016px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2903769016px;
  }
}
@keyframes CH7_animate-svg-fill-281 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-281 {
  animation: CH7_animate-svg-stroke-281 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.75s both, CH7_animate-svg-fill-281 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.75s both;
}

@keyframes CH7_animate-svg-stroke-282 {
  0% {
    stroke-dashoffset: 5.1649143696px;
    stroke-dasharray: 5.1649143696px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.1649143696px;
  }
}
@keyframes CH7_animate-svg-fill-282 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-282 {
  animation: CH7_animate-svg-stroke-282 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.775s both, CH7_animate-svg-fill-282 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.775s both;
}

@keyframes CH7_animate-svg-stroke-283 {
  0% {
    stroke-dashoffset: 5.4016542435px;
    stroke-dasharray: 5.4016542435px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.4016542435px;
  }
}
@keyframes CH7_animate-svg-fill-283 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-283 {
  animation: CH7_animate-svg-stroke-283 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.8s both, CH7_animate-svg-fill-283 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.8s both;
}

@keyframes CH7_animate-svg-stroke-284 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH7_animate-svg-fill-284 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-284 {
  animation: CH7_animate-svg-stroke-284 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.825s both, CH7_animate-svg-fill-284 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.825s both;
}

@keyframes CH7_animate-svg-stroke-285 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH7_animate-svg-fill-285 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-285 {
  animation: CH7_animate-svg-stroke-285 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.85s both, CH7_animate-svg-fill-285 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.85s both;
}

@keyframes CH7_animate-svg-stroke-286 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH7_animate-svg-fill-286 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-286 {
  animation: CH7_animate-svg-stroke-286 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.875s both, CH7_animate-svg-fill-286 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.875s both;
}

@keyframes CH7_animate-svg-stroke-287 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-287 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-287 {
  animation: CH7_animate-svg-stroke-287 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.9s both, CH7_animate-svg-fill-287 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.9s both;
}

@keyframes CH7_animate-svg-stroke-288 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH7_animate-svg-fill-288 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-288 {
  animation: CH7_animate-svg-stroke-288 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.925s both, CH7_animate-svg-fill-288 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.925s both;
}

@keyframes CH7_animate-svg-stroke-289 {
  0% {
    stroke-dashoffset: 6.499625206px;
    stroke-dasharray: 6.499625206px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.499625206px;
  }
}
@keyframes CH7_animate-svg-fill-289 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-289 {
  animation: CH7_animate-svg-stroke-289 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.95s both, CH7_animate-svg-fill-289 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.95s both;
}

@keyframes CH7_animate-svg-stroke-290 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-290 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-290 {
  animation: CH7_animate-svg-stroke-290 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.975s both, CH7_animate-svg-fill-290 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 7.975s both;
}

@keyframes CH7_animate-svg-stroke-292 {
  0% {
    stroke-dashoffset: 864.4991303018px;
    stroke-dasharray: 864.4991303018px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 864.4991303018px;
  }
}
@keyframes CH7_animate-svg-fill-292 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L7_chart-292 {
  animation: CH7_animate-svg-stroke-292 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.025s both, CH7_animate-svg-fill-292 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.025s both;
}

@keyframes CH7_animate-svg-stroke-293 {
  0% {
    stroke-dashoffset: 604.8213647414px;
    stroke-dasharray: 604.8213647414px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 604.8213647414px;
  }
}
@keyframes CH7_animate-svg-fill-293 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-293 {
  animation: CH7_animate-svg-stroke-293 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.05s both, CH7_animate-svg-fill-293 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.05s both;
}

@keyframes CH7_animate-svg-stroke-294 {
  0% {
    stroke-dashoffset: 103.1961669922px;
    stroke-dasharray: 103.1961669922px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 103.1961669922px;
  }
}
@keyframes CH7_animate-svg-fill-294 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-294 {
  animation: CH7_animate-svg-stroke-294 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.075s both, CH7_animate-svg-fill-294 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.075s both;
}

@keyframes CH7_animate-svg-stroke-295 {
  0% {
    stroke-dashoffset: 103.1961669922px;
    stroke-dasharray: 103.1961669922px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 103.1961669922px;
  }
}
@keyframes CH7_animate-svg-fill-295 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-295 {
  animation: CH7_animate-svg-stroke-295 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.1s both, CH7_animate-svg-fill-295 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.1s both;
}

@keyframes CH7_animate-svg-stroke-296 {
  0% {
    stroke-dashoffset: 103.195854187px;
    stroke-dasharray: 103.195854187px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 103.195854187px;
  }
}
@keyframes CH7_animate-svg-fill-296 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-296 {
  animation: CH7_animate-svg-stroke-296 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.125s both, CH7_animate-svg-fill-296 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.125s both;
}

@keyframes CH7_animate-svg-stroke-297 {
  0% {
    stroke-dashoffset: 103.1965560913px;
    stroke-dasharray: 103.1965560913px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 103.1965560913px;
  }
}
@keyframes CH7_animate-svg-fill-297 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-297 {
  animation: CH7_animate-svg-stroke-297 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.15s both, CH7_animate-svg-fill-297 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.15s both;
}

@keyframes CH7_animate-svg-stroke-298 {
  0% {
    stroke-dashoffset: 103.1963882446px;
    stroke-dasharray: 103.1963882446px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 103.1963882446px;
  }
}
@keyframes CH7_animate-svg-fill-298 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-298 {
  animation: CH7_animate-svg-stroke-298 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.175s both, CH7_animate-svg-fill-298 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.175s both;
}

@keyframes CH7_animate-svg-stroke-299 {
  0% {
    stroke-dashoffset: 103.1962356567px;
    stroke-dasharray: 103.1962356567px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 103.1962356567px;
  }
}
@keyframes CH7_animate-svg-fill-299 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-299 {
  animation: CH7_animate-svg-stroke-299 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.2s both, CH7_animate-svg-fill-299 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.2s both;
}

@keyframes CH7_animate-svg-stroke-300 {
  0% {
    stroke-dashoffset: 103.195892334px;
    stroke-dasharray: 103.195892334px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 103.195892334px;
  }
}
@keyframes CH7_animate-svg-fill-300 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-300 {
  animation: CH7_animate-svg-stroke-300 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.225s both, CH7_animate-svg-fill-300 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.225s both;
}

@keyframes CH7_animate-svg-stroke-301 {
  0% {
    stroke-dashoffset: 103.1956634521px;
    stroke-dasharray: 103.1956634521px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 103.1956634521px;
  }
}
@keyframes CH7_animate-svg-fill-301 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-301 {
  animation: CH7_animate-svg-stroke-301 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.25s both, CH7_animate-svg-fill-301 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.25s both;
}

@keyframes CH7_animate-svg-stroke-302 {
  0% {
    stroke-dashoffset: 103.1956710815px;
    stroke-dasharray: 103.1956710815px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 103.1956710815px;
  }
}
@keyframes CH7_animate-svg-fill-302 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-302 {
  animation: CH7_animate-svg-stroke-302 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.275s both, CH7_animate-svg-fill-302 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.275s both;
}

@keyframes CH7_animate-svg-stroke-303 {
  0% {
    stroke-dashoffset: 103.1958999634px;
    stroke-dasharray: 103.1958999634px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 103.1958999634px;
  }
}
@keyframes CH7_animate-svg-fill-303 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-303 {
  animation: CH7_animate-svg-stroke-303 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.3s both, CH7_animate-svg-fill-303 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.3s both;
}

@keyframes CH7_animate-svg-stroke-304 {
  0% {
    stroke-dashoffset: 103.1960601807px;
    stroke-dasharray: 103.1960601807px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 103.1960601807px;
  }
}
@keyframes CH7_animate-svg-fill-304 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-304 {
  animation: CH7_animate-svg-stroke-304 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.325s both, CH7_animate-svg-fill-304 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.325s both;
}

@keyframes CH7_animate-svg-stroke-305 {
  0% {
    stroke-dashoffset: 103.1966018677px;
    stroke-dasharray: 103.1966018677px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 103.1966018677px;
  }
}
@keyframes CH7_animate-svg-fill-305 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-305 {
  animation: CH7_animate-svg-stroke-305 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.35s both, CH7_animate-svg-fill-305 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.35s both;
}

@keyframes CH7_animate-svg-stroke-306 {
  0% {
    stroke-dashoffset: 254.4502410889px;
    stroke-dasharray: 254.4502410889px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 254.4502410889px;
  }
}
@keyframes CH7_animate-svg-fill-306 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-306 {
  animation: CH7_animate-svg-stroke-306 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.375s both, CH7_animate-svg-fill-306 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.375s both;
}

@keyframes CH7_animate-svg-stroke-307 {
  0% {
    stroke-dashoffset: 262.1936035156px;
    stroke-dasharray: 262.1936035156px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 262.1936035156px;
  }
}
@keyframes CH7_animate-svg-fill-307 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-307 {
  animation: CH7_animate-svg-stroke-307 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.4s both, CH7_animate-svg-fill-307 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.4s both;
}

@keyframes CH7_animate-svg-stroke-308 {
  0% {
    stroke-dashoffset: 262.1952209473px;
    stroke-dasharray: 262.1952209473px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 262.1952209473px;
  }
}
@keyframes CH7_animate-svg-fill-308 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-308 {
  animation: CH7_animate-svg-stroke-308 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.425s both, CH7_animate-svg-fill-308 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.425s both;
}

@keyframes CH7_animate-svg-stroke-309 {
  0% {
    stroke-dashoffset: 262.1926879883px;
    stroke-dasharray: 262.1926879883px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 262.1926879883px;
  }
}
@keyframes CH7_animate-svg-fill-309 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-309 {
  animation: CH7_animate-svg-stroke-309 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.45s both, CH7_animate-svg-fill-309 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.45s both;
}

@keyframes CH7_animate-svg-stroke-310 {
  0% {
    stroke-dashoffset: 254.4518432617px;
    stroke-dasharray: 254.4518432617px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 254.4518432617px;
  }
}
@keyframes CH7_animate-svg-fill-310 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-310 {
  animation: CH7_animate-svg-stroke-310 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.475s both, CH7_animate-svg-fill-310 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.475s both;
}

@keyframes CH7_animate-svg-stroke-311 {
  0% {
    stroke-dashoffset: 262.1951904297px;
    stroke-dasharray: 262.1951904297px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 262.1951904297px;
  }
}
@keyframes CH7_animate-svg-fill-311 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-311 {
  animation: CH7_animate-svg-stroke-311 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.5s both, CH7_animate-svg-fill-311 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.5s both;
}

@keyframes CH7_animate-svg-stroke-312 {
  0% {
    stroke-dashoffset: 254.4658966064px;
    stroke-dasharray: 254.4658966064px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 254.4658966064px;
  }
}
@keyframes CH7_animate-svg-fill-312 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-312 {
  animation: CH7_animate-svg-stroke-312 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.525s both, CH7_animate-svg-fill-312 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.525s both;
}

@keyframes CH7_animate-svg-stroke-313 {
  0% {
    stroke-dashoffset: 262.2258300781px;
    stroke-dasharray: 262.2258300781px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 262.2258300781px;
  }
}
@keyframes CH7_animate-svg-fill-313 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-313 {
  animation: CH7_animate-svg-stroke-313 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.55s both, CH7_animate-svg-fill-313 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.55s both;
}

@keyframes CH7_animate-svg-stroke-314 {
  0% {
    stroke-dashoffset: 262.2101135254px;
    stroke-dasharray: 262.2101135254px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 262.2101135254px;
  }
}
@keyframes CH7_animate-svg-fill-314 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-314 {
  animation: CH7_animate-svg-stroke-314 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.575s both, CH7_animate-svg-fill-314 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.575s both;
}

@keyframes CH7_animate-svg-stroke-315 {
  0% {
    stroke-dashoffset: 254.466796875px;
    stroke-dasharray: 254.466796875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 254.466796875px;
  }
}
@keyframes CH7_animate-svg-fill-315 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-315 {
  animation: CH7_animate-svg-stroke-315 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.6s both, CH7_animate-svg-fill-315 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.6s both;
}

@keyframes CH7_animate-svg-stroke-316 {
  0% {
    stroke-dashoffset: 262.2257995605px;
    stroke-dasharray: 262.2257995605px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 262.2257995605px;
  }
}
@keyframes CH7_animate-svg-fill-316 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-316 {
  animation: CH7_animate-svg-stroke-316 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.625s both, CH7_animate-svg-fill-316 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.625s both;
}

@keyframes CH7_animate-svg-stroke-317 {
  0% {
    stroke-dashoffset: 262.1949462891px;
    stroke-dasharray: 262.1949462891px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 262.1949462891px;
  }
}
@keyframes CH7_animate-svg-fill-317 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-317 {
  animation: CH7_animate-svg-stroke-317 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.65s both, CH7_animate-svg-fill-317 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.65s both;
}

@keyframes CH7_animate-svg-stroke-318 {
  0% {
    stroke-dashoffset: 1207.5347900391px;
    stroke-dasharray: 1207.5347900391px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1207.5347900391px;
  }
}
@keyframes CH7_animate-svg-fill-318 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-318 {
  animation: CH7_animate-svg-stroke-318 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.675s both, CH7_animate-svg-fill-318 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.675s both;
}

@keyframes CH7_animate-svg-stroke-319 {
  0% {
    stroke-dashoffset: 1726.8033447266px;
    stroke-dasharray: 1726.8033447266px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1726.8033447266px;
  }
}
@keyframes CH7_animate-svg-fill-319 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-319 {
  animation: CH7_animate-svg-stroke-319 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.7s both, CH7_animate-svg-fill-319 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.7s both;
}

@keyframes CH7_animate-svg-stroke-320 {
  0% {
    stroke-dashoffset: 4.243999958px;
    stroke-dasharray: 4.243999958px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.243999958px;
  }
}
@keyframes CH7_animate-svg-fill-320 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-320 {
  animation: CH7_animate-svg-stroke-320 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.725s both, CH7_animate-svg-fill-320 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.725s both;
}

@keyframes CH7_animate-svg-stroke-321 {
  0% {
    stroke-dashoffset: 4.3741643429px;
    stroke-dasharray: 4.3741643429px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.3741643429px;
  }
}
@keyframes CH7_animate-svg-fill-321 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-321 {
  animation: CH7_animate-svg-stroke-321 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.75s both, CH7_animate-svg-fill-321 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.75s both;
}

@keyframes CH7_animate-svg-stroke-322 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH7_animate-svg-fill-322 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-322 {
  animation: CH7_animate-svg-stroke-322 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.775s both, CH7_animate-svg-fill-322 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.775s both;
}

@keyframes CH7_animate-svg-stroke-323 {
  0% {
    stroke-dashoffset: 6.0577549934px;
    stroke-dasharray: 6.0577549934px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.0577549934px;
  }
}
@keyframes CH7_animate-svg-fill-323 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-323 {
  animation: CH7_animate-svg-stroke-323 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.8s both, CH7_animate-svg-fill-323 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.8s both;
}

@keyframes CH7_animate-svg-stroke-324 {
  0% {
    stroke-dashoffset: 6.5380234718px;
    stroke-dasharray: 6.5380234718px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.5380234718px;
  }
}
@keyframes CH7_animate-svg-fill-324 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-324 {
  animation: CH7_animate-svg-stroke-324 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.825s both, CH7_animate-svg-fill-324 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.825s both;
}

@keyframes CH7_animate-svg-stroke-325 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH7_animate-svg-fill-325 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-325 {
  animation: CH7_animate-svg-stroke-325 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.85s both, CH7_animate-svg-fill-325 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.85s both;
}

@keyframes CH7_animate-svg-stroke-326 {
  0% {
    stroke-dashoffset: 3.8199999332px;
    stroke-dasharray: 3.8199999332px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.8199999332px;
  }
}
@keyframes CH7_animate-svg-fill-326 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-326 {
  animation: CH7_animate-svg-stroke-326 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.875s both, CH7_animate-svg-fill-326 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.875s both;
}

@keyframes CH7_animate-svg-stroke-327 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH7_animate-svg-fill-327 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-327 {
  animation: CH7_animate-svg-stroke-327 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.9s both, CH7_animate-svg-fill-327 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.9s both;
}

@keyframes CH7_animate-svg-stroke-328 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH7_animate-svg-fill-328 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-328 {
  animation: CH7_animate-svg-stroke-328 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.925s both, CH7_animate-svg-fill-328 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.925s both;
}

@keyframes CH7_animate-svg-stroke-329 {
  0% {
    stroke-dashoffset: 4.1381387711px;
    stroke-dasharray: 4.1381387711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.1381387711px;
  }
}
@keyframes CH7_animate-svg-fill-329 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-329 {
  animation: CH7_animate-svg-stroke-329 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.95s both, CH7_animate-svg-fill-329 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.95s both;
}

@keyframes CH7_animate-svg-stroke-330 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-330 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-330 {
  animation: CH7_animate-svg-stroke-330 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.975s both, CH7_animate-svg-fill-330 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 8.975s both;
}

@keyframes CH7_animate-svg-stroke-331 {
  0% {
    stroke-dashoffset: 3.9227753878px;
    stroke-dasharray: 3.9227753878px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.9227753878px;
  }
}
@keyframes CH7_animate-svg-fill-331 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-331 {
  animation: CH7_animate-svg-stroke-331 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9s both, CH7_animate-svg-fill-331 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9s both;
}

@keyframes CH7_animate-svg-stroke-333 {
  0% {
    stroke-dashoffset: 976.9063720703px;
    stroke-dasharray: 976.9063720703px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 976.9063720703px;
  }
}
@keyframes CH7_animate-svg-fill-333 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-333 {
  animation: CH7_animate-svg-stroke-333 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.05s both, CH7_animate-svg-fill-333 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.05s both;
}

@keyframes CH7_animate-svg-stroke-334 {
  0% {
    stroke-dashoffset: 183.1056213379px;
    stroke-dasharray: 183.1056213379px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 183.1056213379px;
  }
}
@keyframes CH7_animate-svg-fill-334 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-334 {
  animation: CH7_animate-svg-stroke-334 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.075s both, CH7_animate-svg-fill-334 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.075s both;
}

@keyframes CH7_animate-svg-stroke-335 {
  0% {
    stroke-dashoffset: 976.9059448242px;
    stroke-dasharray: 976.9059448242px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 976.9059448242px;
  }
}
@keyframes CH7_animate-svg-fill-335 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-335 {
  animation: CH7_animate-svg-stroke-335 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.1s both, CH7_animate-svg-fill-335 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.1s both;
}

@keyframes CH7_animate-svg-stroke-336 {
  0% {
    stroke-dashoffset: 183.1054534912px;
    stroke-dasharray: 183.1054534912px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 183.1054534912px;
  }
}
@keyframes CH7_animate-svg-fill-336 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-336 {
  animation: CH7_animate-svg-stroke-336 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.125s both, CH7_animate-svg-fill-336 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.125s both;
}

@keyframes CH7_animate-svg-stroke-337 {
  0% {
    stroke-dashoffset: 976.9064941406px;
    stroke-dasharray: 976.9064941406px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 976.9064941406px;
  }
}
@keyframes CH7_animate-svg-fill-337 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-337 {
  animation: CH7_animate-svg-stroke-337 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.15s both, CH7_animate-svg-fill-337 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.15s both;
}

@keyframes CH7_animate-svg-stroke-338 {
  0% {
    stroke-dashoffset: 183.10546875px;
    stroke-dasharray: 183.10546875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 183.10546875px;
  }
}
@keyframes CH7_animate-svg-fill-338 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-338 {
  animation: CH7_animate-svg-stroke-338 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.175s both, CH7_animate-svg-fill-338 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.175s both;
}

@keyframes CH7_animate-svg-stroke-339 {
  0% {
    stroke-dashoffset: 785.7643432617px;
    stroke-dasharray: 785.7643432617px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 785.7643432617px;
  }
}
@keyframes CH7_animate-svg-fill-339 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L7_chart-339 {
  animation: CH7_animate-svg-stroke-339 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.2s both, CH7_animate-svg-fill-339 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.2s both;
}

@keyframes CH7_animate-svg-stroke-340 {
  0% {
    stroke-dashoffset: 543.8131103516px;
    stroke-dasharray: 543.8131103516px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 543.8131103516px;
  }
}
@keyframes CH7_animate-svg-fill-340 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-340 {
  animation: CH7_animate-svg-stroke-340 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.225s both, CH7_animate-svg-fill-340 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.225s both;
}

@keyframes CH7_animate-svg-stroke-341 {
  0% {
    stroke-dashoffset: 129.1368713379px;
    stroke-dasharray: 129.1368713379px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1368713379px;
  }
}
@keyframes CH7_animate-svg-fill-341 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-341 {
  animation: CH7_animate-svg-stroke-341 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.25s both, CH7_animate-svg-fill-341 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.25s both;
}

@keyframes CH7_animate-svg-stroke-342 {
  0% {
    stroke-dashoffset: 54.090385437px;
    stroke-dasharray: 54.090385437px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.090385437px;
  }
}
@keyframes CH7_animate-svg-fill-342 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-342 {
  animation: CH7_animate-svg-stroke-342 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.275s both, CH7_animate-svg-fill-342 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.275s both;
}

@keyframes CH7_animate-svg-stroke-343 {
  0% {
    stroke-dashoffset: 54.0906295776px;
    stroke-dasharray: 54.0906295776px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0906295776px;
  }
}
@keyframes CH7_animate-svg-fill-343 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-343 {
  animation: CH7_animate-svg-stroke-343 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.3s both, CH7_animate-svg-fill-343 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.3s both;
}

@keyframes CH7_animate-svg-stroke-344 {
  0% {
    stroke-dashoffset: 54.090637207px;
    stroke-dasharray: 54.090637207px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.090637207px;
  }
}
@keyframes CH7_animate-svg-fill-344 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-344 {
  animation: CH7_animate-svg-stroke-344 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.325s both, CH7_animate-svg-fill-344 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.325s both;
}

@keyframes CH7_animate-svg-stroke-345 {
  0% {
    stroke-dashoffset: 54.102645874px;
    stroke-dasharray: 54.102645874px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102645874px;
  }
}
@keyframes CH7_animate-svg-fill-345 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-345 {
  animation: CH7_animate-svg-stroke-345 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.35s both, CH7_animate-svg-fill-345 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.35s both;
}

@keyframes CH7_animate-svg-stroke-346 {
  0% {
    stroke-dashoffset: 54.1028671265px;
    stroke-dasharray: 54.1028671265px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028671265px;
  }
}
@keyframes CH7_animate-svg-fill-346 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-346 {
  animation: CH7_animate-svg-stroke-346 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.375s both, CH7_animate-svg-fill-346 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.375s both;
}

@keyframes CH7_animate-svg-stroke-347 {
  0% {
    stroke-dashoffset: 54.1028709412px;
    stroke-dasharray: 54.1028709412px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028709412px;
  }
}
@keyframes CH7_animate-svg-fill-347 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-347 {
  animation: CH7_animate-svg-stroke-347 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.4s both, CH7_animate-svg-fill-347 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.4s both;
}

@keyframes CH7_animate-svg-stroke-348 {
  0% {
    stroke-dashoffset: 54.1006622314px;
    stroke-dasharray: 54.1006622314px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1006622314px;
  }
}
@keyframes CH7_animate-svg-fill-348 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-348 {
  animation: CH7_animate-svg-stroke-348 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.425s both, CH7_animate-svg-fill-348 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.425s both;
}

@keyframes CH7_animate-svg-stroke-349 {
  0% {
    stroke-dashoffset: 54.1008796692px;
    stroke-dasharray: 54.1008796692px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008796692px;
  }
}
@keyframes CH7_animate-svg-fill-349 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-349 {
  animation: CH7_animate-svg-stroke-349 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.45s both, CH7_animate-svg-fill-349 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.45s both;
}

@keyframes CH7_animate-svg-stroke-350 {
  0% {
    stroke-dashoffset: 54.1008834839px;
    stroke-dasharray: 54.1008834839px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008834839px;
  }
}
@keyframes CH7_animate-svg-fill-350 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-350 {
  animation: CH7_animate-svg-stroke-350 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.475s both, CH7_animate-svg-fill-350 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.475s both;
}

@keyframes CH7_animate-svg-stroke-351 {
  0% {
    stroke-dashoffset: 54.1024742126px;
    stroke-dasharray: 54.1024742126px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1024742126px;
  }
}
@keyframes CH7_animate-svg-fill-351 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-351 {
  animation: CH7_animate-svg-stroke-351 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.5s both, CH7_animate-svg-fill-351 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.5s both;
}

@keyframes CH7_animate-svg-stroke-352 {
  0% {
    stroke-dashoffset: 54.102684021px;
    stroke-dasharray: 54.102684021px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102684021px;
  }
}
@keyframes CH7_animate-svg-fill-352 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-352 {
  animation: CH7_animate-svg-stroke-352 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.525s both, CH7_animate-svg-fill-352 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.525s both;
}

@keyframes CH7_animate-svg-stroke-353 {
  0% {
    stroke-dashoffset: 54.102684021px;
    stroke-dasharray: 54.102684021px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102684021px;
  }
}
@keyframes CH7_animate-svg-fill-353 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-353 {
  animation: CH7_animate-svg-stroke-353 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.55s both, CH7_animate-svg-fill-353 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.55s both;
}

@keyframes CH7_animate-svg-stroke-354 {
  0% {
    stroke-dashoffset: 54.102684021px;
    stroke-dasharray: 54.102684021px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102684021px;
  }
}
@keyframes CH7_animate-svg-fill-354 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-354 {
  animation: CH7_animate-svg-stroke-354 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.575s both, CH7_animate-svg-fill-354 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.575s both;
}

@keyframes CH7_animate-svg-stroke-355 {
  0% {
    stroke-dashoffset: 54.1028938293px;
    stroke-dasharray: 54.1028938293px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028938293px;
  }
}
@keyframes CH7_animate-svg-fill-355 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-355 {
  animation: CH7_animate-svg-stroke-355 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.6s both, CH7_animate-svg-fill-355 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.6s both;
}

@keyframes CH7_animate-svg-stroke-356 {
  0% {
    stroke-dashoffset: 54.1028900146px;
    stroke-dasharray: 54.1028900146px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028900146px;
  }
}
@keyframes CH7_animate-svg-fill-356 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-356 {
  animation: CH7_animate-svg-stroke-356 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.625s both, CH7_animate-svg-fill-356 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.625s both;
}

@keyframes CH7_animate-svg-stroke-357 {
  0% {
    stroke-dashoffset: 54.0905990601px;
    stroke-dasharray: 54.0905990601px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0905990601px;
  }
}
@keyframes CH7_animate-svg-fill-357 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-357 {
  animation: CH7_animate-svg-stroke-357 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.65s both, CH7_animate-svg-fill-357 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.65s both;
}

@keyframes CH7_animate-svg-stroke-358 {
  0% {
    stroke-dashoffset: 54.0905990601px;
    stroke-dasharray: 54.0905990601px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0905990601px;
  }
}
@keyframes CH7_animate-svg-fill-358 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-358 {
  animation: CH7_animate-svg-stroke-358 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.675s both, CH7_animate-svg-fill-358 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.675s both;
}

@keyframes CH7_animate-svg-stroke-359 {
  0% {
    stroke-dashoffset: 54.0906333923px;
    stroke-dasharray: 54.0906333923px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0906333923px;
  }
}
@keyframes CH7_animate-svg-fill-359 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-359 {
  animation: CH7_animate-svg-stroke-359 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.7s both, CH7_animate-svg-fill-359 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.7s both;
}

@keyframes CH7_animate-svg-stroke-360 {
  0% {
    stroke-dashoffset: 54.1028366089px;
    stroke-dasharray: 54.1028366089px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028366089px;
  }
}
@keyframes CH7_animate-svg-fill-360 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-360 {
  animation: CH7_animate-svg-stroke-360 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.725s both, CH7_animate-svg-fill-360 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.725s both;
}

@keyframes CH7_animate-svg-stroke-361 {
  0% {
    stroke-dashoffset: 54.1028366089px;
    stroke-dasharray: 54.1028366089px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028366089px;
  }
}
@keyframes CH7_animate-svg-fill-361 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-361 {
  animation: CH7_animate-svg-stroke-361 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.75s both, CH7_animate-svg-fill-361 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.75s both;
}

@keyframes CH7_animate-svg-stroke-362 {
  0% {
    stroke-dashoffset: 54.1028671265px;
    stroke-dasharray: 54.1028671265px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028671265px;
  }
}
@keyframes CH7_animate-svg-fill-362 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-362 {
  animation: CH7_animate-svg-stroke-362 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.775s both, CH7_animate-svg-fill-362 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.775s both;
}

@keyframes CH7_animate-svg-stroke-363 {
  0% {
    stroke-dashoffset: 54.1008377075px;
    stroke-dasharray: 54.1008377075px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008377075px;
  }
}
@keyframes CH7_animate-svg-fill-363 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-363 {
  animation: CH7_animate-svg-stroke-363 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.8s both, CH7_animate-svg-fill-363 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.8s both;
}

@keyframes CH7_animate-svg-stroke-364 {
  0% {
    stroke-dashoffset: 54.1008415222px;
    stroke-dasharray: 54.1008415222px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008415222px;
  }
}
@keyframes CH7_animate-svg-fill-364 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-364 {
  animation: CH7_animate-svg-stroke-364 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.825s both, CH7_animate-svg-fill-364 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.825s both;
}

@keyframes CH7_animate-svg-stroke-365 {
  0% {
    stroke-dashoffset: 54.1008834839px;
    stroke-dasharray: 54.1008834839px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008834839px;
  }
}
@keyframes CH7_animate-svg-fill-365 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-365 {
  animation: CH7_animate-svg-stroke-365 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.85s both, CH7_animate-svg-fill-365 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.85s both;
}

@keyframes CH7_animate-svg-stroke-366 {
  0% {
    stroke-dashoffset: 54.102848053px;
    stroke-dasharray: 54.102848053px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102848053px;
  }
}
@keyframes CH7_animate-svg-fill-366 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-366 {
  animation: CH7_animate-svg-stroke-366 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.875s both, CH7_animate-svg-fill-366 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.875s both;
}

@keyframes CH7_animate-svg-stroke-367 {
  0% {
    stroke-dashoffset: 54.102848053px;
    stroke-dasharray: 54.102848053px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102848053px;
  }
}
@keyframes CH7_animate-svg-fill-367 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-367 {
  animation: CH7_animate-svg-stroke-367 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.9s both, CH7_animate-svg-fill-367 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.9s both;
}

@keyframes CH7_animate-svg-stroke-368 {
  0% {
    stroke-dashoffset: 54.1028251648px;
    stroke-dasharray: 54.1028251648px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028251648px;
  }
}
@keyframes CH7_animate-svg-fill-368 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-368 {
  animation: CH7_animate-svg-stroke-368 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.925s both, CH7_animate-svg-fill-368 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.925s both;
}

@keyframes CH7_animate-svg-stroke-369 {
  0% {
    stroke-dashoffset: 54.0906486511px;
    stroke-dasharray: 54.0906486511px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0906486511px;
  }
}
@keyframes CH7_animate-svg-fill-369 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-369 {
  animation: CH7_animate-svg-stroke-369 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.95s both, CH7_animate-svg-fill-369 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.95s both;
}

@keyframes CH7_animate-svg-stroke-370 {
  0% {
    stroke-dashoffset: 54.0906524658px;
    stroke-dasharray: 54.0906524658px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0906524658px;
  }
}
@keyframes CH7_animate-svg-fill-370 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-370 {
  animation: CH7_animate-svg-stroke-370 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.975s both, CH7_animate-svg-fill-370 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 9.975s both;
}

@keyframes CH7_animate-svg-stroke-371 {
  0% {
    stroke-dashoffset: 54.0906486511px;
    stroke-dasharray: 54.0906486511px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0906486511px;
  }
}
@keyframes CH7_animate-svg-fill-371 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-371 {
  animation: CH7_animate-svg-stroke-371 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10s both, CH7_animate-svg-fill-371 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10s both;
}

@keyframes CH7_animate-svg-stroke-372 {
  0% {
    stroke-dashoffset: 54.1028823853px;
    stroke-dasharray: 54.1028823853px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028823853px;
  }
}
@keyframes CH7_animate-svg-fill-372 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-372 {
  animation: CH7_animate-svg-stroke-372 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.025s both, CH7_animate-svg-fill-372 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.025s both;
}

@keyframes CH7_animate-svg-stroke-373 {
  0% {
    stroke-dashoffset: 54.1028862px;
    stroke-dasharray: 54.1028862px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028862px;
  }
}
@keyframes CH7_animate-svg-fill-373 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-373 {
  animation: CH7_animate-svg-stroke-373 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.05s both, CH7_animate-svg-fill-373 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.05s both;
}

@keyframes CH7_animate-svg-stroke-374 {
  0% {
    stroke-dashoffset: 54.1028823853px;
    stroke-dasharray: 54.1028823853px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028823853px;
  }
}
@keyframes CH7_animate-svg-fill-374 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-374 {
  animation: CH7_animate-svg-stroke-374 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.075s both, CH7_animate-svg-fill-374 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.075s both;
}

@keyframes CH7_animate-svg-stroke-375 {
  0% {
    stroke-dashoffset: 54.1008987427px;
    stroke-dasharray: 54.1008987427px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008987427px;
  }
}
@keyframes CH7_animate-svg-fill-375 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-375 {
  animation: CH7_animate-svg-stroke-375 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.1s both, CH7_animate-svg-fill-375 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.1s both;
}

@keyframes CH7_animate-svg-stroke-376 {
  0% {
    stroke-dashoffset: 54.1008987427px;
    stroke-dasharray: 54.1008987427px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008987427px;
  }
}
@keyframes CH7_animate-svg-fill-376 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-376 {
  animation: CH7_animate-svg-stroke-376 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.125s both, CH7_animate-svg-fill-376 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.125s both;
}

@keyframes CH7_animate-svg-stroke-377 {
  0% {
    stroke-dashoffset: 54.1008987427px;
    stroke-dasharray: 54.1008987427px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008987427px;
  }
}
@keyframes CH7_animate-svg-fill-377 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-377 {
  animation: CH7_animate-svg-stroke-377 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.15s both, CH7_animate-svg-fill-377 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.15s both;
}

@keyframes CH7_animate-svg-stroke-378 {
  0% {
    stroke-dashoffset: 364.1209106445px;
    stroke-dasharray: 364.1209106445px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 364.1209106445px;
  }
}
@keyframes CH7_animate-svg-fill-378 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-378 {
  animation: CH7_animate-svg-stroke-378 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.175s both, CH7_animate-svg-fill-378 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.175s both;
}

@keyframes CH7_animate-svg-stroke-379 {
  0% {
    stroke-dashoffset: 364.1211853027px;
    stroke-dasharray: 364.1211853027px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 364.1211853027px;
  }
}
@keyframes CH7_animate-svg-fill-379 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-379 {
  animation: CH7_animate-svg-stroke-379 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.2s both, CH7_animate-svg-fill-379 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.2s both;
}

@keyframes CH7_animate-svg-stroke-380 {
  0% {
    stroke-dashoffset: 364.1212463379px;
    stroke-dasharray: 364.1212463379px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 364.1212463379px;
  }
}
@keyframes CH7_animate-svg-fill-380 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-380 {
  animation: CH7_animate-svg-stroke-380 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.225s both, CH7_animate-svg-fill-380 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.225s both;
}

@keyframes CH7_animate-svg-stroke-381 {
  0% {
    stroke-dashoffset: 6363.8266601563px;
    stroke-dasharray: 6363.8266601563px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6363.8266601563px;
  }
}
@keyframes CH7_animate-svg-fill-381 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-381 {
  animation: CH7_animate-svg-stroke-381 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.25s both, CH7_animate-svg-fill-381 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.25s both;
}

@keyframes CH7_animate-svg-stroke-382 {
  0% {
    stroke-dashoffset: 1080.1723632813px;
    stroke-dasharray: 1080.1723632813px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1080.1723632813px;
  }
}
@keyframes CH7_animate-svg-fill-382 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-382 {
  animation: CH7_animate-svg-stroke-382 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.275s both, CH7_animate-svg-fill-382 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.275s both;
}

@keyframes CH7_animate-svg-stroke-383 {
  0% {
    stroke-dashoffset: 288.0575256348px;
    stroke-dasharray: 288.0575256348px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 288.0575256348px;
  }
}
@keyframes CH7_animate-svg-fill-383 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-383 {
  animation: CH7_animate-svg-stroke-383 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.3s both, CH7_animate-svg-fill-383 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.3s both;
}

@keyframes CH7_animate-svg-stroke-384 {
  0% {
    stroke-dashoffset: 5.2903769016px;
    stroke-dasharray: 5.2903769016px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2903769016px;
  }
}
@keyframes CH7_animate-svg-fill-384 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-384 {
  animation: CH7_animate-svg-stroke-384 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.325s both, CH7_animate-svg-fill-384 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.325s both;
}

@keyframes CH7_animate-svg-stroke-385 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-385 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-385 {
  animation: CH7_animate-svg-stroke-385 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.35s both, CH7_animate-svg-fill-385 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.35s both;
}

@keyframes CH7_animate-svg-stroke-386 {
  0% {
    stroke-dashoffset: 3.9227753878px;
    stroke-dasharray: 3.9227753878px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.9227753878px;
  }
}
@keyframes CH7_animate-svg-fill-386 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-386 {
  animation: CH7_animate-svg-stroke-386 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.375s both, CH7_animate-svg-fill-386 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.375s both;
}

@keyframes CH7_animate-svg-stroke-387 {
  0% {
    stroke-dashoffset: 5.1987850666px;
    stroke-dasharray: 5.1987850666px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.1987850666px;
  }
}
@keyframes CH7_animate-svg-fill-387 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-387 {
  animation: CH7_animate-svg-stroke-387 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.4s both, CH7_animate-svg-fill-387 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.4s both;
}

@keyframes CH7_animate-svg-stroke-388 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-388 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-388 {
  animation: CH7_animate-svg-stroke-388 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.425s both, CH7_animate-svg-fill-388 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.425s both;
}

@keyframes CH7_animate-svg-stroke-389 {
  0% {
    stroke-dashoffset: 3.9227753878px;
    stroke-dasharray: 3.9227753878px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.9227753878px;
  }
}
@keyframes CH7_animate-svg-fill-389 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-389 {
  animation: CH7_animate-svg-stroke-389 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.45s both, CH7_animate-svg-fill-389 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.45s both;
}

@keyframes CH7_animate-svg-stroke-390 {
  0% {
    stroke-dashoffset: 6.5380234718px;
    stroke-dasharray: 6.5380234718px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.5380234718px;
  }
}
@keyframes CH7_animate-svg-fill-390 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-390 {
  animation: CH7_animate-svg-stroke-390 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.475s both, CH7_animate-svg-fill-390 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.475s both;
}

@keyframes CH7_animate-svg-stroke-391 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH7_animate-svg-fill-391 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-391 {
  animation: CH7_animate-svg-stroke-391 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.5s both, CH7_animate-svg-fill-391 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.5s both;
}

@keyframes CH7_animate-svg-stroke-392 {
  0% {
    stroke-dashoffset: 4.1381387711px;
    stroke-dasharray: 4.1381387711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.1381387711px;
  }
}
@keyframes CH7_animate-svg-fill-392 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-392 {
  animation: CH7_animate-svg-stroke-392 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.525s both, CH7_animate-svg-fill-392 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.525s both;
}

@keyframes CH7_animate-svg-stroke-393 {
  0% {
    stroke-dashoffset: 5.362503767px;
    stroke-dasharray: 5.362503767px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.362503767px;
  }
}
@keyframes CH7_animate-svg-fill-393 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-393 {
  animation: CH7_animate-svg-stroke-393 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.55s both, CH7_animate-svg-fill-393 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.55s both;
}

@keyframes CH7_animate-svg-stroke-394 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-394 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-394 {
  animation: CH7_animate-svg-stroke-394 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.575s both, CH7_animate-svg-fill-394 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.575s both;
}

@keyframes CH7_animate-svg-stroke-395 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH7_animate-svg-fill-395 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-395 {
  animation: CH7_animate-svg-stroke-395 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.6s both, CH7_animate-svg-fill-395 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.6s both;
}

@keyframes CH7_animate-svg-stroke-396 {
  0% {
    stroke-dashoffset: 6.0577549934px;
    stroke-dasharray: 6.0577549934px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.0577549934px;
  }
}
@keyframes CH7_animate-svg-fill-396 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-396 {
  animation: CH7_animate-svg-stroke-396 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.625s both, CH7_animate-svg-fill-396 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.625s both;
}

@keyframes CH7_animate-svg-stroke-398 {
  0% {
    stroke-dashoffset: 976.9063720703px;
    stroke-dasharray: 976.9063720703px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 976.9063720703px;
  }
}
@keyframes CH7_animate-svg-fill-398 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-398 {
  animation: CH7_animate-svg-stroke-398 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.675s both, CH7_animate-svg-fill-398 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.675s both;
}

@keyframes CH7_animate-svg-stroke-399 {
  0% {
    stroke-dashoffset: 183.1056213379px;
    stroke-dasharray: 183.1056213379px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 183.1056213379px;
  }
}
@keyframes CH7_animate-svg-fill-399 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-399 {
  animation: CH7_animate-svg-stroke-399 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.7s both, CH7_animate-svg-fill-399 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.7s both;
}

@keyframes CH7_animate-svg-stroke-400 {
  0% {
    stroke-dashoffset: 976.9059448242px;
    stroke-dasharray: 976.9059448242px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 976.9059448242px;
  }
}
@keyframes CH7_animate-svg-fill-400 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-400 {
  animation: CH7_animate-svg-stroke-400 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.725s both, CH7_animate-svg-fill-400 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.725s both;
}

@keyframes CH7_animate-svg-stroke-401 {
  0% {
    stroke-dashoffset: 183.1054534912px;
    stroke-dasharray: 183.1054534912px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 183.1054534912px;
  }
}
@keyframes CH7_animate-svg-fill-401 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-401 {
  animation: CH7_animate-svg-stroke-401 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.75s both, CH7_animate-svg-fill-401 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.75s both;
}

@keyframes CH7_animate-svg-stroke-402 {
  0% {
    stroke-dashoffset: 976.9064941406px;
    stroke-dasharray: 976.9064941406px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 976.9064941406px;
  }
}
@keyframes CH7_animate-svg-fill-402 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-402 {
  animation: CH7_animate-svg-stroke-402 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.775s both, CH7_animate-svg-fill-402 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.775s both;
}

@keyframes CH7_animate-svg-stroke-403 {
  0% {
    stroke-dashoffset: 183.10546875px;
    stroke-dasharray: 183.10546875px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 183.10546875px;
  }
}
@keyframes CH7_animate-svg-fill-403 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-403 {
  animation: CH7_animate-svg-stroke-403 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.8s both, CH7_animate-svg-fill-403 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.8s both;
}

@keyframes CH7_animate-svg-stroke-404 {
  0% {
    stroke-dashoffset: 785.7643432617px;
    stroke-dasharray: 785.7643432617px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 785.7643432617px;
  }
}
@keyframes CH7_animate-svg-fill-404 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #94c1ff;
  }
}
.L7_chart-404 {
  animation: CH7_animate-svg-stroke-404 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.825s both, CH7_animate-svg-fill-404 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.825s both;
}

@keyframes CH7_animate-svg-stroke-405 {
  0% {
    stroke-dashoffset: 543.8131103516px;
    stroke-dasharray: 543.8131103516px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 543.8131103516px;
  }
}
@keyframes CH7_animate-svg-fill-405 {
  0% {
    fill: transparent;
  }
  100% {
    fill: white;
  }
}
.L7_chart-405 {
  animation: CH7_animate-svg-stroke-405 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.85s both, CH7_animate-svg-fill-405 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.85s both;
}

@keyframes CH7_animate-svg-stroke-406 {
  0% {
    stroke-dashoffset: 129.1368713379px;
    stroke-dasharray: 129.1368713379px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 129.1368713379px;
  }
}
@keyframes CH7_animate-svg-fill-406 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #d7e9ff;
  }
}
.L7_chart-406 {
  animation: CH7_animate-svg-stroke-406 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.875s both, CH7_animate-svg-fill-406 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.875s both;
}

@keyframes CH7_animate-svg-stroke-407 {
  0% {
    stroke-dashoffset: 54.090385437px;
    stroke-dasharray: 54.090385437px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.090385437px;
  }
}
@keyframes CH7_animate-svg-fill-407 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-407 {
  animation: CH7_animate-svg-stroke-407 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.9s both, CH7_animate-svg-fill-407 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.9s both;
}

@keyframes CH7_animate-svg-stroke-408 {
  0% {
    stroke-dashoffset: 54.0906295776px;
    stroke-dasharray: 54.0906295776px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0906295776px;
  }
}
@keyframes CH7_animate-svg-fill-408 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-408 {
  animation: CH7_animate-svg-stroke-408 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.925s both, CH7_animate-svg-fill-408 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.925s both;
}

@keyframes CH7_animate-svg-stroke-409 {
  0% {
    stroke-dashoffset: 54.090637207px;
    stroke-dasharray: 54.090637207px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.090637207px;
  }
}
@keyframes CH7_animate-svg-fill-409 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-409 {
  animation: CH7_animate-svg-stroke-409 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.95s both, CH7_animate-svg-fill-409 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.95s both;
}

@keyframes CH7_animate-svg-stroke-410 {
  0% {
    stroke-dashoffset: 54.102645874px;
    stroke-dasharray: 54.102645874px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102645874px;
  }
}
@keyframes CH7_animate-svg-fill-410 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-410 {
  animation: CH7_animate-svg-stroke-410 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.975s both, CH7_animate-svg-fill-410 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 10.975s both;
}

@keyframes CH7_animate-svg-stroke-411 {
  0% {
    stroke-dashoffset: 54.1028671265px;
    stroke-dasharray: 54.1028671265px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028671265px;
  }
}
@keyframes CH7_animate-svg-fill-411 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-411 {
  animation: CH7_animate-svg-stroke-411 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11s both, CH7_animate-svg-fill-411 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11s both;
}

@keyframes CH7_animate-svg-stroke-412 {
  0% {
    stroke-dashoffset: 54.1028709412px;
    stroke-dasharray: 54.1028709412px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028709412px;
  }
}
@keyframes CH7_animate-svg-fill-412 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-412 {
  animation: CH7_animate-svg-stroke-412 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.025s both, CH7_animate-svg-fill-412 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.025s both;
}

@keyframes CH7_animate-svg-stroke-413 {
  0% {
    stroke-dashoffset: 54.1006622314px;
    stroke-dasharray: 54.1006622314px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1006622314px;
  }
}
@keyframes CH7_animate-svg-fill-413 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-413 {
  animation: CH7_animate-svg-stroke-413 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.05s both, CH7_animate-svg-fill-413 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.05s both;
}

@keyframes CH7_animate-svg-stroke-414 {
  0% {
    stroke-dashoffset: 54.1008796692px;
    stroke-dasharray: 54.1008796692px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008796692px;
  }
}
@keyframes CH7_animate-svg-fill-414 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-414 {
  animation: CH7_animate-svg-stroke-414 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.075s both, CH7_animate-svg-fill-414 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.075s both;
}

@keyframes CH7_animate-svg-stroke-415 {
  0% {
    stroke-dashoffset: 54.1008834839px;
    stroke-dasharray: 54.1008834839px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008834839px;
  }
}
@keyframes CH7_animate-svg-fill-415 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-415 {
  animation: CH7_animate-svg-stroke-415 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.1s both, CH7_animate-svg-fill-415 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.1s both;
}

@keyframes CH7_animate-svg-stroke-416 {
  0% {
    stroke-dashoffset: 54.1024742126px;
    stroke-dasharray: 54.1024742126px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1024742126px;
  }
}
@keyframes CH7_animate-svg-fill-416 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-416 {
  animation: CH7_animate-svg-stroke-416 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.125s both, CH7_animate-svg-fill-416 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.125s both;
}

@keyframes CH7_animate-svg-stroke-417 {
  0% {
    stroke-dashoffset: 54.102684021px;
    stroke-dasharray: 54.102684021px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102684021px;
  }
}
@keyframes CH7_animate-svg-fill-417 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-417 {
  animation: CH7_animate-svg-stroke-417 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.15s both, CH7_animate-svg-fill-417 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.15s both;
}

@keyframes CH7_animate-svg-stroke-418 {
  0% {
    stroke-dashoffset: 54.102684021px;
    stroke-dasharray: 54.102684021px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102684021px;
  }
}
@keyframes CH7_animate-svg-fill-418 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-418 {
  animation: CH7_animate-svg-stroke-418 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.175s both, CH7_animate-svg-fill-418 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.175s both;
}

@keyframes CH7_animate-svg-stroke-419 {
  0% {
    stroke-dashoffset: 54.102684021px;
    stroke-dasharray: 54.102684021px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102684021px;
  }
}
@keyframes CH7_animate-svg-fill-419 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-419 {
  animation: CH7_animate-svg-stroke-419 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.2s both, CH7_animate-svg-fill-419 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.2s both;
}

@keyframes CH7_animate-svg-stroke-420 {
  0% {
    stroke-dashoffset: 54.1028938293px;
    stroke-dasharray: 54.1028938293px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028938293px;
  }
}
@keyframes CH7_animate-svg-fill-420 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-420 {
  animation: CH7_animate-svg-stroke-420 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.225s both, CH7_animate-svg-fill-420 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.225s both;
}

@keyframes CH7_animate-svg-stroke-421 {
  0% {
    stroke-dashoffset: 54.1028900146px;
    stroke-dasharray: 54.1028900146px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028900146px;
  }
}
@keyframes CH7_animate-svg-fill-421 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-421 {
  animation: CH7_animate-svg-stroke-421 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.25s both, CH7_animate-svg-fill-421 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.25s both;
}

@keyframes CH7_animate-svg-stroke-422 {
  0% {
    stroke-dashoffset: 54.0905990601px;
    stroke-dasharray: 54.0905990601px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0905990601px;
  }
}
@keyframes CH7_animate-svg-fill-422 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-422 {
  animation: CH7_animate-svg-stroke-422 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.275s both, CH7_animate-svg-fill-422 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.275s both;
}

@keyframes CH7_animate-svg-stroke-423 {
  0% {
    stroke-dashoffset: 54.0905990601px;
    stroke-dasharray: 54.0905990601px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0905990601px;
  }
}
@keyframes CH7_animate-svg-fill-423 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-423 {
  animation: CH7_animate-svg-stroke-423 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.3s both, CH7_animate-svg-fill-423 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.3s both;
}

@keyframes CH7_animate-svg-stroke-424 {
  0% {
    stroke-dashoffset: 54.0906333923px;
    stroke-dasharray: 54.0906333923px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0906333923px;
  }
}
@keyframes CH7_animate-svg-fill-424 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-424 {
  animation: CH7_animate-svg-stroke-424 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.325s both, CH7_animate-svg-fill-424 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.325s both;
}

@keyframes CH7_animate-svg-stroke-425 {
  0% {
    stroke-dashoffset: 54.1028366089px;
    stroke-dasharray: 54.1028366089px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028366089px;
  }
}
@keyframes CH7_animate-svg-fill-425 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-425 {
  animation: CH7_animate-svg-stroke-425 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.35s both, CH7_animate-svg-fill-425 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.35s both;
}

@keyframes CH7_animate-svg-stroke-426 {
  0% {
    stroke-dashoffset: 54.1028366089px;
    stroke-dasharray: 54.1028366089px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028366089px;
  }
}
@keyframes CH7_animate-svg-fill-426 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-426 {
  animation: CH7_animate-svg-stroke-426 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.375s both, CH7_animate-svg-fill-426 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.375s both;
}

@keyframes CH7_animate-svg-stroke-427 {
  0% {
    stroke-dashoffset: 54.1028671265px;
    stroke-dasharray: 54.1028671265px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028671265px;
  }
}
@keyframes CH7_animate-svg-fill-427 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-427 {
  animation: CH7_animate-svg-stroke-427 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.4s both, CH7_animate-svg-fill-427 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.4s both;
}

@keyframes CH7_animate-svg-stroke-428 {
  0% {
    stroke-dashoffset: 54.1008377075px;
    stroke-dasharray: 54.1008377075px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008377075px;
  }
}
@keyframes CH7_animate-svg-fill-428 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-428 {
  animation: CH7_animate-svg-stroke-428 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.425s both, CH7_animate-svg-fill-428 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.425s both;
}

@keyframes CH7_animate-svg-stroke-429 {
  0% {
    stroke-dashoffset: 54.1008415222px;
    stroke-dasharray: 54.1008415222px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008415222px;
  }
}
@keyframes CH7_animate-svg-fill-429 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-429 {
  animation: CH7_animate-svg-stroke-429 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.45s both, CH7_animate-svg-fill-429 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.45s both;
}

@keyframes CH7_animate-svg-stroke-430 {
  0% {
    stroke-dashoffset: 54.1008834839px;
    stroke-dasharray: 54.1008834839px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008834839px;
  }
}
@keyframes CH7_animate-svg-fill-430 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-430 {
  animation: CH7_animate-svg-stroke-430 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.475s both, CH7_animate-svg-fill-430 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.475s both;
}

@keyframes CH7_animate-svg-stroke-431 {
  0% {
    stroke-dashoffset: 54.102848053px;
    stroke-dasharray: 54.102848053px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102848053px;
  }
}
@keyframes CH7_animate-svg-fill-431 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-431 {
  animation: CH7_animate-svg-stroke-431 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.5s both, CH7_animate-svg-fill-431 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.5s both;
}

@keyframes CH7_animate-svg-stroke-432 {
  0% {
    stroke-dashoffset: 54.102848053px;
    stroke-dasharray: 54.102848053px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.102848053px;
  }
}
@keyframes CH7_animate-svg-fill-432 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-432 {
  animation: CH7_animate-svg-stroke-432 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.525s both, CH7_animate-svg-fill-432 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.525s both;
}

@keyframes CH7_animate-svg-stroke-433 {
  0% {
    stroke-dashoffset: 54.1028251648px;
    stroke-dasharray: 54.1028251648px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028251648px;
  }
}
@keyframes CH7_animate-svg-fill-433 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-433 {
  animation: CH7_animate-svg-stroke-433 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.55s both, CH7_animate-svg-fill-433 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.55s both;
}

@keyframes CH7_animate-svg-stroke-434 {
  0% {
    stroke-dashoffset: 54.0906486511px;
    stroke-dasharray: 54.0906486511px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0906486511px;
  }
}
@keyframes CH7_animate-svg-fill-434 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-434 {
  animation: CH7_animate-svg-stroke-434 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.575s both, CH7_animate-svg-fill-434 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.575s both;
}

@keyframes CH7_animate-svg-stroke-435 {
  0% {
    stroke-dashoffset: 54.0906524658px;
    stroke-dasharray: 54.0906524658px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0906524658px;
  }
}
@keyframes CH7_animate-svg-fill-435 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-435 {
  animation: CH7_animate-svg-stroke-435 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.6s both, CH7_animate-svg-fill-435 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.6s both;
}

@keyframes CH7_animate-svg-stroke-436 {
  0% {
    stroke-dashoffset: 54.0906486511px;
    stroke-dasharray: 54.0906486511px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.0906486511px;
  }
}
@keyframes CH7_animate-svg-fill-436 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-436 {
  animation: CH7_animate-svg-stroke-436 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.625s both, CH7_animate-svg-fill-436 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.625s both;
}

@keyframes CH7_animate-svg-stroke-437 {
  0% {
    stroke-dashoffset: 54.1028823853px;
    stroke-dasharray: 54.1028823853px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028823853px;
  }
}
@keyframes CH7_animate-svg-fill-437 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-437 {
  animation: CH7_animate-svg-stroke-437 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.65s both, CH7_animate-svg-fill-437 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.65s both;
}

@keyframes CH7_animate-svg-stroke-438 {
  0% {
    stroke-dashoffset: 54.1028862px;
    stroke-dasharray: 54.1028862px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028862px;
  }
}
@keyframes CH7_animate-svg-fill-438 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-438 {
  animation: CH7_animate-svg-stroke-438 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.675s both, CH7_animate-svg-fill-438 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.675s both;
}

@keyframes CH7_animate-svg-stroke-439 {
  0% {
    stroke-dashoffset: 54.1028823853px;
    stroke-dasharray: 54.1028823853px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1028823853px;
  }
}
@keyframes CH7_animate-svg-fill-439 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-439 {
  animation: CH7_animate-svg-stroke-439 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.7s both, CH7_animate-svg-fill-439 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.7s both;
}

@keyframes CH7_animate-svg-stroke-440 {
  0% {
    stroke-dashoffset: 54.1008987427px;
    stroke-dasharray: 54.1008987427px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008987427px;
  }
}
@keyframes CH7_animate-svg-fill-440 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-440 {
  animation: CH7_animate-svg-stroke-440 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.725s both, CH7_animate-svg-fill-440 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.725s both;
}

@keyframes CH7_animate-svg-stroke-441 {
  0% {
    stroke-dashoffset: 54.1008987427px;
    stroke-dasharray: 54.1008987427px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008987427px;
  }
}
@keyframes CH7_animate-svg-fill-441 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-441 {
  animation: CH7_animate-svg-stroke-441 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.75s both, CH7_animate-svg-fill-441 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.75s both;
}

@keyframes CH7_animate-svg-stroke-442 {
  0% {
    stroke-dashoffset: 54.1008987427px;
    stroke-dasharray: 54.1008987427px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 54.1008987427px;
  }
}
@keyframes CH7_animate-svg-fill-442 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-442 {
  animation: CH7_animate-svg-stroke-442 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.775s both, CH7_animate-svg-fill-442 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.775s both;
}

@keyframes CH7_animate-svg-stroke-443 {
  0% {
    stroke-dashoffset: 364.1209106445px;
    stroke-dasharray: 364.1209106445px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 364.1209106445px;
  }
}
@keyframes CH7_animate-svg-fill-443 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-443 {
  animation: CH7_animate-svg-stroke-443 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.8s both, CH7_animate-svg-fill-443 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.8s both;
}

@keyframes CH7_animate-svg-stroke-444 {
  0% {
    stroke-dashoffset: 364.1211853027px;
    stroke-dasharray: 364.1211853027px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 364.1211853027px;
  }
}
@keyframes CH7_animate-svg-fill-444 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-444 {
  animation: CH7_animate-svg-stroke-444 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.825s both, CH7_animate-svg-fill-444 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.825s both;
}

@keyframes CH7_animate-svg-stroke-445 {
  0% {
    stroke-dashoffset: 364.1212463379px;
    stroke-dasharray: 364.1212463379px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 364.1212463379px;
  }
}
@keyframes CH7_animate-svg-fill-445 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-445 {
  animation: CH7_animate-svg-stroke-445 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.85s both, CH7_animate-svg-fill-445 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.85s both;
}

@keyframes CH7_animate-svg-stroke-446 {
  0% {
    stroke-dashoffset: 6363.8266601563px;
    stroke-dasharray: 6363.8266601563px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6363.8266601563px;
  }
}
@keyframes CH7_animate-svg-fill-446 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-446 {
  animation: CH7_animate-svg-stroke-446 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.875s both, CH7_animate-svg-fill-446 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.875s both;
}

@keyframes CH7_animate-svg-stroke-447 {
  0% {
    stroke-dashoffset: 1080.1723632813px;
    stroke-dasharray: 1080.1723632813px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1080.1723632813px;
  }
}
@keyframes CH7_animate-svg-fill-447 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-447 {
  animation: CH7_animate-svg-stroke-447 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.9s both, CH7_animate-svg-fill-447 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.9s both;
}

@keyframes CH7_animate-svg-stroke-448 {
  0% {
    stroke-dashoffset: 288.0575256348px;
    stroke-dasharray: 288.0575256348px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 288.0575256348px;
  }
}
@keyframes CH7_animate-svg-fill-448 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #116fff;
  }
}
.L7_chart-448 {
  animation: CH7_animate-svg-stroke-448 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.925s both, CH7_animate-svg-fill-448 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.925s both;
}

@keyframes CH7_animate-svg-stroke-449 {
  0% {
    stroke-dashoffset: 5.2903769016px;
    stroke-dasharray: 5.2903769016px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2903769016px;
  }
}
@keyframes CH7_animate-svg-fill-449 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-449 {
  animation: CH7_animate-svg-stroke-449 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.95s both, CH7_animate-svg-fill-449 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.95s both;
}

@keyframes CH7_animate-svg-stroke-450 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-450 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-450 {
  animation: CH7_animate-svg-stroke-450 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.975s both, CH7_animate-svg-fill-450 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11.975s both;
}

@keyframes CH7_animate-svg-stroke-451 {
  0% {
    stroke-dashoffset: 3.9227753878px;
    stroke-dasharray: 3.9227753878px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.9227753878px;
  }
}
@keyframes CH7_animate-svg-fill-451 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-451 {
  animation: CH7_animate-svg-stroke-451 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12s both, CH7_animate-svg-fill-451 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12s both;
}

@keyframes CH7_animate-svg-stroke-452 {
  0% {
    stroke-dashoffset: 5.1987850666px;
    stroke-dasharray: 5.1987850666px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.1987850666px;
  }
}
@keyframes CH7_animate-svg-fill-452 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-452 {
  animation: CH7_animate-svg-stroke-452 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.025s both, CH7_animate-svg-fill-452 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.025s both;
}

@keyframes CH7_animate-svg-stroke-453 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-453 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-453 {
  animation: CH7_animate-svg-stroke-453 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.05s both, CH7_animate-svg-fill-453 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.05s both;
}

@keyframes CH7_animate-svg-stroke-454 {
  0% {
    stroke-dashoffset: 3.9227753878px;
    stroke-dasharray: 3.9227753878px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 3.9227753878px;
  }
}
@keyframes CH7_animate-svg-fill-454 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-454 {
  animation: CH7_animate-svg-stroke-454 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.075s both, CH7_animate-svg-fill-454 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.075s both;
}

@keyframes CH7_animate-svg-stroke-455 {
  0% {
    stroke-dashoffset: 6.5380234718px;
    stroke-dasharray: 6.5380234718px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.5380234718px;
  }
}
@keyframes CH7_animate-svg-fill-455 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-455 {
  animation: CH7_animate-svg-stroke-455 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.1s both, CH7_animate-svg-fill-455 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.1s both;
}

@keyframes CH7_animate-svg-stroke-456 {
  0% {
    stroke-dashoffset: 5.2175045013px;
    stroke-dasharray: 5.2175045013px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2175045013px;
  }
}
@keyframes CH7_animate-svg-fill-456 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-456 {
  animation: CH7_animate-svg-stroke-456 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.125s both, CH7_animate-svg-fill-456 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.125s both;
}

@keyframes CH7_animate-svg-stroke-457 {
  0% {
    stroke-dashoffset: 4.1381387711px;
    stroke-dasharray: 4.1381387711px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.1381387711px;
  }
}
@keyframes CH7_animate-svg-fill-457 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-457 {
  animation: CH7_animate-svg-stroke-457 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.15s both, CH7_animate-svg-fill-457 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.15s both;
}

@keyframes CH7_animate-svg-stroke-458 {
  0% {
    stroke-dashoffset: 5.362503767px;
    stroke-dasharray: 5.362503767px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.362503767px;
  }
}
@keyframes CH7_animate-svg-fill-458 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-458 {
  animation: CH7_animate-svg-stroke-458 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.175s both, CH7_animate-svg-fill-458 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.175s both;
}

@keyframes CH7_animate-svg-stroke-459 {
  0% {
    stroke-dashoffset: 5.2262620926px;
    stroke-dasharray: 5.2262620926px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 5.2262620926px;
  }
}
@keyframes CH7_animate-svg-fill-459 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-459 {
  animation: CH7_animate-svg-stroke-459 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.2s both, CH7_animate-svg-fill-459 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.2s both;
}

@keyframes CH7_animate-svg-stroke-460 {
  0% {
    stroke-dashoffset: 4.5078258514px;
    stroke-dasharray: 4.5078258514px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 4.5078258514px;
  }
}
@keyframes CH7_animate-svg-fill-460 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-460 {
  animation: CH7_animate-svg-stroke-460 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.225s both, CH7_animate-svg-fill-460 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.225s both;
}

@keyframes CH7_animate-svg-stroke-461 {
  0% {
    stroke-dashoffset: 6.0577549934px;
    stroke-dasharray: 6.0577549934px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 6.0577549934px;
  }
}
@keyframes CH7_animate-svg-fill-461 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #185de3;
  }
}
.L7_chart-461 {
  animation: CH7_animate-svg-stroke-461 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.25s both, CH7_animate-svg-fill-461 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 12.25s both;
}

@keyframes CH7_animate-svg-stroke-463 {
  0% {
    stroke-dashoffset: 1354.8172607422px;
    stroke-dasharray: 1354.8172607422px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1354.8172607422px;
  }
}
.L7_chart-463 {
  animation: CH7_animate-svg-stroke-463 10s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both, CH7_animate-svg-fill-463 10s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@keyframes CH7_animate-svg-stroke-464 {
  0% {
    stroke-dashoffset: 1174.6009521484px;
    stroke-dasharray: 1174.6009521484px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1174.6009521484px;
  }
}
.L7_chart-464 {
  animation: CH7_animate-svg-stroke-464 10s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both, CH7_animate-svg-fill-464 10s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@keyframes CH7_animate-svg-stroke-465 {
  0% {
    stroke-dashoffset: 30.2743338823px;
    stroke-dasharray: 30.2743338823px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 30.2743338823px;
  }
}
@keyframes CH7_animate-svg-fill-465 {
  0% {
    fill: transparent;
  }
  100% {
    fill: #ec7575;
  }
}
.L7_chart-465 {
  animation: CH7_animate-svg-stroke-465 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11s both, CH7_animate-svg-fill-465 0.15s cubic-bezier(0.47, 0, 0.745, 0.715) 11s both;
}

@keyframes CH7_animate-svg-stroke-466 {
  0% {
    stroke-dashoffset: 1170.318359375px;
    stroke-dasharray: 1170.318359375px;
  }
  100% {
    stroke-dashoffset: 0;
    stroke-dasharray: 1170.318359375px;
  }
}
.L7_chart-466 {
  animation: CH7_animate-svg-stroke-466 10s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both, CH7_animate-svg-fill-466 10s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

/*# sourceMappingURL=global.Style.css.map */
