.survey-widget {
  /* Radio Buttons
  ========================================================================== */
  /* Unchecked styles */
  /* Checked styles */
  /* Radio With gap */
  /* Focused styles */
  /* Disabled Radio With gap */
  /* Disabled style */
  /* Checkboxes
  ========================================================================== */
  /* Remove default checkbox */
  /* Indeterminate checkbox */
  /* Switch
  ========================================================================== */
}

.survey-widget [type="radio"]:not(:checked),
.survey-widget [type="radio"]:checked {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.survey-widget [type="radio"]:not(:checked) + span,
.survey-widget [type="radio"]:checked + span {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  -webkit-transition: .28s ease;
  transition: .28s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.survey-widget [type="radio"] + span:before,
.survey-widget [type="radio"] + span:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 2px;
  width: 18px;
  height: 18px;
  z-index: 0;
  -webkit-transition: .28s ease;
  transition: .28s ease;
}

.survey-widget [type="radio"]:not(:checked) + span:before,
.survey-widget [type="radio"]:not(:checked) + span:after,
.survey-widget [type="radio"]:checked + span:before,
.survey-widget [type="radio"]:checked + span:after,
.survey-widget [type="radio"].with-gap:checked + span:before,
.survey-widget [type="radio"].with-gap:checked + span:after {
  border-radius: 50%;
}

.survey-widget [type="radio"]:not(:checked) + span:before,
.survey-widget [type="radio"]:not(:checked) + span:after {
  border: 2px solid var(--color-gray1);
}

.survey-widget [type="radio"]:not(:checked) + span:after {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.survey-widget [type="radio"]:checked + span:before {
  border: 2px solid transparent;
}

.survey-widget [type="radio"]:checked + span:after,
.survey-widget [type="radio"].with-gap:checked + span:before,
.survey-widget [type="radio"].with-gap:checked + span:after {
  border: 2px solid var(--color-blue);
}

.survey-widget [type="radio"]:checked + span:after,
.survey-widget [type="radio"].with-gap:checked + span:after {
  background-color: var(--color-blue);
}

.survey-widget [type="radio"]:checked + span:after {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.survey-widget [type="radio"].with-gap:checked + span:after {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.survey-widget [type="radio"].tabbed:focus + span:before {
  -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
}

.survey-widget [type="radio"].with-gap:disabled:checked + span:before {
  border: 2px solid rgba(0, 0, 0, 0.42);
}

.survey-widget [type="radio"].with-gap:disabled:checked + span:after {
  border: none;
  background-color: rgba(0, 0, 0, 0.42);
}

.survey-widget [type="radio"]:disabled:not(:checked) + span:before,
.survey-widget [type="radio"]:disabled:checked + span:before {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.42);
}

.survey-widget [type="radio"]:disabled + span {
  color: rgba(0, 0, 0, 0.42);
}

.survey-widget [type="radio"]:disabled:not(:checked) + span:before {
  border-color: var(--color-gray5);
}

.survey-widget [type="radio"]:disabled:checked + span:after {
  background-color: rgba(0, 0, 0, 0.42);
  border-color: #949494;
}

.survey-widget [type="checkbox"]:not(:checked),
.survey-widget [type="checkbox"]:checked {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.survey-widget [type="checkbox"] {
  /* checkbox aspect */
}

.survey-widget [type="checkbox"] + span:not(.lever) {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.survey-widget [type="checkbox"] + span:not(.lever):before,
.survey-widget [type="checkbox"]:not(.filled-in) + span:not(.lever):after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 2px solid var(--color-gray1);
  border-radius: 1px;
  margin-top: 3px;
  -webkit-transition: .2s;
  transition: .2s;
}

.survey-widget [type="checkbox"]:not(.filled-in) + span:not(.lever):after {
  border: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.survey-widget [type="checkbox"]:not(:checked):disabled + span:not(.lever):before {
  border: none;
  background-color: rgba(0, 0, 0, 0.42);
}

.survey-widget [type="checkbox"].tabbed:focus + span:not(.lever):after {
  -webkit-transform: scale(1);
  transform: scale(1);
  border: 0;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
}

.survey-widget [type="checkbox"]:checked + span:not(.lever):before {
  top: -4px;
  left: -5px;
  width: 12px;
  height: 22px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.survey-widget [type="checkbox"]:checked:disabled + span:before {
  border-right: 2px solid rgba(0, 0, 0, 0.42);
  border-bottom: 2px solid rgba(0, 0, 0, 0.42);
}

.survey-widget [type="checkbox"]:indeterminate + span:not(.lever):before {
  top: -11px;
  left: -12px;
  width: 10px;
  height: 22px;
  border-top: none;
  border-left: none;
  border-right: 2px solid var(--color-blue);
  border-bottom: none;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.survey-widget [type="checkbox"]:indeterminate:disabled + span:not(.lever):before {
  border-right: 2px solid rgba(0, 0, 0, 0.42);
  background-color: transparent;
}

.survey-widget [type="checkbox"].filled-in + span:not(.lever):after {
  border-radius: 2px;
}

.survey-widget [type="checkbox"].filled-in + span:not(.lever):before,
.survey-widget [type="checkbox"].filled-in + span:not(.lever):after {
  content: '';
  left: 0;
  position: absolute;
  /* .1s delay is for check animation */
  -webkit-transition: border 0.25s, background-color 0.25s, width 0.2s 0.1s, height 0.2s 0.1s, top 0.2s 0.1s, left 0.2s 0.1s;
  transition: border 0.25s, background-color 0.25s, width 0.2s 0.1s, height 0.2s 0.1s, top 0.2s 0.1s, left 0.2s 0.1s;
  z-index: 1;
}

.survey-widget [type="checkbox"].filled-in:not(:checked) + span:not(.lever):before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.survey-widget [type="checkbox"].filled-in:not(:checked) + span:not(.lever):after {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid var(--color-gray1);
  top: 0px;
  z-index: 0;
}

.survey-widget [type="checkbox"].filled-in:checked + span:not(.lever):before {
  top: 0;
  left: 1px;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.survey-widget [type="checkbox"].filled-in:checked + span:not(.lever):after {
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-blue);
  background-color: var(--color-blue);
  z-index: 0;
}

.survey-widget [type="checkbox"].filled-in.tabbed:focus + span:not(.lever):after {
  border-radius: 2px;
  border-color: var(--color-gray1);
  background-color: rgba(0, 0, 0, 0.1);
}

.survey-widget [type="checkbox"].filled-in.tabbed:checked:focus + span:not(.lever):after {
  border-radius: 2px;
  background-color: var(--color-blue);
  border-color: var(--color-blue);
}

.survey-widget [type="checkbox"].filled-in:disabled:not(:checked) + span:not(.lever):before {
  background-color: transparent;
  border: 2px solid transparent;
}

.survey-widget [type="checkbox"].filled-in:disabled:not(:checked) + span:not(.lever):after {
  border-color: var(--color-gray5);
  background-color: rgba(255, 255, 255, 0);
}

.survey-widget [type="checkbox"].filled-in:disabled:checked + span:not(.lever):before {
  background-color: transparent;
}

.survey-widget [type="checkbox"].filled-in:disabled:checked + span:not(.lever):after {
  background-color: var(--color-gray3);
  border-color: var(--color-gray3);
}

.survey-widget .survey-switch,
.survey-widget .survey-switch * {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.survey-widget .survey-switch label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-gray-1);
}

.survey-widget .survey-switch label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}

.survey-widget .survey-switch label input[type=checkbox]:checked + .lever {
  background-color: var(--color-blue);
}

.survey-widget .survey-switch label input[type=checkbox]:checked + .lever:before,
.survey-widget .survey-switch label input[type=checkbox]:checked + .lever:after {
  left: 21px;
}

.survey-widget .survey-switch label .lever {
  content: "";
  display: inline-block;
  position: relative;
  width: 45px;
  height: 27px;
  background-color: var(--color-gray4);
  border-radius: 99px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  vertical-align: middle;
  margin-right: 9px;
}

.survey-widget .survey-switch label .lever:before,
.survey-widget .survey-switch label .lever:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  left: 3px;
  top: 3px;
  -webkit-transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
  transition: left 0.3s ease, background 0.3s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
  transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease, transform 0.1s ease;
  transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease, transform 0.1s ease, -webkit-box-shadow 0.1s ease, -webkit-transform 0.1s ease;
}

.survey-widget .survey-switch label .lever:before {
  background-color: var(--color-blue-10);
}

.survey-widget .survey-switch label .lever:after {
  background-color: white;
  -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.survey-widget input[type=checkbox]:checked:not(:disabled) ~ .lever:active::before,
.survey-widget input[type=checkbox]:checked:not(:disabled).tabbed:focus ~ .lever::before {
  -webkit-transform: scale(2.4);
  transform: scale(2.4);
  background-color: var(--color-blue-10);
}

.survey-widget input[type=checkbox]:not(:disabled) ~ .lever:active:before,
.survey-widget input[type=checkbox]:not(:disabled).tabbed:focus ~ .lever::before {
  -webkit-transform: scale(2.4);
  transform: scale(2.4);
  background-color: rgba(255, 255, 255, 0.1);
}

.survey-widget .survey-switch input[type=checkbox][disabled] + .lever {
  cursor: default;
  background-color: var(--color-gray5);
}

.survey-widget .survey-switch label input[type=checkbox][disabled] + .lever:after,
.survey-widget .survey-switch label input[type=checkbox][disabled]:checked + .lever:after {
  background-color: var(--color-gray6);
}

.survey-waiting {
  text-align: center;
  text-transform: uppercase;
}

.survey-ready {
  opacity: 1 !important;
  transition: opacity 400ms ease;
}

.survey-switchs {
  display: flex;
  align-items: center;
}

.survey-switchs .survey-switch {
  margin-right: 15px;
}

.survey-alert {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  font-size: 18px;
  border-radius: 6px;
  background-color: var(--color-gray6);
}

.survey-alert.is-blue {
  color: var(--color-blue);
  background-color: var(--color-blue-10);
}

.survey-alert.is-blue svg {
  width: 39px;
  height: 39px;
}

.survey-alert.is-blue svg path {
  fill: var(--color-blue);
}

.survey-summary .survey-question {
  margin: 12px 0;
  padding: 6px;
  border-radius: 6px;
  background-color: var(--color-gray6);
}

.survey-summary .survey-question .survey-name {
  display: flex;
  align-items: center;
  padding: 6px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
}

.survey-summary .survey-question .survey-name span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-weight: bold;
  font-size: 10px;
  color: white;
  background-color: var(--color-blue);
  border-radius: 50%;
}

.survey-summary .survey-question .survey-answers {
  margin-left: 18px;
}

.survey-summary .survey-question .survey-answers .survey-name {
  font-size: 15px;
  font-weight: 500;
}

.survey-summary .survey-question .survey-answers .survey-name:not(:last-child) {
  border-bottom: 1px solid var(--color-gray5);
}

.survey-tabs {
  display: flex;
  align-items: center;
  margin: 30px 0;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--color-gray5);
}

.survey-tabs.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.survey-tabs .survey-tab {
  cursor: pointer;
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  font-weight: 600;
  font-size: 15px;
  padding: 9px 18px;
  line-height: normal;
  text-transform: uppercase;
  align-items: center;
  justify-content: center;
}

.survey-tabs .survey-tab:not(:last-child) {
  border-right: 1px solid var(--color-gray5);
}

.survey-tabs .survey-tab.is-active {
  color: white;
  background-color: var(--color-blue);
}

.survey-tabs .survey-tab.is-active svg path {
  fill: #ffffff;
}

.survey-tabs .survey-tab.is-active span {
  color: var(--color-blue);
  background-color: white;
}

.survey-tabs .survey-tab .survey-icon svg {
  padding: 6px;
}

@media (min-width: 769px) {
  .survey-tabs .survey-tab {
    font-size: 18px;
    padding: 12px 24px;
  }
}

.survey-tabs .survey-tab span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  font-size: 10px;
  color: white;
  background-color: var(--color-blue);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.survey-messagge {
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.survey-messagge .survey-icon {
  border-radius: 99px;
  background-color: var(--color-blue-10);
}

.survey-messagge .survey-icon svg {
  width: 90px;
  height: 90px;
  padding: 24px;
}

.survey-messagge .survey-icon svg path {
  fill: var(--color-blue);
}

.survey-messagge .survey-text {
  color: var(--color-gray0);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 21px;
  margin: 15px 0;
}

.survey-label {
  display: block;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 6px;
}

[data-action="click"][data-action-name] {
  cursor: pointer;
}

.survey-select {
  position: relative;
}

.survey-select select {
  cursor: pointer;
  appearance: none;
  padding-right: 30px !important;
}

.survey-select .survey-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.survey-buttons .survey-button {
  margin: 3px;
}

.survey-button,
button.survey-button {
  white-space: nowrap;
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  height: 33px;
  color: var(--color-gray-1);
  cursor: pointer;
  border-radius: 6px;
  border: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-color: var(--color-gray4);
}

.survey-button.is-disabled,
button.survey-button.is-disabled {
  color: var(--color-gray2) !important;
  background: var(--color-gray6) !important;
  pointer-events: none;
}

.survey-button.is-disabled .survey-icon svg path,
button.survey-button.is-disabled .survey-icon svg path {
  fill: var(--color-gray2) !important;
}

.survey-button.is-blue,
button.survey-button.is-blue {
  color: white;
  background-color: var(--color-blue-90);
  border-color: var(--color-blue);
}

.survey-button.is-blue .survey-icon svg path,
button.survey-button.is-blue .survey-icon svg path {
  fill: white;
}

.survey-button.is-green,
button.survey-button.is-green {
  color: white;
  background-color: var(--color-green-80);
  border-color: var(--color-green);
}

.survey-button.is-green .survey-icon svg path,
button.survey-button.is-green .survey-icon svg path {
  fill: white;
}

.survey-button.is-red,
button.survey-button.is-red {
  color: white;
  background-color: var(--color-red-70);
  border-color: var(--color-red-50);
}

.survey-button.is-red .survey-icon svg path,
button.survey-button.is-red .survey-icon svg path {
  fill: white;
}

@media (min-width: 769px) {
  .survey-button:not(.is-small),
  button.survey-button:not(.is-small) {
    font-size: 18px;
    padding: 0 18px;
    height: 42px;
  }
  .survey-button:not(.is-small).has-icon-left,
  button.survey-button:not(.is-small).has-icon-left {
    padding-left: 6px;
  }
  .survey-button:not(.is-small).has-icon-right,
  button.survey-button:not(.is-small).has-icon-right {
    padding-right: 6px;
  }
}

.survey-button.has-icon-left,
button.survey-button.has-icon-left {
  padding-left: 3px;
}

.survey-button.has-icon-right,
button.survey-button.has-icon-right {
  padding-right: 3px;
}

.survey-button.min-width,
button.survey-button.min-width {
  min-width: 100px;
}

.survey-select select,
.survey-input,
.survey-textarea {
  width: 100%;
  height: 39px;
  font-weight: 500;
  line-height: normal;
  font-size: 15px;
  padding: 0 12px;
  border: 0;
  color: var(--color-gray-1);
  border-radius: 6px;
  background-color: var(--color-gray5-80);
}

.survey-select select.has-error,
.survey-input.has-error,
.survey-textarea.has-error {
  border-color: var(--color-red-10);
  background-color: var(--color-red-10);
}

.survey-select select:focus,
.survey-input:focus,
.survey-textarea:focus {
  border-color: var(--color-gray3) !important;
}

.survey-select select[disabled],
.survey-input[disabled],
.survey-textarea[disabled] {
  color: var(--color-gray0);
  background-color: var(--color-gray5-40);
  border-color: var(--color-gray3-40);
}

@media (min-width: 769px) {
  .survey-select select:not(.is-small),
  .survey-input:not(.is-small),
  .survey-textarea:not(.is-small) {
    height: 42px;
    font-size: 18px;
    padding: 0 15px;
  }
}

.survey-input::placeholder,
.survey-textarea::placeholder {
  color: var(--color-gray2);
}

.survey-input[disabled]::placeholder,
.survey-textarea[disabled]::placeholder {
  color: var(--color-gray3);
}

.survey-textarea {
  padding: 12px;
  height: 75px;
  resize: none;
}

@media (min-width: 769px) {
  .survey-textarea:not(.is-small) {
    height: 90px;
    padding: 15px;
  }
}

.survey-row {
  flex-grow: 1;
}

.survey-row.is-vcenter {
  align-items: center;
}

.survey-row .survey-column:not(.is-fit) {
  flex-grow: 1;
  flex-shrink: 1;
}

@media (min-width: 769px) {
  .survey-row .survey-column:not(.is-fit) {
    width: 0%;
  }
}

@media (min-width: 769px) {
  .survey-row {
    display: flex;
  }
}

.survey-row.is-mobile {
  display: flex;
}

.survey-row.is-mobile .survey-column:not(.is-fit) {
  width: 0%;
}

.survey-text-center {
  text-align: center;
}

.survey-text-right {
  text-align: right;
}

.survey-icon {
  display: inline-flex;
  vertical-align: middle;
}

.survey-icon svg {
  width: 30px;
  height: 30px;
  padding: 9px;
  display: block;
}

.survey-icon svg path {
  fill: var(--color-gray0);
}

.survey-form-feedback .survey-form-group-description {
  border: 0;
  padding: 0;
  box-shadow: none;
}

.survey-form-group {
  position: relative;
  padding: 9px;
  margin: 30px 0;
  border-radius: 6px;
  border-top: 5px solid var(--color-blue);
  box-shadow: 0 1px 5px var(--color-gray2-50);
}

.survey-form-group.has-error,
.survey-form-group.has-other-error {
  border-top-color: var(--color-red);
}

.survey-form-group.has-error .survey-name,
.survey-form-group.has-other-error .survey-name {
  background-color: var(--color-red);
}

.survey-form-group.has-error .survey-mandatory,
.survey-form-group.has-other-error .survey-mandatory {
  color: var(--color-red);
  background-color: var(--color-red-10);
}

.survey-form-group.has-other-error input[data-name="other"] {
  background-color: var(--color-red-10);
}

.survey-form-group .survey-field-group {
  margin: 12px;
}

.survey-form-group .survey-field-group.survey-field-answer .survey-row {
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .survey-form-group .survey-field-group.survey-field-answer .is-last {
    width: 100%;
    margin-top: 6px;
  }
  .survey-form-group .survey-field-group.survey-field-answer .is-last .is-fit {
    width: 0%;
    flex-grow: 1;
    flex-shrink: 1;
  }
  .survey-form-group .survey-field-group.survey-field-answer .is-last .survey-button {
    display: flex;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .survey-form-group .survey-field-group.survey-field-answer .is-last {
    padding-left: 15px;
  }
  .survey-form-group .survey-field-group.survey-field-answer .is-last .survey-switch {
    margin-right: 15px;
  }
}

.survey-form-group .survey-field-group.min-height {
  display: flex;
  align-items: center;
  min-height: 33px;
  margin: 0;
}

.survey-form-group .survey-field-group .survey-switch {
  display: inline-flex;
  vertical-align: middle;
}

.survey-form-group .survey-field-group label {
  flex-grow: 1;
}

.survey-form-group .survey-field-group label span:not(.lever) {
  height: 20px !important;
  line-height: 20px !important;
}

.survey-form-group .survey-field-group .survey-text {
  font-size: 18px;
  font-weight: 400;
}

.survey-form-group .survey-field-group .survey-text.is-large {
  font-size: 24px;
  font-weight: 600;
}

@media (min-width: 769px) {
  .survey-form-group .survey-field-group .survey-text.is-large {
    font-size: 27px;
  }
}

.survey-form-group .survey-field-group .survey-text.is-uppercase {
  text-transform: uppercase;
}

.survey-form-group .survey-field-group .survey-text.is-bold {
  font-weight: 600;
}

.survey-form-group .survey-mandatory {
  display: inline-flex;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 12px;
  margin-top: 12px;
  padding: 3px 9px;
  border-radius: 3px;
  color: var(--color-gray0);
  background-color: var(--color-gray6);
}

.survey-form-group .survey-name {
  position: absolute;
  top: -19px;
  left: -19px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50%;
  color: white;
  background-color: var(--color-blue);
}

@media (min-width: 769px) {
  .survey-form-group {
    padding: 21px;
  }
}

.survey-management .survey-title {
  display: flex;
  align-items: center;
  font-size: 36px;
  font-weight: bold;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-gray5);
}

.survey-management .survey-title .survey-icon svg {
  width: 39px;
  height: 39px;
}

.survey-management .survey-context {
  margin: 30px 0;
}

.survey-management .survey-context .survey-text {
  font-size: 18px;
  font-weight: 600;
}

.survey-users {
  margin: 30px -12px;
}

.survey-users .survey-user {
  cursor: pointer;
  margin: 12px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 6px 9px;
  background-color: var(--color-gray6-20);
  border: 1px solid var(--color-gray5);
}

.survey-users .survey-user .survey-info {
  flex-grow: 1;
}

.survey-users .survey-user .survey-code {
  color: var(--color-gray1);
  font-weight: 600;
  font-size: 12px;
}

.survey-users .survey-user .survey-name {
  font-size: 15px;
  text-transform: uppercase;
}

.survey-users .survey-user .survey-switch {
  pointer-events: none;
}

.survey-users .survey-user .survey-switch label {
  display: block;
}

.survey-users .survey-user .survey-switch label .lever {
  margin: 0;
}

@media (min-width: 769px) {
  .survey-users .survey-user {
    width: calc((100%/3) - 24px);
    display: inline-flex;
  }
}

@media (min-width: 769px) {
  .survey-users {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
}

.survey-items {
  margin: 30px -12px;
}

.survey-items .survey-item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 12px;
  border-radius: 6px;
  border: 1px solid var(--color-gray6);
  box-shadow: 0 1px 5px var(--color-gray2-50);
}

.survey-items .survey-item .survey-picture {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 45px 15px;
  background-color: var(--color-gray6);
}

.survey-items .survey-item .survey-picture.is-blue {
  color: white;
  background-color: var(--color-blue);
}

.survey-items .survey-item .survey-content {
  line-height: normal;
  padding: 9px 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.survey-items .survey-item .survey-content .survey-states {
  margin-bottom: 6px;
  border-bottom: 1px solid var(--color-gray5);
}

.survey-items .survey-item .survey-content .survey-state {
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

.survey-items .survey-item .survey-content .survey-state.is-active svg path {
  fill: var(--color-blue);
}

.survey-items .survey-item .survey-content .survey-state .survey-icon svg {
  height: 21px;
  padding: 1px;
}

.survey-items .survey-item .survey-content .survey-row {
  flex-grow: 0;
  justify-content: space-between;
}

.survey-items .survey-item .survey-content .survey-row .survey-column {
  display: flex;
  align-items: center;
}

.survey-items .survey-item .survey-content .survey-name {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 6px;
}

.survey-items .survey-item .survey-content .survey-description {
  font-size: 15px;
  margin: 6px 0;
  color: var(--color-gray0);
}

.survey-items .survey-item .survey-content .survey-text {
  color: var(--color-gray1);
  text-transform: uppercase;
  font-size: 12px;
}

@media (min-width: 769px) {
  .survey-items .survey-item {
    display: inline-flex;
    flex-direction: column;
    width: calc((100%/3) - 24px);
  }
}

@media (min-width: 769px) {
  .survey-items {
    display: flex;
    flex-wrap: wrap;
  }
}