/* [project]/node_modules/shepherd.js/dist/css/shepherd.css [app-client] (css) */
.shepherd-button {
  color: rgba(255, 255, 255, .75);
  cursor: pointer;
  background: #3288e6;
  border: 0;
  border-radius: 3px;
  margin-right: .5rem;
  padding: .5rem 1.5rem;
  transition: all .5s;
}

.shepherd-button:not(:disabled):hover {
  color: rgba(255, 255, 255, .75);
  background: #196fcc;
}

.shepherd-button.shepherd-button-secondary {
  color: rgba(0, 0, 0, .75);
  background: #f1f2f3;
}

.shepherd-button.shepherd-button-secondary:not(:disabled):hover {
  color: rgba(0, 0, 0, .75);
  background: #d6d9db;
}

.shepherd-button:disabled {
  cursor: not-allowed;
}

.shepherd-footer {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  justify-content: flex-end;
  padding: 0 .75rem .75rem;
  display: flex;
}

.shepherd-footer .shepherd-button:last-child {
  margin-right: 0;
}

.shepherd-cancel-icon {
  color: rgba(128, 128, 128, .75);
  cursor: pointer;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  font-size: 2em;
  font-weight: 400;
  transition: color .5s;
}

.shepherd-cancel-icon:hover {
  color: rgba(0, 0, 0, .75);
}

.shepherd-has-title .shepherd-content .shepherd-cancel-icon {
  color: rgba(128, 128, 128, .75);
}

.shepherd-has-title .shepherd-content .shepherd-cancel-icon:hover {
  color: rgba(0, 0, 0, .75);
}

.shepherd-title {
  color: rgba(0, 0, 0, .75);
  flex: 1 0 auto;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
}

.shepherd-header {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  justify-content: flex-end;
  align-items: center;
  padding: .75rem .75rem 0;
  line-height: 2em;
  display: flex;
}

.shepherd-has-title .shepherd-content .shepherd-header {
  background: #e6e6e6;
  padding: 1em;
}

.shepherd-text {
  color: rgba(0, 0, 0, .75);
  padding: .75em;
  font-size: 1rem;
  line-height: 1.3em;
}

.shepherd-text p {
  margin-top: 0;
}

.shepherd-text p:last-child {
  margin-bottom: 0;
}

.shepherd-content {
  border-radius: 5px;
  outline: none;
  padding: 0;
}

.shepherd-element {
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  background: #fff;
  border: none;
  border-radius: 5px;
  outline: none;
  width: 100%;
  max-width: 400px;
  margin: 0;
  padding: 0;
  transition: opacity .3s, visibility .3s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.shepherd-enabled.shepherd-element {
  opacity: 1;
  visibility: visible;
}

.shepherd-element[data-popper-reference-hidden]:not(.shepherd-centered) {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.shepherd-element, .shepherd-element *, .shepherd-element :after, .shepherd-element :before {
  box-sizing: border-box;
}

.shepherd-arrow, .shepherd-arrow:before {
  z-index: -1;
  width: 16px;
  height: 16px;
  position: absolute;
}

.shepherd-arrow:before {
  content: "";
  background: #fff;
  transform: rotate(45deg);
}

.shepherd-element[data-popper-placement^="top"] > .shepherd-arrow {
  bottom: -8px;
}

.shepherd-element[data-popper-placement^="bottom"] > .shepherd-arrow {
  top: -8px;
}

.shepherd-element[data-popper-placement^="left"] > .shepherd-arrow {
  right: -8px;
}

.shepherd-element[data-popper-placement^="right"] > .shepherd-arrow {
  left: -8px;
}

.shepherd-element.shepherd-centered > .shepherd-arrow {
  opacity: 0;
}

.shepherd-element.shepherd-has-title[data-popper-placement^="bottom"] > .shepherd-arrow:before {
  background-color: #e6e6e6;
}

.shepherd-target-click-disabled.shepherd-enabled.shepherd-target, .shepherd-target-click-disabled.shepherd-enabled.shepherd-target * {
  pointer-events: none;
}

.shepherd-modal-overlay-container {
  opacity: 0;
  pointer-events: none;
  z-index: 9997;
  width: 100vw;
  height: 0;
  transition: all .3s ease-out, height 0s .3s, opacity .3s;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.shepherd-modal-overlay-container.shepherd-modal-is-visible {
  opacity: .5;
  height: 100vh;
  transition: all .3s ease-out, height, opacity .3s;
  transform: translateZ(0);
}

.shepherd-modal-overlay-container.shepherd-modal-is-visible path {
  pointer-events: all;
}

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