
/* Sticky Badge CSS */

.papstickyBadge {
    transition: right 0.5s;
}
    /*.pap-circle-plus {
    width: 50px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    top: 4px;
    padding-bottom: 4px
}*/

    .papstickyBadge a {
        display: flex;
        background: #fff200;
        color: #000;
        padding: 20px;
        cursor: pointer;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 16px;
        padding: 10px 25px;
        border-radius: 80px 0 0 80px;
        position: relative;
        transition: right 1s;
        position: fixed;
        top: 260px;
        z-index: 8;
        right: 0;
        width: 165px;
    }


        .papstickyBadge a.papmedicaid span.icon:before {
            content: "";
            background: url(/siteassets/img/madicaid-29x29.svg) no-repeat;
            width: 32px;
            height: 32px;
            display: inline-block;
            margin-top: 4px;
        }

        .papstickyBadge a.papmedicaid:hover span:before {
            background: url(/siteassets/img/madicaid-hover-29x29.svg) no-repeat !important;
        }

    .papstickyBadge a {
        top: 200px;
    }

        .papstickyBadge a span {
            margin-left: 13px;
        }

        .papstickyBadge a:hover {
            color: #e1770f;
            background: #fff;
        }

    .papstickyBadge.papcollapsestickyBadge {
        right: -95px;
        transition: right 0.5s;
    }

        .papstickyBadge.papcollapsestickyBadge a {
            right: -100px;
        }

            .papstickyBadge.papcollapsestickyBadge a:hover {
                right: 0;
            }

    .papstickyBadge a.papmedicaid span.icon {
        margin-left: 0;
        line-height: 0;
        width: 29px;
        height: 32px;
    }

@media (max-width: 991px) {

    .papstickyBadgeMobile.papcollapsestickyBadge {
        top: 0;
        transition: top 0.6s;
    }

    .papstickyBadge {
        display: none;
    }

    .papstickyBadgeMobile {
        position: fixed;
        top: 95px;
        background: #e1770f;
        left: 50%;
        transform: translateX(-50%);
        padding: 20px 10px;
        border-radius: 0 0 16px 16px;
        transition: top 0.6s;
        z-index: 1;
    }



        .papstickyBadgeMobile a {
            color: #fff;
            display: inline-block;
            padding: 0 20px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
        }
}

@keyframes slideInFromright {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%);
    }
}

a.papmedicaid {
    animation: 1s ease-out 0s 1 slideInFromright;
}

@media (min-width: 992px) and (max-width: 1399px) {
    .papstickyBadge a:last-child {
        top: 320px;
    }
}

@media (max-width: 767px) {
    .papstickyBadgeMobile {
        width: 305px;
        padding: 15px 0;
        text-align: center;
    }

        .papstickyBadgeMobile a {
            padding: 0 10px;
        }
}
