.hj-add-feedback-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  z-index: 9999;
  cursor: pointer;
  box-shadow:
    0 1px 2px 0 rgba(60, 64, 67, 0.302),
    0 2px 6px 2px rgba(60, 64, 67, 0.149);
  transition: 0.3s ease;
  transform: translateY(0);
  display: none;
}
.enable-feedback {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}
.enable-feedback i {
  margin-right: 10px;
}
.enable-feedback:hover {
  text-decoration: underline;
}
#feedback-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(66, 66, 66, 0.3);
  display: none;
  overflow-y: auto;
}
#feedback-form.active {
  display: block;
}
#feedback-form form {
  position: relative;
  max-width: 450px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  top: 0;
  left: 0;
  margin: 20px;
  overflow-y: auto;
  box-shadow:
    0 1px 1px 0 rgba(66, 66, 66, 0.08),
    0 1px 3px 1px rgba(66, 66, 66, 0.16);
}
@media (min-width: 768px) {
  #feedback-form form {
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
  }
}
#feedback-form form #close-feedback-form {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  padding: none;
  cursor: pointer;
  box-shadow:
    0 1px 1px 0 rgba(66, 66, 66, 0.06),
    0 1px 3px 1px rgba(66, 66, 66, 0.1);
  -webkit-box-shadow:
    0 1px 1px 0 rgba(66, 66, 66, 0.06),
    0 1px 3px 1px rgba(66, 66, 66, 0.1);
}
#feedback-form form #close-feedback-form i {
  color: #2f2f2f;
}
#feedback-form form h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2f2f2f;
  margin-bottom: 20px;
}
#feedback-form form h3:first-child {
  margin-top: 0;
}
#feedback-form form h3.additional-info {
  margin-top: 30px;
}
#feedback-form form .field {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#feedback-form form .field.email {
  margin: 20px 0 0;
  flex-wrap: wrap;
}
#feedback-form form .field.actions {
  justify-content: flex-start;
}
#feedback-form form .field.actions .cancel-feedback,
#feedback-form form .field.actions input {
  width: 120px;
  height: 36px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  margin-top: 30px;
  cursor: pointer;
}
#feedback-form form .field.actions input[type="submit"] {
  background: #0560fc;
  color: #fff;
}
#feedback-form form .field.actions input[type="submit"]:hover {
  background: #0043cb;
}
#feedback-form form .field.actions input[type="submit"]:disabled {
  background: #eee;
  opacity: 0.3;
  color: #2f2f2f;
  transition: 0.3s ease;
}
#feedback-form form .field.actions input[type="submit"]:disabled:hover {
  background: #eee;
}
#feedback-form form .field.actions .cancel-feedback {
  background: #f3f5f8;
  color: #2f2f2f;
  margin-left: 20px;
}
#feedback-form form .field.actions .cancel-feedback:hover {
  background: #d3dae5;
  background: #f2f2f2;
}
#feedback-form form .field input,
#feedback-form form .field textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}
#feedback-form form .field input[type="checkbox"],
#feedback-form form .field input[type="radio"] {
  border: 1px solid #d2d2d2;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#feedback-form form .field input[type="checkbox"]:before,
#feedback-form form .field input[type="radio"]:before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: 14px;
  height: 14px;
  border: none;
  background: #fff;
  transition: 0.3s ease;
}
#feedback-form form .field input[type="checkbox"]:checked,
#feedback-form form .field input[type="radio"]:checked {
  border: 1px solid #0560fc;
}
#feedback-form form .field input[type="checkbox"]:checked:before,
#feedback-form form .field input[type="radio"]:checked:before {
  background: #0560fc;
}
#feedback-form form .field input[type="radio"] {
  flex: 0 1 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
#feedback-form form .field input[type="radio"]:before {
  border-radius: 50%;
}
#feedback-form form .field input[type="checkbox"] {
  flex: 0 1 20px;
  width: 20px;
  height: 20px;
  border-radius: 2px;
}
#feedback-form form .field input[type="checkbox"]:before {
  border-radius: 2px;
}
#feedback-form form .field label {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: calc(100% - 35px);
  font-size: 14px;
  color: #2f2f2f;
  cursor: pointer;
  margin-top: 3px;
}
#feedback-form form .field input[type="email"],
#feedback-form form .field textarea {
  border: 1px solid #d2d2d2;
  transition: 0.3s ease;
  border-radius: 5px;
  outline: none;
}
#feedback-form form .field input[type="email"]:focus,
#feedback-form form .field textarea:focus {
  border: 1px solid #2f2f2f;
}
#feedback-form form .field textarea {
  flex: 0 1 100%;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #2f2f2f;
  resize: none;
}
#feedback-form form .field input[type="email"] {
  flex: 0 1 100%;
  height: 42px;
  background: #fff;
  margin: 20px 0 0;
  padding: 0 20px;
  display: none;
  transition: 0.3s ease;
}
#feedback-form form ::-webkit-input-placeholder {
  opacity: 0.5;
  font-size: 14px;
  font-weight: 400;
}
#feedback-form form ::-moz-placeholder {
  opacity: 0.5;
  font-size: 14px;
  font-weight: 400;
}
#feedback-form form :-ms-input-placeholder {
  opacity: 0.5;
  font-size: 14px;
  font-weight: 400;
}
#feedback-form form :-moz-placeholder {
  opacity: 0.5;
  font-size: 14px;
  font-weight: 400;
}
.add-feedback-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 36px;
  border-radius: 5px;
  background: #fff;
  box-shadow:
    0 1px 1px 0 rgba(66, 66, 66, 0.08),
    0 1px 3px 1px rgba(66, 66, 66, 0.16);
  -webkit-box-shadow:
    0 1px 1px 0 rgba(66, 66, 66, 0.08),
    0 1px 3px 1px rgba(66, 66, 66, 0.16);
  z-index: 900;
  transition: opacity 0.1s ease-in-out;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  padding-top: 3px;
}
.add-feedback-icon svg {
  width: 24px;
  height: 24px;
  color: #0560fc;
}
.add-feedback-icon.visible {
  opacity: 1;
  visibility: visible;
}
.add-feedback-icon:before {
  content: attr(data-tooltip);
  position: absolute;
  display: none;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  text-align: center;
  background: #41597d;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 10px;
  color: #fff;
  text-transform: none;
  border-radius: 2px;
  z-index: 9999;
  width: -moz-max-content;
  width: max-content;
}
.add-feedback-icon:hover {
  background: #eee;
}
.add-feedback-icon:hover:before {
  display: inline-block;
}
.submit-message {
  position: fixed;
  bottom: 0;
  width: 300px;
  left: calc(50% - 150px);
  background: #41597d;
  padding: 14px 20px 10px;
  border-radius: 8px 8px 0 0;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  z-index: 99999;
  transition: 0.3s ease-in-out;
  box-shadow:
    0 1px 1px 0 rgba(66, 66, 66, 0.08),
    0 1px 3px 1px rgba(66, 66, 66, 0.16);
  -webkit-box-shadow:
    0 1px 1px 0 rgba(66, 66, 66, 0.08),
    0 1px 3px 1px rgba(66, 66, 66, 0.16);
}
