.feedback-form .feedback-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.feedback-form .feedback-item {
	display: flex;
	justify-content: center;
	align-items: center;
	user-select: none;
}

.feedback-form .feedback-item .radio {
	display: none;
}

.feedback-form .feedback-item .radio~span {
	cursor: pointer;
	transition: 0.3s;
	display: flex;
	align-items: center;
	flex-direction: column;
	font-size: .7rem;
	border: 3px solid #eee;
	width: 115px;
	margin: 2px;
	border-radius: 5px;
	padding: 10px 0;
}

.feedback-form .feedback-item .radio~span .emoji-icon {
	/*background: url(../images/icons/emoji.png);
	background-size: 170px 58px;*/
	background-position: center center !important;
	background: url(../images/icons/sad.gif);
	background-size: 125%;
	background-repeat-y: no-repeat;
	display: inline-block;
	width: 59px;
	height: 59px;
	transition: all .3s ease-in-out;
}

.feedback-form .feedback-item .radio:checked~span .emoji-icon {
	transform: scale(1.15)
}

.feedback-form .feedback-item .radio~span .emoji-icon.happy {
	/*background-position: -56px 0 !important;*/
	background-position: center center !important;
	background: url(../images/icons/happy.gif);
	background-size: 125%;
}

.feedback-form .feedback-item .radio~span .emoji-icon.very-happy {
	/*background-position: -113px 0 !important;*/
	background-position: center center !important;
	background: url(../images/icons/verry-happy.gif);
	background-size: 125%;
}

.feedback-form .feedback-item:nth-child(2) .radio:checked~span {
	/* background: #ABEBC4;*/
	border-color: #e7c826;
	box-shadow: 0px 0px 15px #d2b207;
}

.feedback-form .feedback-item:nth-child(1) .radio:checked~span {
	/* background: #ffeee4;*/
	border-color: #ff4e4e;
	box-shadow: 0px 0px 10px #fe7272;
}

.feedback-form .feedback-item:nth-child(3) .radio:checked~span {
	/* background: #BFE6A8;*/
	border-color: #14ce4f;
	box-shadow: 0px 0px 10px #21d207;
}

.modal.congrats {
	z-index: 9999999;
}

.modal.congrats .close {
	position: absolute;
	right: 27px;
	top: 30px;
	font-size: 35px;
	z-index: 1;
}

#canvas {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
}

.modal.congrats .modal-dialog {
	position: relative;
	overflow: hidden;
}

.modal.congrats .modal-body {
	z-index: 1;
}

.success-checkmark {
	width: 80px;
	height: 115px;
	margin: 0 auto;
}

.success-checkmark .check-icon {
	width: 80px;
	height: 80px;
	position: relative;
	border-radius: 50%;
	box-sizing: content-box;
	border: 4px solid #4CAF50;
}

.success-checkmark .check-icon::before {
	top: 3px;
	left: -2px;
	width: 30px;
	transform-origin: 100% 50%;
	border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
	top: 0;
	left: 30px;
	width: 60px;
	transform-origin: 0 50%;
	border-radius: 0 100px 100px 0;
	animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
	content: "";
	height: 100px;
	position: absolute;
	background: #FFFFFF;
	transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
	height: 5px;
	background-color: #4CAF50;
	display: block;
	border-radius: 2px;
	position: absolute;
	z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
	top: 46px;
	left: 14px;
	width: 25px;
	transform: rotate(45deg);
	animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {
	top: 38px;
	right: 8px;
	width: 47px;
	transform: rotate(-45deg);
	animation: icon-line-long 0.75s;
}

.success-checkmark .check-icon .icon-circle {
	top: -4px;
	left: -4px;
	z-index: 10;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	position: absolute;
	box-sizing: content-box;
	border: 4px solid rgba(76, 175, 80, 0.5);
}

.success-checkmark .check-icon .icon-fix {
	top: 8px;
	width: 5px;
	left: 26px;
	z-index: 1;
	height: 85px;
	position: absolute;
	transform: rotate(-45deg);
	background-color: #FFFFFF;
}

@keyframes rotate-circle {
	0% {
		transform: rotate(-45deg);
	}

	5% {
		transform: rotate(-45deg);
	}

	12% {
		transform: rotate(-405deg);
	}

	100% {
		transform: rotate(-405deg);
	}
}

@keyframes icon-line-tip {
	0% {
		width: 0;
		left: 1px;
		top: 19px;
	}

	54% {
		width: 0;
		left: 1px;
		top: 19px;
	}

	70% {
		width: 50px;
		left: -8px;
		top: 37px;
	}

	84% {
		width: 17px;
		left: 21px;
		top: 48px;
	}

	100% {
		width: 25px;
		left: 14px;
		top: 45px;
	}
}

@keyframes icon-line-long {
	0% {
		width: 0;
		right: 46px;
		top: 54px;
	}

	65% {
		width: 0;
		right: 46px;
		top: 54px;
	}

	84% {
		width: 55px;
		right: 0px;
		top: 35px;
	}

	100% {
		width: 47px;
		right: 8px;
		top: 38px;
	}
}

.feedback-form .feedback-mocktest-item {
	display: block;
	justify-content: center;
	align-items: center;
	user-select: none;
}

.feedback-form .feedback-mocktest-item .radio {
	display: none;
}

.feedback-form .feedback-mocktest-item .radio~span {
	cursor: pointer;
	transition: 0.3s;
	display: flex;
	align-items: center;
	flex-direction: column;
	font-size: .7rem;
	border: 3px solid #eee;
	border-radius: 5px;
	padding: 10px 0;
}

.feedback-form .feedback-mocktest-item .radio:checked~span {
	border-color: #25afdf;
	box-shadow: 0px 0px 10px #25afdfd1;
}