.audit-poll__questions-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 26px 0;
}

.audit-poll .item-question .question-title {
	display: flex;
	align-items: center;
	gap: 6px;
	position: relative;
}

.audit-poll .item-question .question-title:after {
	content: "";
	display: block;
	background: url(../img/v.svg) no-repeat center;
	width: 15px;
	height: 9px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(180deg);
}

.audit-poll .item-question.active .question-title:after {
	transform: rotate(0deg);
}

.audit-poll__questions {
	position: relative;
}

.audit-poll__questions.loading:after {
	content: "";
	opacity: .5;
	background: url(../img/loading.svg) no-repeat center center #fff !important;
	background-size: 180px !important;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.audit-poll__questions-title .controls {
	display: flex;
	align-items: center;
	gap: 0 10px;
}

.audit-poll__questions-title .controls svg {
	cursor: pointer;
	opacity: .4
}

.audit-poll__questions-title .controls .disabled {
	opacity: .2;
	pointer-events: none;
}

.audit-poll__questions-title .controls svg:hover, .audit-poll__questions-title .controls svg.active {
	opacity: 1;
}

.audit-poll__questions-title .back svg:first-child {
	transform: rotate(-180deg);
}

.tab-result {
	padding: 20px;
	display: none
}

.tab-result__title {
	display: flex;
	align-items: center;
	justify-content: space-between
}

.tab-result__title .title {
	font-weight: 300;
	font-size: 48px;
}

.tab-result__h2 {
	margin-bottom: 15px;
	font-size: 18px;
}

.tab-result__progress {
	background: #D9D9D9;
	border-radius: 4px;
	height: 8px;
	margin-top: 20px;
	position: relative;
	overflow: hidden
}

.tab-result__progress div {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	border-radius: 4px;
	transition: all .3s ease;
}

.tab-result.perfect .tab-result__title {
	color: #009B0F
}

.tab-result.good .tab-result__title {
	color: #FF8000
}

.tab-result.norm .tab-result__title {
	color: #001640
}

.tab-result.bad .tab-result__title {
	color: #C6281C
}

.tab-result.perfect .tab-result__progress div {
	background: #009B0F
}

.tab-result.good .tab-result__progress div {
	background: #FF8000
}

.tab-result.norm .tab-result__progress div {
	background: #001640
}

.tab-result.bad .tab-result__progress div {
	background: #C6281C
}

.tab-result__content {
	margin-top: 20px;
	font-size: 14px;
	line-height: 120%;
}

.tab-result .wrap {
	background: #fff;
	padding: 25px
}

.tab-result .wrap {
	margin-bottom: 10px;
}

.tab-result .wrap:last-child {
	margin-bottom: 0;
}

.tab-result__list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}

.tab-result__list ul li {
	display: flex;
	gap: 6px;
	align-items: center;
}

.tab-result__form {
	margin-top: 20px;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	justify-content: center;
	align-items: center;
}

.modal.show {
	display: flex;
	animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
	background: #fff;
	border-radius: 12px;
	padding: 20px 30px;
	max-width: 400px;
	width: 90%;
	text-align: center;
	position: relative;
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
	animation: slideUp 0.3s ease-in-out;
}

.modal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 22px;
	cursor: pointer;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		transform: translateY(50px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}