/* Rocket Code: Perfect Promo Banner */
.rc-promo-notification {
    background: #9498a1;
    color: #ffffff;
    height: 56px;
    overflow: hidden;
    position: relative;
    text-align: center;
    transition: height 500ms ease;
    width: 100%;
    z-index: 500;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.rc-promo-notification .single-notification {
    box-sizing: border-box;
    left: 0;
    margin: 0 auto;
    opacity: 0;
    padding: 10px 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(-50px);
    transition: 500ms all ease-out;
    z-index: 0;
}

.rc-promo-notification .single-notification[data-link] {
    cursor: pointer;
}

.rc-promo-notification .single-notification.show {
    opacity: 1;
    transform: translateX(0);
    z-index: 100;
}

.rc-promo-notification p {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0;
}

.rc-promo-notification .notification-paginate {
    display: block;
    position: absolute;
    right: 200px;
    top: 10px;
    z-index: 5000;
}

.rc-promo-notification .notification-paginate a {
    border: 1px solid #ffffff;
    border-radius: 100px;
    display: inline-block;
    height: 20px;
    line-height: 1.25;
    margin: 2px 8px;
    opacity: 0.5;
    width: 20px;
}

.rc-promo-notification .notification-paginate a.rc-paginate-active,
.rc-promo-notification .notification-paginate a:hover
{
    opacity: 1;
}

@media (max-width: 1024px)
{

    .rc-promo-notification .single-notification {
        padding-bottom: 0;
    }

    .rc-promo-notification .notification-paginate {
        bottom: 0;
        height: 28px;
        display: block;
        line-height: 1;
        left: 0;
        right: 0;
        text-align: center;
        top: auto;
        width: 100%;
    }

    .rc-promo-notification .notification-paginate a {
        background: none repeat scroll 0 0 #ffffff;
        height: 10px;
        margin: 2px 4px;
        overflow: hidden;
        width: 10px;
    }

    .rc-promo-notification .notification-paginate a span {
        visibility: hidden;
    }
}