/**
 * Global Reset of all HTML Elements
 *
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
* {
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
html,
body {
  border: 0;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cit,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
a img {
  border: 0;
}
:focus {
  outline: 0;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
body {
  font-size: 10px;
  font-weight: 300;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 600;
  line-height: 1.1;
  color: #000;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
h1 .small,
h2 .small,
h3 .small,
h4 .small,
h5 .small,
h6 .small,
.h1 .small,
.h2 .small,
.h3 .small,
.h4 .small,
.h5 .small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #F8F7F2;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h1 .small,
.h1 .small,
h2 .small,
.h2 .small,
h3 .small,
.h3 .small {
  font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-bottom: 0.125em;
}
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small,
h4 .small,
.h4 .small,
h5 .small,
.h5 .small,
h6 .small,
.h6 .small {
  font-size: 75%;
}
h1,
.h1 {
  font-size: 3.12em;
}
h2,
.h2 {
  font-size: 2.58em;
}
h3,
.h3 {
  font-size: 2.4em;
}
h4,
.h4 {
  font-size: 1.5em;
}
h5,
.h5 {
  font-size: 1.2em;
}
h6,
.h6 {
  font-size: 1.02em;
}
.title:empty {
  display: none;
}
.two-line-truncate {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.three-line-truncate {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #F8F7F2;
}
.text-primary {
  color: #000000;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000;
}
.text-info {
  color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}
.text-warning {
  color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}
.text-danger {
  color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}
.unselectable {
  -webkit-user-select: none;
          user-select: none;
}
.interactable {
  cursor: pointer;
}
.text-input {
  display: inline-block;
  position: relative;
  width: 100%;
}
.input-holder {
  margin-bottom: 1em;
}
.input-holder:last-child {
  margin-bottom: 0;
}
a.button {
  text-decoration: none;
}
/**
 * Overriding current Bambuser UI component styling here to match design
 */
button > span {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  font-style: normal;
  text-transform: none;
}
input {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  font-family: inherit;
}
textarea {
  font-family: inherit;
}
.screen {
  width: 100%;
  height: 100%;
}
img {
  -webkit-user-drag: none;
}
.screen-reader-text {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px, 0px 0px);
          clip-path: polygon(0px 0px, 0px 0px, 0px 0px, 0px 0px);
}
.non-component-button {
  font-size: 10px;
  border: none;
  background: none;
  padding: 0;
}
svg {
  pointer-events: none;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.skeleton {
  border-radius: 4px;
  height: 20px;
  margin: 10px 0;
  width: 250px;
  background: linear-gradient(to right, #eff1f3 4%, #e2e2e2 25%, #eff1f3 36%);
  background-size: 1000px 100%;
  animation: load 2s linear infinite;
}
.skeleton.short {
  width: 130px;
}
.skeleton.box {
  height: 300px;
  width: 100%;
}
:focus-visible {
  outline-offset: -1px;
  outline: 2px solid #006CFF;
}
@keyframes load {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
html,
body,
#client-window,
.client-window {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
body.inside-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}
body.rtl {
  direction: rtl;
}
body {
  background-color: #ffffff;
  color: var(--popup-text-color, #000000);
}
body.inside-popup {
  background-color: var(--popup-bg-color, transparent);
}
body.inside-initiation {
  background-color: transparent;
}
.client-window {
  background-color: transparent;
}
@media screen and (orientation: landscape) {
  .client-window.client-mobile .system-dialogs,
  .client-window.client-tablet .system-dialogs {
    position: absolute;
    height: 100vw;
    width: 100vh;
    transform: rotate(-90deg);
    max-height: 100vw;
    transform-origin: top left;
    top: 100%;
  }
  .client-window.client-mobile .system-dialogs .chat,
  .client-window.client-tablet .system-dialogs .chat {
    height: 100vw;
  }
}
.client-window.client-mobile .system-dialogs:empty,
.client-window.client-tablet .system-dialogs:empty {
  display: none;
}
.zoomed-out #client-window {
  overflow: scroll;
}
.zoomed-out #client-window > .client-window {
  height: calc(100vh + 1px);
  position: absolute;
}
.client-screen {
  position: relative;
  display: flex;
  width: 100%;
  background: #222222;
  height: 100vh;
  max-height: 100vh;
  flex-direction: row;
  /* Ensure "overlay" is only showing while connecting/disconnecting */
}
.client-screen.minimized {
  height: unset;
}
.client-window:not(.floating-minimized) .client-screen.client-mobile .chat {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
}
.client-window:not(.floating-minimized) .client-screen.client-mobile .chat input {
  font-size: 16px;
}
.client-window:not(.floating-minimized) .client-screen.client-mobile.is-android.landscape-primary {
  height: 100vw;
  width: 100vh;
  transform: rotate(-90deg);
  max-height: 100vw;
  transform-origin: top left;
  top: 100%;
}
.client-window:not(.floating-minimized) .client-screen.client-mobile.is-android.landscape-primary .chat {
  height: 100vw;
}
.client-window:not(.floating-minimized) .client-screen.client-mobile.is-android.portrait-primary .chat {
  bottom: 0;
  height: auto;
}
@media screen and (orientation: landscape) {
  .client-window:not(.floating-minimized) .client-screen.client-mobile:not(.is-android) {
    height: 100vw;
    width: 100vh;
    transform: rotate(-90deg);
    max-height: 100vw;
    transform-origin: top left;
    top: 100%;
  }
  .client-window:not(.floating-minimized) .client-screen.client-mobile:not(.is-android) .chat {
    height: 100vw;
  }
}
@media screen and (orientation: portrait) {
  .client-window:not(.floating-minimized) .client-screen.client-mobile:not(.is-android) .chat {
    bottom: 0;
    height: auto;
  }
}
.minimal .client-screen {
  padding: 1em;
  display: flex;
  flex-direction: column;
}
.call-status-starting .client-screen .video-container,
.call-status-waiting .client-screen .video-container,
.call-status-connecting .client-screen .video-container,
.call-status-starting .client-screen .chat,
.call-status-waiting .client-screen .chat,
.call-status-connecting .client-screen .chat,
.call-status-starting .client-screen .active-panels,
.call-status-waiting .client-screen .active-panels,
.call-status-connecting .client-screen .active-panels {
  opacity: 0;
}
.client-window.floating-minimized .client-screen > *:not(.minimized-video-container, .minimized-cobrowsing-video-container) {
  display: none;
}
.client-window.floating-minimized .client-screen:focus-within .floating-control-button {
  opacity: 1;
  pointer-events: auto;
}
.client-window.floating-minimized .client-screen .floating-control-button {
  display: flex;
  z-index: 5;
}
.unsupported-client-browser-screen {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  background: var(--popup-bg-color, #ffffff);
}
.unsupported-client-browser-screen .content {
  margin-top: 1.5em;
  font-size: 1.4em;
}
.unsupported-client-browser-screen .holder {
  padding-top: 5.5em;
  padding-left: 3em;
  padding-right: 3em;
  text-align: center;
  font-size: 100%;
}
.unsupported-client-browser-screen .no-agent-logo-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}
.unsupported-client-browser-screen .no-agent-logo-wrapper svg {
  width: 60px;
  height: 60px;
  margin-left: -0.5em;
}
.unsupported-client-browser-screen .no-agent-logo-wrapper svg g {
  fill: var(--popup-text-color, #2a2a2a);
}
.invalid-client-screen {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  background: var(--popup-bg-color, #ffffff);
}
.invalid-client-screen .content {
  margin-top: 1.5em;
}
.invalid-client-screen .holder {
  padding-top: 5.5em;
  padding-left: 3em;
  padding-right: 3em;
  text-align: center;
  font-size: 100%;
}
.invalid-client-screen .no-agent-logo-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  border: 2px solid var(--popup-text-color, #2a2a2a);
  border-radius: 100%;
}
.invalid-client-screen .no-agent-logo-wrapper svg {
  width: 30px;
  height: 30px;
}
.invalid-client-screen .no-agent-logo-wrapper svg g {
  fill: var(--popup-text-color, #2a2a2a);
}
.minimized-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}
.minimized-video-container:not(.inactive-icons):not(.audio-visual-controls):not(.audio-visual-controls-mobile):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  transform: initial;
}
.minimized-video-container .video {
  width: 100%;
  height: 100%;
}
.minimized-video-container .video .mic-inactive-icon-holder {
  right: 10px;
  top: 10px;
  left: unset;
}
.client-mobile .minimized-video-container .video .mic-inactive-icon-holder.agent-audio-disabled-default {
  top: 58px;
  left: 10px;
  right: unset;
}
.minimized-video-container .video .video-holder video {
  object-fit: cover;
}
.minimized-cobrowsing-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}
.minimized-cobrowsing-video-container .video {
  background: transparent;
  position: static;
  width: 100%;
  height: 100%;
}
.minimized-cobrowsing-video-container .video .audio-only-indicator {
  top: 0;
}
.minimized-cobrowsing-video-container .video .mic-inactive-icon-holder.checkout-mode {
  right: 10px !important;
  top: 10px !important;
  left: unset !important;
}
.client-mobile .minimized-cobrowsing-video-container .video .mic-inactive-icon-holder.agent-audio-disabled-default {
  top: 58px;
  left: 10px;
  right: unset;
}
.minimized-cobrowsing-video-container .video .video-holder {
  background: transparent;
  position: static;
  width: 100%;
  height: 100%;
}
.minimized-cobrowsing-video-container .video .video-holder video {
  background: transparent;
  object-fit: cover;
  border-radius: 0;
  width: 100%;
  height: 100%;
}
.minimized-cobrowsing-video-container .video-wrapper {
  position: relative;
}
.minimized-cobrowsing-video-container .video-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.loading-screen {
  width: 100%;
  height: 100%;
}
.loading-screen .loading-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.loading-screen .loading-holder .text-holder {
  max-width: 50%;
  height: 1.8em;
  font-size: 1.2em;
  overflow: visible;
  text-transform: uppercase;
  text-align: center;
  margin-top: 1em;
}
.client-window .loading-screen .loading-holder .text-holder {
  color: #F8F7F2;
  font-weight: 300;
}
.chat {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.client-mobile.client-window .chat,
.agent-sdk.main-screen .chat {
  position: relative;
}
.chat .chat-container {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
}
.chat .inner-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--chat-bg-color, #fff);
}
.client-mobile.client-window .chat .inner-wrapper.comparing {
  max-height: calc(100vh - 60px - 45px - 57px - 69px - 60px);
}
.agent-sdk.main-screen .chat .inner-wrapper.comparing {
  max-height: calc(100vh - 60px - 45px - 57px - 69px - 60px - 72px);
}
.client-mobile.client-window .chat .inner-wrapper {
  max-height: calc(100vh - 60px - 45px - 57px - 69px);
}
.agent-sdk.main-screen .chat .inner-wrapper {
  max-height: calc(100vh - 60px - 45px - 57px - 69px - 72px);
}
.chat .message-meta {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
  margin-bottom: 4px;
}
.chat .message {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  word-break: break-word;
  color: var(--message-remote-color, #ffffff);
  border-radius: 4px;
  border: 1px solid #E0E0E0;
}
.chat .message svg g {
  fill: var(--message-remote-color, #ffffff);
}
.chat .message.me {
  background-color: #121212;
  color: #ffffff;
}
.chat .message.me svg g {
  fill: var(--message-local-color, #000000);
}
.chat .attachement-holder {
  display: inline-block;
}
.client-window.minimal .chat {
  width: 100%;
  background-color: transparent;
  flex-grow: 1;
  position: relative;
}
.client-window.minimal .chat .inner-wrapper {
  width: 100%;
  background-color: transparent;
}
.client-window.minimal .chat .close-symbol {
  display: none;
}
.chat .message-list {
  overflow: auto;
  flex-grow: 1;
  padding: 16px;
  background-color: #ffffff;
}
.chat .message-list div:first-child {
  margin-top: 0;
}
.chat .message-list:empty {
  padding: 0px;
}
.client-window.minimal .chat .message-list {
  height: 80%;
}
.chat .message-list img.avatar {
  width: 20px;
  height: 20px;
  object-fit: cover;
  align-self: flex-start;
  border-radius: 50%;
  margin-right: 4px;
}
.chat .message-list .message-wrapper {
  direction: ltr;
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  margin-right: 32px;
}
.chat .message-list .message-wrapper.without-meta-data {
  margin-top: 4px;
}
.chat .message-list .message-wrapper.same-sender:not(.without-meta-data) {
  margin-top: 12px;
}
.chat .message-list .message-wrapper .message-meta {
  display: inline-flex;
  text-transform: capitalize;
  flex-direction: row;
  align-items: center;
}
.chat .message-list .message-wrapper.me {
  margin-right: 0;
  margin-left: 32px;
}
.chat .message-list .message-wrapper.me .message-meta {
  justify-content: flex-end;
  padding-left: 0;
}
.chat .message-list .message {
  display: flex;
  padding: 8px;
  text-align: left;
  flex-direction: column;
  width: -webkit-fit-content;
  width: fit-content;
  max-width: 100%;
}
.chat .message-list .message button {
  font-size: 13px;
  color: inherit;
}
.chat .message-list .message button svg {
  max-width: 1em;
  max-height: 1em;
  margin-right: 0.5em;
}
.chat .message-list .message.me {
  margin: 0 0 0 auto;
}
.chat .mobile-chat-input {
  margin: 1px 16px 16px 16px;
}
.chat .input-section {
  display: flex;
  align-items: flex-end;
  padding: 16px;
  margin: 0 16px 16px 16px;
  border: 1px solid #E0E0E0;
  height: 100px;
  border-radius: 4px;
}
.chat .input-section .messageInput {
  resize: none;
  padding: 0;
  font-family: inherit;
  height: 100%;
  font-size: 12px;
  line-height: 16px;
  margin: 0 16px 0 0;
  flex: 1;
  border: 0;
}
.chat .input-section .messageInput.is-iphone {
  font-size: 16px;
}
.chat .input-section button {
  width: auto;
  padding: 8px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
}
.chat .input-section button span {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
.chat.hidden {
  display: none;
}
.client-window.minimal .chat.hidden {
  display: block;
}
@keyframes blink {
  50% {
    opacity: 1;
  }
}
@keyframes bulge {
  50% {
    transform: scale(1.05);
  }
}
.typing-indicator {
  will-change: transform;
  animation: 2s bulge infinite ease-out;
}
.typing-indicator span {
  height: 9px;
  width: 9px;
  float: left;
  margin: 3px 1px;
  background-color: #9e9ea1;
  display: block;
  border-radius: 50%;
  opacity: 0.4;
}
.typing-indicator span:nth-of-type(1) {
  animation: 1s blink infinite 0.3333s;
}
.typing-indicator span:nth-of-type(2) {
  animation: 1s blink infinite 0.6666s;
}
.typing-indicator span:nth-of-type(3) {
  animation: 1s blink infinite 0.9999s;
}
.video {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.video .video-holder {
  border-radius: 8px;
}
.video .video-holder canvas,
.video .video-holder video {
  border-radius: 8px;
}
.video .inactive-icons {
  border-radius: 8px;
}
.video .audio-visual-controls-mobile {
  border-radius: 8px;
}
.setup-screen .video {
  position: relative;
}
.video canvas {
  border-radius: 8px;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video .video-holder {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video .video-holder .video-101 {
  display: none;
}
.video .video-0-new {
  display: none;
}
.video.virtual-background .video-0 {
  display: none;
}
.video.virtual-background .video-101 {
  display: block;
}
.video.flipped {
  width: 100%;
  height: 100%;
}
.video video {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  background: #444;
}
.video.contain video,
.video.contain canvas {
  object-fit: contain;
}
.video.cover video,
.video.cover canvas {
  object-fit: cover;
}
.video.blur-large-video {
  overflow: hidden;
  background-color: #222222;
}
.video.blur-large-video .video-holder {
  filter: blur(50px);
}
.video.blur-small-video {
  overflow: hidden;
  background-color: #222222;
}
.video.blur-small-video .video-holder {
  filter: blur(16px);
}
.video.blur-maximum-video {
  overflow: hidden;
  background-color: #222222;
}
.video.blur-maximum-video .video-holder {
  filter: blur(50px);
}
.video.flipped .agent-image {
  transform: scaleX(-1);
}
.video.android-fix-add-border-radius video {
  border-radius: 1px;
}
.video.flipped canvas,
.video.flipped video {
  transform: scaleX(-1);
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=-1, M12=0, M21=0, M22=1, SizingMethod='auto expand')";
}
.animated-video .animated-screen-share video {
  object-fit: contain;
}
.animated-video .static-animated-video {
  cursor: default;
  height: 100%;
  width: 100%;
}
.animated-video .static-animated-video.static-with-border-radius {
  border-radius: 8px;
}
.animated-video .static-animated-video.static-with-border-radius .video-holder {
  border-radius: 8px;
}
.animated-video .static-animated-video.static-with-border-radius .video-holder canvas,
.animated-video .static-animated-video.static-with-border-radius .video-holder video {
  border-radius: 8px;
}
.animated-video .static-animated-video.static-with-border-radius .inactive-icons {
  border-radius: 8px;
}
.animated-video .static-animated-video.static-with-border-radius .audio-visual-controls-mobile {
  border-radius: 8px;
}
.animated-video .static-animated-video.static-with-border-radius:not(.inactive-icons):not(.audio-visual-controls):not(.audio-visual-controls-mobile):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  transform: initial;
}
.client-mobile.client-window .animated-video .static-animated-video,
.agent-sdk.main-screen .animated-video .static-animated-video {
  border-radius: 0;
}
.client-mobile.client-window .animated-video .static-animated-video .video-holder,
.agent-sdk.main-screen .animated-video .static-animated-video .video-holder {
  border-radius: 0;
}
.client-mobile.client-window .animated-video .static-animated-video .video-holder canvas,
.agent-sdk.main-screen .animated-video .static-animated-video .video-holder canvas,
.client-mobile.client-window .animated-video .static-animated-video .video-holder video,
.agent-sdk.main-screen .animated-video .static-animated-video .video-holder video {
  border-radius: 0;
}
.client-mobile.client-window .animated-video .static-animated-video .inactive-icons,
.agent-sdk.main-screen .animated-video .static-animated-video .inactive-icons {
  border-radius: 0;
}
.client-mobile.client-window .animated-video .static-animated-video .audio-visual-controls-mobile,
.agent-sdk.main-screen .animated-video .static-animated-video .audio-visual-controls-mobile {
  border-radius: 0;
}
.client-mobile.client-window .animated-video .static-animated-video:not(.inactive-icons):not(.audio-visual-controls):not(.audio-visual-controls-mobile):after,
.agent-sdk.main-screen .animated-video .static-animated-video:not(.inactive-icons):not(.audio-visual-controls):not(.audio-visual-controls-mobile):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
  transform: initial;
}
.animated-video .floating-animated-video {
  cursor: default;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.animated-video .floating-animated-video.stack-floating-videos {
  flex-direction: column;
}
.animated-video .floating-animated-video .remote-floating {
  border-radius: 8px;
}
.animated-video .floating-animated-video .remote-floating .video-holder {
  border-radius: 8px;
}
.animated-video .floating-animated-video .remote-floating .video-holder canvas,
.animated-video .floating-animated-video .remote-floating .video-holder video {
  border-radius: 8px;
}
.animated-video .floating-animated-video .remote-floating .inactive-icons {
  border-radius: 8px;
}
.animated-video .floating-animated-video .remote-floating .audio-visual-controls-mobile {
  border-radius: 8px;
}
.animated-video .floating-animated-video .remote-floating:not(.inactive-icons):not(.audio-visual-controls):not(.audio-visual-controls-mobile):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  transform: initial;
}
.animated-video .floating-animated-video .local-video {
  border-radius: 8px;
}
.animated-video .floating-animated-video .local-video .video-holder {
  border-radius: 8px;
}
.animated-video .floating-animated-video .local-video .video-holder canvas,
.animated-video .floating-animated-video .local-video .video-holder video {
  border-radius: 8px;
}
.animated-video .floating-animated-video .local-video .inactive-icons {
  border-radius: 8px;
}
.animated-video .floating-animated-video .local-video .audio-visual-controls-mobile {
  border-radius: 8px;
}
.animated-video .floating-animated-video .local-video:not(.inactive-icons):not(.audio-visual-controls):not(.audio-visual-controls-mobile):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  transform: initial;
}
.client-mobile.client-window .animated-video .floating-animated-video.split-screen .local-video,
.agent-sdk.main-screen .animated-video .floating-animated-video.split-screen .local-video {
  border-radius: 0;
}
.client-mobile.client-window .animated-video .floating-animated-video.split-screen .local-video .video-holder,
.agent-sdk.main-screen .animated-video .floating-animated-video.split-screen .local-video .video-holder {
  border-radius: 0;
}
.client-mobile.client-window .animated-video .floating-animated-video.split-screen .local-video .video-holder canvas,
.agent-sdk.main-screen .animated-video .floating-animated-video.split-screen .local-video .video-holder canvas,
.client-mobile.client-window .animated-video .floating-animated-video.split-screen .local-video .video-holder video,
.agent-sdk.main-screen .animated-video .floating-animated-video.split-screen .local-video .video-holder video {
  border-radius: 0;
}
.client-mobile.client-window .animated-video .floating-animated-video.split-screen .local-video .inactive-icons,
.agent-sdk.main-screen .animated-video .floating-animated-video.split-screen .local-video .inactive-icons {
  border-radius: 0;
}
.client-mobile.client-window .animated-video .floating-animated-video.split-screen .local-video .audio-visual-controls-mobile,
.agent-sdk.main-screen .animated-video .floating-animated-video.split-screen .local-video .audio-visual-controls-mobile {
  border-radius: 0;
}
.client-mobile.client-window .animated-video .floating-animated-video.split-screen .local-video:not(.inactive-icons):not(.audio-visual-controls):not(.audio-visual-controls-mobile):after,
.agent-sdk.main-screen .animated-video .floating-animated-video.split-screen .local-video:not(.inactive-icons):not(.audio-visual-controls):not(.audio-visual-controls-mobile):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
  transform: initial;
}
.animated-video .floating-animated-video.double-video .remote-floating {
  border-radius: 8px 0px 0px 8px;
}
.animated-video .floating-animated-video.double-video .remote-floating .video-holder {
  border-radius: 8px 0px 0px 8px;
}
.animated-video .floating-animated-video.double-video .remote-floating .video-holder canvas,
.animated-video .floating-animated-video.double-video .remote-floating .video-holder video {
  border-radius: 8px 0px 0px 8px;
}
.animated-video .floating-animated-video.double-video .remote-floating .inactive-icons {
  border-radius: 8px 0px 0px 8px;
}
.animated-video .floating-animated-video.double-video .remote-floating .audio-visual-controls-mobile {
  border-radius: 8px 0px 0px 8px;
}
.animated-video .floating-animated-video.double-video .remote-floating:not(.inactive-icons):not(.audio-visual-controls):not(.audio-visual-controls-mobile):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px 0px 0px 8px;
  transform: initial;
}
.animated-video .floating-animated-video.double-video .local-video {
  border-radius: 0px 8px 8px 0px;
}
.animated-video .floating-animated-video.double-video .local-video .video-holder {
  border-radius: 0px 8px 8px 0px;
}
.animated-video .floating-animated-video.double-video .local-video .video-holder canvas,
.animated-video .floating-animated-video.double-video .local-video .video-holder video {
  border-radius: 0px 8px 8px 0px;
}
.animated-video .floating-animated-video.double-video .local-video .inactive-icons {
  border-radius: 0px 8px 8px 0px;
}
.animated-video .floating-animated-video.double-video .local-video .audio-visual-controls-mobile {
  border-radius: 0px 8px 8px 0px;
}
.animated-video .floating-animated-video.double-video .local-video:not(.inactive-icons):not(.audio-visual-controls):not(.audio-visual-controls-mobile):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0px 8px 8px 0px;
  transform: initial;
}
.animated-video .floating-animated-video.double-video .local-video.flipped canvas,
.animated-video .floating-animated-video.double-video .local-video.flipped video {
  border-radius: 8px 0px 0px 8px;
}
.animated-video .floating-animated-video.double-video.stack-floating-videos .remote-floating {
  border-radius: 8px 8px 0px 0px;
}
.animated-video .floating-animated-video.double-video.stack-floating-videos .remote-floating .video-holder {
  border-radius: 8px 8px 0px 0px;
}
.animated-video .floating-animated-video.double-video.stack-floating-videos .remote-floating .video-holder canvas,
.animated-video .floating-animated-video.double-video.stack-floating-videos .remote-floating .video-holder video {
  border-radius: 8px 8px 0px 0px;
}
.animated-video .floating-animated-video.double-video.stack-floating-videos .remote-floating .inactive-icons {
  border-radius: 8px 8px 0px 0px;
}
.animated-video .floating-animated-video.double-video.stack-floating-videos .remote-floating .audio-visual-controls-mobile {
  border-radius: 8px 8px 0px 0px;
}
.animated-video .floating-animated-video.double-video.stack-floating-videos .remote-floating:not(.inactive-icons):not(.audio-visual-controls):not(.audio-visual-controls-mobile):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px 8px 0px 0px;
  transform: initial;
}
.animated-video .floating-animated-video.double-video.stack-floating-videos .local-video {
  border-radius: 0px 0px 8px 8px;
}
.animated-video .floating-animated-video.double-video.stack-floating-videos .local-video .video-holder {
  border-radius: 0px 0px 8px 8px;
}
.animated-video .floating-animated-video.double-video.stack-floating-videos .local-video .video-holder canvas,
.animated-video .floating-animated-video.double-video.stack-floating-videos .local-video .video-holder video {
  border-radius: 0px 0px 8px 8px;
}
.animated-video .floating-animated-video.double-video.stack-floating-videos .local-video .inactive-icons {
  border-radius: 0px 0px 8px 8px;
}
.animated-video .floating-animated-video.double-video.stack-floating-videos .local-video .audio-visual-controls-mobile {
  border-radius: 0px 0px 8px 8px;
}
.animated-video .floating-animated-video.double-video.stack-floating-videos .local-video:not(.inactive-icons):not(.audio-visual-controls):not(.audio-visual-controls-mobile):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0px 0px 8px 8px;
  transform: initial;
}
.current-products-container .panel-card:hover .preview-icon {
  display: flex;
}
.current-products-container .panel-card:hover .add-to-cart-button {
  display: flex;
}
.current-products-container .panel-card:nth-child(3n - 1) {
  border-right: unset !important;
  border-left: unset !important;
}
.current-products-container.hidden,
.client-window.floating-minimized .current-products-container {
  visibility: hidden;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.main-window .basket-panel .order-button--wrapper,
.client-window .basket-panel .order-button--wrapper {
  border-top: 0px solid #EDEDED;
}
.main-window .basket-panel .order-button--wrapper:not(.empty),
.client-window .basket-panel .order-button--wrapper:not(.empty) {
  border-top: 1px solid #EDEDED;
}
.basket-panel {
  font-size: 12px;
  outline: 100px solid transparent;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  color: #000;
}
.basket-panel:not(.basket-notification-dialog) {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.client-mobile.client-window .basket-panel,
.agent-sdk.main-screen .basket-panel {
  width: 100%;
  position: relative;
}
.client-mobile.client-window .basket-panel.dialog,
.agent-sdk.main-screen .basket-panel.dialog {
  border-radius: 0 0 8px 8px !important;
}
.basket-panel .container {
  min-width: 100%;
}
.basket-panel .basket-alerts {
  position: absolute;
  z-index: 1;
  bottom: 44px;
  left: 0;
  right: 0;
  margin: 0 12px;
}
.basket-panel .basket-alerts > div:not(:last-child) {
  margin-bottom: 4px;
}
.client-window .basket-panel .basket-alerts {
  bottom: 98px;
}
.basket-panel .content {
  padding: 0;
  height: 100%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  position: static;
  animation: fadeIn 0.5s 1;
  max-height: 100%;
}
.basket-panel .content button {
  font-size: 1em;
}
.basket-panel input[type=number]::-webkit-inner-spin-button,
.basket-panel input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.basket-panel input[type="number"] {
  -moz-appearance: textfield;
}
.basket-panel .basket-list {
  min-height: 100px;
  position: relative;
  flex-grow: 1;
  overflow-y: auto;
  width: 100%;
  min-width: 23em;
}
.client-mobile.client-window .basket-panel .basket-list.comparing {
  max-height: calc(100vh - 60px - 45px - 57px - 107px - 60px);
}
.client-mobile.client-window .basket-panel .basket-list {
  max-height: calc(100vh - 60px - 45px - 57px - 107px);
}
.basket-panel .basket-list .center-wrapper {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.basket-panel .basket-list > .group {
  padding: 16px;
}
.basket-panel .basket-list > .group > div {
  padding: 16px 0;
  width: 100%;
  border-top: 0.5px solid #E0E0E0;
}
.basket-panel .basket-list > .group > div:first-of-type {
  padding-top: 0;
  border-top: none;
  width: 100%;
}
.basket-panel .basket-list > .group > div:last-of-type {
  padding-bottom: 0;
}
.basket-panel .heading {
  border-radius: 6px 6px 0 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(196, 196, 196, 0.5);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.basket-panel .heading h2 {
  font-size: 14px;
  line-height: 18px;
  color: #2A2A2A;
}
.basket-panel .heading .close-basket {
  width: 26px;
  height: 26px;
  border-radius: 13px;
}
.basket-panel .heading .close-basket:hover {
  background: rgba(0, 0, 0, 0.12);
}
.basket-panel .basket-row {
  position: relative;
  width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 6em;
  justify-content: space-between;
}
.basket-panel .basket-row .loader-holder {
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7);
}
.basket-panel .basket-row .left-column {
  flex-grow: 1;
  display: inline-flex;
  gap: 12px;
}
.basket-panel .basket-row .left-column div:empty {
  display: none;
}
.basket-panel .basket-row .left-column .product-info {
  display: flex;
  min-width: 0;
  color: #171717;
  flex-grow: 1;
  text-align: left;
}
.basket-panel .basket-row .left-column .product-info .truncate-multi-line {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
.basket-panel .basket-row .left-column .product-info .truncate-single-line {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.basket-panel .basket-row .left-column .product-info > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}
.basket-panel .basket-row .left-column .product-info > div > div {
  min-height: initial;
  line-height: 16px;
  margin-bottom: 2px;
}
.basket-panel .basket-row .left-column .product-info > div > div.product-header {
  line-height: 20px;
  font-weight: 500;
  font-size: 14px;
  padding-left: 0;
  padding-right: 0;
  align-items: center;
  vertical-align: baseline;
}
.basket-panel .basket-row .left-column .product-info > div > div.product-brand,
.basket-panel .basket-row .left-column .product-info > div > div.item-attribute {
  font-weight: 400;
}
.basket-panel .basket-row .left-column .product-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 10px;
  justify-content: space-between;
}
.basket-panel .basket-row .left-column .total {
  white-space: nowrap;
  font-weight: 500;
  line-height: 16px;
  vertical-align: middle;
  overflow: visible;
}
.basket-panel .basket-row .left-column .total .sale {
  color: #E81740;
}
.basket-panel .basket-row .left-column .total .sale:not(:empty) {
  margin-right: 4px;
}
.basket-panel .basket-row .left-column .total .original {
  text-decoration: line-through;
}
.basket-panel .basket-row .left-column .remove-from-cart {
  padding: 6px 8px;
  color: #171717;
  line-height: 16px;
  font-weight: 500;
}
.basket-panel .basket-row .left-column .remove-from-cart:not([aria-disabled="true"]) {
  box-shadow: inset 0px 0px 0px 1px #E0E0E0;
  border-radius: 4px;
}
.basket-panel .basket-row .left-column .remove-from-cart:not([aria-disabled="true"]):hover {
  box-shadow: inset 0px 0px 0px 1px #444444;
}
.basket-panel .basket-row .left-column .remove-from-cart[aria-disabled="true"] {
  cursor: not-allowed;
  pointer-events: auto;
  opacity: 0.4;
}
.basket-panel .basket-row div.image-holder {
  flex-shrink: 0;
  overflow: hidden;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0.5px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.basket-panel .basket-row div.image-holder img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.basket-panel .basket-row .left-column {
  width: 100%;
}
.basket-panel .basket-row .nr-of-items {
  padding: 0;
  height: initial;
}
.basket-panel .basket-row .nr-of-items input,
.basket-panel .basket-row .nr-of-items span {
  width: 3em;
}
.basket-panel .basket-row .nr-of-items input {
  border: 0.1em solid rgba(196, 196, 196, 0.5);
  font-size: 1em;
  text-align: center;
  width: 2.5em;
  height: 3em;
}
.basket-panel .basket-row svg {
  min-width: 1em;
}
.basket-panel .group-info {
  width: 100%;
}
.basket-panel .group-info .result {
  font-weight: bold;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.basket-panel .group-info .result div {
  line-height: 20px;
  font-size: 16px;
  font-weight: 500;
}
.basket-panel .order-button--wrapper {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
}
.basket-panel .order-button--wrapper button {
  margin-top: 16px;
}
.basket-panel .order-button--wrapper button:disabled {
  border-color: #A6A6A6;
  background: #A6A6A6;
  color: #ffffff;
}
.basket-panel .checkout-notice {
  margin: 0 16px 16px 16px;
  background-color: #7D58EE;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  color: #ffffff;
  text-align: left;
  font-weight: 500;
  line-height: 15px;
  padding: 11px 16px;
}
.basket-amount {
  display: flex;
  align-items: center;
  position: relative;
}
.basket-amount input {
  width: 34px;
  text-align: center;
  border: none;
  margin: 0 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.basket-amount input:disabled {
  background-color: transparent;
}
.basket-amount .quantity-button {
  border-radius: 100%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E0E0E0;
}
.basket-amount .quantity-button:not([aria-disabled="true"]):hover {
  border-color: #444444;
}
.basket-amount .quantity-button[aria-disabled="true"] {
  cursor: not-allowed;
  pointer-events: auto;
  opacity: 0.4;
}
.basket-amount .basket-warning {
  position: absolute;
  right: -50px;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 0.3px;
  color: #f30037;
}
.system-dialog-container {
  z-index: 99999;
  /*.agent-window & {
        z-index: 1;
    }*/
}
.system-dialog-container:not(.positioned) {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.system-dialog-container.dimmer {
  position: absolute;
}
.system-dialog-container:not(.dimmer) .dialog-holder {
  box-shadow: var(---panel-box-shadow, 0px 0px 24px rgba(0, 0, 0, 0.06), 0px 0px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04));
  border-radius: 8px;
}
.system-dialog-container.hidden {
  display: none;
}
.call-status-connecting .system-dialog-container {
  z-index: 9999999999;
}
.system-dialog-container .backlight {
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.25;
  position: fixed;
  left: 0;
  top: 0;
}
.agent-window .system-dialog-container .backlight {
  position: absolute;
}
.inside-popup .system-dialog-container .backlight {
  background-color: black;
  opacity: 0.65;
  position: absolute;
}
.system-dialog-container .dialog-holder {
  position: absolute;
  display: flex;
  z-index: 3;
}
.system-dialog-container .dialog-holder:not(.positioned) {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.dialog .client-mobile .system-dialog-container .dialog-holder:not(.positioned) {
  min-width: 90%;
  max-width: 90%;
}
.current-screen-loading .system-dialog-container .dialog-holder {
  background-color: #ffffff;
}
.system-dialog-container .dialog-holder .dialog-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.system-dialog-container .dialog-holder .dialog-wrapper.agent.dialog-type-paused-call-indicator .dialog {
  margin: 2.5%;
}
.system-dialog-container .dialog-holder .dialog-wrapper.agent .dialog {
  text-align: center;
}
.system-dialog-container .dialog-holder .dialog-wrapper .dialog {
  position: relative;
  max-height: 100vh;
  overflow-y: auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: var(--dialog-box-shadow, 0px 0px 24px rgba(0, 0, 0, 0.06), 0px 0px 6px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04));
  color: #000000;
  display: inline-block;
  padding: 24px;
  min-width: 370px;
}
.system-dialog-container .dialog-holder .dialog-wrapper .dialog .close-icon-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 25px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
}
.system-dialog-container .dialog-holder .dialog-wrapper .dialog .close-icon-wrapper .close-button {
  margin-top: 0;
}
.rtl .system-dialog-container .dialog-holder .dialog-wrapper .dialog .close-icon-wrapper {
  left: 20px;
  right: auto;
}
.system-dialog-container .dialog-holder .dialog-wrapper .dialog .header-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.system-dialog-container .dialog-holder .dialog-wrapper .dialog .title {
  margin-top: 0;
  white-space: pre-line;
  margin-bottom: 16px;
}
.system-dialog-container .dialog-holder .dialog-wrapper .dialog.basket-notification-dialog {
  max-width: 370px;
}
.current-screen-loading .system-dialog-container .dialog-holder .dialog-wrapper .dialog {
  border: none;
  min-width: unset;
}
.inside-popup .minimal .system-dialog-container .dialog-holder .dialog-wrapper .dialog {
  max-width: 90%;
  min-width: 90%;
}
.inside-popup .minimal.current-screen-main .system-dialog-container .dialog-holder .dialog-wrapper .dialog {
  padding: 1.5em;
}
.system-dialog-container .message {
  max-height: min(50vh, 250px);
  overflow-y: auto;
}
.message-dialog {
  max-width: 432px;
  overflow-wrap: anywhere;
}
.message-dialog .message-dialog-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.message-dialog .title {
  padding: 0px 24px;
}
.message-dialog .message {
  white-space: pre-line;
}
div.floating-minimized .system-dialog-container .dialog-holder .dialog-wrapper .dialog {
  min-width: 100%;
  max-width: -webkit-max-content;
  max-width: max-content;
  height: 100%;
  overflow-y: auto;
}
.confirm-dialog {
  max-width: 432px;
  text-align: center;
}
.confirm-dialog .title {
  padding: 0px 24px;
}
.confirm-dialog .message {
  white-space: pre-line;
  margin-bottom: 8px;
}
.confirm-dialog .confirm-wrapper {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.confirm-dialog .dialog-client-available-title svg {
  transform: rotate(-120deg);
  width: 27px;
  margin-right: 3px;
  margin-bottom: 3px;
}
.confirm-dialog .dialog-client-available-title svg path {
  fill: #000000;
}
.rotateDialog {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.5em;
  flex-direction: column;
}
.device-settings-dialog {
  background: #ffffff;
  border-radius: 8px;
  color: #000000;
  display: inline-block;
  padding: 3em;
  min-width: 370px;
}
.device-settings-dialog .header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.device-settings-dialog .title {
  margin-top: 0;
}
.device-settings-dialog .close-icon-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 25px;
}
.device-settings-dialog .close-icon-wrapper .close-button {
  margin-top: 0;
}
.device-settings-dialog .content {
  margin-top: 4px;
}
.call-problem-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.4);
}
.call-problem-indicator .message {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.5em;
  color: #fff;
  text-shadow: 0 0 0.1em #000;
  margin-top: 1.5em;
  margin-left: 4em;
  margin-right: 4em;
}
.settings-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.settings-container .wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.settings-container .wrapper .section {
  margin: 0 0 32px 0;
  text-align: left;
}
.settings-container .wrapper .section .dropdown {
  width: 100%;
  margin-left: 0;
}
.client-window.minimal .settings-container .wrapper .section .dropdown {
  width: auto;
}
.settings-container .wrapper .section .test-input {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 1px solid #E0E0E0;
  color: #171717;
  font-size: 14px;
  line-height: 20px;
  height: 48px;
  margin-top: 16px;
}
.settings-container .wrapper .section .test-input p {
  margin: 0;
}
.settings-container .wrapper .section .test-input:hover {
  background-color: transparent;
  border: 1px solid #171717;
}
.settings-container .wrapper .section .test-input.input-error {
  cursor: not-allowed;
}
.settings-container .wrapper .section .test-input .bar {
  display: flex;
}
.settings-container .wrapper .section .test-input .bar p {
  font-size: 14px;
  color: #000000;
}
.settings-container .wrapper .section .test-input .bar .level {
  display: flex;
  margin: -2px 0;
}
.settings-container .wrapper .section .test-input .bar .bars-level-1 svg rect:nth-child(1) {
  fill: #007C7C;
}
.settings-container .wrapper .section .test-input .bar .bars-level-2 svg rect:nth-child(-n+2) {
  fill: #007C7C;
}
.settings-container .wrapper .section .test-input .bar .bars-level-3 svg rect:nth-child(-n+3) {
  fill: #007C7C;
}
.settings-container .wrapper .section .test-input .bar .bars-level-4 svg rect:nth-child(-n+4) {
  fill: #007C7C;
}
.settings-container .wrapper .section .test-input .bar .bars-level-5 svg rect:nth-child(-n+5) {
  fill: #007C7C;
}
.settings-container .wrapper .section .test-input .bar .bars-level-6 svg rect {
  fill: #007C7C;
}
.overlay {
  position: absolute;
  background: var(--popup-bg-color, #ffffff);
  color: var(--popup-text-color, #000000);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translateZ(0);
  padding-top: 5.5em;
  padding-left: 3em;
  padding-right: 3em;
  text-align: center;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -50px;
}
.overlay .holder > div:not(.text-loading) {
  border-color: var(--popup-text-color, #000) var(--popup-text-color, #000) transparent;
}
.call-status-connecting .overlay {
  z-index: 9999999998;
}
.overlay .text-loading,
.overlay .text-info,
.overlay button,
.overlay .count-down {
  margin-top: 2em;
}
.overlay h1 {
  font-size: 1.8em;
}
.overlay .text-loading,
.overlay .text-info,
.overlay button {
  font-size: 1.4em;
}
.overlay .text-loading .mt {
  display: block;
  margin-top: 1.5em;
}
.overlay .holder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.overlay .count-down .bar {
  height: 0.5em;
  width: 100%;
  background-color: var(--body-bg, #ffffff);
  display: inline-block;
}
.overlay .count-down .bar .progress {
  height: 100%;
  width: 100%;
  background-color: #006cff;
}


/*# sourceMappingURL=https://debug.viddget.dev/c13b299c/260130093604/client/client.7283fca7fd729501f174.css.map*/