h1 {
	@media (max-width: 1300px){
		margin-top: 40px;
	}
}

.page-reviews {

}
.page-reviews__subtitle {
	text-align: center;
	padding: 30px 10px 15px 10px;
	font-size: 18px;
	font-family: Arial, Helvetica, sans-serif;
}
@media (max-width: 768px){
	.page-reviews__subtitle {
		padding: 20px 10px 8px 10px;
	}
}

.review-item {
	display: none;
	opacity: 1;
	transition: all 0.3s ease 0s;
	background: #fff !important;
	background-color: #fff !important;
}
.review-item.checked {
	display: block;
}

.tag-filter {
	margin-top: 4px;
	position: relative;
	-webkit-tap-highlight-color: transparent;
}
.tag-filter__wrapper {
	padding: 20px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	opacity: 0;
	transform: translateY(30px);
}
@media (max-width: 768px){
	.tag-filter__wrapper {
		padding: 20px 15px;
		gap: 10px;
	}
}
.tag-filter__tags-list {
	display: flex;
	flex-wrap: wrap;
	row-gap: 15px;
	column-gap: 20px;
	width: 100%;
}
@media (max-width: 768px){
	.tag-filter__tags-list {
		row-gap: 10px;
		column-gap: 15px;
		padding: 0px 10px;
		justify-content: center;
	}
}
.tag-filter__tag-item {
	padding: 12px 16px;
	display: flex;
	gap: 8px;
	align-items: center;
	border-radius: 8px;
	border: 2px solid rgb(239, 239, 239);
	box-shadow: 0px 1px 11px 0px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0px 1px 11px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 1px 11px 0px rgba(0,0,0,0.1);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
}
@media (min-width: 768px){
	.tag-filter__tag-item:hover {
		cursor: pointer;
		border: 2px solid rgb(255, 128, 0);
		transition: all 0.3s ease 0s;
	}
}
@media (max-width: 768px){
	.tag-filter__tag-item {
		padding: 10px 10px;
		gap: 6px;
	}
}
.tag-filter__tag-item img {
	opacity: 0;
}
.tag-filter__tag-item.checked img {
	opacity: 1;
}
.tag-filter__tag-item_checkbox {
	width: 24px;
	height: 24px;
	border: 2px solid #d5d5d5FF;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease 0s;
}
@media (max-width: 768px){
	.tag-filter__tag-item_checkbox {
		width: 22px;
		height: 22px;
	}
}
.tag-filter__tag-item_checkbox img {
	width: 16px;
	height: auto;
}
@media (max-width: 768px){
	.tag-filter__tag-item_checkbox img {
		width: 14px;
		height: auto;
	}
}
.tag-filter__general-button-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 25px;
	gap: 25px;
}
.tag-filter__general-button-wrapper button {
	display: flex;
	justify-content: center;
}
@media (max-width: 500px) {
	.tag-filter__general-button-wrapper {
		flex-direction: column;
		gap: 10px;
		padding: 20px 10px 10px 10px;
	}
}

.tag-filter__general-button {
	padding: 10px 30px;
	background-color: rgb(255, 255, 255);
	color: #000;
	border: 2px solid #ededed;
	display: flex;
	align-items: center;
	gap: 10px;
	max-height: 60px;
	border-radius: 8px;
	transition: all 0.2s ease 0s;
	box-shadow: 0px 1px 11px 0px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0px 1px 11px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 1px 11px 0px rgba(0,0,0,0.1);
}
@media (min-width: 768px){
	.tag-filter__general-button:hover {
		transition: all 0.2s ease 0s;
		border: 2px solid rgb(11, 210, 104);
		background-color: #fff;
		color: #000;
	}
}
@media (max-width: 768px){
	.tag-filter__general-button:hover {
		border: 2px solid #ededed;
		background-color: #fff;
		color: #000;
	}
}
.tag-filter__general-button:focus {
	background-color: #fff;
	color: #000;
	border: 2px solid #ededed;
}
.tag-filter__general-button_image {
	width: 20px;
	height: auto;
}
.tag-filter__general-button_text {

}

.tag-filter__clean-button {
	padding: 10px 30px;
	background-color: rgb(255, 255, 255);
	color: #000;
	border: 2px solid #ededed;
	display: flex;
	align-items: center;
	gap: 10px;
	max-height: 60px;
	border-radius: 8px;
	transition: all 0.2s ease 0s;
	box-shadow: 0px 1px 11px 0px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0px 1px 11px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 1px 11px 0px rgba(0,0,0,0.1);
}
@media (min-width: 768px){
	.tag-filter__clean-button:hover {
		transition: all 0.2s ease 0s;
		border: 2px solid rgb(255, 119, 119);
		background-color: #fff;
		color: #000;
	}
}
@media (max-width: 768px){
	.tag-filter__clean-button:hover {
		border: 2px solid #ededed;
		background-color: #fff;
		color: #000;
	}
}
.tag-filter__clean-button:focus {
	background-color: #fff;
	color: #000;
	border: 2px solid #ededed;
}
.tag-filter__clean-button_image {
	width: 20px;
	height: auto;
}
.tag-filter__general-button_text {

}


.show-filter-class {
	animation: showFilter 0.3s ease 0.5s forwards;
}
.hidden-filter-class {
	animation: hiddenElement 0.3s ease 0s forwards;
}

@keyframes showFilter {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}
@keyframes hiddenElement {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/* HTML: <div class="loader"></div> */
.loader__wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	position: absolute;
	top: 0px;
	left: 0px;
	padding: 40px 15px;
}
.loader__reviews-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	overflow: hidden;
	height: 0px;
	opacity: 0;
	transition: all 0.3s ease 0s;
}
/* .loader-show {
	animation: showLoader 0.3s ease 0s forwards;
}
.loader-hidden {
	animation: hiddenLoader 0.3s ease 0s forwards;
} */

/* @keyframes showLoader {
	0%{
		opacity: 0;
		height: 0px;
	}
	50% {
		height: 60px;
	}
	100% {
		opacity: 1;
	}
}
@keyframes hiddenLoader {
	0%{
		opacity: 1;
		height: 60px;
	}
	50% {
		opacity: 0;
	}
	100% {
		height: 0px;
	}
} */



.loader {
/* HTML: <div class="loader"></div> */
	width: 50px;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 8px solid #ff9d00;
	animation:
		l20-1 0.8s infinite linear alternate,
		l20-2 1.6s infinite linear;
}
@keyframes l20-1{
	0%    {clip-path: polygon(50% 50%,0       0,  50%   0%,  50%    0%, 50%    0%, 50%    0%, 50%    0% )}
	12.5% {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100%   0%, 100%   0%, 100%   0% )}
	25%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 100% 100%, 100% 100% )}
	50%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
	62.5% {clip-path: polygon(50% 50%,100%    0, 100%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
	75%   {clip-path: polygon(50% 50%,100% 100%, 100% 100%,  100% 100%, 100% 100%, 50%  100%, 0%   100% )}
	100%  {clip-path: polygon(50% 50%,50%  100%,  50% 100%,   50% 100%,  50% 100%, 50%  100%, 0%   100% )}
}
@keyframes l20-2{ 
	0%    {transform:scaleY(1)  rotate(0deg)}
	49.99%{transform:scaleY(1)  rotate(135deg)}
	50%   {transform:scaleY(-1) rotate(0deg)}
	100%  {transform:scaleY(-1) rotate(-135deg)}
}
@keyframes l1 {to{transform: rotate(.5turn)}}