@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Thin.woff2") format("woff2"), url("../fonts/Roboto/Roboto-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-ExtraLight.woff2") format("woff2"), url("../fonts/Roboto/Roboto-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Light.woff2") format("woff2"), url("../fonts/Roboto/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-SemiBold.woff2") format("woff2"), url("../fonts/Roboto/Roboto-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-ExtraBold.woff2") format("woff2"), url("../fonts/Roboto/Roboto-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Black.woff2") format("woff2"), url("../fonts/Roboto/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-family: "Roboto", sans-serif;
  --border-radius: calc((16 / 1920) * 100vw);
}

body {
  background: #151B2F;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-size: 0.8333333333vw;
  padding-top: 1.25vw;
  padding-bottom: 1.25vw;
}
body.hidden {
  overflow: hidden;
}

a {
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.25s ease-in-out;
}
a:hover {
  color: #FFFFFF;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 2.5vw);
}

.btn {
  border: 0;
  padding: 0;
  background-color: transparent;
  line-height: 1.3;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease-in-out, padding 0s, font-size 0s, font-weight 0s, min-width 0s, border-radius 0s;
  border-radius: 0.4166666667vw;
  font-size: 1.0416666667vw;
}
.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn:focus {
  box-shadow: none;
  outline: none;
}
.btn:active {
  opacity: 1;
}
.btn-light {
  color: #1B233B;
  fill: #1B233B;
  background-color: #FFFFFF;
}
.btn-light:focus {
  color: #1B233B;
  fill: #1B233B;
  background-color: #FFFFFF;
}
.btn-light:hover {
  color: #FFFFFF;
  fill: #FFFFFF;
  background-color: #455278;
}
.btn-light:active {
  color: #FFFFFF;
  fill: #FFFFFF;
  background-color: #455278;
}

.form-control {
  width: 100%;
  background-color: #1B233B;
  border-radius: 0.875rem;
  transition: all 0.25s ease-in-out, background-position 0s, padding 0s, font-size 0s, font-weight 0s, min-width 0s, border-radius 0s;
  border: solid #222D4F;
  font-family: "Roboto", sans-serif;
  line-height: 1.3333333333;
  font-weight: 400;
  color: #FFFFFF;
  border-radius: 0.7291666667vw;
  border-width: 0.0520833333vw;
  padding: 0.9375vw;
  font-size: 1.25vw;
}
.form-control:focus, .form-control:hover {
  background-color: #1B233B;
  border-color: #16B9FF;
}
.form-control:focus::-moz-placeholder {
  opacity: 0;
  transform: translateX(1em);
}
.form-control:focus::placeholder {
  opacity: 0;
  transform: translateX(1em);
}

input::-moz-placeholder, .form-control::-moz-placeholder, textarea::-moz-placeholder, .textarea::-moz-placeholder {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  -moz-transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}

input::placeholder,
.form-control::placeholder,
textarea::placeholder,
.textarea::placeholder {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
}

input:focus,
textarea:focus {
  box-shadow: none !important;
  outline: none;
}

.textarea {
  transition: all 0.25s ease-in-out, height 0s !important;
}

select,
input,
textarea {
  font-family: "Roboto", sans-serif;
}

textarea {
  resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.select {
  position: relative;
}
.select__button {
  background-color: #1B233B;
  border: solid #222D4F;
  color: #FFFFFF;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
  width: 100%;
  text-align: left;
  border-radius: 0.5208333333vw;
  padding-top: 0.3125vw;
  padding-right: 3.125vw;
  padding-bottom: 0.3125vw;
  padding-left: 1.0416666667vw;
  border-width: 0.0520833333vw;
  font-size: 1.25vw;
}
.select__button::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.25s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg width='36' height='37' viewBox='0 0 36 37' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.9179 14.2065C24.0804 14.2068 24.2394 14.2535 24.3763 14.3411C24.5131 14.4287 24.6222 14.5534 24.6906 14.7008C24.7591 14.8481 24.7841 15.012 24.7627 15.173C24.7413 15.3341 24.6744 15.4857 24.5699 15.6101L18.7733 22.49C18.6931 22.5852 18.5931 22.6618 18.4802 22.7143C18.3673 22.7668 18.2444 22.794 18.1199 22.794C17.9954 22.794 17.8724 22.7668 17.7595 22.7143C17.6467 22.6618 17.5466 22.5852 17.4665 22.49L11.667 15.6101C11.5625 15.4857 11.4956 15.3341 11.4742 15.173C11.4528 15.012 11.4778 14.8481 11.5463 14.7008C11.6147 14.5534 11.7238 14.4287 11.8607 14.3411C11.9975 14.2535 12.1565 14.2068 12.319 14.2065H23.9179Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  right: 0.4166666667vw;
  width: 1.875vw;
  height: 1.875vw;
}
.select__button:hover {
  border-color: rgba(146, 163, 198, 0.6);
}
.select.active .select__button {
  border-color: #16B9FF;
}
.select.active .select__button::after {
  transform: translateY(-50%) rotate(180deg);
}
.select__list {
  list-style: none;
  margin-bottom: 0;
  position: absolute;
  z-index: 10;
  left: 0;
  min-width: 100%;
  top: calc(100% + 0.4166666667vw);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, transform 0.25s ease-in-out;
  background-color: #1B233B;
  border: solid #343C53;
  border-width: 0.0520833333vw;
  border-radius: 0.7291666667vw;
  padding-top: 0.7291666667vw;
  padding-right: 1.4583333333vw;
  padding-bottom: 0.7291666667vw;
  padding-left: 1.4583333333vw;
}
.select.active .select__list {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.select__item {
  cursor: pointer;
  border-bottom: solid #92A3C6;
  color: #FFFFFF;
  line-height: 1.3333333333;
  transition: color 0.25s ease-in-out;
  padding-top: 0.7291666667vw;
  padding-bottom: 0.7291666667vw;
  border-width: 0.1041666667vw;
  font-size: 1.25vw;
}
.select__item:last-child {
  border-bottom: 0;
}
.select__item.active {
  pointer-events: none;
  color: #16B9FF;
}
.select__item:hover {
  color: #16B9FF;
}
.range {
  position: relative;
  border-radius: 10vw;
}
.range--large {
  background-color: #343E5C;
  height: 1.7708333333vw;
}
.range--medium {
  background-color: #343E5C;
  height: 1.25vw;
}
.range--small {
  background-color: #455278;
  height: 0.625vw;
}

.range-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  border-radius: 10vw;
  max-width: 100%;
  transition: width 0.25s ease-in-out;
}
.range-bar--unround {
  border-radius: 10vw 0 0 10vw;
}
.range-bar--red {
  background-color: #DB544B;
}
.range-bar--green {
  background-color: #77E759;
}
.range-bar__currents {
  position: absolute;
  right: 0;
  height: 176%;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  background-color: #FFFFFF;
  width: 0.4166666667vw;
}
.range-bar__currents > div {
  position: absolute;
  left: 50%;
  top: 100.25%;
  white-space: nowrap;
  display: flex;
  align-items: center;
  line-height: 1.1875;
  font-weight: 600;
  padding-left: 1.6666666667vw;
  -moz-column-gap: 0.625vw;
       column-gap: 0.625vw;
  font-size: 1.6666666667vw;
}
.range-bar__currents > div > span {
  line-height: 1.1904761905;
  font-weight: 700;
  font-size: 2.1875vw;
}
.range-bar__currents > div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg width='33' height='21' viewBox='0 0 33 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.4299 0.649543C15.8299 0.164589 16.5728 0.164589 16.9728 0.649543L32.1723 19.0779C32.7103 19.7302 32.2463 20.7142 31.4008 20.7142L1.00191 20.7142C0.156437 20.7142 -0.307511 19.7302 0.230448 19.0779L15.4299 0.649543Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.0416666667vw;
  height: 1.6666666667vw;
}
.range-bar__currents > div.right {
  left: auto;
  right: 50%;
  padding-left: 0;
  padding-right: 1.6666666667vw;
}
.range-bar__currents > div.right::before {
  left: auto;
  right: 0;
  transform: translate(50%, -50%);
}

.diagram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9.1666666667vw;
  height: 9.1666666667vw;
}

.diagram-label {
  position: absolute;
  top: 50%;
  background-color: #1B233B;
  border-radius: calc(var(--border-radius) / 2);
  font-weight: 600;
  line-height: 1.15;
  padding-top: 0.2083333333vw;
  padding-bottom: 0.2083333333vw;
  padding-left: 0.3125vw;
  padding-right: 0.3125vw;
  font-size: 1.0416666667vw;
}
.diagram-label--left {
  left: 25%;
  transform: translate(-50%, -50%);
}
.diagram-label--right {
  left: 75%;
  transform: translate(-50%, -50%);
}

.diagram-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: solid #1B233B;
  --bg: $primary;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  border-width: 0.1041666667vw;
  background: radial-gradient(closest-side, white 0%, transparent 0 101%, white 0), conic-gradient(#6387B0 0 calc(var(--percent) * 1%), #516195 calc(var(--percent) * 1%) 100%);
  transition: background 0.25s ease-in-out;
}
.diagram-circle .divider {
  background: #1B233B;
  height: 50%;
  left: 50%;
  position: absolute;
  top: 0;
  transform-origin: 50% 100%;
  transform: rotate(calc(1turn * var(--precent) / 100));
  transition: transform 0.25s ease-in-out;
  width: 0.1041666667vw;
  margin-left: -0.0520833333vw;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  background-color: rgba(12, 16, 34, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
.modal__dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  min-height: calc(100% - 2.5vw);
  transform: scale(0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, transform 0.25s ease-in-out;
  max-width: 48.8541666667vw;
  margin-top: 1.25vw;
  margin-bottom: 1.25vw;
}
.modal.show .modal__dialog {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
.modal__content {
  background-color: #0F141E;
  position: relative;
  width: 100%;
  border-radius: 1.4583333333vw;
  padding-top: 4.375vw;
  padding-right: 3.6458333333vw;
  padding-bottom: 3.6458333333vw;
  padding-left: 3.6458333333vw;
}
.modal__close {
  position: absolute;
  width: 2.125rem;
  height: 2.125rem;
  top: 2.125rem;
  right: 2.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #92A3C6;
  width: 1.7708333333vw;
  height: 1.7708333333vw;
  top: 1.7708333333vw;
  right: 1.7708333333vw;
  transition: all 0.25s ease-in-out, width 0s, height 0s, top 0s, right 0s, padding 0s, font-size 0s, font-weight 0s, min-width 0s, border-radius 0s;
}
@media (hover: hover) {
  .modal__close:hover {
    fill: #FFFFFF;
  }
}
.modal__close > svg {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: initial;
}
.modal__header {
  border-bottom: solid rgba(146, 163, 198, 0.3);
  margin-bottom: 3.3333333333vw;
  padding-bottom: 0.3645833333vw;
}
.modal__title {
  text-align: center;
  margin-bottom: 0;
  font-size: 1.7708333333vw;
  font-weight: 500;
  line-height: 1.4117647059;
}
.modal-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 1.4583333333vw;
  -moz-column-gap: 1.25vw;
       column-gap: 1.25vw;
  margin-bottom: 3.3333333333vw;
}
.modal-form__group {
  align-self: center;
}
.modal-form__group .form-control {
  text-align: center;
}
.modal-form__label {
  display: block;
  margin-bottom: 0;
  text-align: right;
  font-size: 1.25vw;
  line-height: 1.4166666667;
  color: #92A3C6;
}
.modal-form__button {
  position: relative;
  min-width: 21.6666666667vw;
  padding: 0.8854166667vw;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  background: linear-gradient(91.59deg, #0471A0 0%, #00557A 100%);
  border: solid #16B9FF;
  border-width: 0.1041666667vw;
  border-radius: 0.5208333333vw;
  font-size: 1.4583333333vw;
  line-height: 1.2142857143;
  font-weight: 600;
  color: #FFFFFF;
}
.modal-form__button::before {
  content: "";
  position: absolute;
  top: -0.1041666667vw;
  left: -0.1041666667vw;
  right: -0.1041666667vw;
  bottom: -0.1041666667vw;
  border-radius: 0.5208333333vw;
  background-color: #16B9FF;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
.modal-form__button:hover::before {
  opacity: 1;
  visibility: visible;
}
.modal-form__button > span {
  position: relative;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3.0208333333vw;
}
.header__select {
  min-width: 14.7916666667vw;
}
.header__button {
  padding: 0.625vw;
  min-width: 15.625vw;
}

.heading {
  background-color: #1B233B;
  border: solid #343C53;
  border-radius: var(--border-radius);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.48);
  margin-bottom: 1.25vw;
  border-width: 0.0520833333vw;
  padding-top: 2.6041666667vw;
  padding-bottom: 5.9375vw;
  padding-left: 1.25vw;
  padding-right: 1.25vw;
}
.heading__titles {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.6666666667vw;
  -moz-column-gap: 1.25vw;
       column-gap: 1.25vw;
}
.heading-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  line-height: 1.1818181818;
  font-size: 2.2916666667vw;
  -moz-column-gap: 1.25vw;
       column-gap: 1.25vw;
}
.heading-title__counter {
  line-height: 1.1666666667;
  font-weight: 700;
  font-size: 2.8125vw;
}
.heading-title__label {
  display: block;
  line-height: 1.1875;
  font-weight: 700;
  border-radius: calc(var(--border-radius) / 2);
  font-size: 1.6666666667vw;
  padding-top: 0.2604166667vw;
  padding-bottom: 0.2604166667vw;
  padding-left: 0.3645833333vw;
  padding-right: 0.3645833333vw;
}
.heading-title__label--red {
  background-color: #DB544B;
}
.heading-title__label--green {
  background-color: #77E759;
  color: #1B233B;
}

.row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.25vw;
  margin-bottom: 1.25vw;
}
.row:last-child {
  margin-bottom: 0;
}
.row > * {
  min-width: 0;
  min-height: 15.2083333333vw;
}
.row > *:nth-child(1).card--large {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
.row > *:is(.card--horizont) {
  grid-column-start: 3;
  grid-column-end: 5;
}

.card {
  background-color: #1B233B;
  border: solid #343C53;
  border-radius: var(--border-radius);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.48);
  border-width: 0.0520833333vw;
  padding: 1.1458333333vw;
  overflow: hidden;
}
.card--diagram {
  display: flex;
  flex-direction: column;
  padding-top: 0.8333333333vw;
  padding-bottom: 1.25vw;
  padding-left: 1.25vw;
  padding-right: 1.25vw;
}
.card__inner {
  flex-grow: 1;
  min-height: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card__title {
  font-weight: 700;
  text-align: center;
  font-size: 1.6666666667vw;
  margin-bottom: 1.25vw;
}
.card--table .card__title {
  text-align: left;
  font-weight: 700;
  line-height: 1.1818181818;
  font-size: 1.1458333333vw;
}
.card--diagram .card__title {
  text-align: left;
  font-weight: 600;
  line-height: 1.15;
  font-size: 1.0416666667vw;
  margin-bottom: 0.78125vw;
}
.card__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25vw;
}
.card__row > * {
  min-width: 0;
}
.card__labels {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.card__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
  font-weight: 900;
  text-align: center;
  row-gap: 0.2083333333vw;
  font-size: 1.0416666667vw;
}
.card__label > span:last-child {
  display: block;
  font-weight: 500;
  line-height: 1.1875;
  background-color: #516195;
  font-size: 0.8333333333vw;
  padding-top: 0.2083333333vw;
  padding-bottom: 0.2083333333vw;
  padding-left: 0.3125vw;
  padding-right: 0.3125vw;
  border-radius: 0.3125vw;
}
.card__label:last-child > span:last-child {
  background-color: #6387B0;
}
.card-progress {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.card-progress--large {
  padding: 2.5vw;
  padding-bottom: 2.7604166667vw;
}
.card-progress--large .card__title {
  font-size: 3.4703125vw;
  margin-bottom: 2.6041666667vw;
}
.card-progress__title {
  text-align: center;
  font-weight: 800;
  line-height: 1.0454545455;
  font-size: 2.2916666667vw;
  margin-bottom: 1.3541666667vw;
}
.card-progress--large .card-progress__title {
  font-size: 4.7916666667vw;
  margin-bottom: 2.8645833333vw;
}
.card-progress__counter {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.4166666667vw;
       column-gap: 0.4166666667vw;
}
.card-progress__counter > span {
  font-weight: 600;
}
.card-progress__counter > span:nth-child(1) {
  line-height: 1.1764705882;
  font-size: 1.7708333333vw;
}
.card-progress__counter > span:nth-child(2) {
  line-height: 1.1666666667;
  font-size: 1.25vw;
}
.card-progress__counter > span:nth-child(3) {
  line-height: 1.1666666667;
  font-size: 1.25vw;
}
.card-progress--large .card-progress__counter {
  -moz-column-gap: 0.8333333333vw;
       column-gap: 0.8333333333vw;
}
.card-progress--large .card-progress__counter > span:nth-child(1) {
  font-size: 3.6458333333vw;
}
.card-progress--large .card-progress__counter > span:nth-child(2) {
  font-size: 2.6041666667vw;
}
.card-progress--large .card-progress__counter > span:nth-child(3) {
  font-size: 2.6041666667vw;
}
.card-progress__circle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2.2916666667vw);
  bottom: 23.2876712329%;
}
.card-progress--large .card-progress__circle {
  width: calc(100% - 5.2083333333vw);
}
.card-progress--large .card-progress__circle .progress-circle__outer svg {
  stroke-width: 11%;
}
.card-progress--large .card-progress__circle .progress-circle__inner > svg {
  stroke-width: 10%;
}
.card-progress--large .card-progress__circle .progress-circle__current::before {
  left: 1.3541666667vw;
  width: 3.8541666667vw;
  height: 3.8541666667vw;
  border-width: 0.8333333333vw;
}
.card-conic {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding-top: 0.8854166667vw;
  padding-right: 2.0833333333vw;
  padding-bottom: 1.6666666667vw;
  padding-left: 2.0833333333vw;
}
.card-conic--large {
  padding-top: 1.875vw;
  padding-right: 4.4270833333vw;
  padding-bottom: 3.6458333333vw;
  padding-left: 4.4270833333vw;
}
.card-conic .card__title {
  margin-bottom: 0;
  font-size: 1.0416666667vw;
}
.card-conic--large .card__title {
  font-size: 2.1875vw;
}
.card-conic__body {
  width: 100%;
  position: relative;
}
.card-conic__progress {
  position: absolute;
  z-index: 10;
  left: 0;
  width: 100%;
  bottom: 1.0416666667vw;
}
.card-conic--large .card-conic__progress {
  bottom: 2.2916666667vw;
}
.card-conic--large .card-conic__progress .progress-conic__current > div > span:nth-child(1) {
  width: 2.8645833333vw;
  height: 0.9375vw;
  left: 0.78125vw;
}
.card-conic--large .card-conic__progress .progress-conic__current > div > span:nth-child(1)::before {
  top: 0.3125vw;
  bottom: 0.3125vw;
  left: 0.3125vw;
}
.card-conic--large .card-conic__progress .progress-conic__current > div > span:nth-child(2) {
  right: calc(100% + 1.3541666667vw);
  font-size: 1.875vw;
  padding-top: 0.3125vw;
  padding-right: 0.4166666667vw;
  padding-bottom: 0.3125vw;
  padding-left: 0.4166666667vw;
}
.card-conic__inner {
  position: relative;
  margin-bottom: 0.5208333333vw;
}
.card-conic__inner::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1;
  background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.16;
  filter: blur(55.4431px);
  top: -1.9270833333vw;
  width: 7.6041666667vw;
}
.card-conic--large .card-conic__inner {
  margin-bottom: 1.1458333333vw;
}
.card-conic--large .card-conic__inner::before {
  top: -4.0625vw;
  width: 15.8333333333vw;
}
.card-conic__top {
  text-align: center;
  line-height: 1.1818181818;
  font-weight: 900;
  color: #F99E31;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-bottom: solid rgba(255, 255, 255, 0.2);
  position: relative;
  font-size: 2.1875vw;
  padding-bottom: 0.0520833333vw;
  border-width: 0.1041666667vw;
  margin-bottom: 0.15625vw;
}
.card-conic--large .card-conic__top {
  font-size: 4.5833333333vw;
  padding-bottom: 0.1041666667vw;
  border-width: 0.2083333333vw;
  margin-bottom: 0.3125vw;
}
.card-conic__bottom {
  text-align: center;
  line-height: 1.15;
  font-weight: 900;
  position: relative;
  font-size: 1.4583333333vw;
}
.card-conic--large .card-conic__bottom {
  font-size: 3.125vw;
}
.card-conic__title {
  text-align: center;
  font-weight: 600;
  line-height: 1.0714285714;
  color: #92A3C6;
  font-size: 0.7291666667vw;
}
.card-conic--large .card-conic__title {
  font-size: 1.5625vw;
  line-height: 1;
}
.card-conic__labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-conic__labels > span {
  display: block;
  text-align: center;
  line-height: 0.8571428571;
  font-weight: 600;
  min-width: 1.8229166667vw;
  font-size: 0.7291666667vw;
}
.card-conic--large .card-conic__labels > span {
  min-width: 3.75vw;
  font-size: 1.5625vw;
}

.card-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: calc(var(--border-radius) / 2);
  border: solid rgba(146, 163, 198, 0.2);
  padding-top: 0.6770833333vw;
  padding-left: 0.78125vw;
  padding-right: 0.78125vw;
  padding-bottom: 0.78125vw;
  border-width: 0.0520833333vw;
}
.card-item--heading {
  background-color: transparent;
  border: 0;
  padding: 0;
  margin-bottom: 1.25vw;
}
.card-item--heading:last-child {
  margin-bottom: 0;
}
.card-item__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8333333333vw;
  -moz-column-gap: 1.25vw;
       column-gap: 1.25vw;
}
.card-item--heading .card-item__heading {
  margin-bottom: 0.625vw;
}
.card-item__inline {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.25vw;
       column-gap: 1.25vw;
}
.card-item__title {
  font-weight: 600;
  line-height: 1.1666666667;
  margin-bottom: 1.1458333333vw;
  font-size: 1.25vw;
}
.card-item--heading .card-item__title {
  line-height: 1.1875;
  font-weight: 700;
  font-size: 1.6666666667vw;
}
.card-item__inline .card-item__title {
  margin-bottom: 0;
}
.card-item__counter {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.4166666667vw;
       column-gap: 0.4166666667vw;
}
.card-item__counter > span {
  font-weight: 900;
}
.card-item__counter > span:nth-child(1) {
  line-height: 0.7222222222;
  font-size: 1.875vw;
}
.card-item__counter > span:nth-child(2) {
  line-height: 0.7222222222;
  font-size: 1.875vw;
}
.card-item__counter > span:nth-child(3) {
  line-height: 0.9285714286;
  font-size: 1.4583333333vw;
}
.card-item--heading .card-item__counter > span {
  font-weight: 900;
}
.card-item--heading .card-item__counter > span:nth-child(1) {
  line-height: 1.1136363636;
  font-size: 2.2916666667vw;
}
.card-item--heading .card-item__counter > span:nth-child(2) {
  line-height: 1.1875;
  font-size: 1.6666666667vw;
}
.card-item--heading .card-item__counter > span:nth-child(3) {
  line-height: 1.1875;
  font-size: 1.6666666667vw;
}
.card-item__percent {
  font-weight: 700;
  line-height: 0.7142857143;
  font-size: 1.4583333333vw;
}
.card-item:has(.range-bar--red) .card-item__percent {
  color: #DB544B;
}
.card-item:has(.range-bar--green) .card-item__percent {
  color: #77E759;
}
.card-table {
  width: 100%;
}
.card-table > tbody > tr > td {
  border: 0;
  border-bottom: solid rgba(146, 163, 198, 0.3);
  padding-top: 1.09375vw;
  padding-bottom: 1.09375vw;
  border-width: 0.1041666667vw;
}
.card-table > tbody > tr:first-child > td {
  padding-top: 0;
}
.card-table > tbody > tr:last-child > td {
  border-bottom: 0;
  padding-bottom: 0;
}
.card-table__icon > img {
  width: 44px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 2.2916666667vw;
}
.card-table__name {
  font-weight: 600;
  line-height: 1.2;
  padding-left: 0.625vw;
  padding-right: 0.1041666667vw;
  font-size: 1.0416666667vw;
}
.card-table__counter {
  white-space: nowrap;
  font-weight: 900;
  line-height: 1.2;
  padding-right: 0.1041666667vw;
  font-size: 1.0416666667vw;
}
.card-table__percent {
  white-space: nowrap;
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
  padding-left: 0.1041666667vw;
  font-size: 1.0416666667vw;
}

.progress-circle {
  font-size: 0;
  line-height: 0;
}
.progress-circle--red {
  --color: #DB544B;
}
.progress-circle--green {
  --color: #77E759;
}
.progress-circle__outer svg {
  stroke-width: 11.5%;
  width: 100%;
  height: auto;
}
.progress-circle__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.progress-circle__inner > svg {
  width: 100%;
  height: auto;
  stroke-dasharray: calc(0.6% * var(--percent) + 240%);
  stroke-dashoffset: 721%;
  stroke-width: 10%;
  stroke: var(--color);
  transition: stroke-dasharray 0.25s ease-in-out;
}
.progress-circle__current {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: rotate(calc(1.8deg * var(--percent)));
  transition: transform 0.25s ease-in-out;
}
.progress-circle__current::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.625vw;
  transform: translateY(-50%) translateX(-50%);
  width: 1.875vw;
  height: 1.875vw;
  background-color: var(--color);
  border: solid #FFFFFF;
  border-width: 0.4166666667vw;
  border-radius: 50%;
}

.progress-conic {
  width: 100%;
  position: relative;
}
.progress-conic__circle svg {
  width: 100%;
  height: auto;
}
.progress-conic__current {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: rotate(calc(var(--percent) * 1.195 * 1deg));
  transition: transform 0.25s ease-in-out;
}
.progress-conic__current > div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  transform: rotate(-29deg);
}
.progress-conic__current > div > span {
  position: absolute;
}
.progress-conic__current > div > span:nth-child(1) {
  position: absolute;
  display: block;
  width: 1.3541666667vw;
  height: 0.4166666667vw;
  background-color: #1B233B;
  border-right: 0;
  top: 50%;
  left: 0.3645833333vw;
  transform: translate(-50%, -50%);
}
.progress-conic__current > div > span:nth-child(1)::before {
  content: "";
  position: absolute;
  background-color: #FFFFFF;
  right: 0;
  top: 0.15625vw;
  bottom: 0.15625vw;
  left: 0.15625vw;
}
.progress-conic__current > div > span:nth-child(2) {
  right: calc(100% + 0.5208333333vw);
  font-size: 0.9375vw;
  font-weight: 700;
  line-height: 1;
  top: 50%;
  background-color: #1B233B;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(calc(-61deg - var(--percent) * 1.195 * 1deg));
  transition: transform 0.25s ease-in-out;
  padding-top: 0.2083333333vw;
  padding-right: 0.3125vw;
  padding-bottom: 0.2083333333vw;
  padding-left: 0.3125vw;
  border-radius: 0.4166666667vw;
}


.__additional {
  font-size: 2.2vw;
  color: #92A3C6;
}