/*dla faq w stronie opisowje*/
.cdp-row .faq
{		
    width: 100%;
    margin: auto;
	padding-top: 0;
    padding-bottom: 0;
}
.cdp-row .faq .row
{
	margin-bottom: -30px;
}
.empty-container.with-bg .faq .row .question,
.empty-container.with-bg .faq .row.active
{
	background-color: #ffffff;
}
.empty-container.with-bg .faq .row .answer
{
	background-color: #f0f0f0;
}
.faq {
	max-width: 1440px;
    width: 90%;
    margin: auto;
	padding-top: 10px;
    padding-bottom: 60px;
}
.faq .row
{
	border-radius: 40px;
	border: 2px solid #f0f0f0;
	margin-bottom: 23px;

	transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-webkit-transition: all 300ms linear;	
}
.faq .row.active
{
	border: 2px solid #E84131;
	margin-bottom: 25px;
	background-color: #F2F2F2;
}

.faq .title {
	font-weight: 500;
    font-size: 36px;
    text-transform: uppercase;
    line-height: 36px;
    position: relative;
    text-align: center;
    padding: 0 12.5%;
    margin-bottom: 85px;
}

.faq .subtitle {
	font-weight: normal;
    font-size: 26px;
    line-height: 36px;
    position: relative;
    text-align: center;
    padding: 0 12.5%;
    margin-bottom: 25px;
}

.faq .no-info {
	font-size: 19px;
    font-weight: normal;
	color: #aaaaaa;
	padding: 30px;
    background: #f0f0f0;
}

.faq .row .question svg {
	width: 15px;
	fill: #fff;
	transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-webkit-transition: all 300ms linear;	
}

.faq .row .question {
	line-height: 0;
	font-size: 0;
	text-align: justify;
	padding: 16px 40px;
	background: #f0f0f0;
	border-radius: 40px;
	transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-webkit-transition: all 300ms linear;
	cursor: pointer;
}

.faq .row .question:after {
	content: "";
	display: inline-block;
	width: 100%;
	height: 0;
}

.faq .row.active .question
{
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.faq .row.active .question,
.faq .row .question:hover {
	background: #F2F2F2;
}

.faq .row.active .question svg,
.faq .row .question:hover svg {
	transform: rotate(180deg);
}

.faq .row .question .left-side,
.faq .row .question .right-side {
	display: inline-block;
	vertical-align: middle;
}
.faq .row .question .right-side {
	background: #e8412c;
	padding: 10px;
	border-radius: 100%;
}

.faq .row .question .left-side {
	font-size: 1.5rem;
    line-height: 27px;
	text-align: left;
    color: #575757;
    font-weight: 700;
    max-width: calc(100% - 70px);
}

.faq .row.active .question .left-side,
.faq .row:hover .question .left-side
{
	color: #E8412C;
}

.faq .row .answer {
	margin-bottom: 40px;
	font-size: 1rem;
	line-height: 23px;
	color: #575757;
	background-color: #fff;
	padding: 25px 40px;
	border-bottom-left-radius:25px;
	border-bottom-right-radius:25px;
	
}

.faq .row.active .answer{
	border-radius: 0;
}

.faq .row .answer p
{
	line-height: 1.5;
}