.consultation__wrapper {
	position: fixed;
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: end;
	pointer-events: none;
}
.consultation__links {
	display: flex;
	gap: 1rem;
	justify-content: end;
	flex-direction: column;
	pointer-events: auto;
}
.consultation__wrapper-icon {
	border: 0 !important;
	transition: all 0.3s ease;
}
.consultation__wrapper-icon:hover {
  transform: scale(1.1);
}
.consultation__icon-inner {
    position: relative;
	width: 50px;
	height: 50px;
}
.consultation-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
	padding: 0.75rem;
}
.icon-wa .consultation-icon {
    background-color: #29a71a;
}
.icon-mx .consultation-icon {
  background-image: linear-gradient(45deg, #00f, #53e, #93d);
  background-image: conic-gradient(from 340deg, #53e, #93d, #93d, #34b3e3, #60c1e5, #53e);
}
.icon-tg .consultation-icon {
    background-color: #1b92d1;
}
.consultation-icon svg {
	height: auto;
}
.consultation-pulse {
    width: 133%;
    height: 133%;
    border-radius: 50%;
    position: absolute;
    left: -16.6%;
    top: -16.6%;
    z-index: -1;
    transform: scale(0);
    opacity: 1;
    visibility: visible;
}
.icon-wa .consultation-pulse {
    background-color: #29a71a;
	animation: czmPulse 2s infinite;
}
.icon-mx .consultation-pulse {
    background-color: #53e;
	animation: czmPulse 2s infinite;
}
.icon-tg .consultation-pulse {
    background-color: #1b92d1;
	animation: czmPulse 2.09s infinite;
}
.consultation-pulse-hide {
    opacity: 0;
    visibility: hidden;
}
.consultation-pulse:nth-of-type(2n) {
    animation-delay: 0.5s;
}
.consultation-pulse.stop {
    animation: none;
}

.consultation__info {
    position: relative;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #e9e9e9;
    font-size: 14px;
    display: inline-block;
    color: var(--dark);
	pointer-events: auto;
}
.consultation__info:before {
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    top: 100%;
    right: 10px;
    left: auto;
    border-width: 10px;
    border-top-color: #e9e9e9;
}
.consultation__info:after {
    border-width: 9px;
    margin-right: 1px;
    border-top-color: #fff;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    top: 100%;
    right: 10px;
    left: auto;
    border-width: 9px;
    margin-right: 1px;
    border-top-color: #fff;
}


.czm-notify {
    position: absolute;
    align-items: center;
    justify-content: center;
    top: -5px;
    right: -5px;
    display: flex;
    transition: 0.3s ease all;
}
.czm-notify-hide {
    opacity: 0;
    visibility: hidden;
}
.czm-notify-circle {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    background-color: #f25;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    transition: 0.3s ease all;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.czm-notify-circle-show {
    opacity: 1;
    visibility: visible;
}
.czm-bounce {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: czmBounce;
    transform-origin: center bottom;
}
.czm-speech-bubble-close {
    position: absolute;
    top: -23px;
    right: 2px;
    opacity: 1;
    transition: 0.3s ease all;
    cursor: pointer;
    width: 8px;
    height: 8px;
}
.czm-speech-bubble-close svg {
    width: 8px;
    height: 8px;
}

@keyframes czmPulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
@keyframes czmBounce {
    from,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -10px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -5px, 0);
    }
    90% {
        transform: translate3d(0, -1px, 0);
    }
}

#jcont,
#jvLabelWrap {
  right: 6rem !important;
}

.__jivoMobileButton {
	z-index: 21474 !important;
}

@media (max-width: 1290px) {
.consultation__wrapper {
	right: 2rem;
	bottom: 7.5rem;
}
.consultation__info {
	display: none;
}
.consultation__icon-inner {
    width: 50px;
    height: 50px;
}
}