/*
Theme Name: VIFONIC
Theme URI: http://vifonic.vn/
Author: VIFONIC
Author URI: http://vifonic.vn/
Description: Multi-Purpose Responsive WooCommerce Theme
Version: 3.2.2
Text Domain: flatsome
License:
License URI:
*/

/***************
All custom CSS should be added to VIFONIC > Advanced > Custom CSS,
or in the style.css of a Child Theme.
***************/

@import "assets/css/vifonic.css";
.box61 {
    position: fixed;   /* cố định khi cuộn */
    bottom: 20px;      /* cách mép dưới 20px */
    left: 20px;        /* cách mép trái 20px */
    display: flex;     /* xếp theo flexbox */
    flex-direction: column; /* xếp dọc (theo dòng) */
    gap: 10px;         /* khoảng cách giữa các nút */
    z-index: 9999;     /* đảm bảo nằm trên cùng */
}

.box61 a {
    display: inline-block;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
}

.box61 a img {
    width: 40px;   /* chỉnh kích thước logo */
    height: 40px;
    display: block;
}
.box61 a:hover img { /* hiệu ứng khi chạm logo */
    animation: pulse 0.8s infinite; 
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

