.survey-box{
  font-family: Roboto,sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 400px;
  background-color: #173E6D;
  color: #fff;
  transition: left 0.3s;
}

@media (min-width: 768px) {
    .survey-box {
        top: 100px;
        width: 300px;
    }
}

@media (min-width: 1200px){
    .survey-box{
        top: 300px;
        width: 350px;
    }
}

.survey-box .top{
  display: flex;
  justify-content: space-between;
}

.survey-box .top .sponsored{
  background-color: #CC2029;
  font-size: 8px;
  width: 70px;
  text-align: center;
  line-height: 1;
  padding: 5px 0;
}

.survey-box .top .close{
  cursor: pointer;
  padding: 2px;
  position: relative;
  width: 30px;
  height: 30px;
}

.survey-box .close:before, .survey-box .close:after {
  position: absolute;
  right: 15px;
  content: '';
  height: 30px;
  width: 2px;
  background-color: #fff;

}

.close:before {
    transform: rotate(45deg);
}

.close:after {
    transform: rotate(-45deg);
}

.survey-box .top .close:hover{
  color: rgb(194, 194, 194);
}

.survey-box .inner{
  padding: 1rem;
  padding-top: 0.3rem;
}

.survey-box .question{
  text-align: center;
}

.survey-box .options{
  padding-top: 1rem;
}

.survey-box .option{
  border: 1px solid #fff;
  border-radius: 1rem;
  text-align: center;
  padding: 4px;
  margin-bottom: 0.5rem;
  font-size: 12px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.survey-box .option .selected{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 151, 46, 0.7);
  text-align: left;
  padding: 4px 8px;
}

.survey-box .bottom{
    margin-top: 0;
}

.survey-box .submit{
  text-align: right;
}

.survey-box .submit button, a.button{
  background-color: #173E6D;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 40px;
  outline: none;
  cursor: pointer;
  padding: 8px 16px;
  transition: all 0.3s;
  font-weight: 700;
  line-height: 1.2;
}

.survey-box .submit button, a.button:hover{
  background-color: #fff;
  color: #CC2029;
}