.action-bar{
    background-color: #002c5f;
    width: auto;
    position: fixed;
    z-index: 9999;
    right: 0;
    bottom: 0;
    left: 0;
    box-shadow: 0 2px 13px 0 rgba(0, 0, 0, .04), 0 2px 55px 0 rgba(0, 0, 0, 0.13);
    @media (min-width: 1024px){
        top: 50%;
        transform: translateY(-50%);
        bottom: auto;
        left: auto;
        width: 91px;
        height: auto;
        max-height: calc(100vh - 22px);
        overflow-y: auto;
        padding: 15px 0;
    }
    .action-bar-content{
        display: flex;
        flex-direction: row;
        justify-content: center;
        @media (min-width: 1024px){
            flex-direction: column;
            justify-content: flex-start;
        }
    }
    a{
        color: #fff;
        background-color: #002c5f;
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        font-weight: 600;
        i{
            font-size: 30px;
            line-height: 1;
            color: #ffffff;
            @media (min-width: 1024px){
                font-size: 40px;
            }
        }
        span{
            text-align: center;
            font-size: 11px;
            line-height: 1;
            white-space: normal;
            color: #ffffff;
        }
        &:hover, &:active{
            background-color: #004489;
            span{
                text-decoration: underline;
            }
        }
    }
}