/* Variablen */
/* feedback-green.less */
.xm_feedback {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: auto;
  width: 380px;
  cursor: pointer;
  padding: 10px 0;
  background: #358335;
  transition: width 0.5s ease;
}
@media (max-width: 768px) {
  .xm_feedback {
    max-width: 95vw;
  }
}
.xm_mini {
  width: 25px;
  transition: width 0.5s ease;
}
.xm_feedback_wrapper {
  position: fixed;
  top: 170px;
  right: 0;
  height: auto;
  width: auto;
  filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));
  transition: width 0.5s ease;
  z-index: 100001;
}
@media (max-width: 768px) {
  .xm_feedback_wrapper {
    top: 13%;
    bottom: 10px;
    overflow-y: scroll;
  }
}
.xm_feedback__headline {
  display: block;
  height: auto;
  font-size: 19px;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  transition: opacity 1s ease;
}
.xm_feedback__headline.xm_hide,
.xm_feedback__headline-open.xm_hide {
  height: 0;
  width: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.xm_feedback__headline-open {
  display: inline-block;
  height: auto;
  width: 75%;
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  transition: opacity 1s ease;
}
.xm_feedback__close {
  display: inline-block;
  align-self: end;
  margin-right: 5px;
  width: 10%;
}
.xm_feedback__close.xm_hide {
  display: none;
}
.xm_feedback__close:after {
  display: inline-block;
  content: '\00d7';
  font-size: 25px;
  color: #fff;
}
#feedback-form {
  display: inline-block;
  height: auto;
  max-height: 90vh;
  width: 100%;
  padding: 0 25px;
  opacity: 1;
  color: #fff;
  transition: all 0.5s ease, width 0.5s ease, opacity 0.5s ease-out 0.5s;
}
@media (max-width: 768px) {
  #feedback-form {
    max-height: 200vh;
  }
}
#feedback-form.xm_hide {
  max-height: 0;
  width: 0;
  opacity: 0;
  transition: all 0.5s ease, width 0.5s ease, opacity 0.1s ease;
}
#feedback-form textarea,
#feedback-form input {
  width: 100%;
  color: #313131;
}
#feedback-form .form-group-content {
  padding-left: 20px;
}
.feedback-form .checkbox span::before {
  background-color: #fff;
}
#feedback-form a {
  color: #c5c5c5;
}
#feedback-submit {
  margin-left: 10px;
}
.xm_feedback__response {
  color: #fff;
  padding: 0 25px;
  height: 100%;
  width: 100%;
  opacity: 1;
  transition: height 0.2s ease, width 0.2s ease, opacity 0.5s ease-out 0.5s;
}
.xm_feedback__response.xm_hide {
  height: 0;
  width: 0;
  opacity: 0;
  transition: height 0.2s ease, width 0.2s ease, opacity 0.1s ease;
}
.xm_feedback__counter {
  padding-right: 1rem;
  text-align: right;
}
