/* Kursimple-Checkout-Styles (aus bewegt-lernen uebernommen, 2026-08-20).
   Bewusst auf die Selektoren reduziert, die dem ikarus-CSS fehlen -
   bestehende Styles werden nicht ueberschrieben. */

.progress-container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	width: 100%;
	margin: 20px 0;
  }

.circle{
	width: 40px;
	height: 40px;
	border: 1px solid gray;
	border-radius: 50%;
	background-color: white;
	text-align: center;
	line-height: 40px;
	font-size: 18px;
	color: black;
	z-index: 1;
	transition: border-color 0.3s ease;
  }

.circle.active{
	width: 44px;
	height: 44px;
  }

.circle.active:nth-child(2){
	border: 3px solid #1E90FF; /* DodgerBlue */
  }

.circle.active:nth-child(3){
	border: 3px solid #00BFFF; /* DeepSkyBlue */
  }

.circle.active:nth-child(4){
	border: 3px solid #40E0D0; /* Turquoise */
  }

.circle.active:nth-child(5){
	border: 3px solid #3CB371; /* MediumSeaGreen */
  }

.circle.active:nth-child(6){
	border: 3px solid #32CD32; /* LimeGreen */
  }

.progress-line{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background-color: gray;
	z-index: 0;
  }
