
/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 46px;
	height: 24px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The slider */
.checkbox {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 34px;	
}

.checkbox:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 4px;
	bottom: 3px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 50%;
}

.checkboxCheckedTaxCondition {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #20607E;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.checkboxCheckedDiscountType {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;	
}

.checkboxCheckedTaxCondition:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    right: 24px;
    bottom: 3px;
    background-color: white;
    border-radius: 34px;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);	
}

.checkboxCheckedDiscountType:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    right: 24px;
    bottom: 3px;
    background-color: white;
    border-radius: 34px;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);    
}

.buttonStartTile{
	width: 250px !important;
	height: 60px !important;
	background-color: black !important;
	color: white !important;
	font-family: AudiTypeNormal !important;
    font-size: 16px !important;
    font-weight: bold !important;
	border: 0px !important;
}

.buttonStartTile:hover{
	cursor: pointer;
}

.buttonWhite{
	background-color: white !important;
	color: black !important;
	width: 250px !important;
}

.buttonBlack{
	background-color: black !important;
	color: white !important;
	width: 215px !important;
}

.configuratorButtonMargins {
	margin-left: 16rem;
  	margin-top: 4.4rem;
}


.fixedTable {
    width: auto;
    table-layout: fixed; /* Wichtig für feste Spaltenbreiten */
}

.fixedTable td, .fixedTable th {
    width: 100px; /* Feste Breite für jede Spalte */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
