@-webkit-keyframes rotation-lr {
  from {
    transform: rotate(-90deg);
  }
  to {
    transform: rotate(0);
  }
}
@-moz-keyframes rotation-lr {
  from {
    transform: rotate(-90deg);
  }
  to {
    transform: rotate(0);
  }
}
@keyframes rotation-lr {
  from {
    transform: rotate(-90deg);
  }
  to {
    transform: rotate(0);
  }
}
@-webkit-keyframes rotation-rl {
  from {
    transform: rotate(90deg);
  }
  to {
    transform: rotate(0);
  }
}
@-moz-keyframes rotation-rl {
  from {
    transform: rotate(90deg);
  }
  to {
    transform: rotate(0);
  }
}
@keyframes rotation-rl {
  from {
    transform: rotate(90deg);
  }
  to {
    transform: rotate(0);
  }
}
@-webkit-keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-moz-keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes slide-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}
@-moz-keyframes slide-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}
@keyframes slide-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.bold {
  font-weight: bold;
}
.underline {
  text-decoration: underline;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.pointer {
  cursor: pointer;
}
.no-mouse-events {
  pointer-events: none;
}
.draggable {
  cursor: ns-resize;
}
.disabled-text {
  color: #dedede;
}
.disabled-form-field {
  color: #dedede !important;
  opacity: 0.3;
}
.text-ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
  display: inline-block;
}
.text-ellipsis--multiline-3 {
  overflow: hidden;
  position: relative;
  line-height: 16px;
  max-height: 48px;
  text-align: left;
  margin-right: -1em;
  padding-right: 1em;
}
.text-ellipsis--multiline-3:before {
  content: '...';
  position: absolute;
  right: 4px;
  bottom: 0;
}
.text-ellipsis--multiline-3:after {
  content: '';
  position: absolute;
  right: 4px;
  width: 1em;
  height: 1em;
  margin-top: 0.2em;
  background-color: inherit;
}
.text-maintain-line-breaks {
  white-space: pre-wrap;
  word-break: break-word;
}
.flex {
  display: flex;
}
.flex--column {
  flex-direction: column;
}
.flex--row {
  flex-direction: row;
}
.flex--centered {
  justify-content: center;
  align-items: center;
}
.flex--start {
  justify-content: flex-start;
  align-items: center;
}
.flex--end {
  justify-content: flex-end;
  align-items: center;
}
.flex--top-space-between {
  align-items: flex-start;
  justify-content: space-between;
}
.flex--wrap-space-between {
  justify-content: space-between;
  flex-wrap: wrap;
}
.align-center {
  align-items: center;
  justify-content: center;
}
.flex-justify-start {
  justify-content: flex-start;
}
.flex-justify-end {
  justify-content: flex-end;
}
.flex-justify-center {
  justify-content: center;
}
.flex-align-start {
  align-items: flex-start;
}
.flex-self-start {
  align-self: flex-start;
}
.flex-align-end {
  align-items: flex-end;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1;
}
.flex-2 {
  flex: 2;
}
.flex-3 {
  flex: 3;
}
.absolute,
.abs {
  position: absolute;
}
.relative,
.rel {
  position: relative;
}
.t-0 {
  top: 0;
}
.l-0 {
  left: 0;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.overflow-container {
  overflow: hidden;
  white-space: nowrap;
}
.hidden {
  display: none !important;
  visibility: hidden;
}
.m-0 {
  margin: 0;
}
.m-t-0 {
  margin-top: 0;
}
.m-b-0 {
  margin-bottom: 0;
}
.m-t-20 {
  margin-top: 20px;
}
.p-b-0 {
  padding-bottom: 0;
}
.p-0 {
  padding: 0;
}
.full-width {
  width: 100%;
}
.full-min-width {
  min-width: 100%;
}
.full-height {
  height: 100%;
}
.form-group--horizontal {
  display: flex;
  flex-direction: row;
}
.form-group--horizontal label {
  width: 80px;
}
.form-group--horizontal input {
  flex: 1;
}
.square {
  position: relative;
}
.square:before {
  display: block;
  content: '';
  width: 100%;
  padding-top: 100%;
}
.square > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.two-one-ratio {
  position: relative;
}
.two-one-ratio:before {
  display: block;
  content: '';
  width: 100%;
  padding-top: 50%;
}
.two-one-ratio > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.three-one-ratio {
  position: relative;
}
.three-one-ratio:before {
  display: block;
  content: '';
  width: 100%;
  padding-top: 33.33333%;
}
.three-one-ratio > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.aspect-ratio-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.background-contain {
  background-repeat: no-repeat;
  background-position: center center;
}
.background-cover {
  background-size: cover;
}
.circular {
  border-radius: 50%;
}
.right {
  float: right;
}
.ibutton {
  float: right;
  color: white;
  background: none;
  padding: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ibutton .play-icon {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}
.wcp-container {
  -webkit-animation-delay: 0;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: slide-in;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-delay: 0;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: slide-in;
  -moz-animation-fill-mode: forwards;
  animation-delay: 0;
  animation-duration: 0.5s;
  animation-name: slide-in;
  animation-fill-mode: forwards;
  position: fixed;
  right: 10px;
  margin-bottom: 16px;
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  z-index: 999999999;
}
.wcp-container > div {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
}
.wcp-container > div > iframe {
  border: none !important;
}
.wcp-container .wcp-webchat-container {
  display: flex;
  width: fit-content;
  height: fit-content;
  z-index: 9090;
}
.wcp-container .wcp-voicecall-container {
  width: fit-content;
  min-width: fit-content;
  height: fit-content;
  z-index: 9080;
  background-color: #e6e6e6;
}
.wcp-container--fullscreen-call .wcp-voicecall-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.wcp-container--mobile {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}
.wcp-container--mobile > div {
  border-radius: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.wcp-container--mobile .wcp-webchat-container {
  z-index: 9080 !important;
}
.wcp-container--mobile .wcp-webchat-container > * {
  width: 100% !important;
  height: 100% !important;
}
.wcp-container--mobile .wcp-voicecall-container {
  z-index: 9090 !important;
}
.wcp-container--mobile .wcp-voicecall-container > * {
  width: 100% !important;
  height: 100% !important;
}
.wcp-container--mobile:not(.wcp-container--fullscreen-call) .wcp-voicecall-container {
  height: 100px !important;
  top: 60px;
}
.wcp-container--fullscreen-call,
.wcp-container--fullscreen {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}
.wcp-container--fullscreen-call > div,
.wcp-container--fullscreen > div {
  border-radius: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.wcp-container--fullscreen-call .wcp-webchat-container,
.wcp-container--fullscreen .wcp-webchat-container {
  z-index: 9080 !important;
}
.wcp-container--fullscreen-call .wcp-webchat-container > *,
.wcp-container--fullscreen .wcp-webchat-container > * {
  width: 100% !important;
  height: 100% !important;
}
.wcp-container--fullscreen-call .wcp-voicecall-container,
.wcp-container--fullscreen .wcp-voicecall-container {
  z-index: 9090 !important;
}
.wcp-container--fullscreen-call .wcp-voicecall-container > *,
.wcp-container--fullscreen .wcp-voicecall-container > * {
  width: 100% !important;
  height: 100% !important;
}
.wcp-container--fullscreen-call.wcp-container--on-call,
.wcp-container--fullscreen.wcp-container--on-call {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
}
.wcp-container--fullscreen-call.wcp-container--on-call > div,
.wcp-container--fullscreen.wcp-container--on-call > div {
  border-radius: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.wcp-container--fullscreen-call.wcp-container--on-call .wcp-webchat-container,
.wcp-container--fullscreen.wcp-container--on-call .wcp-webchat-container {
  z-index: 9080 !important;
}
.wcp-container--fullscreen-call.wcp-container--on-call .wcp-webchat-container > *,
.wcp-container--fullscreen.wcp-container--on-call .wcp-webchat-container > * {
  width: 100% !important;
  height: 100% !important;
}
.wcp-container--fullscreen-call.wcp-container--on-call .wcp-voicecall-container,
.wcp-container--fullscreen.wcp-container--on-call .wcp-voicecall-container {
  z-index: 9090 !important;
}
.wcp-container--fullscreen-call.wcp-container--on-call .wcp-voicecall-container > *,
.wcp-container--fullscreen.wcp-container--on-call .wcp-voicecall-container > * {
  width: 100% !important;
  height: 100% !important;
}
.wcp-container--fullscreen-call.wcp-container--on-call:not(.wcp-container--fullscreen-call) .wcp-voicecall-container,
.wcp-container--fullscreen.wcp-container--on-call:not(.wcp-container--fullscreen-call) .wcp-voicecall-container {
  height: 100px !important;
  top: 60px;
}
iframe#wbe-sdw-bot {
  -webkit-animation-delay: 0;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: slide-in;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-delay: 0;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: slide-in;
  -moz-animation-fill-mode: forwards;
  animation-delay: 0;
  animation-duration: 0.5s;
  animation-name: slide-in;
  animation-fill-mode: forwards;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999999998;
  box-shadow: -3px 1px 3px -5px rgba(0, 0, 0, 0.2), -6px 8px 10px 0px rgba(0, 0, 0, 0.14),
    -5px 4px 7px -1px rgba(0, 0, 0, 0.12);
  border-radius: 50% 0 50% 50%;
  border: 0;
  background-color: transparent;
  visibility: hidden;
}
iframe#wbe-sdw-lightbox {
  background: transparent;
  border: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999999999;
  height: 100%;
  width: 100%;
}
