/* Job Feedback Style */
body.feedback-modal-open {
  overflow: hidden;
  position: fixed;
}
.feedback-form-wrap {
  position: fixed;
  bottom: 103px;
  left: 0;
  width: 100%;
  background: white;
  padding: 0;
  border-top: 1px solid #dedede;
  z-index: 10;
  transition: all 0.3s;
  /* closed */
  height: 0;
}
.feedback-form-wrap.opened {
  height: 92px;
}
.feedback-form-wrap.fullscreen {
  height: 100vh;
  bottom: 0;
  z-index: 100;
  overflow: auto;
}

.feedback-form-header h3 {
  font-size: 14px;
  text-align: center;
  position: relative;
  font-weight: normal;
  margin-bottom: 10px;
  margin-top: 10px;
}
span.close-icon-feedback {
  position: absolute;
  top: 3px;
  right: 3px;
  padding: 6px;
  background: #f9f9f9;
  line-height: 100%;
  /* border: 1px solid #dedede; */
  border-radius: 5px;
}
span.close-icon-feedback i {
  font-size: 20px;
}

.feedback-form-content-small {
  display: inline-block;
  justify-content: center;
  width: 100%;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

h4.feedback-title {
  font-size: 17px;
  margin-bottom: 15px;
}

span.feedback-positive {
  background: #33c08420;
  padding: 13px 15px;
  border-radius: 5px;
  margin-right: 10px;
}
span.feedback-positive i {
  color: #33c084;
}

span.feedback-negative {
  background: #ff355320;
  padding: 14px;
  border-radius: 5px;
  margin-left: 10px;
}
span.feedback-negative i {
  color: #ff3553;
}

/* Positive Selected */

.feedback-form-wrap.positive-selected span.feedback-positive {
  background: #33c084;
}
.feedback-form-wrap.positive-selected span.feedback-positive i {
  color: #ffffff;
  font-weight: bold;
}

.feedback-form-wrap.positive-selected span.feedback-negative {
  opacity: 0.3;
}

.feedback-form-wrap.positive-selected
  .feedback-form-content-full
  .negative-items {
  display: none;
}

/* Negative Selected */

.feedback-form-wrap.negative-selected span.feedback-negative {
  background: #ff3553;
}
.feedback-form-wrap.negative-selected span.feedback-negative i {
  color: #ffffff;
  font-weight: bold;
}

.feedback-form-wrap.negative-selected span.feedback-positive {
  opacity: 0.3;
}

.feedback-form-wrap.negative-selected
  .feedback-form-content-full
  .positive-items {
  display: none;
}

span.feedback-item {
  padding: 5px 9px 5px 5px;
  border: 1px solid #dedede;
  border-radius: 5px;
  font-size: 14px;
  line-height: 14px;
  justify-content: center;
  display: inline-flex;
  /* justify-items: center; */
  margin-right: 10px;
  margin-top: 10px;
}

span.feedback-item i {
  font-size: 10px;
  color: #777;
  margin-top: 1px;
  margin-right: 3px;
}
span.feedback-item i.icon-feather-check {
  display: none;
}
span.feedback-item.selected i.icon-feather-check {
  display: inline-block;
  color: #3361c0;
  font-size: 12px;
  margin-top: 0;
  margin-right: 1px;
}
span.feedback-item.selected i.icon-feather-plus {
  display: none;
}
span.feedback-item.selected {
  background: #f9f9f9;
  border: 1px solid #3361c0;
  color: #3361c0;
}

.feedback-form-wrap.positive-selected span.feedback-item.selected {
  background: #33c08420;
  border: 1px solid #33c084;
  color: #33c084;
}
.feedback-form-wrap.positive-selected
  span.feedback-item.selected
  i.icon-feather-check {
  display: inline-block;
  color: #33c084;
  font-size: 12px;
  margin-top: 0;
  margin-right: 1px;
}
.feedback-form-wrap.negative-selected span.feedback-item.selected {
  background: #ff355320;
  border: 1px solid #ff3553;
  color: #ff3553;
}
.feedback-form-wrap.negative-selected
  span.feedback-item.selected
  i.icon-feather-check {
  display: inline-block;
  color: #ff3553;
  font-size: 12px;
  margin-top: 0;
  margin-right: 1px;
}

.feedback-form-content-full {
  padding: 20px 20px;
}

textarea.feedback-item-text {
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none !important;
  outline: 0;
  border: 1px solid #bbbbbb;
  background: whitesmoke !important;
  border-radius: 3px;
  width: 100%;
  height: 70px;
  margin-top: 15px;
  padding: 5px;
  margin-bottom: 10px;
  font-size: 16px;
}

input.feedback-submit {
  appearance: none;
  -webkit-appearance: none;
  background: wheat;
  border: 1px solid #cfbb97;
  padding: 8px 15px;
  border-radius: 5px;
  display: block;
  font-weight: 600;
}

/* Success / Error Message */
.feedback-form-wrap.feedback-success,
.feedback-form-wrap.feedback-error {
  display: flex;
  height: 100vh;
}
.feedback-form-wrap.feedback-success .feedback-message,
.feedback-form-wrap.feedback-error .feedback-message {
  display: flex;
  align-self: center;
  padding: 30px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.feedback-form-wrap.feedback-success .feedback-form,
.feedback-form-wrap.feedback-error .feedback-form {
  display: flex;
}
.feedback-form-wrap.feedback-success .feedback-content i {
  font-size: 70px;
  color: green;
  font-weight: bold;
}
.feedback-form-wrap.feedback-error .feedback-content i {
  font-size: 70px;
  color: red;
  font-weight: bold;
}
.feedback-content h3 {
  margin-top: 20px;
  line-height: 150%;
}
.feedback-done {
  height: 0 !important;
}
@media all and (min-width: 761px) {
  .feedback-form-wrap {
    position: fixed;
    bottom: 0;
    z-index: 100;
  }
  .landing-page-sidebar {
    z-index: 1;
  }
  .feedback-form-wrap.opened {
    height: 100px;
  }
  .feedback-form-wrap.opened .feedback-form-header h3 {
    font-size: 17px;
    text-align: center;
    position: relative;
    font-weight: bold;
    margin-bottom: 13px;
    margin-top: 13px;
  }
  .feedback-form-wrap.fullscreen .feedback-form {
    padding: 50px;
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
  }
  .feedback-form-wrap.fullscreen .feedback-form-header h3 {
    font-size: 18px;
    text-align: center;
    position: relative;
    font-weight: bold;
    margin-bottom: 22px;
    margin-top: 10px;
  }
  .feedback-form-wrap.fullscreen span.feedback-item {
    padding: 5px 12px 5px 10px;
    border: 1px solid #dedede;
    border-radius: 5px;
    font-size: 15px;
    line-height: 18px;
    justify-content: center;
    display: inline-flex;
    /* justify-items: center; */
    margin-right: 10px;
    margin-top: 11px;
  }
  .feedback-form-wrap.fullscreen span.feedback-item i {
    font-size: 15px;
    color: #777;
    margin-top: 1px;
    margin-right: 3px;
  }
  .feedback-form-wrap.negative-selected.fullscreen
    span.feedback-item.selected
    i.icon-feather-check,
  .feedback-form-wrap.positive-selected.fullscreen
    span.feedback-item.selected
    i.icon-feather-check {
    font-size: 15px;
    margin-top: 1px;
    margin-right: 3px;
  }

  .feedback-form-wrap.fullscreen textarea.feedback-item-text {
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none !important;
    outline: 0;
    border: 1px solid #bbbbbb;
    background: whitesmoke !important;
    border-radius: 3px;
    width: 100%;
    height: 100px;
    margin-top: 15px;
    padding: 5px;
    margin-bottom: 10px;
  }
  .feedback-form-wrap.fullscreen input.feedback-submit {
    appearance: none;
    -webkit-appearance: none;
    background: wheat;
    border: 1px solid #cfbb97;
    padding: 10px 25px;
    border-radius: 5px;
    display: block;
    font-weight: 600;
    font-size: 15px;
  }
  .feedback-form-wrap.fullscreen span.close-icon-feedback {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    background: #f9f9f9;
    line-height: 100%;
    border: 1px solid #dedede;
    border-radius: 5px;
  }
  .feedback-form-wrap.fullscreen span.close-icon-feedback i {
    font-size: 25px;
  }
  #choose_positive_feedback:hover,
  #choose_negative_feedback:hover,
  #dismiss_feedback:hover {
    cursor: pointer;
  }
  #choose_positive_feedback:hover > i,
  #choose_negative_feedback:hover > i {
    font-weight: bold;
  }
}
