.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  background-color: transparent;
  outline: 0;
  border: 0;
  margin: 0;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  text-decoration: none;
  color: inherit;
  text-align: center;
  flex: 0 0 auto;
  font-size: 1.5rem;
  padding: 8px;
  border-radius: 50%;
  overflow: visible;
  color: #919eab;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  &:hover, &:focus {
    background-color: rgba(145, 158, 171, 0.08);
  
  }
}

.feedback {
  position: fixed;
  right: 0;
  top: 25%;
  z-index: 1000;
  background-color: #212b36;
  border-top: 1px solid;
  border-left: 1px solid;
  border-bottom: 1px solid;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border-color: rgba(145, 158, 171, 0.2);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

h6.subtitle {
  margin: 0;
  font-weight: 600;
  line-height: 1.5714285714285714;
  font-size: 14px;
  color: #ffffff;
}

.feedback-form {
  width: 400px;
}

div.paper {
  backdrop-filter: blur(20px);
  background-color: rgba(33, 43, 54, 0.9);
  background-image: url(/v/ff56c088375ad3149ca9bb825bd716e4c1a22511/assets/images/cyan-blur.png),
    url(/v/ff56c088375ad3149ca9bb825bd716e4c1a22511/assets/images/red-blur.png);
  background-repeat: no-repeat, no-repeat;
  background-position: top right, left bottom;
  background-size: 50%, 50%;
  box-shadow: -40px 40px 80px -8px rgba(0, 0, 0, 0.24);
  background-color: #212b36;
  color: #ffffff;
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2),
    0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1 0 auto;
  z-index: 1200;
  position: fixed;
  top: 0;
  outline: 0;
  right: 0;

  transform-origin: 100% 50%;
  transform: translateX(100%);
  transition: transform 0.2s ease-in-out, background-color 0.01s linear;
}

.container {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  vertical-align: top;
  width: 100%;
  margin: 10px 0;
}

.input {
  font: inherit;
  letter-spacing: inherit;
  color: currentColor;
  padding: 0;
  border: 0;
  box-sizing: content-box;
  background: none;
  height: auto;
  margin: 0;
  display: block;
  min-width: 0;
  animation-name: mui-auto-fill-cancel;
  animation-duration: 10ms;
  resize: none;
  padding-top: 0;
  line-height: 1.5;
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  border: 1px solid rgba(145, 158, 171, 0.2);
  border-radius: 8px;
}
textarea.input {
  padding: 10px;
}

.feedback-form label {
  font: inherit;
  letter-spacing: inherit;
  color: currentColor;
  text-align: left;
  font-size: 14px;
}

.feedback-form label:has(+ textarea[required], + input[required])::after {
  content: "*";
  color: #ff4d4f;
  margin-left: 4px;
}

.feedback-drawer {
  position: relative;
  padding: 24px;
  &.open {
    transform: translateX(0);
  }
}

.feedback-close-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px;
  cursor: pointer;
}

.text-button {
  border-radius: 8px;
  padding: 6px 12px;
  min-width: 64px;
  cursor: pointer;
  line-height: 1.7;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms,
    color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;

  &.secondary {
    border: 1px solid #919EAB52;

    &:hover,  &:focus {
      background-color: rgba(255, 255, 255, 0.08);
      box-shadow: currentcolor 0px 0px 0px 0.5px;
    }
  }

  &.submit {
    background-color: rgb(0, 167, 111);

    &:hover, &:focus {
      box-shadow: 0 8px 16px 0 rgba(0, 167, 111, 0.24);
      text-decoration: none;
      background-color: #007867;
    }
  }
}

#back-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(20px);
  background-color: rgba(33, 43, 54, 0.8);
  z-index: 1000;
  display: none;
  opacity: 0;
  animation: fadeIn 0.3s;
}
#back-panel.show {
  display: block;
  opacity: 1;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
