.range-block {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    margin-bottom: 1rem !important;
    align-items: flex-end !important;
}

.range-block > * {
    flex-shrink: 0;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.bi {
    width: 1em;
    height: 1em;
    color: var(--bs-navbar-active-color);
    fill: var(--bs-navbar-active-color);
}

.chart-container {
  width: 100%;
  height: 600px; /* Стандартная высота графика */
  /* max-width: 800px; */
  margin: 0 auto; /* Центрируем */
}

@media only screen and (max-width: 800px) {

  .chart-container {
      width: 90vw;  /* Полная ширина экрана */
      height: 90vh;  /* 90% высоты экрана */
      max-width: none;
  }
	
	/* Force table to not be like tables anymore */
	table, 
	thead, 
	tbody, 
	th, 
	td, 
	tr { 
		display: block; 
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	tr {
    border: 1px solid #ccc;
  }
 
	td {
		/* Behave  like a "row" */
		border: none;
		/*  border-bottom: 0px solid #eee; */
		position: relative;
    padding: .2rem .5rem !important;
		/* padding-left: 50% !important; */
		white-space: normal;
		text-align:left;
	}
 
	td:before {
		/* Now like a table header */
		/* position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		text-align:left;
		font-weight: bold;
	}
 
	/*
	Label the data
	*/
	td:before { content: attr(data-title); }
}