.ui-btn {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 6px;
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.ui-btn > .svg-fill{
    fill: #888;
}

.ui-btn--chart {
    background-image: url('../img/chart.png');
}

.ui-btn-contact {
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
}

.ui-btn-contact--wa {
    background-image: url('../img/wa.png');
}

.ui-btn-contact--tg {
    background-image: url('../img/tg.png');
}

@media (min-width: 1200px) {
    .ui-btn-contact{
        opacity: 0.7;
        transition: opacity 0.3s ease-in-out;
    }
    .ui-btn-contact:hover{
        opacity: 1;
    }
}