﻿@charset "utf-8";


.virtualAssistantIcon .bubble-mobile {
    z-index: 4000;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 18px;
    background-color: #334d74;
    color: #000;
    border-radius: 8px 8px 2px 8px;
    border: 1px solid #fff;
}

.virtualAssistantIcon .bubble {
    z-index: 4000;
    position: relative;
    min-width: 100%;
    max-width: 160px !important;
    margin-bottom: 20px;
    line-height: 1.2;
    padding: 10px;
    background-color: #fff;
    color: #000;
    border-radius: 8px;
    box-shadow: 0 0 6px rgb(0 0 0 / 16%);
    text-align: center;
}

.virtualAssistantIcon a {
    display: block;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 3px 6px 12pxrgba(0,0,0,.14)
}

.virtualAssistantIcon .bubble-mobile:before, .virtualAssistantIcon .bubble-mobile .dot:before, .virtualAssistantIcon .bubble-mobile .dot:after {
    content: '';
    border-radius: 50%;
    background-color: #00caf4;
    position: absolute;
    top: 6px;
    width: 4px;
    height: 4px;
    animation-name: virtualAssistantIconDot;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.39,.1,.54,1);
}

.virtualAssistantIcon .bubble-mobile:before {
    left: 6px;
    animation-delay: 2.5s
}

.virtualAssistantIcon .bubble-mobile .dot:before {
    left: 12px;
    animation-delay: 3s
}

.virtualAssistantIcon .bubble-mobile .dot:after {
    left: 18px;
    animation-delay: 3.5s
}

.virtualAssistantIconHolder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0
}

.virtualAssistantIcon {
    z-index: 4000;
    position: fixed;
    bottom: 120px;
    right: 20px;
    width: 160px;
    border-radius: 50%;
    animation-name: virtualAssistantIconAni;
    animation-duration: 3s;
    animation-timing-function: cubic-bezier(.39,.1,.54,1)
}

    .virtualAssistantIcon.inUse {
        bottom: auto
    }

    .virtualAssistantIcon .bubble {
        z-index: 4000;
        position: relative;
        min-width: 100%;
        max-width: 160px !important;
        margin-bottom: 20px;
        line-height: 1.2;
        padding: 10px;
        background-color: #fff;
        color: #000;
        border-radius: 8px;
        box-shadow: 0 0 6px rgba(0,0,0,.16);
        text-align: center
    }

        .virtualAssistantIcon .bubble:before {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            margin-left: -8px;
            bottom: -12px;
            left: 50%;
            box-sizing: border-box;
            border: 6px solid #fff;
            border-color: transparent transparent #fff #fff;
            transform-origin: 0 0;
            transform: rotate(-45deg);
            box-shadow: -2px 2px 6px rgba(0,0,0,.16)
        }

@media(max-width:1023px) {
    .virtualAssistantIcon {
        width: 83px;
        bottom: 20px;
        animation-name: virtualAssistantIconAniMobile
    }

        .virtualAssistantIcon .bubble {
            display: none
        }

        .virtualAssistantIcon .bubble-mobile {
            display: block
        }

        .virtualAssistantIcon a {
            width: 70px;
            height: 70px;
            margin-right: 0
        }
}

@keyframes virtualAssistantIconAni {
    0% {
        right: -200px
    }

    25% {
        right: 20px;
        bottom: 120px
    }

    35% {
        bottom: 170px
    }

    40% {
        bottom: 120px
    }

    45% {
        bottom: 170px
    }

    50% {
        bottom: 120px
    }
}

@keyframes virtualAssistantIconAniMobile {
    0% {
        right: -200px
    }

    25% {
        right: 20px;
        bottom: 20px
    }

    35% {
        bottom: 70px
    }

    40% {
        bottom: 20px
    }

    45% {
        bottom: 70px
    }

    50% {
        bottom: 20px
    }
}

@keyframes virtualAssistantIconDot {
    0% {
        opacity: 1
    }

    25% {
        opacity: .3
    }

    50% {
        opacity: 1
    }

    100% {
        opacity: 1
    }
}