
npsheading {
  margin: 0;
  padding: 0;
  font-size: 14px;
}

npsheader {
  text-align: center;
  margin: 20px auto;
}


#nps-widget {
  width: 340px;
  background: white;
  border: 1px solid #d5d5d5;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: fixed;
  bottom: 0px;
  left: 20px;
  /*overflow: hidden;*/
}
#nps-widget button {
  cursor: pointer;
  outline: none;
}
#nps-widget .nps-widget-inner .close {
  /*position: fixed;*/
  position: absolute;
  top: 10px;
  right: 8px;
  padding: 0;
  width: 14px;
  height: 14px;
  color: #222222;
  cursor: pointer;
  box-shadow: none;
  border: none;
  background: none;
  font-size: 14px;
  z-index: 9999;
}
#nps-widget .slide {
  z-index: 999;
}
#nps-widget .heading-container {
  padding: 10px 20px;
  background: #eee;
  border-bottom: 1px solid #d5d5d5;
}
#nps-widget .heading-container .heading {
  margin: 0;
  padding: 0;
  font-size: 14px;
}
#nps-widget .body-container {
  padding: 10px 20px;
}
#nps-widget .button-container button {
  display: block;
  margin: 10px 0;
  width: 100%;
  text-align: left;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 0;
}
#nps-widget textarea {
  height: 50px;
  display: block;
  width: 100%;
  border: 1px solid #ccc;
}
#nps-widget .submit-btn {
  background: #ccc;
  padding: 8px 16px;
  border-radius: 2px;
  margin: 10px 0;
  display: inline-block;
  border: none;
  color: black;
  font-size: 14px;
}
#nps-widget .check {
  display: block;
  color: #444;
  font-size: 48px;
  text-align: center;
  background: #ddd;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  margin: 30px auto;
  line-height: 100px;
}

/* always present */
.expand-transition {
  transition: all 600ms ease;
  transform: translateY(0) scale(1);
  opacity: 1;
  transform-origin: top center;
}

.expand-enter,
.expand-leave {
  opacity: 0;
  transform: translateY(100%) scale(0.9);
}

.nps-expand-transition {
  max-height: 400px;
  overflow: hidden;
  transform-origin: top center;
  transition: max-height 400ms, opacity 400ms;
  opacity: 1;
}

.nps-expand-enter,
.nps-expand-leave {
  max-height: 100px;
  opacity: 0;
}


