.vtdev-contact {
    position: fixed;
    right: 13px;
    background: #fff;
    border-radius: 5px;
    z-index: 9999;
    bottom: 70px;
    padding: 10px 5px;
    border: 1px solid #f2f2f2;
}

.vtdev-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vtdev-contact ul > li a {
    display: block;
    text-align: center;
    font-size: 10px;
    line-height: 15px;
    color: #515151;
    max-width: 72.19px;
    max-height: 54px;
    text-decoration: none;
    cursor: pointer;
}

.vtdev-contact ul > li a i {
    width: 36px;
    height: 36px;
    display: block;
    margin: auto;
}

.vtdev-contact ul > li a i.zalo {
    background: url(../src/img/zalo.png) no-repeat;
    background-size: contain;
}

.vtdev-contact ul > li a i.phone {
    background: url(../src/img/phone.svg) no-repeat;
    background-size: contain;
    margin-top: 10px;
}

.vtdev-contact ul > li a i.messenger {
    background: url(../src/img/messenger.svg) no-repeat;
    background-size: contain;
}

.vtdev-contact ul > li a i.vcart {
    background: url(../src/img/cart.png) no-repeat;
    background-size: contain;
}

.vtdev-contact ul > li a i.menu {
    background: url(../src/img/menu.svg) no-repeat;
    background-size: contain;
}

.text-vlabel {
    font-size: 11px;
    font-weight: 500;
}

.icart {
    display: block;
    height: auto;
    position: relative;
    vertical-align: middle;
}

[cart-icon-label]:after {
    background-color: #ffd800;
    border-radius: 99px;
    color: #000;
    content: attr(cart-icon-label);
    font-size: 11px;
    font-style: normal;
    font-weight: normal;
    height: 18px;
    width: 18px;
    line-height: 17px;
    position: absolute;
    right: 0px;
    top: 0px;
    transition: transform .2s;
    z-index: 1;
}

.vtdev-dot-wave {
    position: absolute;
    display: inline-block;
}

.vtdev-icon-wrap {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 100%;
    background: #35cc03;
}

.vdot {
    position: absolute;
    animation: dot-wave 1s linear infinite both;
    border-radius: 50%;
    border: solid 1px #229a00;
    width: 10px;
    height: 10px;
    top: 0;
    left: 0;
}

@keyframes dot-wave {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(2);
    }
}

.vtdev-phone .phone_animation {
    position: absolute;
    top: -16px;
    width: 55px;
    height: 55px;
    border-radius: 100%;
    background-image: linear-gradient(#ffffff, #f1f1f1, #ffffff);
    -webkit-animation: 1.5s infinite phone-ring;
    animation: 1.5s infinite phone-ring;
}

span.text-vlabel.mphone {
    position: relative;
    top: 35px;
}

@keyframes phone-ring {
    0% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    10% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }

    100% {
        transform: rotate(0deg) scale(1) skew(1deg);
    }
}

@media only screen and (max-width: 768px) {
    .vtdev-contact ul > li a {
        margin: 0 auto;
    }

    .vtdev-contact {
        width: 100%;
        border-radius: 0;
        height: 60px;
        bottom: 0;
        left: 0;
        z-index: 999;
        padding: 5px;
        box-shadow: 0 4px 10px 0 #000;
    }

    .vtdev-contact li {
        float: left;
        width: 20%;
    }

    .wzalo {
        top: 0;
        left: 130px;
    }

    .wmess {
        top: 0;
        right: 92px;
    }
}

@media only screen and (min-width: 769px) {
    .vtdev-phone,
    a.vmenu {
        display: none !important;
    }

    .wzalo {
        top: 14px;
    }

    .wmess {
        top: 80px;
    }

    .vtdev-dot-wave {
        right: 0px;
    }
}