.flash-area {
    animation: flash 2s linear infinite;
    font-weight: bold;
}

@keyframes flash {
    0%,100% {
        background:#1097eb;
    }

    50% {
        background:#1097eb3d;
    }
}

.color-first-40mg {
    border-color: rgb(85, 148, 150);
    background-color: rgb(177, 255, 225);
}

.color-first-50mg {
    border-color: rgb(85, 148, 150);
    background-color: rgb(177, 255, 225);
}

.color-first-60mg {
    border-color: rgb(85, 148, 150);
    background-color: rgb(177, 255, 225);
}

.color-amount-80 {
    border-color: rgb(85, 148, 150);
    background-color: rgb(177, 204, 255);
}

ol.references li {
    list-style-type: none;
    counter-increment: cnt;
    text-indent: -1.5em;
    margin-bottom: 0.5em;
}
 
ol.references li::before {
    content: "(" counter(cnt) ") ";
}