/* UAE Dirham Currency Symbol - D with Double Horizontal Lines */
.aed-symbol {
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.aed-symbol::before {
    content: 'D';
}

.aed-symbol::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    box-shadow: 0 5px 0 1.5px currentColor;
}
