.wca-body,
.wca-body *,
.wca-body ::after,
.wca-body ::before {
    box-sizing: border-box;
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.wca-body {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    right: 20px;
    bottom: 10px;
    z-index: 99999999;
    font-size: 16px;
    line-height: 1.5;
    color: #2d2d2d;
}
.wca-modal .wca-link.wca-max {
    background-color: #6E5ADB; 
    
} 
.wca-modal .wca-link.wca-max img { 
    width: 22px; 
    height: 22px; 
}

.wca-body.wca-widget-loaded {
    visibility: visible;
    opacity: 1;
    bottom: 20px;
}
.wca-body.pos-left {
    right: auto;
    left: 20px;
}
.wca-screen-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    display: none;
}
.wca-screen-bg.visible {
    opacity: 0.5;
    visibility: visible;
}
.wca-body .wca-btn {
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.wca-body.round-btn .wca-btn-bg {
    border-radius: 50%;
}
.wca-body .wca-btn-bg {
    height: 100%;
    width: 100%;
    background-color: #df1f32;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0px 4px 30px 0 rgba(0, 0, 0, 0.1);
    transition: none;
    z-index: 1;
}
.wca-body .wca-btn-user-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wca-body .wca-btn-user-bg img {
    width: 100%;
}
.wca-body .wca-btn .wca-ico {
    display: flex;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
}
.wca-body .wca-btn:hover .wca-ico {
    transform: scale(1.15);
}
.wca-body .wca-btn .wca-ico path {
    fill: #fff;
}
.wca-body .wca-btn .wca-ico svg {
    width: 100%;
}
.wca-body .wca-btn-icon {
    padding: 20%;
}
.wca-body .wca-btn-close {
    display: flex;
    padding: 32%;
}
.wca-body .wca-btn-close svg {
    width: 100%;
}
.wca-btn .wca-ico.wca-btn-close {
    left: 100%;
    opacity: 0;
}
.wca-widget-active .wca-btn .wca-btn-icon {
    left: -100%;
    opacity: 0;
}
.wca-widget-active .wca-btn .wca-btn-close {
    left: 0;
    opacity: 1;
}
.wca-body .wca-btn:after,
.wca-body .wca-btn:before {
    position: absolute;
    border-radius: 10px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: solid 3px #df1f32;
    content: " ";
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation: wcaAnimation 1.5s ease-out 1s infinite;
    animation: wcaAnimation 1.5s ease-out 1s infinite;
}
.wca-body .wca-btn:before {
    border-width: 1px;
    -webkit-animation: wcaAnimation1 1.5s ease-out infinite;
    animation: wcaAnimation1 1.5s ease-out infinite;
}
@-webkit-keyframes wcaAnimation {
    0% {
        opacity: 0.5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }
}
@keyframes wcaAnimation {
    0% {
        opacity: 0.5;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }
}
@-webkit-keyframes wcaAnimation1 {
    0% {
        opacity: 0.5;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
    }
}
@keyframes wcaAnimation1 {
    0% {
        opacity: 0.5;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1.8);
        transform: scale(1.8);
    }
}
.wca-body.wca-widget-active .wca-btn:after,
.wca-body.wca-widget-active .wca-btn:before,
.wca-body .wca-btn:hover:after,
.wca-body .wca-btn:hover:before {
    border-color: transparent !important;
}
.wca-body.round-btn .wca-btn:after,
.wca-body.round-btn .wca-btn:before {
    border-radius: 100%;
}
.wca-body .wca-btn-hint {
    position: absolute;
    bottom: 0;
    max-width: 300px;
    width: -webkit-calc(100vw - 120px);
    width: calc(100vw - 120px);
    right: -webkit-calc(100% + 20px);
    right: calc(100% + 20px);
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0px 4px 30px 0 rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: #646b72;
    line-height: 1.35;
}
.wca-body.pos-left .wca-btn-hint {
    right: unset;
    left: -webkit-calc(100% + 20px);
    left: calc(100% + 20px);
}
.wca-body .wca-btn-hint.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}
.wca-btn-hint .wca-bold {
    font-weight: 700;
    color: #2d2d2d;
    padding-bottom: 7px;
    font-size: 14px;
}
.wca-btn-hint .wca-btn-close,
.wca-chat-window .wca-btn-close {
    position: absolute;
    cursor: pointer;
    right: 5px;
    top: 5px;
    height: 25px;
    width: 25px;
    overflow: hidden;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px;
    line-height: 1;
    opacity: 0;
}
.wca-chat-window .wca-btn-close {
    opacity: 1;
}
.wca-body .wca-btn-hint:hover .wca-btn-close {
    opacity: 1;
}
.wca-body .wca-btn-hint:hover .wca-btn-close:hover,
.wca-chat-window .wca-btn-close:hover {
    background: rgba(0, 0, 0, 0.5);
}
.wca-body .wca-modal {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    min-height: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0px 4px 30px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.wca-body.pos-left .wca-modal {
    left: 0;
    right: auto;
}
.wca-widget-active .wca-modal {
    bottom: 80px;
    opacity: 1;
    visibility: visible;
}
.wca-body .wca-modal .wca-modal-header {
    background-color: #df1f32;
    min-height: 25px;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.wca-modal .wca-modal-header .wca-modal-header-gradient {
    background-image: linear-gradient(135deg, rgba(47, 53, 66, 0.7) 0%, rgba(47, 53, 66, 0.4) 100%);
    padding: 20px 30px 45px;
}
.wca-modal .wca-modal-body {
    margin-top: -15px;
    padding: 20px 22px 10px;
    background: #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.02);
}
.wca-modal .wca-h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
.wca-modal .wca-p {
    font-size: 15px;
    opacity: 0.9;
}
.wca-modal .wca-link {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background-color: #2f3542;
    margin-bottom: 10px;
    color: #fff;
    padding: 8px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
}
.wca-modal .wca-link:hover {
    text-decoration: none;
    color: #fff;
    box-shadow: inset 0 0 100px 20px rgba(0, 0, 0, 0.25);
}
.wca-modal .wca-link img {
    display: inline-block;
    height: 18px;
    width: auto;
    margin-right: 9px;
    position: relative;
    top: -1px;
    -webkit-filter: drop-shadow(0 3px 1px rgba(0, 0, 0, 0.1));
    filter: drop-shadow(0 3px 1px rgba(0, 0, 0, 0.1));
}
.wca-modal .wca-link.wca-tgm {
    background-color: #1f98d4;
}
.wca-modal .wca-link.wca-wpp {
    background-color: #25d366;
}
.wca-modal .wca-link.wca-vbr {
    background-color: #665cac;
}
.wca-modal .wca-link.wca-vk {
    background-color: #5b88bd;
}
.wca-modal .wca-link.wca-fb {
    background-color: #0284ff;
}
.wca-modal .wca-link.wca-skp {
    background-color: #00aff0;
}
.wca-modal .wca-link.wca-cht {
    background-color: #4a4262;
}
.wca-modal .wca-link.wca-phn {
    background-color: #ce3d3d;
    overflow: visible;
    z-index: 1;
}
.wca-modal .wca-link.wca-phn span.wca-tooltip {
    display: block;
    position: absolute;
    top: 14%;
    left: 100%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0px 4px 30px 0 rgba(0, 0, 0, 0.1);
    color: #272727;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
}
.wca-modal .wca-link.wca-phn span.wca-tooltip.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-10px);
}
.wca-modal .wca-link.wca-eml {
    background-color: #2952c1;
}
.wca-modal .wca-link.wca-ig {
    background-color: #cf0071;
}
.wca-modal .wca-link.wca-wch {
    background-color: #12c600;
}
.wca-modal .wca-modal-manual {
    border-top: 1px solid #ececec;
    padding: 15px 15px 5px;
    border-radius: 10px;
    background: #f5f5f5;
    margin: 5px -15px 0;
}
.wca-chat-window {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: -100%;
    z-index: 1;
    background: #fff;
    border-radius: 9px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}
.wca-chat-window #wca-chat-window-inner {
    height: 100%;
    width: 100%;
}
.wca-chat-window.visible {
    right: 0;
    opacity: 1;
    visibility: visible;
}
.wca-modal-messengers > * span.wca-short {
    display: none;
}
.link-style-1 .wca-modal .wca-link.wca-phn span.wca-tooltip {
    left: 44%;
}
.link-style-2 .wca-modal-messengers,
.link-style-3 .wca-modal-messengers,
.link-style-4 .wca-modal .wca-modal-messengers,
.link-style-5 .wca-modal .wca-modal-messengers {
    display: flex;
    flex-wrap: wrap;
}
.link-style-2 .wca-modal-messengers > * {
    width: 48%;
    margin-right: 4%;
}
.link-style-2 .wca-modal-messengers > :nth-child(2n) {
    margin-right: 0;
}
.link-style-2 .wca-modal-messengers > * span.wca-short {
    display: inline-block;
}
.link-style-2 .wca-modal-messengers > * span.wca-long {
    display: none;
}
.link-style-3 .wca-modal-messengers > * {
    width: 31.333%;
    margin-right: 3%;
}
.link-style-3 .wca-modal-messengers > :nth-child(3n) {
    margin-right: 0;
}
.link-style-3 .wca-modal-messengers > * span,
.link-style-4 .wca-modal-messengers > * span,
.link-style-5 .wca-modal-messengers > * span {
    display: none;
}
.link-style-3 .wca-modal-messengers > * img,
.link-style-4 .wca-modal-messengers > * img,
.link-style-5 .wca-modal-messengers > * img {
    margin: 0;
    height: 30px;
}
.link-style-4 .wca-modal-messengers > * {
    width: 22%;
    margin-right: 4%;
}
.link-style-4 .wca-modal-messengers > :nth-child(4n) {
    margin-right: 0;
}
.link-style-5 .wca-modal-messengers {
    justify-content: center;
}
.link-style-5 .wca-modal-messengers > * {
    width: 22%;
    margin-right: 4%;
    height: 65px;
}
.link-style-5 .wca-modal-messengers > :nth-child(4n) {
    margin-right: 0;
}
@media (max-width: 350px) {
    .link-style-5 .wca-modal-messengers > * {
        height: 56px;
    }
    .wca-modal .wca-modal-header .wca-modal-header-gradient {
        padding: 15px 25px 35px;
    }
}
.wca-body.link-radius-2 .wca-link {
    border-radius: 12px;
}
.wca-body.link-radius-3 .wca-link {
    border-radius: 40px;
}
#wca-to-top {
    display: flex;
    visibility: visible;
    height: 40px;
    width: 60px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    bottom: 80px;
    right: 0;
    border-radius: 10px;
    background-color: #000;
    opacity: 0.18;
    align-items: center;
    justify-content: center;
}
#wca-to-top.hidden {
    opacity: 0;
    visibility: hidden;
}
.round-btn #wca-to-top {
    border-radius: 30px;
}
#wca-to-top:hover {
    opacity: 0.5;
}
#wca-to-top svg {
    fill: #fff;
    width: 25px;
}
#wca_vk_modal {
    right: -11px !important;
}
#wca_vk_modal.pos-left {
    right: auto !important;
    left: -11px !important;
}
@media (max-width: 767.98px) {
    .wca-body {
        bottom: 5px;
        right: 12px;
    }
    .wca-body.pos-left {
        left: 12px;
    }
    .wca-body.wca-widget-loaded {
        bottom: 12px;
    }
    .wca-body .wca-btn-hint .wca-btn-close {
        font-size: 13px;
        opacity: 1;
    }
    .wca-body .wca-btn-hint {
        width: -webkit-calc(100vw - 100px);
        width: calc(100vw - 100px);
        right: -webkit-calc(100% + 15px);
        right: calc(100% + 15px);
        padding: 12px;
    }
    .wca-body.pos-left .wca-btn-hint {
        left: -webkit-calc(100% + 20px);
        left: calc(100% + 15px);
    }
    .wca-body .wca-modal {
        max-width: -webkit-calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        max-height: -webkit-calc(100vh - 104px);
        max-height: calc(100vh - 104px);
        overflow-y: scroll;
    }
    .wca-body .wca-btn:hover .wca-ico {
        transform: none;
    }
    .wca-modal .wca-link.wca-phn span.wca-looltip {
        display: none;
    }
    .wca-screen-bg {
        display: block;
    }
    #wca-to-top {
        display: none;
    }
    #wca_vk_modal {
        right: -27px !important;
    }
}
