.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 {
  padding: 0.4rem 0.4rem 0.1rem 0.4rem;
  border-radius: 2.2rem;
}

.rating-form svg {
  fill: rgb(218, 216, 216);
  height: 3rem;
  width: 3rem;
  margin: 0.2rem;
}

.rating-form-2 svg {
  fill: rgb(218, 216, 216);
  height: 2.375rem;
  width: 2.375rem;
  margin: 0.5rem;
}

.rating-form-3 svg {
  fill: rgb(218, 216, 216);
  height: 2.375rem;
  width: 2.375rem;
  margin: 0.5rem;
}

#radios label {
  position: relative;
}

input.svg[type="radio"] {
  position: absolute;
  opacity: 0;
}

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);
}

.fc-title {
  white-space: normal;
  font-size: 10px;
}

.fc-content {
  color: white;
}