.question {
   background: #fff;
   border-radius: 13px;
   box-shadow: 0 0 10px rgb(0 0 0 / 10%);
   padding: 0 30px;
   margin-top: 20px;
}

.questions {
	position: relative;
	z-index: 800;
}

.quest {
	position: relative;
	cursor: pointer;
	padding: 30px 0;
	padding-right: 30px;
}

.quest:after {
	content: url(../img/arrow_select.svg);
	display: block;
	width: 24px;
	position: absolute;
	right: 0;
	transform: rotate(0);
	transition: .2s;
}

.active-question.quest {
    padding-bottom: 20px;
}

.active-question.quest:after {
	transform: rotate(-180deg);
	transition: .2s;
}

.answer-text {
    display: none;
}

#question1 .answer-text {
    display: block;
}

.answ-content {
	flex: 1 1;
	padding-top: 11px;
}

.answ-cont {
	border-top: 1px solid #cccccc;
	padding-top: 20px;
	padding-bottom: 30px;
}

.square {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 57px;
	height: 57px;
	border-radius: 50%;
	margin-right: 15px;
}

.square p {
	font-family: 'Helveticaneuecyr-Bold';
    font-size: 36px;
    color: #fff;
}

.q-square {
	background: #1e7bb8;
}

.a-square {
	background: #e8f6ff;
	box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

.a-square p {
	color: #1e7bb8;
}

.question h5 {
	flex: 1 1;
	text-align: left;
}

.quest h5 {
	margin-top: 0;
}

.questions ul {
	margin-top: 10px;
}

.questions ul:first-child {
	margin-top: 0;
}

@media (max-width: 768px) {
  .question h5 {
  	width: 100%;
  	flex: none;
  	padding-right: 0;
  	text-align: center;
  	margin-top: 13px;
  }
  .square {margin: 0 auto;}
  .quest:after {
  	top: 48px;
  }
  .quest {
	  padding-right: 0;
  }
  .answ-content {
  	flex: none;
  	width: 100%;
  	padding-top: 15px;
  }
  .question {padding: 0 15px;}
}
