/* =========================================================
   BOXICONS TRANSFORMATIONS
   Arquivo corrigido e atualizado
========================================================= */

.bx-rotate-90 {
    transform: rotate(90deg);
}

.bx-rotate-180 {
    transform: rotate(180deg);
}

.bx-rotate-270 {
    transform: rotate(270deg);
}

.bx-flip-horizontal {
    transform: scaleX(-1);
}

.bx-flip-vertical {
    transform: scaleY(-1);
}

/* =========================================================
   MELHORIAS DE COMPATIBILIDADE
========================================================= */

.bx-rotate-90,
.bx-rotate-180,
.bx-rotate-270,
.bx-flip-horizontal,
.bx-flip-vertical {
    display: inline-block;
    backface-visibility: hidden;
    transform-origin: center center;
    will-change: transform;
}

/* =========================================================
   REMOVIDO
========================================================= */
/*
As linhas antigas abaixo foram removidas porque:
- são obsoletas
- eram usadas apenas no Internet Explorer
- causam warnings desnecessários
- deixam o CSS mais pesado

-ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(...)';
*/