.heart {
    fill: red;
    position: relative;
    top: 0px;
    width: 15px;
    animation: pulse 1.5s ease-in-out infinite;
}

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

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.font-alpida {
    font-family: alpida unicode system;
    /* font-family: ALKATIP Tor; */
    /* font-family: UKIJ Nasq; */
    /* font-family: Scheherazade; */
}

.rtl-grid {
    direction: rtl;
}