/* The code below fixes a bug in the Sphinx Read the Docs theme that caused
equation numbers to appear on top of an equation rather than on its right */
/* see https://github.com/readthedocs/sphinx_rtd_theme/pull/383#issuecomment-355772801 */

.eqno {
    margin-left: 5px;
    float: right;
}
.math .headerlink {
    display: none;
    visibility: hidden;
}
.math:hover .headerlink {
    display: inline-block;
    visibility: visible;
    margin-right: -0.7em;
}
