html {
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body .ToolTipPortal div {
    z-index: 99999 !important;
    transition: none !important;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

@font-face {
  font-family: 'Segoe UI Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Segoe UI Regular'), url('/webphone/assets/images/Segoe UI.woff') format('woff');
}


@font-face {
  font-family: 'Segoe UI Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Segoe UI Italic'), url('/webphone/assets/images/Segoe UI Italic.woff') format('woff');
}


@font-face {
  font-family: 'Segoe UI Bold';
  font-style: normal;
  font-weight: normal;
  src: local('Segoe UI Bold'), url('/webphone/assets/images/Segoe UI Bold.woff') format('woff');
}

@font-face {
  font-family: 'Segoe UI Bold Italic';
  font-style: normal;
  font-weight: normal;
  src: local('Segoe UI Bold Italic'), url('/webphone/assets/images/Segoe UI Bold Italic.woff') format('woff');
}

a {
  text-decoration: none;
  color: inherit;
}
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=ReactToastify.css.map */._modal-add-contact_3lroi_1{
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
    animation-name: _transition_3lroi_1;
    animation-duration: 0.3s;
    background: white;
    z-index: 1;
}
@keyframes _transition_3lroi_1 {
    from {height: 0}
    to {height: 600px}
}
button{
    padding: 7px;
    margin: 3px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    border-radius: 3px;
}
button:focus{
    outline: none;
}
button:hover{
    opacity: 0.8;
    transition: 0.2
}
._button-add_3lroi_32{
    background-color: #323232;
    color: #fcfcfc;
    font-weight: bolder;
    font-size: 12px;
    width: 100%;
    height: 30px;
}
._container-modal-contact_3lroi_40{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: calc(100% - 66px);
    justify-content: flex-start;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}
._container-inputs-modal-contact_3lroi_50{
    /*display: flex;*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 15px;
    margin-top: 2%
}
._inputOut-modal-contact_3lroi_59{
    width: 95%;
    border: 1px solid rgb(228, 228, 228);
    border-radius: 3px;
    height: 33px;
    padding: 0 15px;
    margin: 10px 0px 0px 10px;
    font-weight: bolder;
}
._div-dynamic_3lroi_68{
    width: 90%;
    padding: 2.5%;
    margin-top: 2.5%;
    margin-bottom: 2.5%;
    border: 1px solid rgb(238, 238, 238);
    border-radius: 3px;
    overflow: scroll;
    max-height: 18vh;
    min-height: 18vh;
}

._item-modal-contact_3lroi_80{
    margin-top: 7px;
}
._input-modal-contact_3lroi_83:first-child{
    margin-top: 5px;
}
._input-modal-contact_3lroi_83{
    border: 1px solid rgb(228, 228, 228);
    border-radius: 3px;
    height: 33px;
    width: 69%;
    padding: 0 15px;
    font-weight: bold

}
._input-modal-contact_3lroi_83:focus{
    outline: none;
}
._button-remove-modal-contact_3lroi_98{
    color: #911e1e;
    text-transform: uppercase;
    height: 35px;
    font-size: 12px;
    font-weight: bold;
}
._button-save_3lroi_105{
    background-color: #106e52;
    color: white;
    margin: 10px;
    width: 90%;
}
._bar-top_3lroi_111{
    background: #323232;
    height: 45px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
._img-bar-top_3lroi_119{
    width: 15px;
    height: 15px;
    cursor: pointer;
    margin: 10px;
}
._text-bar-top_3lroi_125{
    color: white;
    font-size: 14px;
    cursor: pointer;
}.App {
  text-align: center;
}

.App-logo {
  animation: App-logo-spin infinite 20s linear;
  height: 40vmin;
  pointer-events: none;
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

::-webkit-scrollbar {
  width: 4px ;
  height: 10px;
  cursor: pointer !important;
}
/* Track */

::-webkit-scrollbar-track {
  border-radius: 3px;
  cursor: pointer !important;
}
/* Handle */

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: #A9AFB6;
  cursor: pointer !important;
}

::-webkit-scrollbar-thumb:window-inactive {
 background: #8f8f8f;
 cursor: pointer !important;
}


._main-container_190f2_2 {
  width: 100vw;
  height: 100vh;
  max-height: 600px;
  /*padding: 8rem 1rem 12rem;*/
  /*margin: 10%;*/
}

._frame_190f2_10 {
  /*padding: 15%;*/
  overflow: hidden;
  position: relative;
  min-width: 300px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  /*min-width: 22.5vw;*/
  /*min-height: 75%;*/
}

._video-remote-container_190f2_21 {
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  width: 100%;
  height: 50%;
  position: relative;
}

._video-remote-fullscreen_190f2_29 {
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}

._video-local-container_190f2_36 {
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  width: 100%;
  height: 50%;
}

@media screen and (min-width: 345px) {
    ._containerWebphone_190f2_44{
      display: flex;
      justify-content: center;
      align-items: center;
      overflow: hidden;
    }
    ._frameWebphone_190f2_50{
      border: 1px solid rgb(214, 214, 214);
      border-radius: 5px !important;
      margin-top: 25px;
      max-width: 340px;
      width: 100%;
      height: 600px;
      border-radius: 5px !important;
    }    
}
._frameLeft_190f2_60{
  max-width: 340px;
  width: 100%;
  height: 600px;
  margin: 10px;
  border: 1px solid rgb(214, 214, 214);
  border-radius: 5px !important;
}
._frameRight_190f2_68{
  width: 72%;
  height: 95vh;
  margin-left: 370px;
  margin-top: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  border-radius: 5px !important;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-content: center
}

._popup_190f2_81 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4)
}

._popup-body_190f2_91 {
  background: #FCFCFC;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: absolute;
  margin-top: 60%;
  padding: 15px 10px;
  width: 70%;
  border-radius: 4px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
  animation-name: _example_190f2_1;
  animation-duration: 0.6s;
  animation-delay: 0.2s;
}
@keyframes _example_190f2_1 {
  from {margin-top: 0;}
  to {margin-top: 60%;}
}
._popup-body_190f2_91 h3{
  width: 90%
}

._popup-btns_190f2_115 {
  background: #FCFCFC;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

._popup-body_190f2_91 h3 {
  margin: 0;
  margin-top: 10px
}

._popup-body_190f2_91 p {
  color: rgba(122, 122, 122, 0.8)
}

._button-send_190f2_133 {
  background-color: #106e52;
  color: white;
  margin-top: 25px
}

._button-cancel_190f2_139 {
  background-color: #801912;
  color: white;
  margin-top: 25px
}
._container-integration_qoy8o_1{
    width: 100%;
    height: 100%;
    max-height: 100%;
    box-sizing: border-box;
    
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px 10px 0;
    }
._div-cont_qoy8o_12{
    width: 100%;

    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 5px 0 0;
} 
._title-integration_qoy8o_20{
    margin: 0;
    font-size: 16px;
    border-bottom: 1px solid rgb(189, 189, 189);
    padding-bottom: 5px 
}
._list-contact-integration_qoy8o_26{
    width: 100%;
    max-height: 470px;
    margin-top: 0px;
    overflow-x: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    
    border-radius: 2px;
}
._list-contact-column_qoy8o_39{
    display: flex;
    flex-direction: column;
    align-items: center;
}
._item-contact-integration_qoy8o_44:first-child{
    margin: 0
}
._label-user_qoy8o_47{
    margin: 0 0 13px;

    text-align: left;
    font: Bold 12px/16px Segoe UI Bold;
    letter-spacing: 0px;
    color: #323232;
    opacity: 1;
}
._link-to-register_qoy8o_56{
    margin: auto auto 10px;

    cursor: pointer;

    text-align: left;
    font: normal 12px/16px Segoe UI Regular;
    letter-spacing: 0px;
    color: #323232;
}
._link-to-register_qoy8o_56 span{
    margin: auto auto 10px;

    cursor: pointer;

    text-align: left;
    font: Bold 12px/16px Segoe UI Bold;
    letter-spacing: 0px;
    color: #448757;
}
._item-contact-integration_qoy8o_44{
    width: 95%;
    margin: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px 5px;

    cursor: pointer;
}
._item-contact-integration_qoy8o_44:hover{
    /* background-color: rgb(224, 224, 224);
    transition: 0.3s; */
    cursor: default;
}
._item-contact-integration_qoy8o_44 p{
    margin: 0;
    font-size: 14px;
}
._div-buttons-integrations_qoy8o_97{
    width: 280px;
    max-height: 328px;
    box-sizing: border-box;
    margin: 0 auto 18px;

    display: flex;
    flex-direction: column;
    padding: 10px 12px;

    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    opacity: 1;
}
._div-buttons-integrations_qoy8o_97 h3{
    margin: 0 0 8px;

    text-align: left;
    font: Bold 12px/16px Segoe UI Bold;
    letter-spacing: 0px;
    color: #323232;
    opacity: 1;
}
._buttons-integrations_qoy8o_121{
    width: 100%;    
    max-height: 181px;
    overflow-y: auto;
}
._buttons-integrations_qoy8o_121 button{
    width: 150px;
    margin-top: 10px;
    color: white;
    font-size: 12px;
    padding: 10px;
}

._buttons-integrations_qoy8o_121 button:disabled {
    color: rgba(0, 0, 0, 0.26);
    cursor: default;
    pointer-events: none;
}

._buttons-integrations_qoy8o_121 button:nth-child(even){
    background-color: #106e52;
}

._buttons-integrations_qoy8o_121 button:nth-child(odd){
    background-color: #09352aea;
}

._div-disabled_qoy8o_148{
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    cursor: not-allowed;
}

._div-info_qoy8o_157{
    width: 100%;
    margin-top: 0px;
    max-height: 18rem;
    overflow-y: scroll;
}
._info_qoy8o_163{
    margin: 10px 0 0;

    text-align: center;
    font: Bold 16px/21px Segoe UI Bold;
    letter-spacing: 0px;
    color: #323232;
}
._info-phone_qoy8o_171{
    margin: 0;

    text-align: center;
    font: normal 12px/16px Segoe UI Regular;
    letter-spacing: 0px;
    color: #323232;
}
._key-info_qoy8o_179{
    text-transform: capitalize;
    font-weight: bolder;
}
._button-back_qoy8o_183{
    width: 205px;
    height: 18px;
    margin: 8px auto;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #448757 0% 0% no-repeat padding-box;
    border-radius: 5px;
    opacity: 1;

    font: Bold 10px/14px Segoe UI Bold;
    letter-spacing: 0px;
    color: #FFFFFF;
}

._div-main-create-user_qoy8o_201 {
    overflow: auto;
    max-height: 400px;
    text-align: center;
    min-width: 100%;
}

._div-create-user_qoy8o_208{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

._p-create-user_qoy8o_215{
    margin: 0;
    margin-bottom: 10px;
    font-size: 14px;
    color: #323232;
    text-align: center;
}


._input-create-user_qoy8o_224{
    border: 1px solid rgb(202, 202, 202);
    margin: 5px;
    width: 250px;
    border-radius: 7px;
    padding: 15px 10px;
}
._input-create-user_qoy8o_224:focus{
    outline: none;
}


._input-create-action_qoy8o_236{
    border: 1px solid rgb(202, 202, 202);
    margin: 5px;
    width: 225px;
    border-radius: 7px;
    padding: 15px 10px;
}
._input-create-action_qoy8o_236:focus{
    outline: none;
}

._div-buttons-create-user_qoy8o_247{
    width: 280px;
    margin: -60px 0 0;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
    border-radius: 8px;
    background: white;
    border-bottom: 1px solid #00000029;
    z-index: 2;
}
._div-buttons-create-user_qoy8o_247 button{
    width: 68px;
    height: 74px;
    margin: 0 8px -12px;
    box-sizing: border-box;

    background: transparent 0% 0% no-repeat padding-box;
    border-radius: 20px;
    opacity: 1;

    font: Bold 12px/16px Segoe UI Bold;
    letter-spacing: 0px;
    color: #32323280;

    transition: all ease 0.3s;
}

._div-buttons-create-user_qoy8o_247 button:hover{
    width: 68px;
    height: 74px;

    background: #323232 0% 0% no-repeat padding-box;
    border-radius: 20px;
    opacity: 1;

    font: Bold 12px/16px Segoe UI Bold;
    letter-spacing: 0px;
    color: #FFFFFF;
}

._container-call-data_qoy8o_291{
    width: calc(100% - 10px);
    height: 147px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
._title-call-data_qoy8o_298{
    margin: 5px;
    text-align: center;
    text-transform: uppercase;
}
._info-call-data_qoy8o_303{
    display: flex;
    flex-direction: column;
    max-height: 100px;
    overflow: auto;
    padding: 5px 15px 0px
}
._info-call-data_qoy8o_303 p{
    margin: 3px
}
._info-call-data_qoy8o_303 p span{
    margin-left: 5px;
}

._popup_qoy8o_317 {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    
    position: absolute;
    top: 0;
    left: 0;
    
    background-color: white;
}

._popup-body_qoy8o_331 {
    width: 70%;
    max-height: 60%;
    margin: 20% 0 0 0;
    overflow-y: scroll;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    
    position: absolute;
    
    border-radius: 4px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    background: #FCFCFC;
    
    text-align: center;
}

._popup-body_qoy8o_331 h3{
    width: 90%
}

._popup-btns_qoy8o_355 {
    background: #FCFCFC;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

._popup-body_qoy8o_331 h3 {
    margin: 0;
    margin-top: 10px
}

._popup-body_qoy8o_331 p {
    color: rgba(122, 122, 122, 0.8)
}

._button-send_qoy8o_373 {
    background-color: #106e52;
    color: white;
    margin-top: 25px
}

._button-cancel_qoy8o_379 {
    background-color: #801912;
    color: white;
    margin-top: 25px
}

._integration_qoy8o_385 {
    display:flex
}

._integration-info-selected_qoy8o_389{
    width: 100%;
    height: 40px;
    margin: 0 0 8px;
    box-sizing: border-box;

    display: flex;  
    justify-content: flex-start;
    align-items: center;
    padding: 0 24px 0 16px;
    
    background-color: #00000029;
}

._integration-info_qoy8o_389{
    width: 100%;
    height: 40px;
    margin: 0 0 8px;
    box-sizing: border-box;

    display: flex;  
    justify-content: flex-start;
    align-items: center;
    padding: 0 24px 0 16px;
}

._integration-info_qoy8o_389:hover {
    cursor: pointer;

    background-color: #00000029;
}

._integration-info_qoy8o_389 p, ._integration-info-selected_qoy8o_389 p {
    margin: 0 auto 0 0;

    font: Bold 12px/16px Segoe UI Bold;
    letter-spacing: 0px;
    color: #323232B3;
}

._integration-info-img_qoy8o_429{
    width: 40px;
    margin: 0 27px 0 0;
}

._integration-info-btn_qoy8o_434 {
    width: 23px !important;
    height: 23px !important;
    margin: 0 0 0 19px !important;

    display: flex;
    justify-content: center;
    align-items: center;

    background: transparent 0% 0% no-repeat padding-box !important;
    border-radius: 100%;
    border: 1px solid #323232;
}

._integration-info_qoy8o_389 > p {
    word-break:break-all ;
    width: 80%
}

._integration-button_qoy8o_453{
    width: 100%;
    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: center;
}

._item-contact-label_qoy8o_462 {
    margin: 14px auto 0 0;

    text-align: left;
    font: Bold 12px/19px Segoe UI Bold;
    letter-spacing: 0px;
    color: #323232;
    opacity: 1;
}

._item-contact-select_qoy8o_472 {
    width: 78px;
    height: 27px;
    margin: 10px 0 0 4px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #448757 0% 0% no-repeat padding-box;
    border-radius: 50px;
    opacity: 1;    

    text-align: center;
    font: Bold 10px/8px Segoe UI Bold;
    letter-spacing: 0px;
    color: #FFFFFF;
}


._integration-button_qoy8o_453 button{
    width: 68px;
    height: 74px;
    margin: 0 8px;
    box-sizing: border-box;

    background: transparent 0% 0% no-repeat padding-box !important;
    border-radius: 20px;
    opacity: 1;

    font: Bold 12px/16px Segoe UI Bold;
    letter-spacing: 0px;
    color: #32323280;

    transition: all ease 0.3s;
}

._integration-button_qoy8o_453 button:hover{
    width: 68px;
    height: 74px;

    background: #323232 0% 0% no-repeat padding-box !important;
    border-radius: 20px;
    opacity: 1;

    font: Bold 12px/16px Segoe UI Bold;
    letter-spacing: 0px;
    color: #FFFFFF;
}

._row_qoy8o_522 {
    margin: 0 0 12px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._row-button_qoy8o_530 {    
    width: 70px;
    height: 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #448757 0% 0% no-repeat padding-box;
    border-radius: 50px;
    opacity: 1;

    font: Bold 9px/8px Segoe UI Bold;
    letter-spacing: 0px;
    color: #FFFFFF;
}

._integration-info-button_qoy8o_547 {
    width: 70px;
    height: 15px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #448757 0% 0% no-repeat padding-box;
    border-radius: 50px;
    border: none;
    opacity: 1;

    font: Bold 8px/11px Segoe UI Bold;
    letter-spacing: 0px;
    color: #FFFFFF;
}

._contact-integration-portrait_qoy8o_566 {
    min-width: 53px;
    min-height: 59px;
    margin: 0 15px 0 0;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 10px;
}

._contact-integration-portrait_qoy8o_566 img {
    max-width: 44px;
}

._contact-integration-column_qoy8o_582 {
    margin: 0 0 -10px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

._contact-integration-h3_qoy8o_591 {
    margin: 10px auto 8px;
    width: 100%;
    box-sizing: border-box;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    padding: 2px 8px;

    background-color: #448757;
    border-radius: 2px;

    font: normal 12px/16px Segoe UI Regular;
    color: #FFFFFF;
}

._contact-integration-row_qoy8o_609 {
    width: 100%;
    min-height: 59px;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}




















::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    cursor: pointer !important;
}
/* Track */

::-webkit-scrollbar-track {
    border-radius: 3px;
    width: 4px;
    cursor: pointer !important;
  }
  /* Handle */
  
  ::-webkit-scrollbar-thumb {
    -webkit-border-radius: 3px;
    background: #448757;
    max-height: 0px;
    margin-top: 100px;
    height: 1px;
    cursor: pointer !important;
  }
  
  ::-webkit-scrollbar-thumb:window-inactive {
    background: #8f8f8f;
  }
.emoji-mart,
.emoji-mart * {
  box-sizing: border-box;
  line-height: 1.15;
}

.emoji-mart {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  font-size: 16px;
  display: inline-block;
  color: #222427;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  background: #fff;
}

.emoji-mart .emoji-mart-emoji {
  padding: 6px;
}

.emoji-mart-bar {
  border: 0 solid #d9d9d9;
}
.emoji-mart-bar:first-child {
  border-bottom-width: 1px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.emoji-mart-bar:last-child {
  border-top-width: 1px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.emoji-mart-anchors {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 6px;
  line-height: 0;
}

.emoji-mart-anchor {
  position: relative;
  display: block;
  flex: 1 1 auto;
  color: #858585;
  text-align: center;
  padding: 12px 4px;
  overflow: hidden;
  transition: color .1s ease-out;
  margin: 0;
  box-shadow: none;
  background: none;
  border: none;
}
.emoji-mart-anchor:focus { outline: 0 }
.emoji-mart-anchor:hover,
.emoji-mart-anchor:focus,
.emoji-mart-anchor-selected {
  color: #464646;
}

.emoji-mart-anchor-selected .emoji-mart-anchor-bar {
  bottom: 0;
}

.emoji-mart-anchor-bar {
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 3px;
  background-color: #464646;
}

.emoji-mart-anchors i {
  display: inline-block;
  width: 100%;
  max-width: 22px;
}

.emoji-mart-anchors svg,
.emoji-mart-anchors img {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.emoji-mart-scroll {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 270px;
  padding: 0 6px 6px 6px;
  will-change: transform; /* avoids "repaints on scroll" in mobile Chrome */
}

.emoji-mart-search {
  margin-top: 6px;
  padding: 0 6px;
  position: relative;
}

.emoji-mart-search input {
  font-size: 16px;
  display: block;
  width: 100%;
  padding: 5px 25px 6px 10px;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  outline: 0;
}

.emoji-mart-search input,
.emoji-mart-search input::-webkit-search-decoration,
.emoji-mart-search input::-webkit-search-cancel-button,
.emoji-mart-search input::-webkit-search-results-button,
.emoji-mart-search input::-webkit-search-results-decoration {
  /* remove webkit/blink styles for <input type="search">
   * via https://stackoverflow.com/a/9422689 */
  -webkit-appearance: none;
}

.emoji-mart-search-icon {
  position: absolute;
  top: 7px;
  right: 11px;
  z-index: 2;
  padding: 2px 5px 1px;
  border: none;
  background: none;
}

.emoji-mart-category .emoji-mart-emoji span {
  z-index: 1;
  position: relative;
  text-align: center;
  cursor: default;
}

.emoji-mart-category .emoji-mart-emoji:hover:before {
  z-index: 0;
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #f4f4f4;
  border-radius: 100%;
}

.emoji-mart-category-label {
  z-index: 2;
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.emoji-mart-category-label span {
  display: block;
  width: 100%;
  font-weight: 500;
  padding: 5px 6px;
  background-color: #fff;
  background-color: rgba(255, 255, 255, .95);
}

.emoji-mart-category-list {
  margin: 0;
  padding: 0;
}

.emoji-mart-category-list li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}

.emoji-mart-emoji {
  position: relative;
  display: inline-block;
  font-size: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
}

.emoji-mart-emoji-native {
  font-family: "Segoe UI Emoji", "Segoe UI Symbol", "Segoe UI", "Apple Color Emoji", "Twemoji Mozilla", "Noto Color Emoji", "Android Emoji";
}

.emoji-mart-no-results {
  font-size: 14px;
  text-align: center;
  padding-top: 70px;
  color: #858585;
}
.emoji-mart-no-results-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
.emoji-mart-no-results .emoji-mart-category-label {
  display: none;
}
.emoji-mart-no-results .emoji-mart-no-results-label {
  margin-top: .2em;
}
.emoji-mart-no-results .emoji-mart-emoji:hover:before {
  content: none;
}

.emoji-mart-preview {
  position: relative;
  height: 70px;
}

.emoji-mart-preview-emoji,
.emoji-mart-preview-data,
.emoji-mart-preview-skins {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.emoji-mart-preview-emoji {
  left: 12px;
}

.emoji-mart-preview-data {
  left: 68px; right: 12px;
  word-break: break-all;
}

.emoji-mart-preview-skins {
  right: 30px;
  text-align: right;
}

.emoji-mart-preview-skins.custom {
  right: 10px;
  text-align: right;
}

.emoji-mart-preview-name {
  font-size: 14px;
}

.emoji-mart-preview-shortname {
  font-size: 12px;
  color: #888;
}
.emoji-mart-preview-shortname + .emoji-mart-preview-shortname,
.emoji-mart-preview-shortname + .emoji-mart-preview-emoticon,
.emoji-mart-preview-emoticon + .emoji-mart-preview-emoticon {
  margin-left: .5em;
}

.emoji-mart-preview-emoticon {
  font-size: 11px;
  color: #bbb;
}

.emoji-mart-title span {
  display: inline-block;
  vertical-align: middle;
}

.emoji-mart-title .emoji-mart-emoji {
  padding: 0;
}

.emoji-mart-title-label {
  color: #999A9C;
  font-size: 26px;
  font-weight: 300;
}

.emoji-mart-skin-swatches {
  font-size: 0;
  padding: 2px 0;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  background-color: #fff;
}

.emoji-mart-skin-swatches.custom {
  font-size: 0;
  border: none;
  background-color: #fff;
}

.emoji-mart-skin-swatches.opened .emoji-mart-skin-swatch {
  width: 16px;
  padding: 0 2px;
}

.emoji-mart-skin-swatches.opened .emoji-mart-skin-swatch.selected:after {
  opacity: .75;
}

.emoji-mart-skin-swatch {
  display: inline-block;
  width: 0;
  vertical-align: middle;
  transition-property: width, padding;
  transition-duration: .125s;
  transition-timing-function: ease-out;
}

.emoji-mart-skin-swatch:nth-child(1) { transition-delay: 0s }
.emoji-mart-skin-swatch:nth-child(2) { transition-delay: .03s }
.emoji-mart-skin-swatch:nth-child(3) { transition-delay: .06s }
.emoji-mart-skin-swatch:nth-child(4) { transition-delay: .09s }
.emoji-mart-skin-swatch:nth-child(5) { transition-delay: .12s }
.emoji-mart-skin-swatch:nth-child(6) { transition-delay: .15s }

.emoji-mart-skin-swatch.selected {
  position: relative;
  width: 16px;
  padding: 0 2px;
}

.emoji-mart-skin-swatch.selected:after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 4px; height: 4px;
  margin: -2px 0 0 -2px;
  background-color: #fff;
  border-radius: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease-out;
}

.emoji-mart-skin-swatch.custom {
  display: inline-block;
  width: 0;
  height: 38px;
  overflow: hidden;
  vertical-align: middle;
  transition-property: width, height;
  transition-duration: .125s;
  transition-timing-function: ease-out;
  cursor: default;
}

.emoji-mart-skin-swatch.custom.selected {
  position: relative;
  width: 36px;
  height: 38px;
  padding: 0 2px 0 0;
}

.emoji-mart-skin-swatch.custom.selected:after {
  content: "";
  width: 0;
  height: 0;
}

.emoji-mart-skin-swatches.custom .emoji-mart-skin-swatch.custom:hover {
  background-color: #f4f4f4;
  border-radius: 10%;
}

.emoji-mart-skin-swatches.custom.opened .emoji-mart-skin-swatch.custom {
  width: 36px;
  height: 38px;
  padding: 0 2px 0 0;
}

.emoji-mart-skin-swatches.custom.opened .emoji-mart-skin-swatch.custom.selected:after {
  opacity: .75;
}

.emoji-mart-skin-text.opened {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  color: #888;
  font-size: 11px;
  padding: 5px 2px;
  width: 95px;
  height: 40px;
  border-radius: 10%;
  background-color: #fff;
}

.emoji-mart-skin {
  display: inline-block;
  width: 100%;
  padding-top: 100%;
  max-width: 12px;
  border-radius: 100%;
}

.emoji-mart-skin-tone-1 { background-color: #ffc93a }
.emoji-mart-skin-tone-2 { background-color: #fadcbc }
.emoji-mart-skin-tone-3 { background-color: #e0bb95 }
.emoji-mart-skin-tone-4 { background-color: #bf8f68 }
.emoji-mart-skin-tone-5 { background-color: #9b643d }
.emoji-mart-skin-tone-6 { background-color: #594539 }

/* For screenreaders only, via https://stackoverflow.com/a/19758620 */
.emoji-mart-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/*
 * Dark mode styles
 */

.emoji-mart-dark {
  color: #fff;
  border-color: #555453;
  background-color: #222;
}

.emoji-mart-dark .emoji-mart-bar {
  border-color: #555453;
}

.emoji-mart-dark .emoji-mart-search input {
  color: #fff;
  border-color: #555453;
  background-color: #2f2f2f;
}

.emoji-mart-dark .emoji-mart-search-icon svg {
  fill: #fff;
}

.emoji-mart-dark .emoji-mart-category .emoji-mart-emoji:hover:before {
  background-color: #444;
}

.emoji-mart-dark .emoji-mart-category-label span {
  background-color: #222;
  color: #fff;
}

.emoji-mart-dark .emoji-mart-skin-swatches {
  border-color: #555453;
  background-color: #222;
}

.emoji-mart-dark .emoji-mart-anchor:hover,
.emoji-mart-dark .emoji-mart-anchor:focus,
.emoji-mart-dark .emoji-mart-anchor-selected {
  color: #bfbfbf;
}

._container-integration_1cjo8_2{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px 10px 0;
 }

._title-integration_1cjo8_13{
    margin: 0;
    font-size: 16px;
    border-bottom: 1px solid rgb(189, 189, 189);
    padding-bottom: 5px 
}
._list-contact-integration_1cjo8_19{
    width: 100%;
    max-height: 470px;
    margin-top: 0px;
    overflow-x: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: auto;
    
    border-radius: 2px;
}
._list-contact-column_1cjo8_32{
    display: flex;
    flex-direction: column;
    align-items: center;
}
._item-contact-integration_1cjo8_37:first-child{
    margin: 0
}
._label-user_1cjo8_40{
    margin: 0 0 13px;

    text-align: left;
    font: Bold 12px/16px Segoe UI Bold;
    letter-spacing: 0px;
    color: #323232;
    opacity: 1;
}

._item-contact-integration_1cjo8_37{
    width: 95%;
    margin: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px 5px;

    cursor: pointer;
}
._item-contact-integration_1cjo8_37:hover{
    /* background-color: rgb(224, 224, 224);
    transition: 0.3s; */
    cursor: default;
}
._item-contact-integration_1cjo8_37 p{
    margin: 0;
    font-size: 14px;
}
._div-buttons-integrations_1cjo8_71{
    width: 280px;
    max-height: 328px;
    box-sizing: border-box;
    margin: 0 auto 18px;

    display: flex;
    flex-direction: column;
    padding: 10px 12px;

    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 10px;
    opacity: 1;
}
._div-buttons-integrations_1cjo8_71 h3{
    margin: 0 0 8px;

    text-align: left;
    font: Bold 12px/16px Segoe UI Bold;
    letter-spacing: 0px;
    color: #323232;
    opacity: 1;
}
._buttons-integrations_1cjo8_95{
    width: 100%;    
    max-height: 181px;
    overflow-y: auto;
}
._buttons-integrations_1cjo8_95 button{
    width: 150px;
    margin-top: 10px;
    color: white;
    font-size: 12px;
    padding: 10px;
}

._buttons-integrations_1cjo8_95 button:disabled {
    color: rgba(0, 0, 0, 0.26);
    cursor: default;
    pointer-events: none;
}

._buttons-integrations_1cjo8_95 button:nth-child(even){
    background-color: #106e52;
}

._buttons-integrations_1cjo8_95 button:nth-child(odd){
    background-color: #09352aea;
}

._div-disabled_1cjo8_122{
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    cursor: not-allowed;
}

._div-info_1cjo8_131{
    width: 100%;
    margin-top: 0px;
    max-height: 18rem;
    overflow-y: scroll;
}
._info_1cjo8_137{
    margin: 10px 0 0;

    text-align: center;
    font: Bold 16px/21px Segoe UI Bold;
    letter-spacing: 0px;
    color: #323232;
}
._info-phone_1cjo8_145{
    margin: 0;

    text-align: center;
    font: normal 12px/16px Segoe UI Regular;
    letter-spacing: 0px;
    color: #323232;
}
._key-info_1cjo8_153{
    text-transform: capitalize;
    font-weight: bolder;
}

._div-main-create-user_1cjo8_158 {
    overflow: auto;
    max-height: 400px;
    text-align: center;
    min-width: 100%;
}

._div-create-user_1cjo8_165{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
._popup-form_1cjo8_171 {
    position: absolute;
    width: 100%;
    height: calc(100% - 40px);
    z-index: 1;
    top: 40px;
    display: flex;
    justify-content: center;
    background-color: #fff;
    right: 0;
}

._p-create-user_1cjo8_183{
    margin: 0;
    margin-bottom: 10px;
    font-size: 14px;
    color: #323232;
    text-align: center;
}


._input-create-user_1cjo8_192{
    border: 1px solid rgb(202, 202, 202);
    margin: 5px;
    width: 250px;
    border-radius: 7px;
    padding: 15px 10px;
}
._input-create-user_1cjo8_192:focus{
    outline: none;
}


._input-create-action_1cjo8_204{
    border: 1px solid rgb(202, 202, 202);
    margin: 5px;
    width: 225px;
    border-radius: 7px;
    padding: 15px 10px;
}
._input-create-action_1cjo8_204:focus{
    outline: none;
}

._div-buttons-create-user_1cjo8_215{
    width: 280px;
    max-width: 280px;
    padding: 15px 0;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 0 0 8px 8px;
    background: white;
    box-shadow: 0px 3px 6px #00000029;
    z-index: 2;
}

._div-buttons-create-user_1cjo8_215 button{
    margin: 0;
    padding: 8px 12px;
    box-sizing: border-box;

    border-radius: 8px;
    opacity: 1;
    border: 1px solid #32323280;

    font: Bold 12px/16px Segoe UI Bold;
    letter-spacing: 0px;
    color: #32323280;

    transition: all ease 0.3s;
}

._div-buttons-create-user_1cjo8_215 button:hover{
    background: #323232 0% 0% no-repeat padding-box;
    border-color: #323232;
    color: #FFFFFF;
}

._container-call-data_1cjo8_254{
    width: calc(100% - 10px);
    height: 147px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
._title-call-data_1cjo8_261{
    margin: 5px;
    text-align: center;
    text-transform: uppercase;
}
._info-call-data_1cjo8_266{
    display: flex;
    flex-direction: column;
    max-height: 100px;
    overflow: auto;
    padding: 5px 15px 0px
}
._info-call-data_1cjo8_266 p{
    margin: 3px
}
._info-call-data_1cjo8_266 p span{
    margin-left: 5px;
}

._popup_1cjo8_171 {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    
    position: absolute;
    top: 0;
    left: 0;
    
    background-color: white;
}

._popup-body_1cjo8_294 {
    width: 70%;
    max-height: 60%;
    margin: 20% 0 0 0;
    overflow-y: scroll;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    
    position: absolute;
    
    border-radius: 4px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    background: #FCFCFC;
    
    text-align: center;
}

._popup-body_1cjo8_294 h3{
    width: 90%
}

._popup-btns_1cjo8_318 {
    background: #FCFCFC;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

._popup-body_1cjo8_294 h3 {
    margin: 0;
    margin-top: 10px
}

._popup-body_1cjo8_294 p {
    color: rgba(122, 122, 122, 0.8)
}

._button-send_1cjo8_336 {
    background-color: #106e52;
    color: white;
    margin-top: 25px
}

._button-cancel_1cjo8_342 {
    background-color: #801912;
    color: white;
    margin-top: 25px
}

._integration_1cjo8_348 {
    display:flex
}

._integration-info-selected_1cjo8_352{
    width: 100%;
    height: 40px;
    margin: 0 0 8px;
    box-sizing: border-box;

    display: flex;  
    justify-content: flex-start;
    align-items: center;
    padding: 0 24px 0 16px;
    
    background-color: #00000029;
}

._integration-info_1cjo8_352{
    width: 100%;
    height: 40px;
    margin: 0 0 8px;
    box-sizing: border-box;

    display: flex;  
    justify-content: flex-start;
    align-items: center;
    padding: 0 24px 0 16px;
}

._integration-info_1cjo8_352:hover {
    cursor: pointer;

    background-color: #00000029;
}

._integration-info_1cjo8_352 p, ._integration-info-selected_1cjo8_352 p {
    margin: 0 auto 0 0;

    font: Bold 12px/16px Segoe UI Bold;
    letter-spacing: 0px;
    color: #323232B3;
}

._integration-info-img_1cjo8_392{
    width: 40px;
    margin: 0 27px 0 0;
}

._integration-info-btn_1cjo8_397 {
    width: 23px !important;
    height: 23px !important;
    margin: 0 0 0 19px !important;

    display: flex;
    justify-content: center;
    align-items: center;

    background: transparent 0% 0% no-repeat padding-box !important;
    border-radius: 100%;
    border: 1px solid #323232;
}

._integration-info_1cjo8_352 > p {
    word-break:break-all ;
    width: 80%
}

._integration-button_1cjo8_416{
    width: 100%;
    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: center;
}

._item-contact-label_1cjo8_425 {
    margin: 14px auto 0 0;

    text-align: left;
    font: Bold 12px/19px Segoe UI Bold;
    letter-spacing: 0px;
    color: #323232;
    opacity: 1;
}

._div-create-user-card-container_1cjo8_435 {
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 18px 0 80px;

    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 0 0 5px 5px;
    opacity: 1;
}


._integration-button_1cjo8_416 button{
    width: 68px;
    height: 74px;
    margin: 0 8px;
    box-sizing: border-box;

    background: transparent 0% 0% no-repeat padding-box !important;
    border-radius: 20px;
    opacity: 1;

    font: Bold 12px/16px Segoe UI Bold;
    letter-spacing: 0px;
    color: #32323280;

    transition: all ease 0.3s;
}

._integration-button_1cjo8_416 button:hover{
    width: 68px;
    height: 74px;

    background: #323232 0% 0% no-repeat padding-box !important;
    border-radius: 20px;
    opacity: 1;

    font: Bold 12px/16px Segoe UI Bold;
    letter-spacing: 0px;
    color: #FFFFFF;
}

._row_1cjo8_484 {
    margin: 0 0 12px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._integration-info-button_1cjo8_492 {
    width: 70px;
    height: 15px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #448757 0% 0% no-repeat padding-box;
    border-radius: 50px;
    border: none;
    opacity: 1;

    font: Bold 8px/11px Segoe UI Bold;
    letter-spacing: 0px;
    color: #FFFFFF;
}

._contact-integration-portrait_1cjo8_511 {
    min-width: 53px;
    min-height: 59px;
    margin: 0 15px 0 0;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 10px;
}

._contact-integration-portrait_1cjo8_511 img {
    max-width: 44px;
}

._contact-integration-column_1cjo8_527 {
    margin: 0 0 -10px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

._contact-integration-row_1cjo8_536 {
    width: 100%;
    min-height: 59px;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}





















._container-callprogress_oelx4_1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
._status-call_oelx4_7{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #106e52;
    color: white;
    width: 90%;
    margin-top: 5px;
    padding: 3px 0px;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 14px;
}
._info-agent-call_oelx4_20{
    display: flex;
    height: 30px;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin-top: 1rem;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 0 15px;
}
._name-left-info-agent-call_oelx4_32{
    margin: 5px; font-weight: bolder;
}
._right-info-agent-call_oelx4_35{
    display: flex;
    flex-direction: row;;
    align-items: center
}
._branch-right-info-agent-call_oelx4_40{
    font-weight: bolder;
    color: #525252
}
._img-right-info-agent-call_oelx4_44{
    width: 15px;
    height: 15px;
    margin: 5px;
}
._name-receptor_oelx4_49{
    color: #106e52;
    margin-top: 20px;
}
._time-receptor_oelx4_53{
    color: #323232;
    margin-top: 10px;
    font-weight: bolder;
}
._image-receptor_oelx4_58{
    height: 100px;
    margin-top: 20px;
}

._div-buttons-call_oelx4_63{
    /*margin-top: 25%;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
._div-buttons-actions-call_oelx4_70{
    display: flex;
    flex-direction: row;
}
._button-action-call_oelx4_74{
    cursor: pointer;
    height: 35px;
    margin: 10px;
}
._button-end-call_oelx4_79{
    margin-top: 20px;
    cursor: pointer;
    height: 50px
}
._components-to-call_oelx4_84{
    width: 100%;
    height: 250px;

    position: absolute;
    bottom: 0;
    z-index: 200;
    margin-top: 120%;
    background: white;
    animation: _slide_oelx4_1 0.5s forwards !important;
    animation-delay: 2s !important;
}
@-webkit-keyframes _slide_oelx4_1 {
    100% { left: 0; }
}

@keyframes _slide_oelx4_1 {
    100% { left: 0; }
}
._header-components_oelx4_103{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
    background: #323232;
    height: 40px;
}
._title-header-components_oelx4_112{
    color: white;
    font-weight: bolder;
}
._button-header-components_oelx4_116{
    background: rgb(148, 19, 19) !important;
    height: 30px;
    color: white !important;
    width: 30px !important;
}

._section-bartop_syz4t_2{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 13px 0 0;
}

._name-bartop_syz4t_9{
    width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font: Normal 13px/17px Segoe UI Regular;
    color: #f0f0f0;
}
._img-bartop_syz4t_17{
    width: 15px;
    height: 15px;
    margin: 10px;

    cursor: pointer;
}
._branch-bartop_syz4t_24{
    margin: 2px;

    font-size: 14px;
    color:#ababab
}
._branch-number-bartop_syz4t_30{
    margin-right: 0px;

    font: Normal 15px/20px Segoe UI Regular;
    color:#f0f0f0;
    font-weight: 500;
}
._div-contact-status_syz4t_37{
    height: 20px;
    margin: 0 0 0 5px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 3px;
    color: white;
    font: Normal 11px/15px Segoe UI Regular;
}
._notification-bartop_syz4t_49{
    margin-top: 9px;
    margin-right: 5px;
}
._icon-bartop_syz4t_53{
    color: white
}
._usericon-bartop_syz4t_56{
    margin: 0 5px 0 0;
}
._div-contact-circle_syz4t_59 {
    width: 13px;
    height: 14px;
    box-sizing: border-box;

    border: 2px solid #26DF93;
    border-radius: 100%;
    opacity: 1;
}
._div-notification-bartop_syz4t_68 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}
._notification-circle-bartop_syz4t_74 {
    width: 26px;
    height: 26px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 1px solid #FFFFFF;
    border-radius: 100%;
    opacity: 1;
}
._notification-badge-bartop_syz4t_86 {
    width: 10px;
    height: 10px;
    margin: -10px 0 0 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 100%;
    opacity: 1;

    text-align: center;
    font: Bold 6px/8px Segoe UI Regular;
    letter-spacing: 0px;
    color: #326C54;
}

._container-bartop-column_syz4t_105 {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    padding: 0 0 0 10px;
}

._container-bartop-column_syz4t_105 p{
    margin: 0 0 0 5px;
}
._container-list-pause_1wjfi_1{
    width: auto;
    height: auto;
    padding: 5px;
}
._item-list-pause_1wjfi_6{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
    border-bottom: 0.5px solid #f8f8f8;
    width: 90%;
    margin-top: 5px;
}
._item-list-pause_1wjfi_6:hover{
    background-color: #e8e8e8 !important;
    transition: all 0.3s;
    border-radius: 3px;
}
._text-list-pause_1wjfi_22{
    font-size: 16px;
    font-weight: bolder;
    color: #5e5e5e;
}
._image-list-pause_1wjfi_27{
    width: 20px; 
    height: 20px;
}
._search-input_1wjfi_31{
    border: none;
    width: 305px;
    padding: 15px;
    border-bottom: 0.5px solid rgb(235, 235, 235);
    font-size: 14px;
    font-weight: bolder;
    margin-bottom: 5px;
}
._search-input_1wjfi_31:focus{
    outline: none;
}


._list-div-contact_y8kbp_1{
    height: auto;
    max-height: 400px;
}
._item-div-contact_y8kbp_5{
    width: 316px;
    height: 50px;
    padding: 2px 10px;
    display: flex; flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
}
._item-div-contact_y8kbp_5:hover{
    background-color: #e8e8e8 !important;
    transition: 0.3s
}
._left-div-contact_y8kbp_17{
    display: flex; 
    flex-direction: row;
    justify-content: flex-start; 
    align-items: center;
}
._right-div-contact_y8kbp_23{
    display: flex; 
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
._div-contact-status_y8kbp_29{
    width: 50px;
    height: 25px;
    color: white;
    border-radius: 3px;
    font-size: 10px;
    display: flex;
    justify-content: center; 
    align-items: center;
}
._name-contact_y8kbp_39{
    font-weight: 500;
    color: #444444;
    font-size: 13px;
    margin-left: 8px;
}
._branch-contact_y8kbp_45{
    font-weight: 700;
    color: #444444;
    font-size: 13px;
}
._img-call-contact_y8kbp_50{
    width: 17px;
    height: 17px;
    margin: 0 10px;
}
._div-input-transfer_y8kbp_55{
    height: 53px;
    width: 100%;
    box-sizing: border-box;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;

    background-color: #FFFFFF;
    border-bottom: 1px solid #ccc;
}
._input-text-transfer_y8kbp_69{
    border: none;
    padding: 10px;
    font-size: 14px;
    width: 85%
}
._input-text-transfer_y8kbp_69:focus{
    outline: none;
}
._img-call-transfer_y8kbp_78{
    width: 20px;
    height: 20px;
    cursor: pointer;
}._container-top-call-received_1gpht_1{
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 75px;
}
._name-top-call-received_1gpht_11{
    font-size: 27px;
    margin: 0px;
    font-weight: bolder;
    color: #4d4d4d;
    margin-top: 5px;
}
._number-top-call-received_1gpht_18{
    font-size: 15px;
    color: #8a8a8a;
    margin: 0px;
    margin-top: 5px;
}
._img-top-call-received_1gpht_24{
    width: 120px
}
._container-bottom-call-received_1gpht_27{
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    margin: 0px auto 70px;
}
._button-refuse_1gpht_37{
    width: 50px;
    cursor: pointer;
}
._button-answer_1gpht_41{
    width: 35px;
    cursor: pointer;
}
._div-bottom-call-received_1gpht_45{
    display: flex;
    flex-direction: column;
    align-items: center;
}
._div-bottom-call-received_1gpht_45 p{
    font-size: 14px;
    height: 38px;
    color: #858585;
    text-align: center;
    cursor: pointer;
}
._div-image-call-received_1gpht_57{
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}._loader_1s93t_1{
    bottom: 0;
    z-index: 1000;
    width: 300px;
    height: 600px;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation-duration: 0.3s;
}

._loader-label_1s93t_14{
    color: rgb(136, 136, 136);
    max-width: 90%;
    text-align: center;
}
._loader-img_1s93t_19{
    width: 50px;
}