.ga-survey {
  z-index: 1000;
  /* we don't need a visual hr in layout */
  /* disables some nasty font attributes in standard browsers */ }
  .ga-survey * {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-size: 1em;
    outline: none;
    font-family: 'Roboto', sans-serif;
    font-stretch: normal;
    font-weight: 500;
    font-size: 1em;
    line-height: 1; }
  .ga-survey code, .ga-survey kbd, .ga-survey samp, .ga-survey pre, .ga-survey tt, .ga-survey var, .ga-survey textarea, .ga-survey input, .ga-survey select, .ga-survey isindex, .ga-survey listing, .ga-survey xmp, .ga-survey plaintext {
    font: inherit;
    font-size: 1em;
    white-space: normal; }
  .ga-survey dfn, .ga-survey i, .ga-survey cite, .ga-survey var, .ga-survey address, .ga-survey em {
    font-style: normal; }
  .ga-survey th, .ga-survey b, .ga-survey strong, .ga-survey h1, .ga-survey h2, .ga-survey h3, .ga-survey h4, .ga-survey h5, .ga-survey h6 {
    font-weight: normal; }
  .ga-survey a, .ga-survey img, .ga-survey a img, .ga-survey iframe, .ga-survey form, .ga-survey fieldset, .ga-survey abbr, .ga-survey acronym, .ga-survey object, .ga-survey applet, .ga-survey table {
    border: none; }
  .ga-survey table {
    border-collapse: collapse;
    border-spacing: 0; }
  .ga-survey caption, .ga-survey th, .ga-survey td, .ga-survey center {
    text-align: left;
    vertical-align: top; }
  .ga-survey body {
    line-height: 1;
    background: white;
    color: black; }
  .ga-survey q {
    quotes: "" ""; }
  .ga-survey ul, .ga-survey ol, .ga-survey dir, .ga-survey menu {
    list-style: none; }
  .ga-survey sub, .ga-survey sup {
    vertical-align: baseline; }
  .ga-survey a {
    color: inherit; }
  .ga-survey hr {
    display: none; }
  .ga-survey font {
    color: inherit !important;
    font: inherit !important;
    color: inherit !important; }
  .ga-survey marquee {
    overflow: inherit !important;
    -moz-binding: none; }
  .ga-survey blink {
    text-decoration: none; }
  .ga-survey nobr {
    white-space: normal; }

@keyframes popin {
  0% {
    bottom: -100%; }
  100% {
    bottom: 0%; } }
@keyframes popout {
  0% {
    bottom: 0%; }
  100% {
    bottom: -100%; } }
.ga-survey-hidden {
  bottom: 0%;
  animation-name: popout;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards; }

.ga-survey-show {
  bottom: -100%;
  animation-name: popin;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards; }

@keyframes multiple-popin {
  0% {
    right: -100%; }
  100% {
    right: 40px; } }
@keyframes multiple-popout {
  0% {
    right: 40px; }
  100% {
    right: -100%; } }
.ga-survey-multiple-hidden {
  right: 40px;
  animation-name: multiple-popout;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards; }

.ga-survey-multiple-show {
  right: 40px;
  animation-name: multiple-popin;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards; }

#multiple-choice-container {
  display: none;
  position: fixed;
  width: 320px;
  height: 210px;
  right: -100%;
  bottom: 40px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.8);
  overflow-y: none;
  border: none;
  border-radius: 4px;
  background-color: #2b2b80;
  font-size: large;
  /* HIDE RADIO */ }
  #multiple-choice-container form {
    height: 100%; }
  #multiple-choice-container .close-button-container {
    display: flex;
    justify-content: center;
    align-items: center; }
    #multiple-choice-container .close-button-container #ga-multiple-close-button {
      position: absolute;
      top: -11px;
      left: -11px;
      height: 24px;
      width: 24px;
      color: #767676;
      border: none;
      border-radius: 12px;
      font-size: 20px;
      cursor: pointer; }
  #multiple-choice-container .ga-center {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center; }
  #multiple-choice-container #multiple-poll-question {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 20px; }
  #multiple-choice-container h1 {
    color: white;
    font-weight: 600;
    font-size: 21px;
    text-align: center;
    line-height: 1.2;
    position: relative; }
  #multiple-choice-container [type=radio], #multiple-choice-container [type=checkbox] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0; }
  #multiple-choice-container .multiple-choice-elements {
    display: flex;
    flex-wrap: wrap;
    margin-top: 24px;
    justify-content: center; }
    #multiple-choice-container .multiple-choice-elements label {
      margin-right: 5px;
      margin-left: 5px;
      margin-top: 10px; }
      #multiple-choice-container .multiple-choice-elements label div {
        text-align: center;
        color: #2b2b80;
        background-color: white;
        border: none;
        font-weight: bold;
        font-size: 25px;
        cursor: pointer;
        height: 43px;
        transition: background-color .35s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center; }
        #multiple-choice-container .multiple-choice-elements label div:hover {
          background-color: lightgray; }
  #multiple-choice-container .ga-yes-no label div {
    border-radius: 4px;
    width: 96px; }
  #multiple-choice-container .ga-circle label div {
    border-radius: 50%;
    width: 43px; }

#ga-multiple-thank-you {
  display: none;
  text-align: center;
  font-size: 24px;
  color: white;
  line-height: 36px;
  height: 100%; }
  #ga-multiple-thank-you div {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center; }
    #ga-multiple-thank-you div h1 {
      color: white; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1;
    visibility: visible; } }
.multiple-show-content {
  animation: fadeIn 0.5s ease-in-out 1 forwards; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    visibility: hidden; } }
.multiple-hide-content {
  animation: fadeOut 0.5s ease-in-out 1 forwards; }

#ga-survey-container {
  display: none;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
  overflow-y: auto;
  border: none;
  border-radius: 1em 1em 0 0;
  background-color: #2b2b80;
  font-size: large; }
  #ga-survey-container #ga-close-button {
    color: white;
    font-family: sans-serif;
    float: right;
    cursor: pointer;
    border: none;
    background: none; }
    #ga-survey-container #ga-close-button:hover {
      text-decoration: underline; }
  #ga-survey-container #ga-thank-you {
    display: none;
    text-align: center;
    padding: 1em;
    font-size: larger;
    color: white; }
    #ga-survey-container #ga-thank-you > h1 {
      color: white; }
  #ga-survey-container form.ga-survey-form {
    display: flex;
    flex-direction: column;
    /* OPTION STYLES */ }
    #ga-survey-container form.ga-survey-form legend {
      color: #464648;
      font-weight: bold;
      padding-bottom: 0.5em; }
    #ga-survey-container form.ga-survey-form > div {
      display: flex;
      flex-direction: column; }
      #ga-survey-container form.ga-survey-form > div > .poll-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        font-weight: 500;
        color: white; }
        #ga-survey-container form.ga-survey-form > div > .poll-header input[type=button] {
          background-color: #ff7d25;
          border: none;
          color: white;
          font-family: 'Roboto', sans-serif;
          font-stretch: normal;
          font-weight: 500;
          padding: 0 10px 0 10px;
          font-size: 1em;
          letter-spacing: 0.5px;
          text-transform: uppercase;
          text-decoration: none;
          text-align: center;
          display: inline-block;
          cursor: pointer; }
        #ga-survey-container form.ga-survey-form > div > .poll-header p {
          color: white; }
        #ga-survey-container form.ga-survey-form > div > .poll-header > .poll-question {
          width: 100%;
          text-align: center;
          padding-left: 10px;
          cursor: default; }
    #ga-survey-container form.ga-survey-form .ga-center > label {
      text-align: center; }
    #ga-survey-container form.ga-survey-form .ga-center .ga-circle {
      justify-content: center; }
    #ga-survey-container form.ga-survey-form .image-options, #ga-survey-container form.ga-survey-form .textbox-color-options {
      /* HIDE RADIO */
      /* CHECKED STYLES */ }
      #ga-survey-container form.ga-survey-form .image-options label:nth-of-type(2n), #ga-survey-container form.ga-survey-form .textbox-color-options label:nth-of-type(2n) {
        margin-left: 10px; }
      #ga-survey-container form.ga-survey-form .image-options [type=radio], #ga-survey-container form.ga-survey-form .image-options [type=checkbox], #ga-survey-container form.ga-survey-form .textbox-color-options [type=radio], #ga-survey-container form.ga-survey-form .textbox-color-options [type=checkbox] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0; }
      #ga-survey-container form.ga-survey-form .image-options [type=radio]:checked + img, #ga-survey-container form.ga-survey-form .image-options [type=checkbox]:checked + img, #ga-survey-container form.ga-survey-form .image-options [type=radio]:checked + div, #ga-survey-container form.ga-survey-form .image-options [type=checkbox]:checked + div, #ga-survey-container form.ga-survey-form .textbox-color-options [type=radio]:checked + img, #ga-survey-container form.ga-survey-form .textbox-color-options [type=checkbox]:checked + img, #ga-survey-container form.ga-survey-form .textbox-color-options [type=radio]:checked + div, #ga-survey-container form.ga-survey-form .textbox-color-options [type=checkbox]:checked + div {
        outline: 4px solid #ff7d25; }
    #ga-survey-container form.ga-survey-form .textbox-color-options {
      display: flex;
      flex-wrap: wrap; }
      #ga-survey-container form.ga-survey-form .textbox-color-options > label {
        margin-top: 10px; }
        #ga-survey-container form.ga-survey-form .textbox-color-options > label > div {
          text-align: center;
          padding: 1em 0;
          width: 219px;
          background-color: #34a07b;
          color: #fff;
          font-weight: bold;
          cursor: pointer; }
    #ga-survey-container form.ga-survey-form .ga-circle {
      display: flex;
      flex-wrap: wrap;
      margin-top: 1em; }
      #ga-survey-container form.ga-survey-form .ga-circle > label {
        margin-right: 10px;
        margin-top: 10px;
        /* CHECKED */
        /* HIDE RADIO */ }
        #ga-survey-container form.ga-survey-form .ga-circle > label [type=radio]:checked + img, #ga-survey-container form.ga-survey-form .ga-circle > label [type=checkbox]:checked + img, #ga-survey-container form.ga-survey-form .ga-circle > label [type=radio]:checked + div, #ga-survey-container form.ga-survey-form .ga-circle > label [type=checkbox]:checked + div {
          background-color: #ff7d25;
          border: 0;
          outline: none; }
        #ga-survey-container form.ga-survey-form .ga-circle > label [type=radio], #ga-survey-container form.ga-survey-form .ga-circle > label [type=checkbox] {
          position: absolute;
          opacity: 0;
          width: 0;
          height: 0; }
        #ga-survey-container form.ga-survey-form .ga-circle > label > div {
          text-align: center;
          color: #2b2b80;
          background-color: white;
          border: none;
          border-radius: 50%;
          font-weight: bold;
          cursor: pointer; }
        #ga-survey-container form.ga-survey-form .ga-circle > label > div:hover {
          background-color: #00bfff;
          color: #FFF; }

@media only screen and (max-width: 768px) {
  #ga-survey-container {
    width: 100%;
    padding: 2.5em 1em; }
    #ga-survey-container .ga-circle > label > div {
      width: 30px;
      height: 30px;
      line-height: 30px;
      font-size: 0.8em; } }
@media screen and (min-width: 768px) {
  #ga-survey-container {
    width: 640px;
    padding: 1em 1em; }
    #ga-survey-container .ga-circle > label > div {
      width: 50px;
      height: 50px;
      line-height: 50px; } }

/*# sourceMappingURL=survey.css.map */
