.chapter-bottom-nav
{
    display: none;
}

@media only screen and (max-width: 768px)
{
    .chapter-bottom-nav
    {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 12px 20px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(34, 45, 92, 0.1);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    }

    .chapter-bottom-nav .verse-bottom-nav-ref
    {
        padding: 8px 24px;
    }
}


body
{
   font-family: Georgia,Helvetica,Tahoma,Sans-Serif,Gaura Times,Serif
}


.chapter-desc, .verse-list .verse .verse-desc
{
    font-size: var(--font-size-reading);
    padding: 0 1em;
    line-height: 1.8;
    text-align: justify;
    letter-spacing: 0.3px;
}

.verse-list .verse
{
    margin-bottom: 20px;
    padding-bottom: 0.5em;
}

.verse-list .verse .verse-head h2
{
    position: relative;
    font-family: 'Libre Baskerville', serif;
}

.verse-list .verse .verse-head a
{
    color: var(--color-secondary);
    text-align: center;
    background-color: var(--color-primary);
    margin: 5px 0;
    display: block;

    border-radius: 2px;
    transition: all 0.1s ease-in-out;

}

.verse-list .verse .verse-head h2 span
{
    position: absolute;
    top: 0;
    right: 10px;
    height: 100%;

    display: none;
    align-items: center;
    text-decoration: underline;
}

.verse-list .verse .verse-head a .view
{
    display: none;
}

.verse-list .verse .verse-head h2
{
    line-height: 35px;
    font-size: var(--font-size-md);
    font-weight: 400;
    margin-bottom: 10px;
    margin-top: 0;
}

.verse-list .verse .verse-head:hover a
{
    background-color: var(--color-secondary);
    color: var(--color-primary);

    text-decoration: none;
}

.gita-side-content-wrapper img.swamiji
{
    width: 100%;
}

@media screen and (min-width: 721px)
{
    .verse-list .verse:hover .view-commentary
    {
        display: block;
        font-size: 0.6em;
        text-decoration: none;
    
        pointer-events: none;
    }
    .verse-list .verse .verse-head:hover h2 .view-commentary
    {
        color: var(--color-primary);
    }
}

@media screen and (max-width: 720px)
{
    .verse-list .verse .verse-head h2 .view
    {
        display: block;
        font-size: 0.6em;
        top: 0px;

        text-decoration: none;
    }

    .verse-list .verse .verse-head:hover h2 .view
    {
        color: var(--color-primary);
    }
}