.feedback-area {
	position: fixed;
    z-index: 9999999;
	bottom: 0;
	right: 0;
	width: 100%;
	max-width: 380px;
}
.feedback-btn {
	display: none !important;
	position: absolute;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
  transform: scale(1.2);
  border: 2px solid #ddd;
  --background: #303F9F;
  --text: #fff;
  --font-size: 16px;
  --duration: .8s;
  --move-hover: -4px;
  --shadow: 0 2px 8px -1px rgba(39, 94, 254, 0.32);
  --shadow-hover: 0 4px 20px -2px rgba(39, 94, 254, 0.5);
  --font-shadow: var(--font-size);
  padding: 16px 32px;
  /*font-family: "Roboto";*/
  font-weight: 500;
  line-height: var(--font-size);
  border-radius: 24px;
  display: block;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  text-decoration: none;
  font-size: var(--font-size);
  letter-spacing: 0.5px;
  background: var(--background);
  color: var(--text);
  box-shadow: var(--shadow);
  transform: scale(1.05); /* you need a scale here to allow it to transition in both directions */
  transition: 0.8s all ease;
}
.feedback-btn div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 var(--text);
}
.feedback-btn div span {
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  font-style: normal;
  transition: transform var(--duration) ease;
  transform: translateY(var(--m)) translateZ(0);
}
.feedback-btn div span:nth-child(1) {
  transition-delay: 0.05s;
}
.feedback-btn div span:nth-child(2) {
  transition-delay: 0.1s;
}
.feedback-btn div span:nth-child(3) {
  transition-delay: 0.15s;
}
.feedback-btn div span:nth-child(4) {
  transition-delay: 0.2s;
}
.feedback-btn div span:nth-child(5) {
  transition-delay: 0.25s;
}
.feedback-btn div span:nth-child(6) {
  transition-delay: 0.3s;
}
.feedback-btn div span:nth-child(7) {
  transition-delay: 0.35s;
}
.feedback-btn div span:nth-child(8) {
  transition-delay: 0.4s;
}
.feedback-btn div span:nth-child(9) {
  transition-delay: 0.45s;
}
.feedback-btn div span:nth-child(10) {
  transition-delay: 0.5s;
}
.feedback-btn div span:nth-child(11) {
  transition-delay: 0.55s;
}
.feedback-btn div span:nth-child(12) {
  transition-delay: 0.6s;
}
.feedback-btn div span:nth-child(13) {
  transition-delay: 0.65s;
}
.feedback-btn div span:nth-child(14) {
  transition-delay: 0.7s;
}
.feedback-btn div span:nth-child(15) {
  transition-delay: 0.75s;
}

.feedback-btn.slide {
  --y: var(--move-hover);
  --shadow: var(--shadow-hover);
   transform: scale(1.05);
}
.feedback-btn.slide span {
  --m: calc(var(--font-size) * -1);
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
.feedback-check {
    --active: #303F9F;
    --active-inner: #fff;
    --focus: 2px rgba(39, 94, 254, .3);
    --border: #BBC1E1;
    --border-hover: #275EFE;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
.feedback-check:after  {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
.feedback-check:checked  {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
.feedback-check:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
.feedback-check:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
.feedback-check:disabled + label {
    cursor: not-allowed;
  }
.feedback-check:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
.feedback-check:focus {
    box-shadow: 0 0 0 var(--focus);
  }
.feedback-check:not(.switch) {
    width: 21px;
  }
.feedback-check:not(.switch):after {
    opacity: var(--o, 0);
  }
.feedback-check:not(.switch):checked {
    --o: 1;
  }
.feedback-check + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }

.feedback-check:not(.switch) {
    border-radius: 7px;
  }
.feedback-check:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }
.feedback-check:not(.switch):checked {
    --r: 43deg;
  }
 
.feedback-ul {
  margin: 12px 0 20px;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 320px;
}
.feedback-ul li {
  position: relative;
}
}
.feedback-div {
	display: none;
	position: absolute;
    bottom: 80px;
    right: 10px;
    background: #FFF;
    padding: 20px;
    border-radius: 20px;
	min-width: 240px;
	width: calc(100% - 20px);;
    max-width: 350px;
	-webkit-box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 4px -1px rgb(0 0 0 / 20%);
	-moz-box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 4px -1px rgb(0 0 0 / 20%);
    box-shadow: 0 4px 5px 0 rgb(0 0 0 / 14%), 0 1px 10px 0 rgb(0 0 0 / 12%), 0 2px 4px -1px rgb(0 0 0 / 20%);
}

.feedback-div h3 {
	font-size: 24px;
    margin: 0;
    font-weight: 600;
    color: #303F9F;
}

.feedback-div p {
	line-height: 20px;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 0;
}

.feedback-emojis {
	display: flex;
    justify-content: center;
	flex-wrap: wrap;
	margin: 0 0 5px;
	gap: 10px;
}

.feedback-emoji {
	display: flex;
    justify-content: center;
    flex-direction: column;
	gap: 4px;
    align-items: center;
    padding: 10px 5px;
    background: #fff;
    border-radius: 10px;
	min-width: 62px;
	opacity: .6;
	cursor: pointer;
	border: 2px solid #ccc;
}

.feedback-emoji.active {
	border: 2px solid #303F9F;
}

.feedback-emoji:nth-child(3) {
	display: none;
}

.feedback-emoji:hover {
	opacity: 1;
}

.color-emoji {
	display: none;
	height: 40px;
	width: 40px;
}

.plain-emoji {
	height: 40px;
	width: 40px;
}

.feedback-emoji span {
	    font-size: 12px;
    font-weight: 600;
    opacity: .6;
}

.feedback-text {
	width: 100%;
    min-height: 100px;
    margin: 0 0 10px;
	border: 2px solid #ddd;
    border-radius: 10px;
	font-family: 'Varela Round', sans-serif;
	font-weight: 600;
	font-size: 14px;
	padding: 10px;
	background: #eee;
	color: #555;
}

.submit-feedback {
	border: none;
    padding: 10px 20px;
    background: #303f9f;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 10px;
}

.cancel-feedback {
	border: none;
    padding: 10px 20px;
    background: #fff;
    color: #444;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 10px;
}

.feedback-loader {
	width: 100%;
    margin: 10px 0 0;
	display: none;
	line-height: 18px;
}
