@charset "UTF-8";
/**
 * Source: https://gist.github.com/certainlyakey/e9c0d8f5c87ff47e3d5b
 */
/*
    Globals
*/
/*
    Response
*/
/*
    Input
*/
/*
    Globals
*/
/*
    Response
*/
/*
    Input
*/
@import url("https://fonts.googleapis.com/css?family=Roboto");

.conversational-form {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  visibility: visible !important;
  font-family: "Roboto" !important;
  font-size: 12px;
  line-height: 1.416666667;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 999;
  margin: auto;
  /* background: #fff; */
  /* background:rgba(0,0,0,0.9); */
  background: transparent;
  overflow: hidden;
  opacity: 0;
  will-change: opacity;
}
.conversational-form *,
.conversational-form *:before,
.conversational-form *:after {
  box-sizing: border-box;
  outline: none;
}
.conversational-form:before {
  content: "";
  width: 100%;
  height: 50px;
  pointer-events: none;
  background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
}
.conversational-form button {
  border: none;
  background: none;
  margin: 0px;
  padding: 0px;
  outline: none;
  -webkit-tap-highlight-color: transparent !important;
}
.conversational-form menu {
  padding: 0px;
  margin: 0px;
}
.conversational-form ul,
.conversational-form ol,
.conversational-form li {
  margin: 0;
  padding: 0;
}
.conversational-form a,
.conversational-form a:active,
.conversational-form a:visited {
  color: currentColor;
}
.conversational-form button,
.conversational-form a {
  cursor: pointer;
}
.conversational-form .conversational-form-inner {
  font-family: "Roboto" !important;
  padding: 0px 20px;
  position: absolute;
  width: 100%;
  min-height: 100%;
  max-height: 90%;
  bottom: 0px;
  height: auto;
  overflow: hidden;
  margin-bottom: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-flow: column nowrap;
  -webkit-box-pack: end;
  justify-content: flex-start;
  -webkit-box-align: baseline;
  align-items: baseline;
}
.conversational-form--enable-animation .conversational-form {
  transition: opacity 0.1875s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.conversational-form * {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  tap-highlight-color: rgba(255, 255, 255, 0);
}

.conversational-form--show {
  font-family: "Roboto" !important;
  opacity: 1;
}

/*
    Globals
*/
/*
    Response
*/
/*
    Input
*/
cf-info {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  left: 2px;
  top: 0px;
  height: auto;
  width: 100%;
  text-overflow: ellipsis;
  padding-right: 20px;
  overflow: hidden;
  display: block;
  -webkit-transform: translateY(-115%);
  transform: translateY(-115%);
  color: #acb2b6;
  opacity: 0;
  will-change: opacity;
}
cf-info.show {
  opacity: 1;
}
.conversational-form--enable-animation cf-info.show {
  transition: opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
}
cf-info strong {
  font-weight: 900;
}


/*
    Globals
*/
/*
    Response
*/
/*
    Input
*/
cf-input {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  /* margin-bottom: 10px; */
  margin-top: 20px;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  /*input {
		padding: 5px 5px 5px 15px;
	}*/
}
cf-input.animate-in input,
cf-input.animate-in textarea {
  transition-delay: 0s, 0s, 0s, 0.4s, 0.75s;
  opacity: 1;
  -webkit-transform: translateY(0px) rotateX(0deg);
  transform: translateY(0px) rotateX(0deg);
}
cf-input.animate-in cf-input-button.cf-input-button {
  transition-delay: 0s, 0s 0.75s;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
cf-input input,
cf-input textarea {
  resize: none;
  overflow: hidden;
  padding: calc((40px - 2px - 12px) / 2) calc(40px - 6px)
    calc((40px - 2px - 12px) / 2) calc((40px - 2px - 12px) / 2);
}
cf-input input,
cf-input textarea {
  outline: none;
  -webkit-appearance: none;
  -webkit-touch-callout: auto !important;
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
  /* border-radius: 5px; */
  border-radius: 0px 5px 5px 0px;
  border: none;
  -webkit-appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  font-family: "Roboto";
  font-size: 12px !important;
  width: 100%;
  height: 40px;
  min-height: 40px;
  /* color: black; */
  color: darkslategrey;
  will-change: box-shadow, background, color, transform, opacity;
  background: rgba(255, 255 ,255 ,0.9);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.15);
  opacity: 0;
  -webkit-transform: translateY(40px) rotateX(-40deg);
  transform: translateY(40px) rotateX(-40deg);
}
cf-input input:-webkit-autofill,
cf-input textarea:-webkit-autofill {
  background-color: white;
}
cf-input input:focus,
cf-input input:active,
cf-input textarea:focus,
cf-input textarea:active {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}
.conversational-form--enable-animation cf-input input,
.conversational-form--enable-animation cf-input textarea {
  transition: box-shadow 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    background 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    color 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s,
    -webkit-transform 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: box-shadow 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    background 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    color 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s,
    opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: box-shadow 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    background 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    color 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s,
    opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s,
    -webkit-transform 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
cf-input input:hover::-webkit-input-placeholder,
cf-input textarea:hover::-webkit-input-placeholder {
  color: #768086;
}
cf-input input:hover::-moz-input-placeholder,
cf-input textarea:hover::-moz-input-placeholder {
  color: #768086;
}
cf-input input:hover:-moz-input-placeholder,
cf-input textarea:hover:-moz-input-placeholder {
  color: #768086;
}
cf-input input:hover:-ms-input-placeholder,
cf-input textarea:hover:-ms-input-placeholder {
  color: #768086;
}
cf-input input::-webkit-input-placeholder,
cf-input textarea::-webkit-input-placeholder {
  color: currentColor;
}
cf-input input::-moz-input-placeholder,
cf-input textarea::-moz-input-placeholder {
  color: currentColor;
}
cf-input input:-moz-input-placeholder,
cf-input textarea:-moz-input-placeholder {
  color: currentColor;
}
cf-input input:-ms-input-placeholder,
cf-input textarea:-ms-input-placeholder {
  color: currentColor;
}
cf-input.hide-input input,
cf-input.hide-input textarea {
  display: none;
}
cf-input.hide-input cf-input-button {
  display: none;
}
cf-input[disabled="disabled"] {
  pointer-events: none;
}
cf-input[disabled="disabled"] input,
cf-input[disabled="disabled"] textarea {
  background: rgba(247, 247, 247, 0.5);
}
cf-input[disabled="disabled"] .cf-input-button {
  background: rgba(247, 247, 247, 0.75);
}
cf-input cf-icon-audio-eq {
  display: block;
  border: 0px solid grey;
  border-color: #e3f1ff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 0;
  position: absolute;
  top: 0px;
  left: 0px;
}
cf-input[error] {
  pointer-events: none;
}
cf-input[error] input,
cf-input[error] textarea {
  background: #ffebe9;
  color: #fe8d84;
}
cf-input[error] .cf-input-button {
  background: #ffebe9;
}
cf-input[error] .cf-input-button svg polygon {
  fill: #fe8d84;
}
cf-input[message] input,
cf-input[message] textarea {
  background: #e3f1ff;
  color: #409dff;
}
cf-input[message] .cf-input-button {
  background: #e3f1ff;
}
cf-input[message] .cf-input-button svg polygon {
  fill: #409dff;
}
cf-input[tag-type="file"] cf-input-button.cf-input-button:after,
cf-input cf-input-button.cf-input-button.loading:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  /* border: 1px solid #b9bcbe; */
  border:none;
  border-radius: 20%;
  border-left: 0;
  border-top: 0;
  -webkit-animation: cf-spin 1s linear infinite;
  animation: cf-spin 3s linear infinite;
  will-change: opacity;
}
.conversational-form--enable-animation
  cf-input[tag-type="file"]
  cf-input-button.cf-input-button:after,
.conversational-form--enable-animation
  cf-input
  cf-input-button.cf-input-button.loading:after {
  transition: opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
}
cf-input[tag-type="file"]
  cf-input-button.cf-input-button
  div.cf-icon-attachment {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 1;
}
cf-input[tag-type="file"] cf-input-button.cf-input-button div.cf-icon-progress {
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  opacity: 0;
}

cf-input-button.cf-input-button {
  /* width: 21px; */
  /* height: 21px; */
  width: 29px;
  height: 29px;
  background: none;
  position: absolute;
  overflow: hidden;
  right: 6px;
  bottom: 6px;
  z-index: 3;
  cursor: pointer;
  border-radius: 20%;
  will-change: background, border;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 2px solid #00a8e0;
}
.conversational-form--enable-animation cf-input-button.cf-input-button {
  transition: background 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    border 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: background 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    border 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
  transition: background 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    border 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s,
    -webkit-transform 0.75s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
cf-input-button.cf-input-button .cf-input-icons.cf-microphone {
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  pointer-events: none;
}
cf-input-button.cf-input-button.microphone-interface .cf-input-icons {
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: scale(1, 1) rotateX(0deg) translateZ(0px);
  transform: scale(1, 1) rotateX(0deg) translateZ(0px);
  transition: -webkit-transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
}
cf-input-button.cf-input-button.microphone-interface
  .cf-input-icons:not(.cf-microphone) {
  pointer-events: none;
  -webkit-transform: scale(0.25, 0.25) rotateX(90deg) translateZ(0px);
  transform: scale(0.25, 0.25) rotateX(90deg) translateZ(0px);
}
cf-input-button.cf-input-button.microphone-interface
  .cf-input-icons.cf-microphone {
  pointer-events: auto;
  -webkit-transform: scale(1, 1) rotateX(0deg) translateZ(0px);
  transform: scale(1, 1) rotateX(0deg) translateZ(0px);
}
cf-input-button.cf-input-button.microphone-interface.loading:not(.typing) {
  pointer-events: none;
}
cf-input-button.cf-input-button.microphone-interface.loading:not(.typing)
  .cf-microphone
  div.cf-icon-audio {
  opacity: 1;
}
cf-input-button.cf-input-button.microphone-interface.typing
  .cf-input-icons:not(.cf-microphone) {
  pointer-events: auto;
  -webkit-transform: scale(1, 1) rotateX(0deg) translateZ(0px);
  transform: scale(1, 1) rotateX(0deg) translateZ(0px);
}
cf-input-button.cf-input-button.microphone-interface.typing
  .cf-input-icons.cf-microphone {
  -webkit-transform: scale(0.25, 0.25) rotateX(90deg) translateZ(0px);
  transform: scale(0.25, 0.25) rotateX(90deg) translateZ(0px);
  pointer-events: none;
}
cf-input-button.cf-input-button .cf-input-icons {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
cf-input-button.cf-input-button .cf-input-icons > div {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}
.conversational-form--enable-animation
  cf-input-button.cf-input-button
  .cf-input-icons
  > div {
  transition: opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
}
cf-input-button.cf-input-button div.cf-icon-attachment {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  opacity: 0;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12px' height='16px' viewBox='0 0 12 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg stroke='none' stroke-width='2' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate%28-573.000000, -605.000000%29' stroke='%230D83FF'%3E%3Cg transform='translate%2884.000000, 136.000000%29'%3E%3Cg transform='translate%281.000000, 456.000000%29'%3E%3Cpath d='M499,23.1092437 L499,18.907563 C499,16.2016807 496.756849,14 494,14 C491.243151,14 489,16.2016807 489,18.907563 L489,24.5042017 C489,26.4369748 490.592466,28 492.561644,28 C494.530822,28 496.123288,26.4369748 496.123288,24.5042017 L496.123288,18.907563 C496.140411,17.7478992 495.181507,16.8067227 494,16.8067227 C492.818493,16.8067227 491.859589,17.7478992 491.859589,18.907563 L491.859589,23.1092437'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 12px 16px;
}
cf-input-button.cf-input-button div.cf-icon-progress {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 1;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='30px' height='30px' viewBox='0 0 30 30' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg stroke='none' stroke-width='2' fill='none' fill-rule='evenodd'%3E%3Cg fill='%230D83FF'%3E%3Cpolygon transform='translate%2815.500000, 15.500000%29 rotate%28180.000000%29 translate%28-15.500000, -15.500000%29 ' points='22 14.6875 12.111875 14.6875 16.6496875 10.1496875 15.5 9 9 15.5 15.5 22 16.6496875 20.8503125 12.111875 16.3125 22 16.3125'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 30px 30px;
}
cf-input-button.cf-input-button div.cf-icon-audio {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 1;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3C?xml version='1.0' encoding='utf-8'?%3E%3C!-- Generator: Adobe Illustrator 16.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0%29 --%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='512px' height='512px' fill='%230D83FF' viewBox='0 0 512 512' enable-background='new 0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M256,320c37.712,0,68.571-30.924,68.571-68.714V100.714C324.571,62.924,293.712,32,256,32s-68.571,30.924-68.571,68.714 v150.572C187.429,289.076,218.288,320,256,320z M377.139,244.548c0,68.714-58.282,116.815-121.139,116.815 s-121.139-48.102-121.139-116.815H96c0,77.873,61.719,143.153,137.144,153.465V480h45.713v-81.987 C354.281,386.561,416,322.421,416,244.548H377.139z'/%3E%3C/g%3E%3C/svg%3E ");
  background-size: 26px 26px;
}
cf-input-button.cf-input-button:active {
  opacity: 0.2;
}
cf-input-button.cf-input-button:hover,
cf-input-button.cf-input-button:focus {
  /* background: #00a8e0; */
  /* border: 1px solid white; */
}
cf-input-button.cf-input-button:hover:after,
cf-input-button.cf-input-button:focus:after {
  opacity: 0;
}
@media (min-width: 768px) {
  cf-input-button.cf-input-button:hover .cf-icon-progress,
  cf-input-button.cf-input-button:focus .cf-icon-progress {
    -webkit-animation: cf-arrow-up 0.75s cubic-bezier(0.645, 0.045, 0.355, 1);
    animation: cf-arrow-up 0.75s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
}

/**
* Show submit button for groups when input is hidden
*/
cf-input[tag-type="group"].hide-input cf-input-button {
  display: block;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

cf-input[tag-type="group"].hide-input cf-input-control-elements {
  margin-bottom: 45px;
}

cf-input[error=""].hide-input cf-input-button .cf-icon-progress {
  -webkit-filter: saturate(0);
  filter: saturate(0);
  -webkit-animation: shake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: shake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@-webkit-keyframes shake {
  10%,
  90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    -webkit-transform: translate3d(1px, 0, 0);
    transform: translate3d(1px, 0, 0);
  }
  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-2px, 0, 0);
    transform: translate3d(-2px, 0, 0);
  }
  40%,
  60% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }
}

@keyframes shake {
  10%,
  90% {
    -webkit-transform: translate3d(-1px, 0, 0);
    transform: translate3d(-1px, 0, 0);
  }
  20%,
  80% {
    -webkit-transform: translate3d(1px, 0, 0);
    transform: translate3d(1px, 0, 0);
  }
  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-2px, 0, 0);
    transform: translate3d(-2px, 0, 0);
  }
  40%,
  60% {
    -webkit-transform: translate3d(2px, 0, 0);
    transform: translate3d(2px, 0, 0);
  }
}

@-webkit-keyframes cf-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes cf-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes cf-arrow-up {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  40% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
  40.001% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  90% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes cf-arrow-up {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  40% {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
  40.001% {
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  90% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

/*
    Globals
*/
/*
    Response
*/
/*
    Input
*/
cf-input-control-elements.animate-in cf-list-button {
  opacity: 1;
}

cf-input-control-elements.hide-nav-buttons cf-list-button {
  pointer-events: none;
}
cf-input-control-elements.hide-nav-buttons cf-list-button:after {
  opacity: 0;
}

cf-list-button {
  display: block;
  position: absolute;
  z-index: 2;
  height: calc(100% - 16px);
  width: 38px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}
.conversational-form--enable-animation cf-list-button {
  transition: opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0.75s;
}
@media (min-width: 768px) {
  cf-list-button:hover:nth-child(1) {
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, white 75%);
  }
  cf-list-button:hover:nth-child(1):after {
    -webkit-animation: cf-arrow-left 0.75s cubic-bezier(0.645, 0.045, 0.355, 1);
    animation: cf-arrow-left 0.75s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  cf-list-button:hover:nth-child(2) {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 75%);
  }
  cf-list-button:hover:nth-child(2):after {
    -webkit-animation: cf-arrow-right 0.75s cubic-bezier(0.645, 0.045, 0.355, 1);
    animation: cf-arrow-right 0.75s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
}
cf-list-button.cf-gradient:before {
  opacity: 1;
}
cf-list-button.active {
  pointer-events: auto;
}
cf-list-button.active:after {
  opacity: 1;
}
cf-list-button:active:after {
  visibility: hidden;
}
cf-list-button:nth-child(1) {
  left: 0px;
}
cf-list-button:nth-child(1):before {
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, white 100%);
}
cf-list-button:nth-child(1):after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='UTF-8' standalone='no'?%3e%3csvg viewBox='0 0 6 10' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cg stroke='none' stroke-width='1' fill='%230D83FF' fill-rule='evenodd'%3e%3cg transform='translate%28-1230.000000, -567.000000%29' %3e%3cg transform='translate%28738.000000, 178.000000%29'%3e%3cg transform='translate%280.000000, 340.000000%29'%3e%3cg transform='translate%28466.000000, 0.000000%29'%3e%3cpolygon transform='translate%2829.000000, 54.000000%29 rotate%28-180.000000%29 translate%28-29.000000, -54.000000%29 ' points='26 50.1538462 27.125 49 32 54 27.125 59 26 57.8461538 29.75 54'%3e%3c/polygon%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
cf-list-button:nth-child(2) {
  right: 0px;
}
cf-list-button:nth-child(2):before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
}
cf-list-button:nth-child(2):after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3c?xml version='1.0' encoding='UTF-8' standalone='no'?%3e%3csvg viewBox='0 0 6 10' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cg stroke='none' stroke-width='1' fill='%230D83FF' fill-rule='evenodd'%3e%3cg transform='translate%28-1230.000000, -567.000000%29'%3e%3cg transform='translate%28738.000000, 178.000000%29'%3e%3cg transform='translate%280.000000, 340.000000%29'%3e%3cg transform='translate%28466.000000, 0.000000%29'%3e%3cpolygon points='26 50.1538462 27.125 49 32 54 27.125 59 26 57.8461538 29.75 54'%3e%3c/polygon%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
cf-list-button:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  will-change: opacity;
}
.conversational-form--enable-animation cf-list-button:before {
  transition: opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
}
cf-list-button:after {
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  position: absolute;
  background-size: 6px 10px;
  background-repeat: no-repeat;
  top: calc(50% - 5px);
  left: calc(50% - 3px);
  opacity: 0;
  will-change: opacity;
}
.conversational-form--enable-animation cf-list-button:after {
  transition: opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@-webkit-keyframes cf-arrow-right {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
  }
  40.001% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    opacity: 0;
  }
  80% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes cf-arrow-right {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
  }
  40.001% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    opacity: 0;
  }
  80% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}

@-webkit-keyframes cf-arrow-left {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    opacity: 0;
  }
  40.001% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
  }
  80% {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes cf-arrow-left {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    opacity: 0;
  }
  40.001% {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
    opacity: 0;
  }
  80% {
    -webkit-transform: translateX(-4px);
    transform: translateX(-4px);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    opacity: 1;
  }
}

/*
    Globals
*/
/*
    Response
*/
/*
    Input
*/
cf-chat {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  overflow: visible;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-flow: column nowrap;
  -webkit-box-pack: end;
  justify-content: flex-end;
  -webkit-box-align: baseline;
  align-items: baseline;
  margin-bottom: 10px;
}
cf-chat scrollable {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  min-height: 40px;
  overflow-y: auto;
  padding-bottom: 10px;
  padding-top: 10px;
}
cf-chat scrollable::-webkit-scrollbar {
  display:none;
  /* width: 2px;  */
  /* -webkit-appearance: none; */
  /* -webkit-border-radius: 100px; */
}
cf-chat scrollable::-webkit-scrollbar-track {
  width:2px;
  -webkit-border-radius: 100px;
}
cf-chat scrollable::-webkit-scrollbar-thumb:vertical {
  width:2px;
  background: #e3f1ff;
  -webkit-border-radius: 100px;
}
cf-chat scrollable::-webkit-scrollbar-thumb {
  width:2px;
  border: none;
  -webkit-border-radius: 100px;
}
cf-chat scrollable::-webkit-scrollbar-thumb:vertical:active {
  width: 2px;
  border: none;
  -webkit-border-radius: 100px;
}

/*
    Globals
*/
/*
    Response
*/
/*
    Input
*/
.conversational-form.done cf-chat-response {
  pointer-events: none;
}

cf-chat-response {
  font-family: "Roboto" !important;
  display: table;
  max-width: 80%;
  min-width: 120px;  transition: opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s,
  -webkit-transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
transition: transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s,
  opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
transition: transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s,
  opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s,
  -webkit-transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  width: auto;
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding-left: calc(24px + 10px);
  padding-top: 16px;
  color: #00060a;
  margin-left: 0px;
  margin-right: auto;
  word-break: break-all;
}
@media (min-width: 768px) {
  cf-chat-response {
    max-width: 50%;
  }
}
cf-chat-response.can-edit {
  cursor: pointer;
}
cf-chat-response.can-edit:hover {
  color: #6a7379;
}
cf-chat-response.can-edit:hover text > p {
  background: white;
}
cf-chat-response.robot text > p {
  font-family: "Roboto" !important;
  will-change: opacity;
  transition: opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}
cf-chat-response.robot text > p.show {
  opacity: 1;
}
cf-chat-response.user {
  margin-right: 0px;
  margin-left: auto;
  padding-left: 0;
  padding-right: calc(24px + 10px);
  color: white;
}
cf-chat-response.user thumb {
  left: auto;
  right: 0px;
  cursor:pointer;
}
cf-chat-response.user > thumb:active {
  background: #00a8e0 !important;
  color: white !important;
}
cf-chat-response.user text {
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
  -webkit-transform: translateY(-10px) translateX(-10px) scale(0.001, 0.001);
  transform: translateY(-10px) translateX(-10px) scale(0.001, 0.001);
}
cf-chat-response.user text > p {
  font-family: "Roboto" !important;
  background: #00a8e0;
  /* border-radius: 20px 0px 20px 20px; */
  border-radius: 5px 0px 5px 5px;
  margin-right: 0px;
  margin-left: auto;
  white-space: pre-wrap;
}
cf-chat-response.user text > p > video {
  z-index:9998 !important;
}

cf-chat-response.user.peak-thumb thumb {
  -webkit-transform: scale(1, 1) translateY(0px);
  transform: scale(1, 1) translateY(0px);
  opacity: 1;
}
.conversational-form--enable-animation cf-chat-response.user.peak-thumb thumb {
  transition-delay: 0.75s, 0.75s, 0.75s;
}
cf-chat-response.disabled {
  pointer-events: none;
  color: #f0f1f2;
}
cf-chat-response.disabled text {
  background: white;
}
cf-chat-response[thinking] text thinking {
  display: block;
}
cf-chat-response text {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  overflow: hidden;
  position: relative;
  min-height: 40px;
  opacity: 0;
  white-space: pre-wrap;
  word-break: normal;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -webkit-transform: translateY(-10px) translateX(10px) scale(0.001, 0.001);
  transform: translateY(-10px) translateX(10px) scale(0.001, 0.001);
  will-change: transform, opacity, background;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: auto;
}
cf-chat-response text > div {
  display: inline-block;
}
cf-chat-response text thinking span:nth-child(1) {
  -webkit-animation-delay: 0.66667 s;
  animation-delay: 0.66667 s;
}
cf-chat-response text thinking span:nth-child(2) {
  -webkit-animation-delay: 1.33333 s;
  animation-delay: 1.33333 s;
}
cf-chat-response text thinking span:nth-child(3) {
  -webkit-animation-delay: 2 s;
  animation-delay: 2 s;
}
cf-chat-response text strong {
  font-weight: 900;
}
cf-chat-response text > p {
  margin: 0px;
  padding: 0px;
  background: #f7f7f7;
  /* padding: 12px 24px 12px 24px; */
  padding: 10px 10px 10px 10px;
  display: table;
  /* border-radius: 0px 20px 20px 20px; */
  border-radius: 0px 5px 5px 5px;
  /* transition: background 0.375s cubic-bezier(0.215, 0.61, 0.355, 1); */
  transition: background 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);

}
cf-chat-response text > p:not(:only-child) {
  border-radius: 0px 20px 20px 0px;
}
cf-chat-response text > p:not(:only-child):first-child {
  border-radius: 20px 20px 20px 0px;
}
cf-chat-response text > p:not(:only-child):last-child {
  border-radius: 0px 20px 20px 20px;
}
cf-chat-response text > p:not(:only-child):not(:first-child) {
  margin-top: 3px;
}
cf-chat-response text > p > img {
  max-width: 140px;
  padding-bottom: 5px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 4px;
}
cf-chat-response text:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 20px;
}
cf-chat-response text thinking {
  position: relative;
  display: table;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: none;
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}
cf-chat-response text thinking span:nth-child(1) {
  -webkit-animation: dot-fade 1s linear 0.33333 s infinite;
  animation: dot-fade 1s linear 0.33333 s infinite;
}
cf-chat-response text thinking span:nth-child(2) {
  -webkit-animation: dot-fade 1s linear 0.66667 s infinite;
  animation: dot-fade 1s linear 0.66667 s infinite;
}
cf-chat-response text thinking span:nth-child(3) {
  -webkit-animation: dot-fade 1s linear 1 s infinite;
  animation: dot-fade 1s linear 1 s infinite;
}
cf-chat-response text svg.cf-icon-file {
  width: 10px;
  height: auto;
  display: inline-block;
  margin-right: 7px;
}
cf-chat-response text svg.cf-icon-file g {
  fill: #0d83ff;
}
cf-chat-response thumb {
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  width: 30px;
  height: 30px;
  /* border-radius: 0%; */
  border-radius: 5px;
  background: none;
  background-size: cover;
  background-position: 50% 50%;
  opacity: 0;
  overflow: hidden;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: scale(0.001, 0.001) translateY(50px);
  transform: scale(0.001, 0.001) translateY(50px);
  will-change: transform, opacity;
}
.conversational-form--enable-animation cf-chat-response thumb {
  transition: opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1875s,
    -webkit-transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1875s;
  transition: transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1875s,
    opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1875s;
  transition: transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1875s,
    opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1875s,
    -webkit-transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1875s;
}
cf-chat-response thumb > span {
  display: block;
  line-height: 24px;
  text-align: center;
  font-weight: bold;
  font-size: 9.6px;
}
cf-chat-response thumb > span[length="1"] {
  font-size: 19.2px;
}
cf-chat-response thumb > span[length="3"] {
  font-size: 7.92px;
}
cf-chat-response.show text {
  -webkit-transform: translateY(0px) translateX(0px) scale(1, 1);
  transform: translateY(0px) translateX(0px) scale(1, 1);
  opacity: 1;
}
.conversational-form--enable-animation cf-chat-response.show text {
  transition: opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s,
    -webkit-transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s,
    opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s,
    opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s,
    -webkit-transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.conversational-form--enable-animation cf-chat-response.show text {
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1),
    cubic-bezier(0.215, 0.61, 0.355, 1), cubic-bezier(0.215, 0.61, 0.355, 1);
  /* transition-delay: 0.1875s, 0.1875s, 0s; */
  transition-delay: 0.75s, 0.75s, 0s;
}
cf-chat-response.show text[value-added] {
  will-change: auto;
}
cf-chat-response.show.robot thumb {
  -webkit-transform: scale(1, 1) translateY(0px);
  transform: scale(1, 1) translateY(0px);
  opacity: 1;
}
.conversational-form--enable-animation cf-chat-response.show.robot thumb {
  transition-delay: 0.75s, 0.75s, 0.75s;
}

@-webkit-keyframes dot-fade {
  0% {
    opacity: 1;
  }
  15.1111% {
    opacity: 0;
  }
  33.333% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes dot-fade {
  0% {
    opacity: 1;
  }
  15.1111% {
    opacity: 0;
  }
  33.333% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
    opacity: 0.85;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
    opacity: 0.85;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
}

/*
    Globals
*/
/*
    Response
*/
/*
    Input
*/
cf-input-control-elements {
  width: auto;
  height: auto;
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  visibility: hidden;
  height: auto;
}
cf-input-control-elements .cf-button {
  margin-bottom: 10px;
  display: inline-block;
  font-family: "Roboto";
}
cf-input-control-elements .cf-button.hide {
  display: none;
}
cf-input-control-elements.resized {
  visibility: visible;
  height: auto;
}
cf-input-control-elements.one-row cf-list {
  height: auto;
}
cf-input-control-elements.one-row cf-list-button {
  opacity: 0;
}
cf-input-control-elements.two-row cf-list {
  white-space: normal;
  height: auto;
}

cf-list,
cf-list-button {
  will-change: height;
}
.conversational-form--enable-animation cf-list,
.conversational-form--enable-animation cf-list-button {
  font-family: "Roboto";
  transition: height 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
}

cf-input[tag-type="file"] cf-list {
  cursor: default;
}

cf-list {
  display: block;
  height: auto;
  cursor: move;
  white-space: nowrap;
}
cf-list.disabled {
  pointer-events: none;
}

/*
    Globals
*/
/*
    Response
*/
/*
    Input
*/
.cf-button {
  background: white;
  cursor: pointer;
  /* border: 1px solid rgba(13, 131, 255, 0.1); */
  border: none;
  border-radius: calc(5px * 1.2);
  color: #00a8e0;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  -webkit-transform: translateZ(0px);
  transform: translateZ(0px);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  will-change: opacity, background;
  opacity: 0;
  font-family: "Roboto" !important;
}
.cf-button > div {
  padding: 12px 24px;
  font-family: "Roboto" !important;
}
.cf-button.has-image {
  max-width: 75px;
  min-width: 75px;
  max-height: 100px;
  min-height:100px;
  font-size:0.8em;
  /* min-width: 100px; */
  /* max-height: 100px; */
}
.cf-button > div {
  position: relative;
  font-family: "Roboto" !important;
}
.conversational-form--enable-animation .cf-button {
  transition: opacity 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    background 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cf-button.animate-in {
  opacity: 1;
}
.conversational-form--enable-animation .cf-button.animate-in {
  transition-duration: 0.75s, 0.75s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1),
    cubic-bezier(0.215, 0.61, 0.355, 1);
}
.conversational-form--enable-animation .cf-button.animate-in:nth-child(even) {
  transition-delay: 0.75s, 0s;
}
.conversational-form--enable-animation .cf-button.animate-in:nth-child(odd) {
  transition-delay: 0.75s, 0s;
}
.cf-button.animate-in.animate-out {
  -webkit-transform-origin: 75% 100%;
  transform-origin: 75% 100%;
  opacity: 0;
}
.cf-button:not(:last-child) {
  margin-right: 10px;
}
.cf-button:hover:not(.cf-button:hover[selected="selected"], .cf-button:focus[selected="selected"], .cf-button:hover[selected="selected"], .cf-button:focus[selected="selected"]),
.cf-button:hover:not([checked="checked"]),
.cf-button:focus:not(.cf-button:hover[selected="selected"], .cf-button:focus[selected="selected"], .cf-button:hover[selected="selected"], .cf-button:focus[selected="selected"]),
.cf-button:focus:not([checked="checked"]) {
  background: rgba(13, 131, 255, 0.1);
}
.cf-button[selected="selected"]:not(:focus):not(:hover):not(.highlight),
.cf-button[checked="checked"]:not(:focus):not(:hover):not(.highlight) {
  background: rgba(13, 131, 255, 0.1);
}
.cf-button[disabled="disabled"] {
  pointer-events: none;
}
.cf-button[disabled="disabled"].animate-in {
  opacity: 0.5;
}
.cf-button:active > div {
  opacity: 0.2;
}
.cf-button .cf-image {
  width: 100%;
  min-height:50px;
  min-width:75px;
  height: auto;
  will-change: opacity;
  transition: opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  object-fit: contain;
}
.cf-button .cf-image.loaded {
  opacity: 1;
}

/*
    Globals
*/
/*
    Response
*/
/*
    Input
*/
.cf-button.cf-checkbox-button:hover cf-checkbox,
.cf-button.cf-checkbox-button.highlight cf-checkbox,
.cf-button.cf-checkbox-button:focus cf-checkbox {
  background: #08a8e0;
}

.cf-button.cf-checkbox-button.no-text {
  padding: 12px 16px;
}
.cf-button.cf-checkbox-button.no-text cf-checkbox {
  margin-right: 0px;
  margin-left: 0px;
}

.cf-button.cf-checkbox-button.has-image cf-checkbox {
  margin-left: 0px;
}

.cf-button.cf-checkbox-button cf-checkbox {
  display: block;
  float: left;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: #e3f1ff;
  will-change: background;
  margin-right: 10px;
  margin-left: -10px;
  margin-top: -1px;
  position: relative;
}
.conversational-form--enable-animation
  .cf-button.cf-checkbox-button
  cf-checkbox {
  transition: background 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cf-button.cf-checkbox-button cf-checkbox:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 1px;
  display: block;
  width: 13px;
  height: 10px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='13px' height='10px' viewBox='0 0 13 10' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e%3cg transform='translate%28-290.000000, -505.000000%29' fill='%230D83FF'%3e%3cg transform='translate%2884.000000, 136.000000%29'%3e%3cg transform='translate%281.000000, 216.000000%29'%3e%3cg transform='translate%28189.000000, 139.000000%29'%3e%3cpolygon points='17.5 18.5 16 20 20 24 29 15.5 27.5 14 20 21'%3e%3c/polygon%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  background-size: 13px 10px;
  background-repeat: no-repeat;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  will-change: transform;
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
}
.conversational-form--enable-animation
  .cf-button.cf-checkbox-button
  cf-checkbox:after {
  transition: -webkit-transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.cf-button.cf-checkbox-button[checked="checked"] cf-checkbox,
.cf-button.cf-checkbox-button[selected="selected"] cf-checkbox {
  background: rgba(227, 241, 255, 0);
}
.cf-button.cf-checkbox-button[checked="checked"] cf-checkbox:after,
.cf-button.cf-checkbox-button[selected="selected"] cf-checkbox:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.conversational-form--enable-animation
  .cf-button.cf-checkbox-button[checked="checked"]
  cf-checkbox:after,
.conversational-form--enable-animation
  .cf-button.cf-checkbox-button[selected="selected"]
  cf-checkbox:after {
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
    Globals
*/
/*
    Response
*/
/*
    Input
*/
cf-options-list {
  display: block;
  width: auto;
}

/*
    Globals
*/
/*
    Response
*/
/*
    Input
*/
cf-radio-button.cf-button:hover cf-radio,
cf-radio-button.cf-button.highlight cf-radio,
cf-radio-button.cf-button:focus cf-radio {
  background: #409dff;
  font-family: "Roboto";
}

cf-radio-button.cf-button.has-image cf-checkbox {
  margin-left: 0px;
}

cf-radio-button.cf-button cf-radio {
  display: block;
  float: left;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e3f1ff;
  will-change: background;
  margin-right: 10px;
  margin-left: -10px;
  margin-top: -1px;
  position: relative;
  font-family: "Roboto" !important;
  font-size:0.7em;
}
.conversational-form--enable-animation cf-radio-button.cf-button cf-radio {
  transition: background 0.5 cubic-bezier(0.215, 0.61, 0.355, 1);
}

cf-radio-button.cf-button[checked="checked"] cf-radio {
  background: #409dff;
  pointer-events: none;
}

/*
    Globals
*/
/*
    Response
*/
/*
    Input
*/
cf-upload-file-ui {
  display: block;
  width: 100%;
  height: 45px;
  position: absolute;
  top: 0px;
  padding-right: 30px;
  color: #409dff;
  opacity: 0;
  -webkit-transform: translateY(20px) rotateX(30deg);
  transform: translateY(20px) rotateX(30deg);
  will-change: opacity, transform;
}
.conversational-form--enable-animation cf-upload-file-ui {
  transition: opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
}
cf-upload-file-ui.animate-in {
  opacity: 1;
  -webkit-transform: translateY(0px) rotateX(0deg);
  transform: translateY(0px) rotateX(0deg);
}
.conversational-form--enable-animation cf-upload-file-ui.animate-in {
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1),
    cubic-bezier(0.215, 0.61, 0.355, 1);
}

cf-upload-file-text {
  display: block;
  float: left;
  width: auto;
  height: 100%;
  padding-left: 40px;
  padding-right: 30px;
  padding-top: 17px;
  position: relative;
  color: currentColor;
  max-width: 50%;
  text-overflow: ellipsis;
  overflow: hidden;
}
cf-upload-file-text:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 17px;
  left: 23px;
  width: 10px;
  height: 14px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg viewBox='0 0 10 14' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e%3cg transform='translate%28-756.000000, -549.000000%29' fill='%230D83FF'%3e%3cg transform='translate%28736.000000, 127.000000%29'%3e%3cg transform='translate%280.000000, 406.000000%29'%3e%3cpolygon points='20 16 26.0030799 16 30 19.99994 30 30 20 30'%3e%3c/polygon%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 10px 14px;
}

cf-upload-file-progress {
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding-right: 30px;
}
cf-upload-file-progress:after {
  content: "";
  width: 100%;
  background: #f7f7f7;
  border-radius: 7px;
}
cf-upload-file-progress:after,
cf-upload-file-progress cf-upload-file-progress-bar {
  display: block;
  height: 10px;
  position: absolute;
  top: 19px;
  z-index: 1;
}
cf-upload-file-progress cf-upload-file-progress-bar {
  width: 0%;
  will-change: width, border-radius;
  background: currentColor;
  z-index: 2;
  border-radius: 7px 0px 0px 7px;
}
.conversational-form--enable-animation
  cf-upload-file-progress
  cf-upload-file-progress-bar {
  transition: width 0.15s linear,
    border-radius 0.75s cubic-bezier(0.215, 0.61, 0.355, 1);
}
cf-upload-file-progress cf-upload-file-progress-bar.loaded {
  border-radius: 7px 7px 7px 7px;
}

cf-chat-response.user.can-edit{
  /* pointer-events: none; */
}


cf-chat-response.user.can-edit text {
  pointer-events: none !important;
}

.input-group > .cf-input-btns {
  background-color:white;
  max-width: 40px;
}
/* submit and save buttons */
#cf-save-btn {
  border-radius: 5px 0px 0px 5px;
  cursor: pointer;
  min-width:20px;
  background-color: white;
  color: #008ae0;
  font-size:1.5em;
}

#cf-save-btn:active {
  background-color: #08a8e0;
  color: white;
}

#cf-submit-btn {
  cursor: pointer;
  min-width:20px;
  background-color: white;
  color: #008ae0;
  font-size:1.5em;
}

#cf-submit-btn:active {
  background-color: #08a8e0;
  color: white;
}

/* submit and save buttons */
#cf-save-answer-btn {
  border-radius: 0px 5px 5px 0px;
  cursor: pointer;
  min-width:20px;
  background-color: white;
  color: #008ae0;
  font-size:1.5em;
}

.chat-edit-btn {
  color: #08a8e0 !important;
  background-color: white !important;
}
.chat-edit-btn:active {
  background-color: #08a8e0 !important;
  color: white !important;
}
