/* reset */
body .wc-app, .wc-chat-container button, .wc-app input, .wc-app textarea {
  font-family: "Bloomfield", "Segoe UI", sans-serif;
  font-size: 15px; }

.wc-chat-container {
  width: 90%;
  margin: auto; }

.wc-app button {
  background-color: #8200ff;
  border: 1px solid #cccccc;
  border-radius: 1px;
  color: #ffffff;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease; }

.wc-btn {
  font-size: 0.875rem;
  letter-spacing: 0.01rem;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-weight: bold;
  line-height: 8px; }

.wc-primary-btn {
  background-color: #8200ff;
  color: #ffffff;
  box-sizing: border-box; }

.wc-secondary-btn {
  background-color: #ffffff;
  color: #8200ff;
  border: 3px solid #8200ff; }

.wc-app h1, .wc-app h2, .wc-app h3, .wc-app h4, .wc-app p, .wc-app ul, .wc-app ol {
  margin: 0;
  padding: 0; }

.wc-app audio, .wc-app video {
  display: block; }

.wc-screen-reader-only {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  top: auto;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden; }

/* docking */
.wc-hidden {
  visibility: hidden; }

.wc-start-chat-container {
  display: inline; }

.wc-chat-trigger {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid #d7d7d7;
  text-align: center; }
  .wc-chat-trigger .wc-chat-trigger-text {
    color: #360060;
    padding-left: 6px; }
  .wc-chat-trigger .wc-chat-icon-container {
    display: inline-block;
    margin-top: 12px;
    vertical-align: text-bottom; }

@media (min-width: 768px) {
  .wc-chat-trigger {
    width: 205px; } }

.wc-header {
  background-color: #360060;
  box-shadow: 0 1px rgba(0, 0, 0, 0.2);
  box-sizing: content-box;
  height: 24px;
  left: 0;
  padding: 16px 8px 16px 16px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  font-size: 20px;
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-align: left;
  color: #ffffff; }
  .wc-header .wc-close-chat-button {
    float: right;
    line-height: 26px;
    cursor: pointer;
    height: 24px;
    width: 24px;
    margin-right: 10px;
    text-align: center; }
  .wc-header .wc-minimize-chat-button {
    float: right;
    line-height: 11px;
    cursor: pointer;
    height: 24px;
    width: 24px;
    margin-right: 15px; }

.wc-minimized-icon {
  position: fixed;
  bottom: 110px;
  width: 60px;
  height: 60px;
  right: 32px;
  cursor: pointer;
  z-index: 500;
  background-color: #360060;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  animation: wc-icon-enter 0.6s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .wc-minimized-icon .wc-minimized-chat-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -48%);
    width: 24px;
    height: 24px; }

.wc-notification-counter {
  position: absolute;
  top: -8px;
  right: 0;
  opacity: 1;
  background-color: #ec3a3a;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  width: 18px;
  height: 18px;
  line-height: 20px;
  text-align: center;
  display: inline-block;
  transition: all 0.2s linear;
  margin-right: 0; }

.wc-notification-counter.hidden {
  opacity: 0;
  top: -15px; }

@media (min-width: 768px) {
  .wc-minimized-icon {
    bottom: 32px; } }

.wc-time {
  color: #999999;
  margin-bottom: 10px; }

.wc-message-groups {
  left: 0;
  transform: translateY(0);
  outline: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 56px;
  transition: transform 0.2s cubic-bezier(0, 0, 0.5, 1); }
  .wc-message-groups.no-header {
    top: 0; }

.wc-message-group-content {
  overflow: hidden;
  font-size: 13px; }

.wc-suggested-actions {
  background-color: #f9f9f9;
  bottom: 100px;
  height: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  transition: height 0.2s cubic-bezier(0, 0, 0.5, 1); }
  .wc-suggested-actions .wc-hscroll > ul {
    height: 40px;
    padding: 2px 3px; }
    .wc-suggested-actions .wc-hscroll > ul > li {
      display: inline-block;
      margin: 2px;
      max-width: 40%; }
      .wc-suggested-actions .wc-hscroll > ul > li button {
        background-color: #fff;
        color: #8200ff;
        min-height: 32px;
        overflow: hidden;
        padding: 0 16px;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 100%; }
      .wc-suggested-actions .wc-hscroll > ul > li button:focus,
      .wc-suggested-actions .wc-hscroll > ul > li button:hover {
        background-color: #fff;
        border-color: #8200ff;
        color: #8200ff; }
      .wc-suggested-actions .wc-hscroll > ul > li button:active {
        background-color: #8200ff;
        border-color: #8200ff;
        color: #ffffff; }
  .wc-suggested-actions button.scroll {
    background-color: #d2dde5;
    height: 40px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 0;
    width: 28px; }
  .wc-suggested-actions button.scroll:disabled {
    display: none; }
  .wc-suggested-actions button.scroll:focus,
  .wc-suggested-actions button.scroll:hover {
    background-color: #808c95; }
  .wc-suggested-actions button.scroll svg {
    fill: #ffffff; }
    .wc-suggested-actions button.scroll svg path {
      transform: translateY(6px); }
  .wc-suggested-actions button.scroll.previous {
    left: 0; }
  .wc-suggested-actions button.scroll.next {
    right: 0; }

.wc-message-pane.show-actions .wc-message-groups {
  transform: translateY(-40px); }

.wc-message-pane.show-actions .wc-suggested-actions {
  height: 40px; }

.wc-closing-warn-container {
  position: absolute;
  top: 56px;
  bottom: 0;
  width: 100%;
  padding: 100px 0;
  text-align: center;
  font-size: 20px;
  color: #333333; }
  .wc-closing-warn-container .confirm-close-button {
    display: block;
    width: 150px;
    text-align: center;
    margin: 20px auto;
    padding: 16px 0; }
  .wc-closing-warn-container .revert-close-button {
    display: block;
    width: 150px;
    text-align: center;
    margin: 20px auto;
    padding: 13px 0; }

@media (min-width: 768px) {
  .wc-closing-warn-container {
    position: absolute;
    top: 56px;
    bottom: 0;
    width: auto;
    padding: 100px 41px 0 41px;
    text-align: center;
    font-size: 20px; } }

.wc-unavailable-message-container {
  position: absolute;
  top: 56px;
  bottom: 0;
  padding: 100px 50px;
  text-align: center;
  font-size: 14px;
  color: #333333; }

/* views */
.wc-chatview-panel {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #ffffff;
  z-index: 500;
  text-align: left; }

@media (min-width: 768px) {
  .wc-chatview-panel {
    overflow: hidden;
    position: fixed;
    left: auto;
    top: auto;
    right: 32px;
    bottom: 0;
    max-height: 500px;
    width: 318px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); } }

/* messages */
.wc-message-wrapper {
  animation: wc-animationFrames 2s;
  animation-iteration-count: 1;
  clear: both;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  /*transition: max-height 2s ease-in-out;*/ }

@keyframes wc-animationFrames {
  0% {
    opacity: 0; }
  20% {
    opacity: 1; } }

.wc-message {
  position: relative; }

.wc-message p {
  font-size: 13px; }

.wc-message-wrapper.carousel .wc-message {
  max-width: none;
  padding-right: 8px; }

.wc-message svg.wc-message-callout {
  height: 22px;
  position: absolute;
  stroke: none;
  top: 12px;
  width: 6px; }

.wc-message-content {
  border-radius: 2px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
  padding: 8px;
  word-break: break-word; }

.wc-message-content.clickable {
  cursor: pointer; }

.wc-message-content.selected {
  box-shadow: 0px 1px 1px 0px #ffa333; }

.wc-message-content img {
  max-height: 320px;
  max-width: 100%; }

.wc-message-content .video iframe {
  border: 0; }

.wc-message-content audio, .wc-message-content video {
  max-width: 100%; }

.wc-message-content audio + h1, .wc-message-content video + h1 {
  margin-top: 11px; }

.wc-message-from {
  clear: both;
  color: #767676;
  font-size: 11px;
  margin-top: 5px; }

/* cards */
.wc-card {
  background-color: #ffffff; }
  .wc-card .non-adaptive-content {
    margin: 8px 8px 0 8px; }
  .wc-card button {
    background-color: transparent;
    color: #8200ff;
    min-height: 27px;
    width: 100%;
    font-weight: 400;
    padding: 0 5px;
    font-size: 13px;
    border: 1px solid #d2dde5; }
  .wc-card button:hover {
    background-color: transparent;
    border-color: #8200ff;
    color: #8200ff; }
  .wc-card button:active {
    background-color: #8200ff;
    border-color: #8200ff;
    color: #ffffff; }
  .wc-card.receipt table {
    border-collapse: collapse;
    width: 100%; }
  .wc-card.receipt th, .wc-card.receipt td {
    text-align: right;
    vertical-align: top; }
  .wc-card.receipt th:first-child, .wc-card.receipt td:first-child {
    text-align: left; }
  .wc-card.receipt th {
    color: #808c95;
    font-size: inherit;
    font-weight: normal;
    line-height: 1.75; }
  .wc-card.receipt thead tr:last-child th {
    padding-bottom: 16px; }
  .wc-card.receipt th[colspan="2"] {
    color: inherit;
    font-size: 15px;
    font-weight: 700; }
  .wc-card.receipt td {
    padding: 4px 8px 0 8px; }
  .wc-card.receipt td img {
    float: left;
    margin: 5px 8px 8px 0;
    max-height: 50px;
    max-width: 50px; }
  .wc-card.receipt div.title {
    font-weight: bolder; }
  .wc-card.receipt div.subtitle {
    font-weight: lighter; }
  .wc-card.receipt tbody tr, .wc-card.receipt tfoot tr {
    border-top: 1px solid #d2dde5; }
  .wc-card.receipt tbody tr:first-child, .wc-card.receipt tfoot tr:first-child {
    border-top-width: 2px; }
  .wc-card.receipt tfoot td {
    line-height: 2.25; }
  .wc-card.receipt tfoot .total {
    font-weight: bold; }
  .wc-card.thumbnail img {
    float: right;
    margin-bottom: 10px;
    margin-left: 10px;
    width: 100px; }
  .wc-card.signin h1 {
    margin: 10px 24px 16px 14px; }
  .wc-card.error {
    text-align: center; }
    .wc-card.error .error-icon {
      fill: #cccccc;
      height: 56px;
      margin-bottom: 2px;
      margin-top: 20px;
      padding-left: 12px; }
    .wc-card.error .error-text {
      color: #cccccc;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 20px;
      text-align: inherit; }
  .wc-card .ac-actionSet {
    margin: 4px; }

/* alternate chat sizes */
.wc-message {
  max-width: 91%; }

.wc-card {
  width: 302px; }

.wc-adaptive-card {
  width: 320px; }

.wc-wide .wc-card {
  width: 398px; }

.wc-wide .wc-adaptive-card {
  width: 416px; }

.wc-narrow .wc-card {
  width: 198px; }

.wc-narrow .wc-adaptive-card {
  width: 216px; }

/* adaptive card adjustments from wc-card */
.wc-adaptive-card p {
  margin-left: 0;
  margin-right: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit; }

.wc-adaptive-card .ac-image {
  padding-top: 5px;
  padding-bottom: 5px; }

.wc-adaptive-order .ac-image img[alt="ItemImage"] {
  height: 40px;
  object-fit: contain; }

/* horizontal scroll */
.wc-hscroll-outer {
  /* allow horizontal scrolling but hide the scrollbar */
  overflow: hidden; }

.wc-hscroll {
  /* allow horizontal scrolling but hide the scrollbar */
  overflow-x: scroll;
  overflow-y: hidden; }

.wc-hscroll > ul {
  white-space: nowrap;
  padding-left: 40px; }

.wc-hscroll > ul > li {
  display: inline-block;
  vertical-align: top;
  white-space: normal; }

.wc-hscroll .wc-card {
  padding: 4px 0; }

/* carousel */
.wc-carousel {
  position: relative; }
  .wc-carousel button.scroll {
    background-color: transparent;
    height: 32px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 32px;
    border: none; }
  .wc-carousel button.scroll:disabled {
    display: none; }
  .wc-carousel button.scroll:focus,
  .wc-carousel button.scroll:hover {
    border-color: #8200ff; }
  .wc-carousel button.scroll svg {
    fill: #8200ff; }
  .wc-carousel button.scroll.previous {
    left: -12px; }
  .wc-carousel button.scroll.next {
    right: -12px; }
  .wc-carousel .wc-hscroll > ul {
    margin: -4px 0 -4px -44px; }
  .wc-carousel .wc-hscroll > ul > li {
    padding: 0 3px; }
  .wc-carousel .wc-hscroll > ul > li:last-child {
    padding-right: 0; }
  .wc-carousel li p {
    min-height: 4em;
    white-space: normal; }
  .wc-carousel li .wc-adaptive-card p {
    min-height: initial; }

/* from me */
.wc-message-from-me {
  float: right;
  margin-right: 6px; }

.wc-message-from-me.wc-message-from {
  text-align: right; }

.wc-message-from-me .wc-message-content {
  background-color: rgba(153, 233, 255, 0.3);
  color: #333333; }

.wc-message-from-me svg.wc-message-callout path {
  fill: rgba(153, 233, 255, 0.3); }

.wc-message-from-me svg.wc-message-callout path.point-left {
  display: none; }

.wc-message-from-me svg.wc-message-callout {
  right: -6px; }

/* from bot */
.wc-message-from-bot {
  float: left;
  margin-left: 8px; }

.wc-message-from-bot .wc-message-content {
  background-color: #eceff1;
  color: #333333;
  margin-left: 30px; }

.wc-message-from-bot svg.wc-message-callout path {
  fill: #eceff1; }

.wc-message-from-bot svg.wc-message-callout path.point-right {
  display: none; }

.wc-message-from-bot svg.wc-message-callout {
  left: -6px; }

.wc-from-icon {
  height: 32px;
  width: 32px;
  position: absolute;
  top: 8px; }

/* console */
.wc-console {
  border-top: 1px solid #8200ff;
  bottom: 0;
  box-sizing: border-box;
  left: 0;
  position: absolute;
  right: 0; }
  .wc-console > .wc-upload,
  .wc-console > .wc-textbox,
  .wc-console > .wc-send,
  .wc-console > .wc-mic {
    position: absolute;
    top: 0;
    vertical-align: middle; }
  .wc-console label, .wc-console button {
    cursor: pointer;
    display: inline-block;
    height: 40px; }
  .wc-console svg {
    fill: #8a8a8a;
    margin: 11px; }
  .wc-console input[type=text],
  .wc-console textarea {
    border: none;
    height: 100%;
    outline: none;
    padding: 0;
    resize: none;
    width: 100%; }
  .wc-console.has-text .wc-send svg {
    fill: #8200ff; }
  .wc-console .wc-upload {
    cursor: pointer;
    position: relative;
    display: none; }
    .wc-console .wc-upload svg {
      height: 18px;
      width: 26px; }
  .wc-console #wc-upload-input {
    font-size: 0;
    height: 0;
    left: 0;
    opacity: 0;
    outline: 0;
    position: absolute;
    top: 0;
    width: 0; }
  .wc-console .wc-send {
    right: 0; }
  .wc-console .wc-send.hidden {
    visibility: hidden; }
  .wc-console .wc-textbox {
    width: 90%;
    padding: 20px 16px;
    box-sizing: border-box;
    height: 100%; }
    .wc-console .wc-textbox textarea {
      background-color: transparent;
      line-height: 20px;
      font-size: 14px;
      color: black; }
  .wc-console .wc-mic,
  .wc-console .wc-send {
    background-color: transparent;
    border: 0;
    padding: 0;
    right: 0;
    width: 15%;
    height: 100%;
    font-size: 14px;
    color: #8200ff;
    font-weight: bold; }
    .wc-console .wc-mic.hidden,
    .wc-console .wc-send.hidden {
      visibility: hidden; }
  .wc-console .wc-send svg {
    height: 18px;
    width: 27px; }
  .wc-console .wc-mic.active path#micFilling {
    fill: #4e3787; }
  .wc-console .wc-mic.inactive path#micFilling {
    visibility: hidden; }

.wc-console.has-text .wc-send svg {
  fill: #8200ff; }

/* animation */
.wc-typing {
  height: 15px;
  width: 40px; }
  .wc-typing span.wc-span {
    height: 8px;
    width: 8px;
    float: left;
    margin: 4px 2px;
    background-color: #9E9EA1;
    display: block;
    border-radius: 50%;
    opacity: 0.4; }
    .wc-typing span.wc-span:nth-of-type(1) {
      animation: 1s wc-blink infinite 0.3333s; }
    .wc-typing span.wc-span:nth-of-type(2) {
      animation: 1s wc-blink infinite 0.6666s; }
    .wc-typing span.wc-span:nth-of-type(3) {
      animation: 1s wc-blink infinite 0.9999s; }

@keyframes wc-blink {
  50% {
    opacity: 1; } }

.wc-animate-scroll {
  left: 0;
  position: absolute;
  transition: left .8s ease; }

.wc-animate-scroll-rapid {
  left: 0;
  position: absolute;
  transition: left .4s ease; }

.wc-animate-scroll-near {
  left: 0;
  position: absolute;
  transition: left .3s ease-in-out; }

/* text formats */
.format-markdown > p {
  margin-bottom: 0px;
  margin-top: 0; }

.format-markdown code {
  white-space: pre-wrap; }

.format-markdown + div {
  margin-top: 8px; }

.format-markdown ol {
  padding-left: 30px;
  /* numbers are right-aligned to the period */ }

.format-markdown ul {
  padding-left: 33px; }

/* browser scrollbar customization */
.wc-app ::-webkit-scrollbar {
  width: 8px; }

.wc-app ::-webkit-scrollbar * {
  background-color: transparent; }

.wc-app ::-webkit-scrollbar-thumb {
  background-color: #dbdee1; }

/* download button for Unknown media */
.wc-icon-download {
  display: inline-block;
  height: 20px;
  margin-left: 8px;
  vertical-align: top;
  width: 12px; }

.wc-text-download {
  display: inline-block;
  font-weight: 500;
  text-decoration: none; }

.wc-message-from-bot a.wc-link-download:link, .wc-message-from-bot a.wc-link-download:visited {
  color: #333333;
  opacity: 1; }
  .wc-message-from-bot a.wc-link-download:link .wc-icon-download, .wc-message-from-bot a.wc-link-download:visited .wc-icon-download {
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="20" viewBox="0 0 12 20" xmlns="http://www.w3.org/2000/svg"><path d="M.435 20v-1.25h11.13V20H.435zM12 10.44l-6 6.113-6-6.114.87-.88 4.512 4.59V0h1.236v14.15l4.512-4.59.87.88z" fill="#333333" fill-rule="evenodd"/></svg>');
    background-repeat: no-repeat; }

.wc-message-from-bot a.wc-link-download:hover {
  color: #8200ff;
  opacity: 1; }
  .wc-message-from-bot a.wc-link-download:hover .wc-icon-download {
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="20" viewBox="0 0 12 20" xmlns="http://www.w3.org/2000/svg"><path d="M.435 20v-1.25h11.13V20H.435zM12 10.44l-6 6.113-6-6.114.87-.88 4.512 4.59V0h1.236v14.15l4.512-4.59.87.88z" fill="#8200ff" fill-rule="evenodd"/></svg>');
    background-repeat: no-repeat; }

.wc-message-from-bot a.wc-link-download:active {
  color: #8200ff;
  opacity: 0.8; }
  .wc-message-from-bot a.wc-link-download:active .wc-icon-download {
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="20" viewBox="0 0 12 20" xmlns="http://www.w3.org/2000/svg"><path d="M.435 20v-1.25h11.13V20H.435zM12 10.44l-6 6.113-6-6.114.87-.88 4.512 4.59V0h1.236v14.15l4.512-4.59.87.88z" fill="#8200ff" fill-rule="evenodd"/></svg>');
    background-repeat: no-repeat; }

.wc-message-from-me a.wc-link-download:link, .wc-message-from-me a.wc-link-download:visited {
  color: #ffffff;
  opacity: 1; }
  .wc-message-from-me a.wc-link-download:link .wc-icon-download, .wc-message-from-me a.wc-link-download:visited .wc-icon-download {
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="20" viewBox="0 0 12 20" xmlns="http://www.w3.org/2000/svg"><path d="M.435 20v-1.25h11.13V20H.435zM12 10.44l-6 6.113-6-6.114.87-.88 4.512 4.59V0h1.236v14.15l4.512-4.59.87.88z" fill="#ffffff" fill-rule="evenodd"/></svg>');
    background-repeat: no-repeat; }

.wc-message-from-me a.wc-link-download:hover {
  color: #ffffff;
  opacity: 0.8; }
  .wc-message-from-me a.wc-link-download:hover .wc-icon-download {
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="20" viewBox="0 0 12 20" xmlns="http://www.w3.org/2000/svg"><path d="M.435 20v-1.25h11.13V20H.435zM12 10.44l-6 6.113-6-6.114.87-.88 4.512 4.59V0h1.236v14.15l4.512-4.59.87.88z" fill="#ffffff" fill-rule="evenodd"/></svg>');
    background-repeat: no-repeat; }

.wc-message-from-me a.wc-link-download:active {
  color: #ffffff;
  opacity: 0.6; }
  .wc-message-from-me a.wc-link-download:active .wc-icon-download {
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="20" viewBox="0 0 12 20" xmlns="http://www.w3.org/2000/svg"><path d="M.435 20v-1.25h11.13V20H.435zM12 10.44l-6 6.113-6-6.114.87-.88 4.512 4.59V0h1.236v14.15l4.512-4.59.87.88z" fill="#ffffff" fill-rule="evenodd"/></svg>');
    background-repeat: no-repeat; }

/* Loading */
@keyframes wc-pulse-default {
  from {
    background: #8200ff; }
  40%, to {
    background: white; } }

@keyframes wc-show-default {
  from, 40% {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1; }
  41%, to {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0; } }

@keyframes wc-icon-enter {
  0% {
    transform: scale(0); }
  100% {
    transform: scale(1); } }

.wc-loading {
  position: relative; }

.wc-loading .wc-loader-wrapper {
  visibility: visible; }

.black-out.wc-loader-wrapper {
  background-color: var(--color-black); }

.black-out .wc-loader {
  display: none; }

.wc-loader-wrapper {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-white);
  opacity: .8;
  z-index: 3;
  overflow: hidden; }

.wc-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5rem;
  height: 5rem;
  margin-left: -2.5rem;
  margin-top: -2.5rem; }

.wc-loader-default .wc-loader-block {
  background-color: var(--color-brand);
  animation: wc-show-default .88s step-end infinite alternate, wc-pulse-default .88s linear infinite alternate; }

.wc-loader-block:nth-child(1) {
  transform: translate(0, 0);
  animation-delay: .065s; }

.wc-loader-block:nth-child(2) {
  transform: translate(2.66667rem, 0);
  animation-delay: .13s; }

.wc-loader-block:nth-child(3) {
  transform: translate(0, 2.66667rem);
  animation-delay: .195s; }

.wc-loader-block:nth-child(4) {
  transform: translate(2.66667rem, 2.66667rem);
  animation-delay: .26s; }

.wc-loader-block {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  opacity: 0;
  width: 2em;
  height: 2em; }

/* reset */
body .wc-app, .wc-chat-container button, .wc-app input, .wc-app textarea {
  font-family: "Bloomfield", "Segoe UI", sans-serif;
  font-size: 15px; }

.wc-app button {
  background-color: #041E42;
  border: 1px solid #cccccc;
  border-radius: 1px;
  color: #ffffff;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease; }

.wc-btn {
  font-size: 0.875rem;
  letter-spacing: 0.01rem;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: "Bloomfield", "Segoe UI", sans-serif;
  font-weight: bold;
  line-height: 8px; }

.wc-primary-btn {
  background-color: #ffffff;
  color: #041E42;
  box-sizing: border-box;
  border-radius: 32px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 243px; }

.wc-secondary-btn {
  background-color: #ffffff;
  color: #041E42;
  border: 3px solid #041E42; }

.wc-app h1, .wc-app h2, .wc-app h3, .wc-app h4, .wc-app p, .wc-app ul, .wc-app ol {
  margin: 0;
  padding: 0; }

.wc-app audio, .wc-app video {
  display: block; }

.wc-screen-reader-only {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  top: auto;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden; }

/* docking */
.wc-hidden {
  visibility: hidden; }

.wc-chat-trigger .wc-chat-trigger-text {
  color: #041E42;
  font-family: Bogle;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  padding-left: 11px; }

.wc-chat-trigger .wc-chat-icon-container {
  margin-top: 0; }

.wc-header {
  background-color: #041E42;
  box-shadow: 0 1px rgba(0, 0, 0, 0.2);
  box-sizing: content-box;
  height: 24px;
  left: 0;
  padding: 16px 8px 16px 16px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  font-size: 20px;
  font-weight: 900;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-align: left;
  color: #ffffff;
  font-family: "Bloomfield", "Segoe UI", sans-serif; }
  .wc-header .wc-close-chat-button {
    float: right;
    line-height: 26px;
    cursor: pointer;
    height: 24px;
    width: 24px;
    margin-right: 10px;
    text-align: center; }
  .wc-header .wc-minimize-chat-button {
    float: right;
    line-height: 11px;
    cursor: pointer;
    height: 24px;
    width: 24px;
    margin-right: 15px; }

.wc-minimized-icon {
  position: fixed;
  bottom: 110px;
  width: 60px;
  height: 60px;
  right: 32px;
  cursor: pointer;
  z-index: 500;
  background-color: #041E42;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }
  .wc-minimized-icon .wc-minimized-chat-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -48%);
    width: 24px;
    height: 24px; }

.wc-notification-counter {
  position: absolute;
  top: -8px;
  right: 0;
  opacity: 1;
  background-color: #ec3a3a;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  width: 18px;
  height: 18px;
  line-height: 20px;
  text-align: center;
  font-family: "Bloomfield", "Segoe UI", sans-serif;
  display: inline-block;
  transition: all 0.2s linear;
  margin-right: 0; }

.wc-notification-counter.hidden {
  opacity: 0;
  top: -15px; }

@media (min-width: 768px) {
  .wc-minimized-icon {
    bottom: 32px; } }

.wc-time {
  color: #999999;
  margin-bottom: 10px; }

.wc-message-groups {
  left: 0;
  transform: translateY(0);
  outline: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 56px;
  transition: transform 0.2s cubic-bezier(0, 0, 0.5, 1); }
  .wc-message-groups.no-header {
    top: 0; }

.wc-message-group-content {
  overflow: hidden;
  font-size: 13px;
  font-family: "Bloomfield", "Segoe UI", sans-serif; }

.wc-suggested-actions {
  background-color: #f9f9f9;
  bottom: 100px;
  height: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  transition: height 0.2s cubic-bezier(0, 0, 0.5, 1); }
  .wc-suggested-actions .wc-hscroll > ul {
    height: 40px;
    padding: 2px 3px; }
    .wc-suggested-actions .wc-hscroll > ul > li {
      display: inline-block;
      margin: 2px;
      max-width: 40%; }
      .wc-suggested-actions .wc-hscroll > ul > li button {
        background-color: #fff;
        color: #041E42;
        min-height: 32px;
        overflow: hidden;
        padding: 0 16px;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 100%; }
      .wc-suggested-actions .wc-hscroll > ul > li button:focus,
      .wc-suggested-actions .wc-hscroll > ul > li button:hover {
        background-color: #fff;
        border-color: #041E42;
        color: #041E42; }
      .wc-suggested-actions .wc-hscroll > ul > li button:active {
        background-color: #041E42;
        border-color: #041E42;
        color: #ffffff; }
  .wc-suggested-actions button.scroll {
    background-color: #d2dde5;
    height: 40px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 0;
    width: 28px; }
  .wc-suggested-actions button.scroll:disabled {
    display: none; }
  .wc-suggested-actions button.scroll:focus,
  .wc-suggested-actions button.scroll:hover {
    background-color: #808c95; }
  .wc-suggested-actions button.scroll svg {
    fill: #ffffff; }
    .wc-suggested-actions button.scroll svg path {
      transform: translateY(6px); }
  .wc-suggested-actions button.scroll.previous {
    left: 0; }
  .wc-suggested-actions button.scroll.next {
    right: 0; }

.wc-message-pane.show-actions .wc-message-groups {
  transform: translateY(-40px); }

.wc-message-pane.show-actions .wc-suggested-actions {
  height: 40px; }

.warn-button, .wc-closing-warn-container .confirm-close-button.wc-primary-btn, .wc-closing-warn-container .revert-close-button.wc-secondary-btn {
  width: 177px;
  height: 48px;
  display: flex;
  font-family: Bogle;
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 0; }

.wc-closing-warn-container {
  position: absolute;
  top: 56px;
  bottom: 0;
  width: 100%;
  padding: 100px 0;
  text-align: center;
  font-family: "Bloomfield", "Segoe UI", sans-serif;
  font-size: 20px;
  color: #333333; }
  .wc-closing-warn-container .confirm-close-button.wc-primary-btn {
    background-color: #041E42;
    color: #ffffff; }
  .wc-closing-warn-container .revert-close-button.wc-secondary-btn {
    background-color: #ffc220;
    color: #041E42; }

@media (min-width: 768px) {
  .wc-closing-warn-container {
    position: absolute;
    top: 56px;
    bottom: 0;
    width: auto;
    padding: 100px 41px 0 41px;
    text-align: center;
    font-family: "Bloomfield", "Segoe UI", sans-serif;
    font-size: 20px; } }

.wc-hayneedle-chat-icon {
  display: none; }

/* views */
.wc-chatview-panel {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #ffffff;
  z-index: 500;
  text-align: left; }

@media (min-width: 768px) {
  .wc-chatview-panel {
    overflow: hidden;
    position: fixed;
    left: auto;
    top: auto;
    right: 32px;
    bottom: 0;
    max-height: 500px;
    width: 318px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); } }

/* messages */
.wc-message {
  position: relative; }

.wc-message p {
  font-size: 13px; }

.wc-message-wrapper.carousel .wc-message {
  max-width: none;
  padding-right: 8px; }

.wc-message svg.wc-message-callout {
  height: 22px;
  position: absolute;
  stroke: none;
  top: 12px;
  width: 6px; }

.wc-message-content {
  border-radius: 2px;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
  padding: 8px;
  word-break: break-word; }

.wc-message-content.clickable {
  cursor: pointer; }

.wc-message-content.selected {
  box-shadow: 0px 1px 1px 0px #ffa333; }

.wc-message-content img {
  max-height: 320px;
  max-width: 100%; }

.wc-message-content .video iframe {
  border: 0; }

.wc-message-content audio, .wc-message-content video {
  max-width: 100%; }

.wc-message-content audio + h1, .wc-message-content video + h1 {
  margin-top: 11px; }

.wc-message-from {
  clear: both;
  color: #767676;
  font-size: 11px;
  margin-top: 5px; }

/* cards */
.wc-card {
  background-color: #ffffff; }
  .wc-card .non-adaptive-content {
    margin: 8px 8px 0 8px; }
  .wc-card button {
    background-color: transparent;
    color: #041E42;
    min-height: 27px;
    width: 100%;
    font-weight: 400;
    padding: 0 5px;
    font-size: 13px;
    border: 1px solid #d2dde5; }
  .wc-card button:hover {
    background-color: transparent;
    border-color: #041E42;
    color: #041E42; }
  .wc-card button:active {
    background-color: #041E42;
    border-color: #041E42;
    color: #ffffff; }
  .wc-card.receipt table {
    border-collapse: collapse;
    width: 100%; }
  .wc-card.receipt th, .wc-card.receipt td {
    text-align: right;
    vertical-align: top; }
  .wc-card.receipt th:first-child, .wc-card.receipt td:first-child {
    text-align: left; }
  .wc-card.receipt th {
    color: #808c95;
    font-size: inherit;
    font-weight: normal;
    line-height: 1.75; }
  .wc-card.receipt thead tr:last-child th {
    padding-bottom: 16px; }
  .wc-card.receipt th[colspan="2"] {
    color: inherit;
    font-size: 15px;
    font-weight: 700; }
  .wc-card.receipt td {
    padding: 4px 8px 0 8px; }
  .wc-card.receipt td img {
    float: left;
    margin: 5px 8px 8px 0;
    max-height: 50px;
    max-width: 50px; }
  .wc-card.receipt div.title {
    font-weight: bolder; }
  .wc-card.receipt div.subtitle {
    font-weight: lighter; }
  .wc-card.receipt tbody tr, .wc-card.receipt tfoot tr {
    border-top: 1px solid #d2dde5; }
  .wc-card.receipt tbody tr:first-child, .wc-card.receipt tfoot tr:first-child {
    border-top-width: 2px; }
  .wc-card.receipt tfoot td {
    line-height: 2.25; }
  .wc-card.receipt tfoot .total {
    font-weight: bold; }
  .wc-card.thumbnail img {
    float: right;
    margin-bottom: 10px;
    margin-left: 10px;
    width: 100px; }
  .wc-card.signin h1 {
    margin: 10px 24px 16px 14px; }
  .wc-card.error {
    text-align: center; }
    .wc-card.error .error-icon {
      fill: #cccccc;
      height: 56px;
      margin-bottom: 2px;
      margin-top: 20px;
      padding-left: 12px; }
    .wc-card.error .error-text {
      color: #cccccc;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 20px;
      text-align: inherit; }

/* alternate chat sizes */
.wc-message {
  max-width: 91%; }

.wc-card {
  width: 302px; }

.wc-adaptive-card {
  width: 320px; }

.wc-wide .wc-card {
  width: 398px; }

.wc-wide .wc-adaptive-card {
  width: 416px; }

.wc-narrow .wc-card {
  width: 198px; }

.wc-narrow .wc-adaptive-card {
  width: 216px; }

/* adaptive card adjustments from wc-card */
.wc-adaptive-card p {
  margin-left: 0;
  margin-right: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit; }

.wc-adaptive-card .ac-image {
  padding-top: 5px;
  padding-bottom: 5px; }

/* horizontal scroll */
.wc-hscroll-outer {
  /* allow horizontal scrolling but hide the scrollbar */
  overflow: hidden; }

.wc-hscroll {
  /* allow horizontal scrolling but hide the scrollbar */
  overflow-x: scroll;
  overflow-y: hidden; }

.wc-hscroll > ul {
  white-space: nowrap;
  padding-left: 40px; }

.wc-hscroll > ul > li {
  display: inline-block;
  vertical-align: top;
  white-space: normal; }

.wc-hscroll .wc-card {
  padding: 4px 0; }

/* carousel */
.wc-carousel {
  position: relative; }
  .wc-carousel button.scroll {
    background-color: transparent;
    height: 32px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 32px;
    border: none; }
  .wc-carousel button.scroll:disabled {
    display: none; }
  .wc-carousel button.scroll:focus,
  .wc-carousel button.scroll:hover {
    border-color: #041E42; }
  .wc-carousel button.scroll svg {
    fill: #041E42; }
  .wc-carousel button.scroll.previous {
    left: -12px; }
  .wc-carousel button.scroll.next {
    right: -12px; }
  .wc-carousel .wc-hscroll > ul {
    margin: -4px 0 -4px -44px; }
  .wc-carousel .wc-hscroll > ul > li {
    padding: 0 3px; }
  .wc-carousel .wc-hscroll > ul > li:last-child {
    padding-right: 0; }
  .wc-carousel li p {
    min-height: 4em;
    white-space: normal; }
  .wc-carousel li .wc-adaptive-card p {
    min-height: initial; }

/* from me */
.wc-message-from-me {
  float: right;
  margin-right: 6px; }

.wc-message-from-me.wc-message-from {
  text-align: right; }

.wc-message-from-me .wc-message-content {
  background-color: rgba(153, 233, 255, 0.3);
  color: #333333; }

.wc-message-from-me svg.wc-message-callout path {
  fill: rgba(153, 233, 255, 0.3); }

.wc-message-from-me svg.wc-message-callout path.point-left {
  display: none; }

.wc-message-from-me svg.wc-message-callout {
  right: -6px; }

/* from bot */
.wc-message-from-bot {
  float: left;
  margin-left: 8px; }

.wc-message-from-bot .wc-message-content {
  background-color: #eceff1;
  color: #333333;
  margin-left: 30px; }

.wc-message-from-bot svg.wc-message-callout path {
  fill: #eceff1; }

.wc-message-from-bot svg.wc-message-callout path.point-right {
  display: none; }

.wc-message-from-bot svg.wc-message-callout {
  left: -6px; }

.wc-from-icon {
  height: 32px;
  width: 32px;
  position: absolute;
  top: 3px; }

/* console */
.wc-console {
  border-top: 1px solid #041E42;
  bottom: 0;
  box-sizing: border-box;
  left: 0;
  position: absolute;
  right: 0;
  font-family: "Bloomfield", "Segoe UI", sans-serif; }
  .wc-console > .wc-upload,
  .wc-console > .wc-textbox,
  .wc-console > .wc-send,
  .wc-console > .wc-mic {
    position: absolute;
    top: 0;
    vertical-align: middle; }
  .wc-console label, .wc-console button {
    cursor: pointer;
    display: inline-block;
    height: 40px; }
  .wc-console svg {
    fill: #8a8a8a;
    margin: 11px; }
  .wc-console input[type=text],
  .wc-console textarea {
    border: none;
    height: 100%;
    outline: none;
    padding: 0;
    resize: none;
    width: 100%; }
  .wc-console.has-text .wc-send svg {
    fill: #041E42; }
  .wc-console .wc-upload {
    cursor: pointer;
    position: relative;
    display: none; }
    .wc-console .wc-upload svg {
      height: 18px;
      width: 26px; }
  .wc-console #wc-upload-input {
    font-size: 0;
    height: 0;
    left: 0;
    opacity: 0;
    outline: 0;
    position: absolute;
    top: 0;
    width: 0; }
  .wc-console .wc-send {
    right: 0; }
  .wc-console .wc-send.hidden {
    visibility: hidden; }
  .wc-console .wc-textbox {
    width: 90%;
    padding: 20px 16px;
    box-sizing: border-box;
    height: 100%; }
    .wc-console .wc-textbox textarea {
      background-color: transparent;
      line-height: 20px;
      font-size: 14px;
      color: black; }
  .wc-console .wc-mic,
  .wc-console .wc-send {
    background-color: transparent;
    border: 0;
    padding: 0;
    right: 0;
    width: 15%;
    height: 100%;
    font-size: 14px;
    color: #041E42;
    font-weight: bold; }
    .wc-console .wc-mic.hidden,
    .wc-console .wc-send.hidden {
      visibility: hidden; }
  .wc-console .wc-send svg {
    height: 18px;
    width: 27px; }
  .wc-console .wc-mic.active path#micFilling {
    fill: #4e3787; }
  .wc-console .wc-mic.inactive path#micFilling {
    visibility: hidden; }

.wc-console.has-text .wc-send svg {
  fill: #041E42; }

/* animation */
.wc-animate-scroll {
  left: 0;
  position: absolute;
  transition: left .8s ease; }

.wc-animate-scroll-rapid {
  left: 0;
  position: absolute;
  transition: left .4s ease; }

.wc-animate-scroll-near {
  left: 0;
  position: absolute;
  transition: left .3s ease-in-out; }

/* text formats */
.format-markdown > p {
  margin-bottom: 0px;
  margin-top: 0;
  font-family: Bogle;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #000000; }

.format-markdown code {
  white-space: pre-wrap; }

.format-markdown + div {
  margin-top: 8px; }

.format-markdown ol {
  padding-left: 30px;
  /* numbers are right-aligned to the period */ }

.format-markdown ul {
  padding-left: 33px; }

/* browser scrollbar customization */
.wc-app ::-webkit-scrollbar {
  width: 8px; }

.wc-app ::-webkit-scrollbar * {
  background-color: transparent; }

.wc-app ::-webkit-scrollbar-thumb {
  background-color: #dbdee1; }

/* download button for Unknown media */
.wc-icon-download {
  display: inline-block;
  height: 20px;
  margin-left: 8px;
  vertical-align: top;
  width: 12px; }

.wc-text-download {
  display: inline-block;
  font-weight: 500;
  text-decoration: none; }

.wc-message-from-bot a.wc-link-download:link, .wc-message-from-bot a.wc-link-download:visited {
  color: #333333;
  opacity: 1; }
  .wc-message-from-bot a.wc-link-download:link .wc-icon-download, .wc-message-from-bot a.wc-link-download:visited .wc-icon-download {
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="20" viewBox="0 0 12 20" xmlns="http://www.w3.org/2000/svg"><path d="M.435 20v-1.25h11.13V20H.435zM12 10.44l-6 6.113-6-6.114.87-.88 4.512 4.59V0h1.236v14.15l4.512-4.59.87.88z" fill="#333333" fill-rule="evenodd"/></svg>');
    background-repeat: no-repeat; }

.wc-message-from-bot a.wc-link-download:hover {
  color: #041E42;
  opacity: 1; }
  .wc-message-from-bot a.wc-link-download:hover .wc-icon-download {
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="20" viewBox="0 0 12 20" xmlns="http://www.w3.org/2000/svg"><path d="M.435 20v-1.25h11.13V20H.435zM12 10.44l-6 6.113-6-6.114.87-.88 4.512 4.59V0h1.236v14.15l4.512-4.59.87.88z" fill="#041E42" fill-rule="evenodd"/></svg>');
    background-repeat: no-repeat; }

.wc-message-from-bot a.wc-link-download:active {
  color: #041E42;
  opacity: 0.8; }
  .wc-message-from-bot a.wc-link-download:active .wc-icon-download {
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="20" viewBox="0 0 12 20" xmlns="http://www.w3.org/2000/svg"><path d="M.435 20v-1.25h11.13V20H.435zM12 10.44l-6 6.113-6-6.114.87-.88 4.512 4.59V0h1.236v14.15l4.512-4.59.87.88z" fill="#041E42" fill-rule="evenodd"/></svg>');
    background-repeat: no-repeat; }

.wc-message-from-me a.wc-link-download:link, .wc-message-from-me a.wc-link-download:visited {
  color: #ffffff;
  opacity: 1; }
  .wc-message-from-me a.wc-link-download:link .wc-icon-download, .wc-message-from-me a.wc-link-download:visited .wc-icon-download {
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="20" viewBox="0 0 12 20" xmlns="http://www.w3.org/2000/svg"><path d="M.435 20v-1.25h11.13V20H.435zM12 10.44l-6 6.113-6-6.114.87-.88 4.512 4.59V0h1.236v14.15l4.512-4.59.87.88z" fill="#ffffff" fill-rule="evenodd"/></svg>');
    background-repeat: no-repeat; }

.wc-message-from-me a.wc-link-download:hover {
  color: #ffffff;
  opacity: 0.8; }
  .wc-message-from-me a.wc-link-download:hover .wc-icon-download {
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="20" viewBox="0 0 12 20" xmlns="http://www.w3.org/2000/svg"><path d="M.435 20v-1.25h11.13V20H.435zM12 10.44l-6 6.113-6-6.114.87-.88 4.512 4.59V0h1.236v14.15l4.512-4.59.87.88z" fill="#ffffff" fill-rule="evenodd"/></svg>');
    background-repeat: no-repeat; }

.wc-message-from-me a.wc-link-download:active {
  color: #ffffff;
  opacity: 0.6; }
  .wc-message-from-me a.wc-link-download:active .wc-icon-download {
    background-image: url('data:image/svg+xml;utf8,<svg width="12" height="20" viewBox="0 0 12 20" xmlns="http://www.w3.org/2000/svg"><path d="M.435 20v-1.25h11.13V20H.435zM12 10.44l-6 6.113-6-6.114.87-.88 4.512 4.59V0h1.236v14.15l4.512-4.59.87.88z" fill="#ffffff" fill-rule="evenodd"/></svg>');
    background-repeat: no-repeat; }

/* Loading */
@keyframes wc-pulse-default {
  from {
    background: #041E42; }
  40%, to {
    background: white; } }

@keyframes wc-show-default {
  from, 40% {
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1; }
  41%, to {
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0; } }

.wc-loading {
  position: relative; }

.wc-loading .wc-loader-wrapper {
  visibility: visible; }

.black-out.wc-loader-wrapper {
  background-color: var(--color-black); }

.black-out .wc-loader {
  display: none; }

.wc-loader-wrapper {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: var(--color-white);
  opacity: .8;
  z-index: 3;
  overflow: hidden; }

.wc-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5rem;
  height: 5rem;
  margin-left: -2.5rem;
  margin-top: -2.5rem; }

.wc-loader-default .wc-loader-block {
  background-color: var(--color-brand);
  animation: wc-show-default .88s step-end infinite alternate, wc-pulse-default .88s linear infinite alternate; }

.wc-loader-block:nth-child(1) {
  transform: translate(0, 0);
  animation-delay: .065s; }

.wc-loader-block:nth-child(2) {
  transform: translate(2.66667rem, 0);
  animation-delay: .13s; }

.wc-loader-block:nth-child(3) {
  transform: translate(0, 2.66667rem);
  animation-delay: .195s; }

.wc-loader-block:nth-child(4) {
  transform: translate(2.66667rem, 2.66667rem);
  animation-delay: .26s; }

.wc-loader-block {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  opacity: 0;
  width: 2em;
  height: 2em; }


/*# sourceMappingURL=styles.b489e9fb.chunk.css.map*/