
  #toggle-all-labels {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 10px;
  }

  #toggle-all-labels button {
	margin-right: 1rem;
	border: none;
	background: #1682c5;
	height: 24px;
	width: 44px;
	border-radius: 12px;
	display: flex;
	justify-content: start;
	align-items: center;
  }

  #toggle-all-labels.active button {
	justify-content: end;
	background: #fff;
  }

  .toggle-all-button-label {
	position: relative;
	top: 2px;
	color: #1682c5;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: bold;
  }
  
  /*
   #toggle-all-labels.active .show-all {
	visibility: hidden;
  }

  #toggle-all-labels.active .hide-all {
	visibility: visible;
  }

  #toggle-all-labels .show-all {
	visibility: visible;
  }

  #toggle-all-labels .hide-all {
	visibility: hidden;
  }
  */

  #toggle-all-labels.active .show-all {
	display: none;
  }

  #toggle-all-labels.active .hide-all {
	display: block;
  }

  #toggle-all-labels .show-all {
	display: block;
  }

  #toggle-all-labels .hide-all {
	display: none;
  }

  .white-circle {
	background: white;
	width: 18px;
	height: 18px;
	border-radius: 10px;
  }

  #toggle-all-labels.active .white-circle {
	background: #1682c5;
  }

  .toggle-switch {
	width: 100%;
	border: none;
	background: none;
  }

  .toggle-switch .content {
	font-size: 16px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 2px solid #efefef;
	padding: 1rem;
  }

  .toggle-switch .content .chevron {
	width: 20px;
	transition: all 1s;
  }

  .toggle-switch.active .content .chevron {
	transform: rotate(180deg);
  }

  .toggle-item {
	height: 0;
	transition: all 1s;
	overflow: hidden;
  }

  .toggle-item.active {
	height: 400px;
	overflow-y: scroll;
  }
  
  .bcl_widget-container {
	text-align: left;
  }

  .toggle-item.active,
  .bbl section.header h2.h-telcom {
	font-size: 55%;
  }

  .bbl h4 {
	font-size: 12px;
  }

  .bbl section.data h4 span {
	font-weight: normal;
  }

  .bbl .apart {
	display: flex;
	justify-content: space-between;
	align-items: center;
  }

  .bbl .apart h4,
  .bbl .apart span {
	font-size: 9px;
  }

  .bbl section .apart h4 {
	margin: 0;
  }

