.rate_form ul {
  list-style-type: none;
}

.rate_form ul li {
/*    display: flex;
    flex-wrap: wrap;
    gap: 20px;*/
    margin: 20px 0 0 0;
}
 /*
.rate_form ul li:last-child {
    margin-top: 30px;
}
*/

.rate_form textarea {
  width: 100%;
  color: var(--color-gray);
}

.rate_form div {
    margin-top: 10px;
}


/*
.input_block {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.first_block:first-child {
    flex-grow: 2;
}

.check_block {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: start;
}

.long {
    flex-grow: 20;
}
*/

.list_item {
    padding: 10px 10px 10px 20px;
    background: var(--color-green-01); 
    color: var(--color-green);
    border-radius: 10px;
    margin-top: 10px;
}

.sub_list_item {
    padding-left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.sub_list_item > span {
   flex-grow: 1;
}


.list_item:before, 
.sub_list_item:before {
    content: attr(data-num);
}

.rate_form .req:after {
    content: "*";
    color: var(--color-red);
    margin-left: 4px;
    position: absolute;
    top: 2px;
    right: 8px;
    font-size: 160%;
}

.rate_form input[type="submit"] {
    padding: 10px 20px;
}

.error_report {
    border: 1px solid #ff5511;
    padding: 1em;
    background: #ffddcf;
}





.rating-area {
	overflow: hidden;
	width: 300px;
	margin: 0 auto;
}
.rating-area:not(:checked) > input {
	display: none;
}
.rating-area:not(:checked) > label {
	float: right;
	width: 60px;
	padding: 0;
	cursor: pointer;
	font-size: 48px;
	line-height: 48px;
	color: var(--color-silver-gray);
	text-shadow: 1px 1px #bbb;
}
.rating-area:not(:checked) > label:before {
	content: "\2605";
/*	content: 'p';*/
}
.rating-area > input:checked ~ label {
	color: var(--color-red);
/*	text-shadow: 1px 1px #c60;*/
}
.rating-area:not(:checked) > label:hover,
.rating-area:not(:checked) > label:hover ~ label {
	color: var(--color-red);
}
.rating-area > input:checked + label:hover,
.rating-area > input:checked + label:hover ~ label,
.rating-area > input:checked ~ label:hover,
.rating-area > input:checked ~ label:hover ~ label,
.rating-area > label:hover ~ input:checked ~ label {
	color: var(--color-red);
/*	text-shadow: 1px 1px goldenrod;*/
}
.rate-area > label:active {
	position: relative;
}

.sub_list_item .rating-area {
    width: 150px;
margin-top: 0;
}

.sub_list_item .rating-area:not(:checked) > label {
	width: 30px;
	font-size: 24px;
	line-height: 24px;
   
}

@media screen and (max-width: 730px) {

.rate_form ul li {
    flex-direction: column;
}

}