.survey-flex-container {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  color: black;
  font-size: 1.6em;
  text-align: left;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  border-left: 0.7em solid #f2b608;
  justify-content: center;
  z-index: 150;
  background-color: white;
  display: flex;
  flex-direction: row;
  padding: 10px;
}
.survey-flex-container .survey-flex-container-1 {
  flex-direction: column;
  flex-basis: 92%;
  display: flex;
}
.survey-flex-container .survey-flex-container-1 svg {
  margin-right: 5px;
}
.survey-flex-container .survey-flex-thumbs-container {
  flex-direction: row;
  display: flex;
  padding-top: 10px;
}
.survey-flex-container .positive-feedback-survey {
  display: flex;
  flex-direction: row;
  flex-basis: 50%;
}
.survey-flex-container .positive-feedback-survey > p {
  margin-top: 2px;
}
.survey-flex-container .negative-feedback-survey {
  display: flex;
  flex-direction: row;
  flex-basis: 50%;
}
.survey-flex-container .thank-you-survey-container {
  font-size: 16px;
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
}
.survey-flex-container .thank-you-survey-container > p {
  font-weight: bold;
  margin-top: 2px;
}
.survey-flex-container .close-button-survey-container {
  flex-basis: 8%;
  display: flex;
  justify-content: flex-end;
}
.survey-flex-container .survey-cursor {
  cursor: pointer;
  color: #0b6496;
}
.survey-flex-container .close-button-survey {
  cursor: pointer;
}
.survey-flex-container .survey-hidden-animation {
  display: none;
  transition: opacity 0.7s ease, height 0.7s ease;
}
.survey-flex-container input,
.survey-flex-container label {
  cursor: pointer;
}
.survey-flex-container .survey-title {
  font-weight: bold;
}
.survey-flex-container .checkbox-title {
  font-weight: bold;
  margin-bottom: 0.6em;
}
.survey-flex-container .checkbox-survey-flex-container-left-bar {
  flex-basis: 92%;
}
.survey-flex-container .checkbox-survey-flex-container-right-bar {
  flex-basis: 8%;
  position: relative;
}
.survey-flex-container .checkbox-survey-flex-container-right-bar .submit {
  position: absolute;
  color: grey;
  bottom: 0.6em;
  right: -1em;
}
@media only screen and (min-width: 700px) {
  .survey-flex-container .checkbox-survey-flex-container-right-bar .submit {
  right: -3em;
}

}
.survey-flex-container .checkbox-survey-flex-container-right-bar .submit.enabled {
  color: #0b6496;
}
.survey-flex-container .survey-flex-checkbox-container {
  justify-content: space-between;
  flex-direction: row;
}
.survey-flex-container .survey-flex-checkbox-container button {
  margin-top: 10px;
  padding: 5px 10px;
  border: none;
  background-color: lightblue;
  color: black;
  border-radius: 5px;
  cursor: pointer;
}
.survey-flex-container .survey-flex-checkbox-container input {
  margin-top: 10px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 0.5em;
  margin-bottom: 0.6em;
}
.survey-flex-container .survey-flex-checkbox-container input[type="checkbox"]:checked + label:not(.no-twiggle) {
  position: relative;
  top: 1px;
}
.survey-flex-container .survey-flex-checkbox-container input[type="checkbox"]:checked:before {
  content: "✔";
  color: #FFFFFF;
  background-color: #0B64A0;
  border-radius: 2px;
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 1;
  position: relative;
  top: -1px;
  padding-bottom: 0.5px;
}
.survey-hidden-animation {
  display: none;
  transition: opacity 0.7s ease, height 0.7s ease;
}
