﻿.phone-vr {
    position: fixed;
    width: 65px;
    bottom: 200px;
    right: 32px;
    z-index: 2000;
    display: none;
}

.phone-vr-circle-fill {
    width: 65px;
    height: 65px;
    top: 12px;
    left: 12px;
    position: absolute;
    box-shadow: 0 0 0 0 #2DB34B;
    background-color: rgba(45, 179, 75, 0.7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
}

.phone-vr-img-circle {
    background-color: #2DB34B;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 25px;
    left: 25px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

    .phone-vr-img-circle .box-image {
        display: block;
        line-height: 37px;
        transition: all .5s;
    }

    .phone-vr-img-circle img {
        max-width: 25px;
        display: inline;
        margin: unset;
        height: unset;
    }

@-webkit-keyframes phone-vr-circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

@-webkit-keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

@keyframes zoom {
    0% {
        transform: scale(.9)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent
    }
}

.call-page-expand {
    width: 120px;
    padding: 16px;
    background-color: #FFFFFF;
    position: absolute;
    right: 0px;
    bottom: -25px;
    max-height: 0;
    height: auto;
    opacity: 0;
    z-index: -1;
    overflow: hidden;
    -webkit-transition: all .4s ease 0s;
    -moz-transition: all .4s ease 0s;
    transition: all .4s ease 0s;
    padding-right: 10px;
}

    .call-page-expand.active {
        max-height: 500px;
        opacity: 1;
    }

    .call-page-expand .call-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }

        .call-page-expand .call-item:last-child {
            margin-bottom: 0;
        }

.call-item .call-item-text a {
    font-size: 15px;
    line-height: 120%;
    color: #000000;
}

.call-item .call-item-icon {
    font-size: 12px;
    line-height: 120%;
    color: #F73E4E;
}

.btn-call-page {
    cursor: pointer;
}

    .btn-call-page.active .phone-vr-circle-fill {
        animation: none;
        background-color: transparent;
    }

    .btn-call-page.active .phone-vr-img-circle {
        animation: none;
        background-color: #EB0A1E;
    }

        .btn-call-page.active .phone-vr-img-circle .box-image {
            transform: rotate(126deg);
        }

.phone-vr-container {
    position: relative;
}

@media screen and (max-width : 768px) {
    .phone-vr{
        display: block;
    }
}