.balloon{
  height: 0;
  padding: 0;
  opacity: 0;
  margin: 0;
  overflow: hidden;
  transition: 0.2s;
}

.balloon.actived{
  width: fit-content;
  height: auto;
  padding: var(--defaultSpace);
  opacity: 1;
  overflow: auto;
  border: solid 1px rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  border-bottom-left-radius: 0;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
  text-align: left;
}

.floatFixed{
  width: 100%;
  height: auto;
  padding: var(--defaultSpace);
  opacity: 1;
  overflow: initial;
  background: var(--bgDefault);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9;
}

.boxInputQst{
  height: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.2s;
}

.boxInputQst.floatFixed.actived{
  width: 100%;
  height: auto;
  padding: var(--defaultSpace);
  opacity: 1;
  overflow: initial;
}

.boxInputQst .flex{
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  align-items: stretch;
}

.boxInputQst input{
  font-size: 1.1em;
  font-family: 'Roboto Slab', sans-serif;
  border: solid 1.5px rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: transparent;
  padding: calc(var(--defaultSpace) / 2);
  outline: none;
}

.boxInputQst input.warning{border: solid 1.5px var(--mainColor);}
.boxInputQst input.warning::placeholder{color: var(--mainColor);}

.boxInputQst input[name="name"]{width: calc(100% - ((var(--defaultSpace) / 1.6) + 125px));}

.boxInputQst .btn{
  font-size: 0.9em;
  width: 120px;
  margin: 0;
  position: relative;
}

.boxInputQst .btn span{
  font-size: 0.7em;
  margin-left: 5px;
  top: -1px;
  position: relative;
}

.boxChoices{
  max-width: 440px;
  height: 0;
  margin: 0 auto;
  opacity: 0;
  overflow: hidden;
  transition: 0.3s;
}

.boxChoices.actived{
  height: auto;
  opacity: 1;
  overflow: initial;
  font-size: 0.8em;
}

.btnChoice{
  width: 100%;
  font-size: 0.8em;
  white-space: nowrap;
  padding: 7px 5px;
  border-radius: 6px;
  border: solid 1.5px rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  font-family: 'Roboto Slab', sans-serif;
  cursor: pointer;
  transition: 0.2s;
}

.boxChoices.two .btnChoice{width: calc(50% - (var(--defaultSpace) / 3));}
.boxChoices.three .btnChoice{width: calc(33.3% - (var(--defaultSpace) / 3));}

.btnChoice:hover, .balloon.answer.actived{
  border: solid 1.5px rgba(61, 97, 183, 0.3);
  background: rgba(61, 97, 183, 0.2);
  color: #b2c9ff;
}


.balloon.answer.actived{
  border-radius: 12px;
  border-bottom-right-radius: inherit;
  margin-left: auto;
}

@media only screen and (min-width: 375px){
  .btnChoice{
    font-size: 0.9em;
    padding: 8px 6px;
  }
}

@media only screen and (min-width: 400px){
  .btnChoice{
    font-size: 1em;
    padding: 10px 8px;
  }
}

@media only screen and (min-width: 768px){
  .btnChoice{
    font-size: 1.15em;
    padding: 12px 10px;
  }
}

@media only screen and (min-width: 1000px){
  .balloon{background: rgba(0, 0, 0, 0.5);}
  .boxInputQst .flex{margin: 0 0 0 auto;}
  .boxInputQst input{border: solid 1.5px rgba(255, 255, 255, 0.15);}

  .boxInputQst.floatFixed.actived{
    padding: var(--defaultSpace);
    padding-right: 0;
  }

  .stHeader .floatFixed{
    background: transparent;
    padding: 0;
    position: unset;
    left: unset;
    bottom: unset;
  }

  .btnChoice{
    padding: calc(var(--defaultSpace) / 1.8) var(--defaultSpace);
    font-size: 1.15em;
  }
}
