#sc-calculator { font-family: sans-serif; }
.sc-step { margin-bottom: 2em; }
label { display: block; margin-bottom: .5em; }

.stepper {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 40px;
	padding: 0;
	list-style: none;
	max-width: 600px;
	margin-inline: auto;
}

.stepper li {
	position: relative;
	text-align: center;
	flex: 1;
}

/* Linia między kropkami */
.stepper li:not(:last-child)::after {
	/*
	content: "";
	position: absolute;
	top: 15px;
	right: 0;
	width: 100%;
	height: 2px;
	background: #ccc;
	z-index: 0;
	*/
}

.stepper li:last-child::after {
	display: none;
}

/* Kropka */
.stepper .circle {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 2px solid white;
	background: white;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	font-weight: bold;
	color: #666;
}

.stepper li.active .circle {
	background: #ff7e34;
	color: white;
	border-color: #ff7e34;
}

/* Nazwa kroku */
.step-label {
	font-family: Inter;
	margin-top: 8px;
	font-size: 14px;
	color: #aaa;
}

.stepper li.active .step-label {
	font-weight: bold;
	color: #ff7e34;
}

/* Zawartość kroków */
.step-content {
	display: none;
	text-align: center;
}

.step-content.active {
	display: block;
}

.container {
	display: flex !important;
	gap: 20px; /* odstęp między boxami */
}

.box {
	flex: 1;              /* równa szerokość */
}

.panel {
	margin: 0 0;
	padding: 35px;
	text-align: left;
	font-family: Inter;
	
    border-radius: 24px 24px 24px 24px;
    background-color: var( --e-global-color-uicore_light );
    background-image: url("/wp-content/uploads/2025/01/Cloud-Solutions-CTA-BG.webp");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.highlight {
	color: #ff7e34;
}

.check { font-size: xx-large; color: #ff7800; }

#monthlyCost {
    width: 100%;
    color: black !important;
    font-size: x-large !important;
    border: none;
    border-radius: 10px;
    padding: 5px 15px;
    text-align: center;
}

.storageSolution {
    width: 25px;
    height: 25px;
    vertical-align: middle;
    margin: 10px;
}

.form-row {
	margin-bottom: 20px;
}

.contactInput, .contactPlace, .wpcf7-select {
	color: black !important;
	background-color: white !important;
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	
}

.wpcf7-submit {
	background-color: #007bff;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.wpcf7-submit:hover {
	background-color: #0056b3;
}

/* Mobile: zmiana układu na pionowy */
@media (max-width: 768px) {
	.container {
		flex-direction: column;
	}
}
