/* ==========================================================================
   Skrócony cennik usług
   ========================================================================== */

.sp-table {
	width: 100%;
	margin: 28px 0 0 !important;
	color: #ffffff;
}

.sp-table table {
	width: 100%;
	margin: 0;
	border: none !important;
	border-collapse: collapse;
	border-spacing: 0;
	background: transparent;
	table-layout: fixed;
}

.sp-table tbody,
.sp-table tr,
.sp-table td {
	border-right: 0 !important;
	border-left: 0 !important;
	background: transparent;
}
.sp-table tr:first-child{
	border-top:none;
}
/* Pojedynczy wiersz */
.sp-table tr {
	border-bottom: 1px solid rgba(133, 164, 201, 0.18);
}

.sp-table tr:last-child {
	border-bottom: 1px;
}

/* Komórki */
.sp-table td {
	padding: 15px 0;
	color: #ffffff;
	font-size: 18px;
	line-height: 1.4;
	vertical-align: middle;
}

/* Nazwa usługi */
.sp-table td:first-child {
	width: 68%;
	padding-right: 30px;
	font-weight: 650;
	text-align: left;
}

/* Cena */
.sp-table td:last-child {
	width: 32%;
	color: #ffffff;
	font-weight: 700;
	text-align: right;
	white-space: nowrap;
}

/* Delikatne podświetlenie wiersza */
.sp-table tr {
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.sp-table tr:hover {
	background-color: rgba(12, 111, 255, 0.045);
}

/* ==========================================================================
   Telefon
   ========================================================================== */

@media (max-width: 500px) {
	.sp-table {
		margin-top: 20px !important;
	}

	.sp-table td {
		padding: 10px 0;
		font-size: 15px;
		line-height: 1.4;
	}

	.sp-table td:first-child {
		width: 61%;
		padding-right: 14px;
	}

	.sp-table td:last-child {
		width: 39%;
		font-size: 14px;
		white-space: normal;
	}
}