.evaluation-consent {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	position: relative;
}

.evaluation-consent > div.next-step-stand-by {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	line-height: 32px;
}
.evaluation-consent > div.next-step-stand-by-off {
	display:none;
}


.evaluation-consent > section.consent-step {
	width: calc(100% / 3);
	height: 100%;
	position: relative;
}
.evaluation-consent > section.consent-step > div.step-guard {
	width:100%;
	height:100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
}
.evaluation-consent > section.consent-step > div.step-guard-off {
	display: none;
}
.evaluation-consent > section.consent-step > div.consent-guide {
	width: 100%;
	height: 132px;
	padding: 0 24px;
	padding-top: 48px;
	font-size: 14px;
	font-weight: 600;
}

.evaluation-consent > section.consent-step > div.consent-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.evaluation-consent > section.consent-step > div.consent-content > div.consent-content-title {
	width: 100%;
	height: 54px;
	background-color: #5499f5;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-left: 24px;
	color: #fff;
	font-weight: 600;
	margin-bottom: 24px;
}
.evaluation-consent > section.consent-step > div.consent-content > div.consent-content-wrap {
	width: 100%;
	height: 174px;
	margin-bottom: 32px;
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}
.evaluation-consent > section.consent-step > div.consent-content > div.consent-content-wrap > div.consent-content-user-info {
	width: 100%;
	height: 46px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.evaluation-consent > section.consent-step > div.consent-content > div.consent-content-wrap > div.consent-content-user-info > input {
	width: 250px;
	height: 100%;
	padding-left: 24px;
	border-radius: 5px;
	border: 1px solid #cbd3e5;
	outline: none;
	background-color: #edeff4;
	color: #aab1c1;
}

.evaluation-consent > section.consent-step > div.consent-content > div.consent-content-wrap > ul.consent-list {
	flex: 1;
	padding-top: 14px;
}
.evaluation-consent > section.consent-step > div.consent-content > div.consent-content-wrap > ul.consent-list > li {
	font-size: 14px;
	margin-bottom: 4px;
}

.evaluation-consent > section.consent-step > div.consent-content > div.consent-content-btn {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.evaluation-consent > section.consent-step > div.consent-content > div.consent-content-btn > button {
	width: 90%;
}

.loading-circle {
	width: 100px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.dot-flashing {
	position: relative;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: #fff;
	color: #fff;;
	animation: dot-flashing 1s infinite linear alternate;
	animation-delay: 0.5s;
}
.dot-flashing::before, .dot-flashing::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
}
.dot-flashing::before {
	left: -30px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: #fff;;
	color: #fff;;
	animation: dot-flashing 1s infinite linear alternate;
	animation-delay: 0s;
}
.dot-flashing::after {
	left: 30px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: #fff;;
	color: #fff;;
	animation: dot-flashing 1s infinite linear alternate;
	animation-delay: 1s;
}

@keyframes dot-flashing {
	0% {
		background-color: #fff;;
	}
	50%, 100% {
		background-color: rgba(0, 0, 0, 0.2);
	}
}