body {
	font-family: 'Open Sans', sans-serif;
	background: #ececec;
}
.container-better-reviews {
	margin-top: 20px;
	padding: 20px;
	background: white;
	border-radius: 6px;
	text-align: center;
	min-height: 580px;
}
.text-above-logo {
	padding: 0 0 40px 0;
	font-size: 15px;
	color: #9E9E9E;
}
.text-above-rating-stars {
	position: relative;
	width: 80%;
	margin: 0 auto;
	font-size: 24px;
	color: #757575;
	padding: 60px 0 90px 0;
}
.text-star {
	display: none;
}
.modal-title {
	color: #607D8B;
}
.modal-review {
	background: white;
}
#betterReviewsForm input {
	margin: 10px 0;
}
#betterReviewsForm textarea {
	margin: 10px 0 10px 0;
}
.bottom-message {
  border-radius: 8px;
  border: 2px dashed #B0BEC5;
  padding: 30px;
  color: #B0BEC5;
  font-size: 16px;
}
ul.better-reviews-logos {
  position: relative;
  margin: 0 auto;
  list-style-type: none;
  text-align: center;
}
.better-reviews-logos li{
  list-style: none;
  display: inline;
  line-height: 100px;
} 
label {
  cursor: pointer;
}
svg {
  width: 75px;
  height: 75px;
  padding: 0;
}
/* hide radio buttons */
input[name="star"] {
  display: inline-block;
  width: 0;
  opacity: 0;
  margin-left: -2px;
}
/* hide source svg */
.star-source {
  width: 0;
  height: 0;
  visibility: hidden;
}
/* set initial color to transparent so fill is empty*/
.star {
  color: #B0BEC5;
  transition: color 0.2s ease-in-out;
}
/* set direction to row-reverse so 5th star is at the end and ~ 
  can be used to fill all sibling stars that precede last starred element
  */
.star-container {
  height: 100px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
label:hover ~ label .star,
svg.star:hover,
input[name="star"]:focus ~ label .star,
input[name="star"]:checked ~ label .star {
  color: #FDD835;
}
input[name="star"]:checked + label .star {
  animation: starred 0.5s;
}
input[name="star"]:checked + label {
  animation: scaleup 1s;
}
@keyframes scaleup {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
@keyframes starred {
  from {
    color: #FDD835;
  }
  to {
    color: #FDD835;
  }
}