.loader-inner {
  bottom: 0;
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}

.loader-line-wrap {
  animation: spin 2000ms cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
  box-sizing: border-box;
  height: 50px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform-origin: 50% 100%;
  width: 100px;
}
.loader-line {
  border: 4px solid transparent;
  border-radius: 100%;
  box-sizing: border-box;
  height: 100px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}
.loader-line-wrap:nth-child(1) {
  animation-delay: -50ms;
}
.loader-line-wrap:nth-child(2) {
  animation-delay: -100ms;
}
.loader-line-wrap:nth-child(3) {
  animation-delay: -150ms;
}
.loader-line-wrap:nth-child(4) {
  animation-delay: -200ms;
}
.loader-line-wrap:nth-child(5) {
  animation-delay: -250ms;
}

.loader-line-wrap:nth-child(1) .loader-line {
  border-color: var(--color, hsl(0, 80%, 60%));
  height: 90px;
  width: 90px;
  top: 7px;
}
.loader-line-wrap:nth-child(2) .loader-line {
  border-color: var(--color, hsl(60, 80%, 60%));
  height: 76px;
  width: 76px;
  top: 14px;
}
.loader-line-wrap:nth-child(3) .loader-line {
  border-color: var(--color, hsl(120, 80%, 60%));
  height: 62px;
  width: 62px;
  top: 21px;
}
.loader-line-wrap:nth-child(4) .loader-line {
  border-color: var(--color, hsl(180, 80%, 60%));
  height: 48px;
  width: 48px;
  top: 28px;
}
.loader-line-wrap:nth-child(5) .loader-line {
  border-color: var(--color, hsl(240, 80%, 60%));
  height: 34px;
  width: 34px;
  top: 35px;
}

@keyframes spin {
  0%,
  15% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes firework {
  0% {
    transform: translate(var(--x), var(--initialY));
    width: var(--initialSize);
    opacity: 1;
  }
  50% {
    width: 0.5vmin;
    opacity: 1;
  }
  100% {
    width: var(--finalSize);
    opacity: 0;
  }
}

.firework,
.firework::before,
.firework::after {
  --initialSize: 0.5vmin;
  --finalSize: 45vmin;
  --particleSize: 0.2vmin;
  --color1: yellow;
  --color2: khaki;
  --color3: white;
  --color4: lime;
  --color5: gold;
  --color6: mediumseagreen;
  --y: -30vmin;
  --x: -50%;
  --initialY: 60vmin;
  content: '';
  animation: firework 4s infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, var(--y));
  width: var(--initialSize);
  aspect-ratio: 1;
  background:
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 50% 0%,
    radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 100% 50%,
    radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 50% 100%,
    radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 0% 50%,
    /* bottom right */
      radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 80%
      90%,
    radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 95% 90%,
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 90% 70%,
    radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 100% 60%,
    radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 55% 80%,
    radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 70% 77%,
    /* bottom left */
      radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 22%
      90%,
    radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 45% 90%,
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 33% 70%,
    radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 10% 60%,
    radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 31% 80%,
    radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 28% 77%,
    radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 13% 72%,
    /* top left */
      radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 80%
      10%,
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 95% 14%,
    radial-gradient(circle, var(--color2) var(--particleSize), #0000 0) 90% 23%,
    radial-gradient(circle, var(--color3) var(--particleSize), #0000 0) 100% 43%,
    radial-gradient(circle, var(--color4) var(--particleSize), #0000 0) 85% 27%,
    radial-gradient(circle, var(--color5) var(--particleSize), #0000 0) 77% 37%,
    radial-gradient(circle, var(--color6) var(--particleSize), #0000 0) 60% 7%,
    /* top right */
      radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 22%
      14%,
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 45% 20%,
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 33% 34%,
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 10% 29%,
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 31% 37%,
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 28% 7%,
    radial-gradient(circle, var(--color1) var(--particleSize), #0000 0) 13% 42%;
  background-size: var(--initialSize) var(--initialSize);
  background-repeat: no-repeat;
}

.firework::before {
  --x: -50%;
  --y: -50%;
  --initialY: -50%;
  transform: translate(-50%, -50%) rotate(40deg) scale(1.3) rotateY(40deg);
}

.firework::after {
  --x: -50%;
  --y: -50%;
  --initialY: -50%;
  transform: translate(-50%, -50%) rotate(170deg) scale(1.15) rotateY(-30deg);
}

.firework:nth-child(3n + 2),
.firework:nth-child(3n + 2)::before,
.firework:nth-child(3n + 2)::after {
  --color1: pink;
  --color2: violet;
  --color3: fuchsia;
  --color4: orchid;
  --color5: plum;
  --color6: lavender;
}
.firework:nth-child(3n),
.firework:nth-child(3n)::before,
.firework:nth-child(3n)::after {
  --color1: cyan;
  --color2: lightcyan;
  --color3: lightblue;
  --color4: PaleTurquoise;
  --color5: SkyBlue;
  --color6: lavender;
}
.card-person-main {
  border-right: 1px solid rgba(112, 112, 112, 0.3);
}

.card-person:last-of-type .card-person-main {
  border-right: none;
}
/* base styles */

._container-base_m14a7_3 {
  line-height: 1.2;
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

._punctuation-base_m14a7_12 {
  margin-right: 5px;
  font-weight: bold;
}

._punctuation-base_m14a7_12 + ._punctuation-base_m14a7_12 {
  margin-left: -5px;
}

._pointer_m14a7_21 {
  cursor: pointer;
}

._expander-base_m14a7_25 {
  font-size: 1.2em;
  margin-right: 5px;
  user-select: none;
}

._expand-icon_m14a7_32::after {
  content: '▸';
}

._collapse-icon_m14a7_36::after {
  content: '▾';
}

._collapsed-content-base_m14a7_40 {
  margin-right: 5px;
}

._collapsed-content-base_m14a7_40::after {
  content: '...';
  font-size: 0.8em;
}

._container-light_m14a7_50 {
  background: #eee;
}

._basic-element-style_m14a7_55 {
  margin: 0 10px;
  padding: 0;
}

._basic-element-style_m14a7_55 > ul {
  margin: 0;
  padding: 0;
}

/* default light style */
._label-light_m14a7_66 {
  font-weight: 600;
  margin-right: 5px;
  color: #000000;
}

._clickable-label-light_m14a7_72 {
}

._punctuation-light_m14a7_77 {
  color: #000000;
}

._value-null-light_m14a7_82 {
  color: #df113a;
}

._value-undefined-light_m14a7_86 {
  color: #df113a;
}

._value-string-light_m14a7_90 {
  color: rgb(42, 63, 60);
}

._value-number-light_m14a7_94 {
  color: #0b75f5;
}

._value-boolean-light_m14a7_98 {
  color: rgb(70, 144, 56);
}

._value-other-light_m14a7_102 {
  color: #43413d;
}

._collapse-icon-light_m14a7_106 {
  color: #000000;
}

._expand-icon-light_m14a7_112 {
  color: #000000;
}

._collapsed-content-light_m14a7_118 {
  color: #000000;
}

/* default dark style */
._container-dark_m14a7_124 {
  background: rgb(0, 43, 54);
}

._expand-icon-dark_m14a7_129 {
  color: rgb(253, 246, 227);
}

._collapse-icon-dark_m14a7_135 {
  color: rgb(253, 246, 227);
}

._collapsed-content-dark_m14a7_141 {
  color: rgb(253, 246, 227);
}

._label-dark_m14a7_146 {
  font-weight: bolder;
  margin-right: 5px;
  color: rgb(253, 246, 227);
}

._clickable-label-dark_m14a7_152 {
}

._punctuation-dark_m14a7_157 {
  color: rgb(253, 246, 227);
}

._value-null-dark_m14a7_162 {
  color: rgb(129, 181, 172);
}

._value-undefined-dark_m14a7_166 {
  color: rgb(129, 181, 172);
}

._value-string-dark_m14a7_170 {
  color: rgb(203, 75, 22);
}

._value-number-dark_m14a7_174 {
  color: rgb(211, 54, 130);
}

._value-boolean-dark_m14a7_178 {
  color: rgb(174, 129, 255);
}

._value-other-dark_m14a7_182 {
  color: rgb(38, 139, 210);
}
.autocomplete {
  position: relative;
}

.autocomplete-input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.autocomplete-dropdown {
  position: absolute;
  width: 100%;
  border: 1px solid #ccc;
  border-top: none;
  background-color: white;
  z-index: 1000;
  max-height: 150px;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
  list-style-type: none; /* Hide list markers */
}

.autocomplete-option {
  padding: 2px;
  cursor: pointer;
}

.autocomplete-option:hover {
  background-color: #f0f0f0;
}
/* https://gwfh.mranftl.com/fonts/poppins?subsets=latin */

/* poppins-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/Poppins/poppins-v20-latin-200.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Poppins/poppins-v20-latin-200.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Poppins/poppins-v20-latin-200.woff2')
      format('woff2'),
     url('../fonts/Poppins/poppins-v20-latin-200.woff')
      format('woff'),
     url('../fonts/Poppins/poppins-v20-latin-200.ttf')
      format('truetype'),
    
      url('../fonts/Poppins/poppins-v20-latin-200.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/Poppins/poppins-v20-latin-300.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Poppins/poppins-v20-latin-300.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Poppins/poppins-v20-latin-300.woff2')
      format('woff2'),
     url('../fonts/Poppins/poppins-v20-latin-300.woff')
      format('woff'),
     url('../fonts/Poppins/poppins-v20-latin-300.ttf')
      format('truetype'),
    
      url('../fonts/Poppins/poppins-v20-latin-300.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Poppins/poppins-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Poppins/poppins-v20-latin-regular.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Poppins/poppins-v20-latin-regular.woff2')
      format('woff2'),
    
      url('../fonts/Poppins/poppins-v20-latin-regular.woff') format('woff'),
     url('../fonts/Poppins/poppins-v20-latin-regular.ttf')
      format('truetype'),
    
      url('../fonts/Poppins/poppins-v20-latin-regular.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/Poppins/poppins-v20-latin-italic.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Poppins/poppins-v20-latin-italic.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Poppins/poppins-v20-latin-italic.woff2')
      format('woff2'),
    
      url('../fonts/Poppins/poppins-v20-latin-italic.woff') format('woff'),
     url('../fonts/Poppins/poppins-v20-latin-italic.ttf')
      format('truetype'),
    
      url('../fonts/Poppins/poppins-v20-latin-italic.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/Poppins/poppins-v20-latin-500.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Poppins/poppins-v20-latin-500.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Poppins/poppins-v20-latin-500.woff2')
      format('woff2'),
     url('../fonts/Poppins/poppins-v20-latin-500.woff')
      format('woff'),
     url('../fonts/Poppins/poppins-v20-latin-500.ttf')
      format('truetype'),
    
      url('../fonts/Poppins/poppins-v20-latin-500.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/Poppins/poppins-v20-latin-600.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Poppins/poppins-v20-latin-600.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Poppins/poppins-v20-latin-600.woff2')
      format('woff2'),
     url('../fonts/Poppins/poppins-v20-latin-600.woff')
      format('woff'),
     url('../fonts/Poppins/poppins-v20-latin-600.ttf')
      format('truetype'),
    
      url('../fonts/Poppins/poppins-v20-latin-600.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Poppins/poppins-v20-latin-700.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Poppins/poppins-v20-latin-700.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Poppins/poppins-v20-latin-700.woff2')
      format('woff2'),
     url('../fonts/Poppins/poppins-v20-latin-700.woff')
      format('woff'),
     url('../fonts/Poppins/poppins-v20-latin-700.ttf')
      format('truetype'),
    
      url('../fonts/Poppins/poppins-v20-latin-700.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/Poppins/poppins-v20-latin-800.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Poppins/poppins-v20-latin-800.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Poppins/poppins-v20-latin-800.woff2')
      format('woff2'),
     url('../fonts/Poppins/poppins-v20-latin-800.woff')
      format('woff'),
     url('../fonts/Poppins/poppins-v20-latin-800.ttf')
      format('truetype'),
    
      url('../fonts/Poppins/poppins-v20-latin-800.svg#Poppins') format('svg'); /* Legacy iOS */
}
/* poppins-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/Poppins/poppins-v20-latin-900.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Poppins/poppins-v20-latin-900.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Poppins/poppins-v20-latin-900.woff2')
      format('woff2'),
     url('../fonts/Poppins/poppins-v20-latin-900.woff')
      format('woff'),
     url('../fonts/Poppins/poppins-v20-latin-900.ttf')
      format('truetype'),
    
      url('../fonts/Poppins/poppins-v20-latin-900.svg#Poppins') format('svg'); /* Legacy iOS */
}

/* raleway-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/Raleway/raleway-v28-latin-200.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Raleway/raleway-v28-latin-200.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Raleway/raleway-v28-latin-200.woff2')
      format('woff2'),
     url('../fonts/Raleway/raleway-v28-latin-200.woff')
      format('woff'),
     url('../fonts/Raleway/raleway-v28-latin-200.ttf')
      format('truetype'),
    
      url('../fonts/Raleway/raleway-v28-latin-200.svg#Raleway') format('svg'); /* Legacy iOS */
}
/* raleway-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Raleway/raleway-v28-latin-regular.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Raleway/raleway-v28-latin-regular.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Raleway/raleway-v28-latin-regular.woff2')
      format('woff2'),
    
      url('../fonts/Raleway/raleway-v28-latin-regular.woff') format('woff'),
     url('../fonts/Raleway/raleway-v28-latin-regular.ttf')
      format('truetype'),
    
      url('../fonts/Raleway/raleway-v28-latin-regular.svg#Raleway') format('svg'); /* Legacy iOS */
}
/* raleway-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/Raleway/raleway-v28-latin-600.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Raleway/raleway-v28-latin-600.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Raleway/raleway-v28-latin-600.woff2')
      format('woff2'),
     url('../fonts/Raleway/raleway-v28-latin-600.woff')
      format('woff'),
     url('../fonts/Raleway/raleway-v28-latin-600.ttf')
      format('truetype'),
    
      url('../fonts/Raleway/raleway-v28-latin-600.svg#Raleway') format('svg'); /* Legacy iOS */
}

/* roboto-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/Roboto/roboto-v30-latin-300.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Roboto/roboto-v30-latin-300.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Roboto/roboto-v30-latin-300.woff2')
      format('woff2'),
     url('../fonts/Roboto/roboto-v30-latin-300.woff')
      format('woff'),
     url('../fonts/Roboto/roboto-v30-latin-300.ttf')
      format('truetype'),
    
      url('../fonts/Roboto/roboto-v30-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Roboto/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Roboto/roboto-v30-latin-regular.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Roboto/roboto-v30-latin-regular.woff2')
      format('woff2'),
    
      url('../fonts/Roboto/roboto-v30-latin-regular.woff') format('woff'),
     url('../fonts/Roboto/roboto-v30-latin-regular.ttf')
      format('truetype'),
    
      url('../fonts/Roboto/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/Roboto/roboto-v30-latin-italic.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Roboto/roboto-v30-latin-italic.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Roboto/roboto-v30-latin-italic.woff2')
      format('woff2'),
    
      url('../fonts/Roboto/roboto-v30-latin-italic.woff') format('woff'),
     url('../fonts/Roboto/roboto-v30-latin-italic.ttf')
      format('truetype'),
    
      url('../fonts/Roboto/roboto-v30-latin-italic.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/Roboto/roboto-v30-latin-500.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Roboto/roboto-v30-latin-500.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Roboto/roboto-v30-latin-500.woff2')
      format('woff2'),
     url('../fonts/Roboto/roboto-v30-latin-500.woff')
      format('woff'),
     url('../fonts/Roboto/roboto-v30-latin-500.ttf')
      format('truetype'),
    
      url('../fonts/Roboto/roboto-v30-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Roboto/roboto-v30-latin-700.eot'); /* IE9 Compat Modes */
  src:
    url('../fonts/Roboto/roboto-v30-latin-700.eot?#iefix')
      format('embedded-opentype'),
     url('../fonts/Roboto/roboto-v30-latin-700.woff2')
      format('woff2'),
     url('../fonts/Roboto/roboto-v30-latin-700.woff')
      format('woff'),
     url('../fonts/Roboto/roboto-v30-latin-700.ttf')
      format('truetype'),
    
      url('../fonts/Roboto/roboto-v30-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}
