/* Rewards Notifications */

#rewards_notifications_div {
    position: fixed;
    top: 64px;
    right: 10px;
    max-width: 320px;
    z-index: 199999999;

}

#rewards_notifications_div .notification_item {
    margin: 10px auto;
    padding: 15px 48px 15px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-sizing: border-box;
    width: 100%;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 9999;
    cursor: pointer;
    -webkit-transition: all 0.45s ease-in-out;
    -moz-transition: all 0.45s ease-in-out;
    -ms-transition: all 0.45s ease-in-out;
    -o-transition: all 0.45s ease-in-out;
    transition: all 0.45s ease-in-out;

}

#rewards_notifications_div .notification_item:hover {
    background-color: #f9f9f9;
}

/* Unlock Offer notification */

#rewards_notifications_div .notification_item.unlock_offer,
#rewards_notifications_div .notification_item.offer_confirmation {
    padding-left: 48px;
    background: #3da3e9;
    color: #fff;
    border-color: #3595d7;

}

#rewards_notifications_div .notification_item .notification_close_btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 100%;
    border: none;
    border-left: 1px solid #eee;
    background: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;

}

#rewards_notifications_div .notification_item.unlock_offer > .notification_close_btn,
#rewards_notifications_div .notification_item.offer_confirmation > .notification_close_btn {
    color: #fff;
    border-color: rgba(0, 0, 0, 0.2);

}

#rewards_notifications_div .notification_item.unlock_offer .material-icons.unlock_offer {
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -12px;

}

#rewards_notifications_div .notification_item p {
    /*color: #3da3e9;*/
    margin: 0;
    font-size: 13px;
    line-height: 18px;
    padding: 0 10px;
}

/* VCP notification */

#rewards_notifications_div .notification_item.vcp_events {
    padding-left: 48px;
    background: #eeb111;
    color: #242423;
    border-color: #eeb111;
}

#rewards_notifications_div .notification_item.vcp_events .material-icons.vcp_events {
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -12px;
}

#rewards_notifications_div .notification_item.vcp_events .notification_close_btn {
    color: #242423;
    border-color: rgba(0, 0, 0, 0.2);
}

#rewards_notifications_div .notification_item.vcp_events p {
    color: #242423;
    margin: 0;
    font-size: 13px;
    line-height: 18px;
    padding: 0 10px;
}

/* End VCP notification */

#rewards_notifications_div .notification_item .notification_close_btn:hover {
    opacity: 0.8;
}

#rewards_notifications_div .notification_item.unlock_offer p {
    color: #fff;
}

#rewards_notifications_div .notification_item a {
    text-decoration: none;
}

#rewards_notifications_div .notification_item span {
    color: #3da3e9;
    font-weight: bold;
    text-transform: uppercase;

}

#rewards_notifications_div .notification_item span.rewards_points_amt {
    color: #fff;
}

/* Rewards Notifications ============ */
