/**
 * Olejový svet – PV systém
 *
 * Farby približne podľa tvojej grafiky:
 *
 * pozadie webu: #e9d8fb
 * zelená:       #53db62
 * fialová:      #b38ade
 */


/* =========================================================
   PV BOX
   ========================================================= */

.os-pv-box {
	margin: 10px 0 16px;
	padding: 18px 0;

	background-color: #ffe7dc;
   padding: 16px !important;
   border: none !important;
   border-radius: 4px;

	font-size: 13px;
	line-height: 1.5;

	color: #000;
}


/* =========================================================
   MALÝ NADPIS
   ========================================================= */

.os-pv-status {
	margin-bottom: 7px;

	font-size: 10px;
	font-weight: 500;

	line-height: 1.2;

	letter-spacing: 0.06em;

	text-transform: uppercase;
}


.os-pv-status--active {
	color: #168a33;
}


/* =========================================================
   HLAVNÝ NADPIS
   ========================================================= */

.os-pv-title {
	margin-bottom: 7px;

	font-size: 18px;
	font-weight: 500;

	line-height: 1.25;
}


/* =========================================================
   TEXT
   ========================================================= */

.os-pv-text {
	margin: 0 0 13px;
	padding: 0;

	font-size: 12px;
	line-height: 1.55;
}


.os-pv-text strong {
	font-weight: 500;
}


/* =========================================================
   PROGRESS
   ========================================================= */

.os-pv-progress {
	position: relative;

	width: 100%;
	height: 8px;

	margin-top: 13px;

	background: rgba(0, 0, 0, 0.09);

	overflow: hidden;
}


.os-pv-progress__bar {
	height: 100%;

	background: #53db62;

	transition:
		width 0.35s ease;
}


.os-pv-progress-labels {
	display: flex;
	align-items: center;
	justify-content: space-between;

	margin-top: 5px;

	font-size: 10px;
	font-weight: 600;
}


/* =========================================================
   DOPLŇUJÚCI TEXT
   ========================================================= */

.os-pv-small {
	margin: 13px 0 0;

	font-size: 11px;
	line-height: 1.5;

	opacity: 0.72;
}


/* =========================================================
   AKTÍVNY BENEFIT
   ========================================================= */

.os-pv-box--active {
    background-color: #e8ffe8;
    padding: 16px !important;
    border: none !important;
     border-radius: 4px;
}


.os-pv-benefits {
	margin-top: 13px;
	padding-top: 11px;

	border-top: 1px solid rgba(0, 0, 0, 0.1);
}


.os-pv-benefit {
	margin: 5px 0;

	font-size: 11px;
	line-height: 1.45;
}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 600px) {

	.os-pv-title {
		font-size: 17px;
	}

	.os-pv-box {
		padding-top: 16px;
		padding-bottom: 16px;
	}
}