/* Phosphor sizing chung: giữ kích cỡ hiển thị bằng icon cũ.
   Icon cũ vẽ trong box 1536/1792 = 0.857em, Phosphor regular vẽ trong box
   208/256 = 0.8125em => hệ số scale đo được là 0.857/0.8125 = 1.055. */
.ph,.ph-bold,.ph-light,.ph-thin,.ph-fill,.ph-duotone {
    display: inline-block;
    font-size: 1.055em;
    line-height: 1;
    vertical-align: -0.1em;
}
.ph-md {
    font-size: 1.055em !important;
}
.ph-xs {
    font-size: .79125em !important;
}
.ph-lg {
    font-size: 1.40667em !important;
    line-height: .75em;
    vertical-align: -.2125em;
}
.ph-xl {
    font-size: 1.5825em !important;
}
.ph-2x {
    font-size: 2.11em !important;
}
.ph-3x {
    font-size: 3.165em !important;
}
.ph-fw {
    width: 1.28571429em;
    text-align: center;
}
.ph-spin {
    animation: ph-spin 2s infinite linear;
}
@keyframes ph-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(359deg); }
}
.ph-rotate-270 {
    transform: rotate(270deg);
}
.ph-bounce {
    animation: ph-bounce 1s infinite;
}
@keyframes ph-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25%); }
}
