.header-survey {
	width: 100%;
	max-width: 100%;
	background-color: var(--light-teal);
}

.header-survey .title-container {
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	padding: var(--space-1) var(--space-8) var(--space-2);
}

.header-survey .title-container .check {
	display: flex;
	justify-content: center;
	align-items: center;
	width: var(--space-6);
	height: var(--space-6);
	background-color: var(--teal);
	border-radius: var(--rounded-full);
	margin-right: 10px;
}

.header-survey .title-container .check i {
	color: var(--white);
	font-size: 14px;
}

.header-survey .title-container .title {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 700;
	line-height: var(--leading-none);
	letter-spacing: 0.3em;
	color: var(--white);
	text-transform: uppercase;
	text-align: center;
}

.header-survey .description-container {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--teal);
}

.header-survey .description-container .description {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: var(--tracking-wider);
	color: var(--white);
	text-align: center;
	text-decoration: none;
	padding: var(--space-2) var(--space-5);
}

.header-survey .description-container a i {
	font-size: 13px;
	color: var(--orange);
	transform: rotate(315deg);
}

.header-survey .close{
	position: absolute;
	top: -12px;
	right: 10px;
	padding: 10px;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
	color: white;
}

.contentRender_name_plugins_common_header_survey {
	position: sticky;
	position: -webkit-sticky;
	top: -1px;
	z-index: 10;
}

@media (min-width: 64em) {
	.header-survey {
		display: grid;
		grid-template-columns: 0.552fr 1fr;
	}

	.header-survey .title-container {
		position: static;
	}

	.header-survey .title-container {
		display: grid;
		grid-template-columns: 24px auto;
		gap: 10px;
		justify-content: end;
		align-items: center;
		padding: 4px 22px 7px;
	}

	.header-survey .close{
		right: 2px;
	}

	.header-survey .title-container .check {  margin-right: 0; }

	.header-survey .title-container .check i { font-size: 15px; }

	.header-survey .title-container .title { font-size: 16px; }

	.header-survey .description-container {
		display: flex;
		justify-content: flex-start;
		background-color: var(--teal);
	}

	.header-survey .description-container .description {
		font-size: 16px;
		padding: 4px var(--space-6) 7px;
	}

	.header-survey .description-container .description i {
		font-size: 15px;
		transform: rotate(315deg) translate(-3px, -3px);
	}
}