#was-this-helpful {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: rgba(194, 208, 228, 0.15);
	margin-top: 1em;
	padding: 1.2rem 2rem 1rem;
	border-radius: 0;
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.5s ease-in-out;
}

#was-this-helpful * {
	-webkit-transition: background-color 200ms, box-shadow 200ms;
	transition: background-color 200ms, box-shadow 200ms;
}

#wthf-title,
#wthf-yes-no {
	display: flex;
	flex-flow: row wrap;
	gap: 10px;
}

#wthf-title {
	padding-right: 2em;
	font-weight: 600;
	color: #fff;
	transition: color 0.3s ease-in-out;
}

#wthf-yes-no span {
	padding: 0.3em 0.8em;
	border-radius: 0.2em;
	background-color: rgba(194, 208, 228, 0.35);
	color: #ffffff;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.5s ease-in-out;
}

#wthf-yes-no span:hover {
	background-color: rgba(194, 208, 228, 0.45);
}

#wthf-yes-no span:active {
	background-color: rgba(194, 208, 228, 0.75);
	-webkit-box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.5);
}

.single-faq-wrapper.active #was-this-helpful {
	background-color: rgba(194, 208, 228, 0.55);
}

.single-faq-wrapper.active #wthf-title {
	color: #0b0c10;
}

.single-faq-wrapper.active #wthf-yes-no span {
	background-color: rgba(194, 208, 228, 0.65);
	color: #0b0c10;
}

.single-faq-wrapper.active #wthf-yes-no span:hover {
	background-color: rgba(194, 208, 228, 0.95);
	color: #0b0c10;
}

#was-this-helpful.wthf-disabled {
	pointer-events: none;
	position: absolute;
}

#was-this-helpful.wthf-disabled * {
	opacity: 0;
}

#was-this-helpful.wthf-disabled:after {
	content: attr(data-thank-text);
	font-weight: 500;
	text-align: center;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	position: absolute;
}

/* NO clicked/selected */
#was-this-helpful.no-option {
	min-height: 67px;
}
#was-this-helpful.no-option #wthf-title {
	display: none;
}

#was-this-helpful.no-option #wthf-yes-no {
	display: none;
}

.single-faq-wrapper.active .feedback-form textarea {
	background-color: rgba(255,255,255,0.8);
	color: #0b0c10;
	border: 1px solid transparent;
}

.single-faq-wrapper.active .feedback-form textarea:focus {
	color: #0b0c10;
}

.single-faq-wrapper.active .feedback-form textarea::placeholder {
	color: #0b0c1080;
}
@keyframes borderGlowDark {
    0%, 100% {
        border-color: transparent
    }
    25%, 75% {
        border-color: #0b0c1090;
    }
    50% {
        border-color: #0b0c1030;
    }
}
.single-faq-wrapper.active .feedback-form textarea.required {
	animation: borderGlowDark 1s ease forwards;
}

.feedback-form {
	display: flex;
	flex-flow: column nowrap;
	gap: 1rem;
	width: 100%;
	align-items: center;
}

.feedback-form textarea {
	border-radius: 10px;
	background-color: rgba(194, 208, 228, 0.15);
	box-shadow: none;
	border: 1px solid transparent;
	outline: none;
	font-size: 16px;
	padding: 1rem 0rem 1rem 1.25rem;
	transition: all 0.7s ease;
	color: #ffffff;
	width: 100%;
	resize: none;
	border: 1px solid transparent;
}

.feedback-form textarea:focus {
	color: #fff;
}

@keyframes borderGlow {
    0%, 100% {
        border-color: transparent
    }
    25%, 75% {
        border-color: rgba(255, 255, 255, 1);
    }
    50% {
        border-color: rgba(255, 255, 255, 0.2);
    }
}
.feedback-form textarea.required {
	animation: borderGlow 1s ease forwards;
}

.feedback-form textarea::placeholder {
	color: rgba(194, 208, 228, 0.5);
	font-size: inherit;
	font-weight: 400;
	letter-spacing: 0.1px;
}

.feedback-form input[type="submit"] {
	width: fit-content;
    background: #1daa91;
    color: #0b0c10;
    padding: 12px 32px;
    font-size: 15px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    outline: none;
    border: none;
    text-align: center;
    transition: all 2s ease!important;
    cursor: pointer;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
	max-width: 200px;
}

.feedback-form input[type="submit"]:hover {
    background: #1daa9197;
}

.feedback-form .feedback-form__message-cont {
	width: 100%;
	visibility: hidden;
	opacity: 0;
	font-size: 14px;
	transition: all 1s ease!important;
}

@media (min-width: 768px) and (max-width: 992px) {
	#was-this-helpful {
		flex-flow: column;
		gap: 0.5rem;
	}

	#was-this-helpful.no-option {
		min-height: 100px;
	}

	#was-this-helpful #wthf-title {
		padding-right: unset;
	}
}

@media (max-width: 576px) {
	#was-this-helpful {
		flex-flow: column;
		gap: 0.5rem;
	}

	#was-this-helpful.no-option {
		min-height: 100px;
	}

	#was-this-helpful #wthf-title {
		padding-right: unset;
	}
}