/* Sticky Badge CSS */

.stickyBadge {
    transition: right 0.5s;
}

    .stickyBadge a {
        display: flex;
        background: #fff200;
        color: #000 !important;
        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;
    }


        .stickyBadge a.request-rep.pap span.icon:before {
            content: "";
            background: url(/siteassets/img/madicaid-29x29.svg) no-repeat;
            width: 32px;
            height: 32px;
            display: inline-block;
            margin-top: 4px;
        }

        .stickyBadge a.request-rep.pap:hover span:before {
            background: url(/siteassets/img/madicaid-hover-29x29.svg) no-repeat !important;
        }

    .stickyBadge a {
        top: 200px;
    }

        .stickyBadge a span {
            margin-left: 13px;
        }

        .stickyBadge a:hover {
            color: #e1770f !important;
            background: #fff;
        }

    .stickyBadge.collapsestickyBadge {
        right: -95px;
        transition: right 0.5s;
    }

        .stickyBadge.collapsestickyBadge a {
            right: -100px;
        }

            .stickyBadge.collapsestickyBadge a:hover {
                right: 0;
            }

    .stickyBadge a.request-rep span.icon {
        margin-left: 0;
        line-height: 0;
        width: 29px;
        height: 32px;
    }

@media (max-width: 991px) {

    .stickyBadgeMobile.collapsestickyBadge {
        top: 0;
        transition: top 0.6s;
    }

    .stickyBadge {
        display: none;
    }

    .stickyBadgeMobile {
        /*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;
    }



        .stickyBadgeMobile a {
            color: #fff !important;
            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.pap {
    animation: 1s ease-out 0s 1 slideInFromright;
}

@media (min-width: 992px) and (max-width: 1399px) {
    .stickyBadge a:last-child {
        top: 320px !important;
    }
}

@media (max-width: 767px) {
    .stickyBadgeMobile {
        width: 305px;
        padding: 15px 0;
        text-align: center;
    }

        .stickyBadgeMobile a {
            padding: 0 10px;
        }
}
