.rs-form-field {
	background-color: #f7f7f7;
	border: 1px solid #e5e5e5;
	border-radius: 15px;
	box-sizing: border-box;
	margin: 7px 0;
	padding: 8px;
}
.rs-form-field label {
	display: block;
	font-size: 18px;
	line-height: normal;
	margin: 0 0 3px;
}
.rs-form-field label b {
	font-size: 14px;
	margin-top: 10px;
}
.rs-form-field select {
	background-color: #fff;
	border-radius: 0;
	border: 1px solid #ddd;
	box-shadow: none;
	box-sizing: border-box;
	float: none;
	height: auto;
	line-height: normal;
	outline: 0;
	padding: 5px 3px;
	width: 100%;
}
.rs-form-field input[type="text"] {
	background-color: #fff;
	border-radius: 15px;
	border: 1px solid #ddd;
	box-shadow: none;
	box-sizing: border-box;
	float: none;
	font-size: 100%;
	height: auto;
	line-height: 1.4;
	margin: 0;
	max-width: 100%;
	outline: 0;
	padding: 5px 10px;
	width: 100%;
}
.rs-form-field textarea {
	background-color: #fff;
	border-radius: 15px;
	border: 1px solid #ddd;
	box-shadow: none;
	box-sizing: border-box;
	float: none;
	font-size: 100%;
	height: auto;
	line-height: 1.4;
	margin: 0;
	max-width: 100%;
	outline: 0;
	padding: 5px 10px;
	width: 100%;
	min-height: 200px;
}
.rs-form-field .rs-field-notice {
	align-items: center;
	clear: both;
	color: #797979;
	font-size: 0.85em;
}
.rs-btn {
	margin-top: 20px;
	text-align: right;
}
.rs-btn input {
	cursor: pointer;
	padding: 5px 15px;
	border: 0;
	font-size: 14px;
	color: #fff;
	text-shadow: 0em 0.1em 0.1em rgba(0, 0, 0, 0.4);
	background-color: transparent;
	border: 2px solid #edf000;
	color: #edf000;
	border-radius: 6px;
	font-weight: bold;
	margin-left: 3px;
}
.rs-btn input:hover {
	opacity: 0.8;
}

.rs-form-field .rating {
	direction: rtl;
	display: inline-flex;
	font-size: 3em;
}

.rs-form-field .rating input {
	display: none;
}

.rs-form-field .rating label {
	cursor: pointer;
	color: #d4d4d4;
	padding: 0;
	margin: 0;
	font-size: 22px;
	position: relative;
}

.rs-form-field .rating label:hover,
.rs-form-field .rating label:hover ~ label,
.rs-form-field .rating input:checked ~ label {
	color: #f5c518;
}
.search-input-wrapper {
	position: relative;
	display: inline-block;
	width: 100%; /* Ширина блока равна ширине родительского элемента */
}

#reviewed_user {
	width: calc(100% - 30px); /* Ширина инпута за вычетом ширины кнопки очистки */
	padding-right: 30px; /* Отступ для кнопки очистки */
	background-color: #fff;
	border-radius: 15px;
	border: 1px solid #ddd;
	box-shadow: none;
	font-size: 100%;
	height: auto;
	line-height: 1.4;
	margin: 0;
	max-width: 100%;
	outline: 0;
	padding: 5px 10px;
	width: 100%;
}

.clear-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	cursor: pointer;
	font-size: 25px;
	color: #000;
}

.clear-button:hover {
	color: #888;
}
.like-dislike-rating {
	display: flex;
	align-items: center;
	gap: 20px;
}

.like-dislike-rating input[type="radio"] {
	display: none;
}

.like-dislike-rating label {
	cursor: pointer;
	transition: color 0.3s;
	color: #ccc; /* Grey color for unselected state */
}

.like-dislike-rating label svg {
	fill: #ccc; /* Grey fill for unselected state */
	transition: fill 0.3s;
}

.like-dislike-rating input[type="radio"]:checked + label svg {
	fill: #4caf50; /* Green for like */
}

.like-dislike-rating input[type="radio"]:checked + label.dislike-button svg {
	fill: #f44336; /* Red for dislike */
}

.like-dislike-rating label:hover svg {
	fill: #4caf50; /* Green on hover for like */
}

.like-dislike-rating label.dislike-button:hover svg {
	fill: #f44336; /* Red on hover for dislike */
}

#form-errors {
	left: 10px;
	position: fixed;
	top: 170px;
	width: 210px;
	z-index: 9999;
	background: #ffcfcf;
	border-left: 3px solid red;
	color: red;
	animation-duration: 0.3s;
	font-size: 14px;
	line-height: 1.2;
	margin: 5px 0;
	padding: 8px 2px 8px 10px;
	word-wrap: break-word;
}
#form-errors .close-notice {
	color: inherit;
	float: right;
	padding: 0 5px 0 4px;
}
#form-errors .error {
	padding: 20px;
	background-color: #fff;
	border-radius: 15px;
	border: 2px solid red;
	color: red;
}

.review-item {
	background-color: rgba(255, 255, 255, 0.9);
	color: #000;
	padding: 15px;
	border-radius: 15px;
	margin-top: 10px;
	margin-bottom: 15px;
	border: 2px solid #edf000;
}
.review-item img.review-img {
	margin-top: 5px;
	border: 1px solid #eaeaea;
	border-radius: 6px;
	width: 110px;
	height: 110px;
	overflow: hidden;
}

.review-item .tcl_avatar {
	display: flex;
	align-items: center;
}
.review-item .tcl_avatar img.tcl_border {
	margin-right: 10px;
}
.review-item .tcl_avatar h3 {
	color: #000 !important;
	font-size: 22px;
	font-weight: 700;
	padding: 0;
	margin: 0 !important;
}
.review-item .review-reviwed {
	margin-top: 5px;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
}
.review-item .review-reviwed span {
	margin-right: 5px;
}
.review-item .review-reviwed h4 {
	font-weight: 700;
	color: #000;
	padding: 0;
}

.review-date {
	margin-top: 5px;
}
.review-category {
	margin-top: 5px;
}
.review-rating {
	margin-top: 5px;
	display: flex;
	align-items: center;
}
.review-rating svg {
	margin-left: 5px;
}
.review-content {
	margin-top: 7px;
}

.reviews-pagination .pagination-link {
	padding: 7px 14px;
	border-radius: 6px;
	background-color: transparent;
	color: #edf000;
	border: 2px solid #edf000;
	font-size: 18px;
	font-weight: bold;
	margin-right: 8px;
}
