.feedback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  /* font-size: 20vmin; */
  }
  .feedback .feedback_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: 0.4s opacity ease; }
  .feedback .feedback_card {
    background: #f5f5f5;
    font-size: 3vmin;
    border-radius: 1vmin;
    padding: 1em;
    padding-top: 0em;
    box-shadow: black 0vmin 0vmin 4vmin 0vmin;
    position: relative;
    width: 24em;
    opacity: 0;
    transform: scale(0.75);
    transition: 0.4s opacity ease, 0.4s transform ease;
    border-top-color: #00a651;
    border-top-style: solid;
    border-top-width: 2.5em;
    }
  .feedback .checkbox {
    position: relative;
    width: 0.9em;
    height: 0.9em;
    box-sizing: border-box;
    border: 0.05em solid rgb(169, 169, 169);
    margin: 0;
    margin-right: 0.2em;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    border-radius: 50%;
    background: white; }
    .feedback .checkbox .checkmark {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      -webkit-transition: -webkit-transform 0.25s ease, opacity 0.25s ease;
      transition: transform 0.25s ease, opacity 0.25s ease;
      opacity: 0;
      -webkit-transform: scale(0.5);
      -moz-transform: scale(0.5);
      transform: scale(0.5);
      background-color: #00a651;
      border-radius: inherit;
       }
    .feedback .checkbox .touchable_container {
      position: absolute;
      left: -0.02em;
      top: -0.02em;
      width: calc(100% + 0.04em);
      height: calc(100% + 0.04em);
      border-radius: 50%;
      z-index: 1;
      overflow: hidden; }
    .feedback .rec .checkbox {
      border-radius: 15%;
      height: 3em;
      width: 3em;
      line-height: 275%;
      text-align: center;
      font-weight: bold;
      background-color: #e6e6e6;
      border-width: 0em; }
      .feedback .rec.selected .checkbox {
        background-color: grey; }
  .feedback .rec {
    float: left;
    clear: none;
    margin-right: 0.14em !important;
    margin-left: 0.15em !important;
    margin-bottom: 0em !important; }
  .feedback .right {
    display: inline !important;
    font-size: 0.8em;
    float: right; }
  .feedback .left {
    display: inline !important;
    font-size: 0.8em; }
  .feedback .line {
    display: flex;
    align-items: center;
    margin: 0.2em 0;
    position: static;
    }
    .feedback .line.square .checkbox {
      width: 1em;
      height: 1em;
      border-radius: 0em; }
      .feedback .line.square .checkbox .touchable_container {
        border-radius: 0.1em; }
    .feedback .line.selected .checkbox .checkmark {
      -webkit-transform: scale(0.7);
      -moz-transform: scale(0.7);
      transform: scale(0.7);
      opacity: 1; }
    .feedback .line.subline {
      margin: 0.3em 1em;
      font-size: 1em; }
    .feedback .line .text {
      flex-grow: 1; }
    .feedback .line .contact {
      padding: 0.7em;
      background-color: white;
      border-width: 1px;
      border-style: solid;
      border-color: rgb(169, 169, 169); }
  .feedback .bold {
    font-weight: bold;
    clear: both; }
  .feedback .close {
    position: absolute;
    height: 1em;
    width: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -1.481em;
    right: 0.286em;
    transform: rotate(45deg);
    font-size: 1.4em;
    /* font-family: Arial; */
    z-index: 5;
    color: white;
    background-image: none;
    left: auto;
    bottom: auto;
    }
  .feedback .desc_box {
    width: 100%;
    height: 8em; }
  .feedback .title {
    text-align: center;
    font-size: 0.65em;
    position: relative;
    top: -2.9em;
    color: white; }
    .feedback .title .line {
      display: inline-block;
    }
  .feedback .question {
    margin: 0 1em 1em 1em;
    font-size: 0.65em; }
    .feedback .question .circle .checkmark_svg {
      border-radius: 50%;
    }
  .feedback input {
    flex-grow: 1;
    border: none;
    background: #d4d4d4;
    font-size: 0.7em;
    margin: 0 0.3em;
    margin-left: 0em;
    margin-right: 0em;
    padding: 0.3em; }
    .feedback .firstname_input {
      margin-top: 0.5em;
    }
  .feedback .submit {
    background: #00a651;
    padding: 0.6em;
    border-radius: 0.3em;
    color: white;
    float: right;
    padding-left: 1.6em;
    padding-right: 1.6em;
    font-size: 2vmin; }
  .feedback .thankyou {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s opacity ease; }
    .feedback .thankyou.show {
      opacity: 1; }
  .feedback.show .feedback_bg {
    opacity: 1; }
  .feedback.show .feedback_card {
    opacity: 1;
    transform: scale(1); }
