.reviews {
	box-sizing: border-box;
	padding-top: 80px;
	padding-bottom: 80px;
  }
  .reviews-head {
	display: flex;
	flex-direction: column;
  }
  .reviews-head-title {
	color: rgb(10, 16, 21);
	font-weight: 600;
	font-size: 32px;
	line-height: 40px;
	margin-bottom: 32px;
  }
  @media (max-width: 1350px) {
	.reviews-head-title {
	  margin-bottom: 18px;
	}
  }
  @media (max-width: 786px) {
	.reviews-head-title {
	  margin-bottom: 16px;
	}
  }
  .reviews-head-desc {
	color: rgb(10, 16, 21);
	font-weight: 300;
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 32px;
  }
  @media (max-width: 1350px) {
	.reviews-head-desc {
	  margin-bottom: 18px;
	}
  }
  @media (max-width: 786px) {
	.reviews-head-desc {
	  margin-bottom: 16px;
	}
  }
  .reviews-head-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 50px;
  }
  @media (max-width: 1350px) {
	.reviews-head-form {
	  gap: 18px;
	  margin-bottom: 30px;
	}
  }
  @media (max-width: 786px) {
	.reviews-head-form {
	  gap: 16px;
	  margin-bottom: 24px;
	}
  }
  .reviews-head-form input {
	width: 100%;
	box-sizing: border-box;
	padding: 20px 24px;
	border-radius: 0;
	border: 1px solid rgb(218, 218, 218);
	font-weight: 300;
	font-size: 16px;
	line-height: 20px;
	color: rgb(99, 110, 121);
	box-shadow: 0px 2px 2px 0px rgba(30, 49, 66, 0.0542);
  }
  .reviews-head-form textarea {
	width: 100%;
	min-height: 144px;
	box-sizing: border-box;
	padding: 20px 24px;
	border-radius: 0;
	border: 1px solid rgb(218, 218, 218);
	font-weight: 300;
	font-size: 16px;
	line-height: 20px;
	color: rgb(99, 110, 121);
	box-shadow: 0px 2px 2px 0px rgba(30, 49, 66, 0.0542);
	resize: none;
  }
  .reviews-head-form__head {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 25px;
  }
  @media (max-width: 786px) {
	.reviews-head-form__head {
	  flex-direction: column;
	  gap: 16px;
	}
  }
  .reviews-head-form-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
  }
  @media (max-width: 786px) {
	.reviews-head-form-bottom {
	  flex-direction: column;
	}
  }
  .reviews-head-form-bottom__left .custom-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 23px;
	cursor: pointer;
	font-size: 13px;
	line-height: 18px;
	font-weight: 300;
	color: rgba(30, 49, 66, 0.4012);
	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
  }
  .reviews-head-form-bottom__left .custom-checkbox input {
	display: none;
  }
  .reviews-head-form-bottom__left .custom-checkbox .checkmark {
	width: 20px;
	transform: translateY(10px);
	height: 20px;
	border: 2px solid #000;
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border 0.2s ease;
  }
  .reviews-head-form-bottom__left .custom-checkbox .checkmark .check-icon {
	display: none;
  }
  .reviews-head-form-bottom__left .custom-checkbox input:checked + .checkmark .check-icon {
	display: block;
  }
  .reviews-head-form-bottom__left .custom-checkbox .text {
	line-height: 1.4;
  }
  .reviews-head-form-bottom__right {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 25px;
  }
  @media (max-width: 786px) {
	.reviews-head-form-bottom__right {
	  flex-direction: column;
	  gap: 16px;
	}
  }
  .reviews-head-form-bottom__right button {
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	border: 2px solid rgb(196, 0, 12);
	background-color: transparent;
	color: rgb(10, 16, 21);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	width: 231px;
	height: 59px;
  }
  .o-main .sp_content {
	max-width: unset;
  }


.stars {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
  }
  .stars .star {
	width: 23px;
	height: 22px;
	cursor: pointer;
  }
  .stars .star path {
	fill: #fcc2c4;
	stroke: #c4000c;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: fill 0.2s;
  }
  .stars .star.active path {
	fill: #c4000c;
  }