
  <style observations="text/css">


.rating-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0.4rem 0.8rem;
	width: 100%;
}

.rating-text p {
	color: rgba(0, 0, 16, 0.8);
	font-size: 1.3rem;
	padding: 0.3rem;
}

.rating {
	background-color: #00589A;
	padding: 0.6rem 0.6rem 0.3rem 0.6rem;
	border-radius: 7px;
}

svg {
	fill: rgb(242, 242, 242);
	height: 2.8rem;
	width: 2.8rem;
	margin: 0.2rem;
}

.rating-form-2 svg {
	height: 4rem;
	width: 4rem;
	margin: 0.7rem;
}

#radios label {
	position: relative;
}

.rating input[type="radio"] {
	position: absolute;
	opacity: 0;
	width:35px;
	height:35px;
}

.rating input[type="radio"] + svg {
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

input + svg {
	cursor: pointer;
}

input[class="super-happy"]:hover + svg,
input[class="super-happy"]:checked + svg,
input[class="super-happy"]:focus + svg {
	fill: rgb(0, 109, 217);
}

input[class="happy"]:hover + svg,
input[class="happy"]:checked + svg,
input[class="happy"]:focus + svg {
	fill: rgb(0, 204, 79);
}

input[class="neutral"]:hover + svg,
input[class="neutral"]:checked + svg,
input[class="neutral"]:focus + svg {
	fill: rgb(232, 214, 0);
}

input[class="sad"]:hover + svg,
input[class="sad"]:checked + svg,
input[class="sad"]:focus + svg {
	fill: rgb(229, 132, 0);
}

input[class="super-sad"]:hover + svg,
input[class="super-sad"]:checked + svg,
input[class="super-sad"]:focus + svg {
	fill: rgb(239, 42, 16);
}

#progress {
 border: 1px solid black;
 position: relative;
 padding: 3px;
}

#percent {
 position: absolute;   
 left: 40%;
 color:#fff;
}

#bar {
 height: 20px;
 background-color: green;
}
  </style>
