.comments__form {
    font-family: Karantina, sans-serif;
	box-shadow: 0 0.15rem 0.55rem rgba(0, 0, 0, 0.09) !important;
	background: white;
	padding: 16px;
	border-radius: 8px;
	margin-bottom: 24px;
}

.comments__form-inputs {
	display: flex;
	column-gap: 16px;
}

.comment__form__upload {
  width: 40px;
  height: 40px;
  padding: 9px;
  flex-shrink: 0;
  border: 1px solid #ff6378;
  border-radius: 50%;
  cursor: pointer;
}

.comment__form__upload input {
  position: absolute;
  z-index: -1;
  visibility: hidden;
}

.comments__form input[type='text'], .comments__form input[type='email'] {
	display: block;
	width: 100%;
	height: 37px;
	margin-bottom: 16px;
	padding: 0.375rem 0.75rem;
	font-size: 16px;
	border: 1px solid rgb(192, 192, 192);
	border-radius: 0.375rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.comments__form textarea {
  font-family: 'Arial';
	display: block;
	width: 100%;
	height: 60px;
	margin-bottom: 16px;
	padding: 0.375rem 0.75rem;
	font-size: 16px;
	border: 1px solid rgb(192, 192, 192);
	border-radius: 0.375rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  resize: none;
}

.comments__form-age {
	max-width: 30%;
}

.comments__rating {
  margin-bottom: 15px;
}

.comments__rating label {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAgCAYAAAASYli2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAONJREFUeNpi/J9cwYAH7AfiB0CciFPFnHYULhMewxygOAGIFRiIBPgMzMfBJstAkIsCkPggVwqQayDIsH40MZBh9cQYygLE66EKDQhoKIBiBmhEgfAHIA5EN1ABahgpQAGKL2DzsiM2CSLAAqheDAM/kGHoAmja/IArUkAShlCFxBpGVCw/JMLAjaQkG30iDDQgxUBiYtueWAMF0PLsAWi4okcY0S40QEq0gUgGwQyGxaoAvsIC2cALUE2KQLwBR+wqQtU8wGUg45dTFygqD7lN9UfLw9HycLQ8HC0Ph0N5CBBgAPidS3kXcnhnAAAAAElFTkSuQmCC);
  background-position: 0 -16px;
  background-repeat: repeat-x;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 3px;
  cursor: pointer;
}

.comments__rating label.active {
  background-position: 0 0;
}

.comments__rating input {
  position: absolute;
  z-index: -1;
  overflow: hidden;
}

.comments__form .btn {
    background-color: rgb(0 50 20);
	color: #fff;
	border: none;
	padding: 2px 16px;
	border-radius: 20px;
	cursor: pointer;
	font-size: 16px;
	line-height: 25px;
}

    .comments__form .btn:hover{
    background: #595959;

    }

.comments__form .success {
  display: none;
  color: #000;
  margin: 15px 0 0;
}

.comments__rating-result {
  font-family: Karantina, sans-serif;
  box-shadow: 0 0.15rem 0.55rem rgba(0, 0, 0, 0.09) !important;
  background: white;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  color: #000;
  display: flex;
  column-gap: 10px;
}

.comments__item {
    font-family: Karantina, sans-serif;
  margin-bottom: 15px;
	box-shadow: 0 0.15rem 0.55rem rgba(0, 0, 0, 0.09) !important;
	background: white;
	padding: 16px 16px;
	border-radius: 8px;
	color: black;
	font-size: 16px;
	line-height: 25px;
}

.comments__item-top {
    font-family: Karantina, sans-serif;
	display: flex;
	align-items: center;
	column-gap: 15px;
	margin-bottom: 10px;
}

.comments__item-photo img {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.comments__item-author {
	font-weight: 700;
}

.comments__item-rating {
  line-height: 15px;
}

.comments__item-rating i {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAgCAYAAAASYli2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAONJREFUeNpi/J9cwYAH7AfiB0CciFPFnHYULhMewxygOAGIFRiIBPgMzMfBJstAkIsCkPggVwqQayDIsH40MZBh9cQYygLE66EKDQhoKIBiBmhEgfAHIA5EN1ABahgpQAGKL2DzsiM2CSLAAqheDAM/kGHoAmja/IArUkAShlCFxBpGVCw/JMLAjaQkG30iDDQgxUBiYtueWAMF0PLsAWi4okcY0S40QEq0gUgGwQyGxaoAvsIC2cALUE2KQLwBR+wqQtU8wGUg45dTFygqD7lN9UfLw9HycLQ8HC0Ph0N5CBBgAPidS3kXcnhnAAAAAElFTkSuQmCC);
  background-position: 0 -16px;
  background-repeat: repeat-x;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 3px;
  cursor: pointer;
}

.comments__item-rating i.active {
  background-position: 0 0;
}

.comments__item-date {
    font-size: 12px;
    line-height: 22px;
    color: #9b9b9b;
}

.admin-comments {
  width: 100%;
  border-collapse: collapse;
}

.admin-comments th, .admin-comments td {
  border: 1px solid;
  padding: 10px;
  text-align: center;
}

.admin-comments .photo {
  width: 150px;
}

@media(max-width: 768px) {
  .comments__form-inputs {
    flex-direction: column;
  }

  .comments__form-age {
    max-width: 100%;
  }
}

@media(max-width: 468px) {

.comments__item {
    font-family: Karantina, sans-serif;
    margin-bottom: 15px;
    box-shadow: 0 0.15rem 0.55rem rgba(0, 0, 0, 0.09) !important;
    background: white;
    padding: 14px 8px;
    border-radius: 8px;
    color: black;
    font-size: 14px;
    line-height: 25px;
}

.comments__item-photo img {

    width: 30px;
    height: 30px;

}

.comments__item-author {
    font-weight: 700;
    font-size: 14px;
}

.comments__item-rating i {
    margin-right: -3px;
}
.comments__item-date {
    font-size: 10px;
}

.comment__form__upload {

    margin-bottom: 22px;
}

.comments__form .btn {
    width: 64%;

}
}
