/*!*****************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/webchat.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************/
.jims-chat-launcher {
  background-color: var(--chat-btn-color, #05acf2);
  position: fixed;
  top: 26%;
  height: 50px;
  right: -25px;
  line-height: 25px;
  font-weight: 700;
  padding: 10px;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  border: 0;
  transform: rotate(270deg);
  margin: 0;
  color: var(--chat-btn-text-color, #ffffff);
  font-size: 18px;
  z-index: 99999999;
}

.jims-chat-form-wrapper {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -2px, rgba(0, 0, 0, 0.14) 0px 1px 4px 2px, rgba(0, 0, 0, 0.12) 0px 1px 4px 1px;
  position: fixed !important;
  bottom: 30px !important;
  width: 408px;
  height: auto;
  right: 30px !important;
  background-color: white;
  z-index: 99999;
  animation: slide-in 0.3s ease-in-out;
  /* Animations slide from right */
}
.jims-chat-form-wrapper.slide-out {
  animation: slide-out 0.3s ease-in-out;
  transform: translateX(100%);
}
.jims-chat-form-wrapper.hidden {
  display: none;
}
.jims-chat-form-wrapper .header {
  --font-size: 1.33929rem;
  display: inline-flex;
  background-color: var(--chat-bg-color);
  color: white;
  font-size: var(--font-size);
  line-height: 2.6;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "sans-serif";
  width: 100%;
  height: 60px;
  position: relative;
}
.jims-chat-form-wrapper .header p {
  line-height: var(--font-size);
  padding: 0 25px;
}
.jims-chat-form-wrapper .header .jims-chat-close {
  position: absolute;
  width: 34px;
  right: 8px;
  top: 15px;
  cursor: pointer;
  filter: invert(1);
  border: 0;
  background-color: transparent;
}
.jims-chat-form-wrapper .header .min-button {
  position: absolute;
  width: 50px;
  right: 8px;
  top: 15px;
  cursor: pointer;
  filter: invert(1);
  border: 0;
  background-color: transparent;
}
.jims-chat-form-wrapper .jims-chat-form {
  box-sizing: border-box;
  padding: 25px;
}
.jims-chat-form-wrapper .jims-chat-form label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "sans-serif";
}
.jims-chat-form-wrapper .jims-chat-form input,
.jims-chat-form-wrapper .jims-chat-form select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.jims-chat-form-wrapper .jims-chat-form button.submit {
  width: 100%;
  background-color: var(--chat-bg-color);
  color: white;
  padding: 14px 20px;
  margin: 3rem 0 0 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .jims-chat-form-wrapper {
    width: 100% !important;
    height: 100% !important;
    bottom: 0 !important;
    right: 0 !important;
  }
}
@media (min-width: 601px) {
  .jims-chat-form-wrapper {
    width: 408px !important;
    height: auto !important;
    bottom: 30px !important;
    right: 30px !important;
  }
}
@keyframes slide-in {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-out {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

/*# sourceMappingURL=main.css.map*/