/*!
 Material Components for the Web
 Copyright (c) 2018 Google Inc.
 License: Apache-2.0
*/
@-webkit-keyframes mdc-ripple-fg-radius-in {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
            transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1); }
  to {
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); } }

@keyframes mdc-ripple-fg-radius-in {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
            transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1); }
  to {
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); } }

@-webkit-keyframes mdc-ripple-fg-opacity-in {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: 0; }
  to {
    opacity: var(--mdc-ripple-fg-opacity, 0); } }

@keyframes mdc-ripple-fg-opacity-in {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: 0; }
  to {
    opacity: var(--mdc-ripple-fg-opacity, 0); } }

@-webkit-keyframes mdc-ripple-fg-opacity-out {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: var(--mdc-ripple-fg-opacity, 0); }
  to {
    opacity: 0; } }

@keyframes mdc-ripple-fg-opacity-out {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: var(--mdc-ripple-fg-opacity, 0); }
  to {
    opacity: 0; } }

.mdc-ripple-surface--test-edge-var-bug {
  --mdc-ripple-surface-test-edge-var: 1px solid #000;
  visibility: hidden; }
  .mdc-ripple-surface--test-edge-var-bug::before {
    border: var(--mdc-ripple-surface-test-edge-var); }

.mdc-fab {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  position: relative;
  justify-content: center;
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  padding: 0;
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 15ms linear 30ms, -webkit-transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 15ms linear 30ms, transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 15ms linear 30ms, transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  border: none;
  border-radius: 50%;
  fill: currentColor;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  overflow: hidden;
  background-color: #018786;
  color: #fff;
  /* @alternate */
  color: var(--mdc-theme-on-secondary, #fff); }
  .mdc-fab::before, .mdc-fab::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""; }
  .mdc-fab::before {
    transition: opacity 15ms linear;
    z-index: 1; }
  .mdc-fab.mdc-ripple-upgraded::before {
    -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
            transform: scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-fab.mdc-ripple-upgraded::after {
    top: 0;
    /* @noflip */
    left: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: center center;
            transform-origin: center center; }
  .mdc-fab.mdc-ripple-upgraded--unbounded::after {
    top: var(--mdc-ripple-top, 0);
    /* @noflip */
    left: var(--mdc-ripple-left, 0); }
  .mdc-fab.mdc-ripple-upgraded--foreground-activation::after {
    -webkit-animation: 225ms forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
            animation: 225ms forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in; }
  .mdc-fab.mdc-ripple-upgraded--foreground-deactivation::after {
    -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
            animation: 150ms mdc-ripple-fg-opacity-out;
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
  .mdc-fab::before, .mdc-fab::after {
    top: calc(50% - 100%);
    /* @noflip */
    left: calc(50% - 100%);
    width: 200%;
    height: 200%; }
  .mdc-fab.mdc-ripple-upgraded::after {
    width: var(--mdc-ripple-fg-size, 100%);
    height: var(--mdc-ripple-fg-size, 100%); }
  .mdc-fab::-moz-focus-inner {
    padding: 0;
    border: 0; }
  .mdc-fab:hover, .mdc-fab:focus {
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12); }
  .mdc-fab:active {
    box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12); }
  .mdc-fab:active, .mdc-fab:focus {
    outline: none; }
  .mdc-fab:hover {
    cursor: pointer; }
  .mdc-fab > svg {
    width: 100%; }
  @supports not (-ms-ime-align: auto) {
    .mdc-fab {
      /* @alternate */
      background-color: var(--mdc-theme-secondary, #018786); } }
  .mdc-fab .mdc-fab__icon {
    width: 24px;
    height: 24px;
    font-size: 24px; }
  .mdc-fab::before, .mdc-fab::after {
    background-color: #fff; }
    @supports not (-ms-ime-align: auto) {
      .mdc-fab::before, .mdc-fab::after {
        /* @alternate */
        background-color: var(--mdc-theme-on-secondary, #fff); } }
  .mdc-fab:hover::before {
    opacity: 0.08; }
  .mdc-fab:not(.mdc-ripple-upgraded):focus::before, .mdc-fab.mdc-ripple-upgraded--background-focused::before {
    transition-duration: 75ms;
    opacity: 0.24; }
  .mdc-fab:not(.mdc-ripple-upgraded)::after {
    transition: opacity 150ms linear; }
  .mdc-fab:not(.mdc-ripple-upgraded):active::after {
    transition-duration: 75ms;
    opacity: 0.32; }
  .mdc-fab.mdc-ripple-upgraded {
    --mdc-ripple-fg-opacity: 0.32; }

.mdc-fab--mini {
  width: 40px;
  height: 40px; }

.mdc-fab__icon {
  margin: auto;
  transition: -webkit-transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  fill: currentColor;
  will-change: transform; }

.mdc-fab--exited {
  -webkit-transform: scale(0);
          transform: scale(0);
  transition: opacity 15ms linear 150ms, -webkit-transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 15ms linear 150ms, transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 15ms linear 150ms, transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1), -webkit-transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
  opacity: 0; }
  .mdc-fab--exited .mdc-fab__icon {
    -webkit-transform: scale(0);
            transform: scale(0);
    transition: -webkit-transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1);
    transition: transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1);
    transition: transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1), -webkit-transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1); }

/*# sourceMappingURL=mdc.fab.css.map*/
/**
* FLOATING BUTTON
**/
/**
* Animations
**/
@-webkit-keyframes slide-in-1 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-68px);
            transform: translateY(-68px);
  }
}
@keyframes slide-in-1 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-68px);
            transform: translateY(-68px);
  }
}

@-webkit-keyframes slide-in-2 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-136px);
            transform: translateY(-136px);
  }
}

@keyframes slide-in-2 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-136px);
            transform: translateY(-136px);
  }
}

@-webkit-keyframes slide-in-3 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-204px);
            transform: translateY(-204px);
  }
}

@keyframes slide-in-3 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-204px);
            transform: translateY(-204px);
  }
}

@-webkit-keyframes slide-in-4 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-272px);
            transform: translateY(-272px);
  }
}

@keyframes slide-in-4 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-272px);
            transform: translateY(-272px);
  }
}

@-webkit-keyframes slide-in-5 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-340px);
            transform: translateY(-340px);
  }
}

@keyframes slide-in-5 {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-340px);
            transform: translateY(-340px);
  }
}

@-webkit-keyframes slide-in-6 {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-408px);
    transform: translateY(-408px);
  }
}

@keyframes slide-in-6 {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-408px);
    transform: translateY(-408px);
  }
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/**
* Styles
**/
#floating-button .mdc-fab {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-width: 56px;
  padding: 0 16px;
  background-color: #00c172;
  border-radius: 28px;
}

@media screen and (min-width: 768px) {
#floating-button .mdc-fab-auto {
  width: auto !important;
	}
}

#floating-button .mdc-fab:hover, #floating-button .mdc-fab:focus {
  width: auto;
}

@media screen and (max-width: 768px), (-moz-touch-enabled: 1), (pointer: coarse) {
  #floating-button .mdc-fab:hover, #floating-button .mdc-fab:focus {
    width: 56px;
  }
}

@supports not (-ms-ime-align: auto) {
  #floating-button .mdc-fab {
    /* @alternate */
    background-color: var(--mdc-theme-secondary, #00c172);
  }
}

.mdc-fab__icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.mdc-fab__text {
  display: inline-block;
  margin: 0 8px 0 16px;
  font-family: Frutiger, Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}
.mdc-fab__icon-img {
  display: block ;
  max-width: 100%;
}

.pictoload {
  max-width: 100%;	
}
.float-button-wrapper {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
}

@media screen and (min-width: 768px) {
  .float-button-wrapper {
    right: 32px;
    bottom: 32px;
  }
}

#floating-button .float-button__toggle[aria-pressed='true'] {
  background: #666;
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 rgba(0, 0, 0, 0.12);
  -webkit-transition-property: all;
  transition-property: all;
}

.float-button__toggle .rotate {
  transform: rotate(45deg);
}

.float-button__toggle-hover {
	pointer-events: none;
}

.float-button__toggle .mdc-fab__icon {
  width: 14px !important;
  height: 14px !important;
  font-size: 14px !important;
}

.float-button__toggle .mdc-fab__icon-auto {
  width: 24px !important;
  height: 24px !important;
  font-size: 24px !important;
}
.float-button__toggle .mdc-fab__icon-center {
  width: 24px !important;
  height: 14px !important;
  font-size: 14px !important;
}



.float-button__children,
.float-button__child {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
}

.float-button__child {
  z-index: -1;
  list-style-type: none;
  opacity: 0;
}

.float-button__children.is-expanded .float-button__child:nth-child(1) {
  z-index: -1;
  -webkit-animation: slide-in-1 0.06s cubic-bezier(0, 0, 0.2, 1) forwards, fade-in 0.12s cubic-bezier(0, 0, 0.2, 1) forwards;
          animation: slide-in-1 0.06s cubic-bezier(0, 0, 0.2, 1) forwards, fade-in 0.12s cubic-bezier(0, 0, 0.2, 1) forwards;
}

.float-button__children.is-expanded .float-button__child:nth-child(2) {
  z-index: -2;
  -webkit-animation: slide-in-2 0.12s cubic-bezier(0, 0, 0.2, 1) forwards, fade-in 0.24s cubic-bezier(0, 0, 0.2, 1) forwards;
          animation: slide-in-2 0.12s cubic-bezier(0, 0, 0.2, 1) forwards, fade-in 0.24s cubic-bezier(0, 0, 0.2, 1) forwards;
}

.float-button__children.is-expanded .float-button__child:nth-child(3) {
  z-index: -3;
  -webkit-animation: slide-in-3 0.18s cubic-bezier(0, 0, 0.2, 1) forwards, fade-in 0.36s cubic-bezier(0, 0, 0.2, 1) forwards;
          animation: slide-in-3 0.18s cubic-bezier(0, 0, 0.2, 1) forwards, fade-in 0.36s cubic-bezier(0, 0, 0.2, 1) forwards;
}

.float-button__children.is-expanded .float-button__child:nth-child(4) {
  z-index: -4;
  -webkit-animation: slide-in-4 0.24s cubic-bezier(0, 0, 0.2, 1) forwards, fade-in 0.48s cubic-bezier(0, 0, 0.2, 1) forwards;
          animation: slide-in-4 0.24s cubic-bezier(0, 0, 0.2, 1) forwards, fade-in 0.48s cubic-bezier(0, 0, 0.2, 1) forwards;
}

.float-button__children.is-expanded .float-button__child:nth-child(5) {
  z-index: -5;
  -webkit-animation: slide-in-5 0.3s cubic-bezier(0, 0, 0.2, 1) forwards, fade-in 0.6s cubic-bezier(0, 0, 0.2, 1) forwards;
          animation: slide-in-5 0.3s cubic-bezier(0, 0, 0.2, 1) forwards, fade-in 0.6s cubic-bezier(0, 0, 0.2, 1) forwards;
}
.float-button__children.is-expanded .float-button__child:nth-child(6) {
  z-index: -6;
  -webkit-animation: slide-in-6 0.3s cubic-bezier(0, 0, 0.2, 1) forwards, fade-in 0.72s cubic-bezier(0, 0, 0.2, 1) forwards;
  animation: slide-in-6 0.3s cubic-bezier(0, 0, 0.2, 1) forwards, fade-in 0.72s cubic-bezier(0, 0, 0.2, 1) forwards;
}
.application-container {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1010;
  display: none;
}

@media screen and (min-width: 768px) {
  .application-container {
    position: absolute;
    bottom: 68px;
  }
}

.application-container.is-opened {
  display: block;
}

@media screen and (min-width: 768px) {
  .application-container--center {
    position: fixed;
    right: 0;
    bottom: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100vw;
    height: 100vh;
  }
}

.application-container--center.is-opened {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.application {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #aaa;
}

@media screen and (min-width: 768px) {
  .application {
    width: 200px;
    height: 200px;
  }
}

.application__close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 1rem;
  color: white;
  cursor: pointer;
}
.float-button__children.mono .float-button__child{
  opacity: 1;
}
/*# sourceMappingURL=styles.css.map */

@media screen and (max-width: 768px) {
  .pictotchatdesktop {
    display: none;
  }
  .pictotchatmobile {
    display: block;
  }
  #titretchatbot {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .pictotchatdesktop {
    display: block;
  }
  .pictotchatmobile {
    display: none;
  }
  #titretchatbot {
    display: block !important;
  }
}

.mdc-fab__icon-auto {
  width: 24px !important;
  height: 24px !important;
  font-size: 24px !important;
}

.customerAgentsPics img{
  display: unset;
}

.hide {
  display: none;
}

.contactstwebcallbackonline.loading-img {
  pointer-events: none;
}

.cx-widget.cx-common-container {
    right: 30px !important;
}
