body {
  margin: 0;
  padding: 40px 0;
  background: url(../img/bg.jpg) no-repeat;
  background-size: cover;
  font-family: 'Open Sans', sans-serif;
}

.question {
  position: relative;
  padding: 30px 60px;
  background: #EDEDED;
  margin-bottom: 20px;
}

.question__number {
  background: #F4ACDC;
  color: white;
  font-weight: bolder;
  height: 32px;
  padding: 0 11px;
  border-radius: 3px;
  display: inline-block;
  line-height: 32px;
  position: absolute;
  top: 20px;
  left: -77px;
}

.question-text {
  display: flex;
  justify-content: center;
  text-align: center;
}

/* .question__answer {
  padding-right: 30px;
  padding-left: 110px;
} */

.question-stars{
width: inherit !important;
display: flex;
justify-content: center;
}

.question__answer .form-control {
  box-shadow: 1px 1px 3px 1px #D5D5D5;
}
.punctuation-container{
  margin-top: 10px;
  display: flex;
  justify-content: space-evenly;
}
.question-punctuation{
  background: #d0d0d0; 
  color: white;
  font-weight: bolder;
  height: 32px; 
  padding: 0 11px;
  border-radius: 3px;  
  line-height: 32px;
}

.star-list, 
.star-list li {
  margin: 0;
  padding: 0;
}

.star-list {
  list-style: none;
  background: #F5E4BA;
  display: inline-block;
  border-radius: 40px;
  padding: 0 20px;
}

.star-list li {
  display: inline-block;
  padding: 6px 3px;
  font-size: 24px;
}

.star-list li .fa {
  color: white;
  cursor: pointer;
}

.star-list li.active .fa,
.star-list li:hover .fa {
  color: #F09647;
}

.card-body .question {
  margin-left: -20px;
  margin-right: -20px;
}

.brand {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: auto;
  padding: 30px;
}

.card-title,
.card-text, 
.card h4, 
.question-text {
  color: #737373;
}

.card-title {
  padding: 0 0 20px;
  margin: 0;
  font-weight: bold;
  font-size: 18px;
}

.card h4 {
  margin: 30px 0 20px;
  font-weight: bolder;
  font-size: 22px;
}

.card .btn-success {
  background: linear-gradient(#2FEC6E, #027D1B);
  border-width: 0;
  padding: 10px 60px 10px 30px;
  font-weight: bolder;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 1px 1px 3px 1px #D5D5D5;
}

.card .btn-success span {
  background: rgba(0, 0, 0, .2);
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  padding: 8px 15px 5px 10px;
  font-size: 18px;
}

.thanks {
  padding: 60px;
}

.thanks hr {
  margin: 60px 0;
}

.thanks img {
  margin-bottom: 30px;
}

.thanks a {
  text-decoration: underline;
  color: #737373;
}



@media (max-width: 480px){
.card-text{
  font-size: 14px;
}

.question-text{
  font-size: 13px;
}

.card-title {
  font-weight: bold;
  font-size: 16px;
}

.card h4 {
  margin: 20px 0 10px;
  font-weight: bolder;
  font-size: 16px;
}
  .punctuation-container{
    justify-content: space-around;
  }
}