/**
* Whatsapp, Messenger, Phone, E-mail bubbles for Prestashop
* @author    Bruno Bincoletto (contato@bedigital.com.br)
* @copyright Copyright (c) beDigital Web Solutions (https://www.bedigital.com.br)
* @license   https://www.bedigital.com.br/license-p.txt
**/
/* START TOOLTIP STYLES */
[tooltip] {
  position: relative;
  /* opinion 1 */ }

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none;
  /* opinion 2 */
  font-size: .9em;
  /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0; }

[tooltip]::before {
  content: '';
  border: 5px solid transparent;
  /* opinion 4 */
  z-index: 1001;
  /* absurdity 1 */ }

[tooltip]::after {
  content: attr(tooltip);
  /* magic! */
  text-align: center;
  /* 
  	Let the content set the size of the tooltips 
  	but this will also keep them from being obnoxious
  	*/
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .5ch;
  box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
  background: #FFF;
  color: #333;
  z-index: 1000;
  /* absurdity 2 */ }

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block; }

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important; }

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #FFF; }

[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px); }

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -0.5em); }

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #FFF; }

[tooltip][flow^="down"]::after {
  top: calc(100% + 5px); }

[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, 0.5em); }

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #FFF;
  left: calc(0em - 5px);
  transform: translate(-0.5em, -50%); }

[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-0.5em, -50%); }

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #FFF;
  right: calc(0em - 5px);
  transform: translate(0.5em, -50%); }

[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(0.5em, -50%); }

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0); } }
@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%); } }
/* FX All The Things */
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards; }

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards; }

#becontact {
  display: block !important;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
  width: 50px; }
  #becontact #chatbc,
  #becontact #bcbuttons a {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    color: #FFF;
    text-align: center;
    line-height: 45px;
    display: block;
    background: #0099FF;
    margin-bottom: 10px;
    -webkit-box-shadow: 2px 2px 8px 0px #AAA;
    -moz-box-shadow: 2px 2px 8px 0px #AAA;
    box-shadow: 2px 2px 8px 0px #AAA;
    margin: 0px;
    cursor: pointer; }
    #becontact #chatbc svg,
    #becontact #bcbuttons a svg {
      width: 55%;
      height: 50px;
      vertical-align: middle;
      fill: #FFF;
      -webkit-transition: -webkit-transform .5s ease-in-out;
      transition: transform .5s ease-in-out; }
  #becontact #chatbc:hover svg,
  #becontact #bcbuttons a:hover svg {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); }
  #becontact #icob {
    display: none; }
  #becontact #bcbuttons {
    z-index: 99999;
    position: absolute;
    bottom: 50px;
    margin: 0px;
    display: none; }
    #becontact #bcbuttons li {
      list-style: none;
      padding-bottom: 5px; }
    #becontact #bcbuttons a#emailbc {
      background-color: #AAAAAA; }
    #becontact #bcbuttons a#facebookbc {
      background-color: #4267B2; }
    #becontact #bcbuttons a#whatsappbc {
      background-color: #4DC147; }
    #becontact #bcbuttons a#phonebc {
      background-color: #888888; }
    #becontact #bcbuttons #viberbc {
      background-color: #7360F2; }
    #becontact #bcbuttons #telegrambc {
      background-color: #32A7D9; }
    #becontact #bcbuttons #wechatbc {
      background-color: #00C323; }
    #becontact #bcbuttons #tiktokbc {
      background-color: #111; }
    #becontact #bcbuttons #instagrambc {
      background: #833ab4;
      background: linear-gradient(0deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%); }
    #becontact #bcbuttons #snapchatbc {
      background-color: #F6F600; }
      #becontact #bcbuttons #snapchatbc svg {
        fill: #000; }
    #becontact #bcbuttons #skypebc {
      background-color: #02AAEB; }
    #becontact #bcbuttons #linebc {
      background-color: #00B300; }

#deskphone {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #EEE;
  z-index: 9999;
  padding: 10% 0;
  text-align: center; }
  #deskphone h2 a {
    font-size: 3em;
    color: #333; }
  #deskphone span {
    font-weight: bold;
    display: block;
    padding: 20px;
    cursor: pointer; }
  #deskphone span:hover {
    text-decoration: underline; }

/*# sourceMappingURL=becontact.css.map */
