#user-request {
	color: #666666;
	padding-bottom: 36px;
}
#user-request #contactForm {
	border-bottom: 1px solid #CCCCCC;
	padding: 0 0 8px;
	margin: 0 0 24px;
}
#comments-list {
	display: flex;
	flex-direction: column;
	row-gap: 24px;
}
#comments-list .comment {
	overflow: hidden;
}
#comments-list .depth-2 {
	overflow: visible;
	position: relative;
	margin: 16px 0 0 48px;
}
#comments-list .depth-2:before {
	content: '';
	width: 30px;
	height: 1px;
	background-color: #CCCCCC;
	position: absolute;
	top: 20px;
	right: calc(100%);
}
#comments-list .depth-2:after {
	content: '';
	width: 1px;
	height: 100vh;
	background-color: #CCCCCC;
	position: absolute;
	right: calc(100% + 29px);
	bottom: calc(100% - 20px);
}
#comments-list .comment-meta {
	display: flex;
	align-items: flex-start;
	column-gap: 8px;
	margin: 0 0 8px;
}
#comments-list .comment-author-avatar {
	width: 40px;
	min-width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
#comments-list .comment-author-avatar img {
	width: 100%;
	height: 100%;
}
#comments-list .comment-metadata {
	width: 100%;
}
#comments-list .comment-author-name {
	font-size: 13px;
	font-weight: 600;
	color: #4A4A4A;
	text-transform: uppercase;
	margin: 0 0 2px;
}
#comments-list .comment-metadata .comment-meta {
	align-items: center;
	margin: 0;
}
#comments-list .rating-holder {
	margin: 0;
}
#comments-list .rating {
	float: none;
	margin: 0;
	left: 0;
	pointer-events: none;
}
#comments-list .rating > label {
	margin: 0 1px 0 0;
}
#comments-list .rating > label:before {
	display: block;
	font-size: 10px;
	margin: 0;
}
#comments-list .comment-time time {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #989898;
}
#comments-list .comment-content {
	padding: 0 0 0 48px;
}
#comments-list .comment-content + p {
	margin: 8px 0 0 56px;
}
#comments-list .comment-content + p a {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #5E5E5E;
}
#comments-list .comment-content + p a:hover {
	text-decoration: underline;
}
#user-request .comment-body > form {
	padding: 8px 0 0 48px;
}
#user-request form .form-row input[readonly] {
	background-color: #DEDEDE !important;
	pointer-events: none;
}
#user-request .button[disabled] {
	opacity: .24;
	pointer-events: none;
}
#user-request form .success-text,
#user-request form .error-text {
	padding: 12px;
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	border-radius: 8px;
	box-shadow: 2px 0 8px rgb(0 0 0 / .08);
}
#user-request form .error-text {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #D02626;
	background-color: #FFF0F0;
}
#user-request form .error-text svg {
	margin: 0 6px 0 0;
}
