/*
Admin css
*/


.wppn_notification_bel {
    width: 80px;
    height: 80px;
    position: fixed;
    bottom: 30px;
    left: 35px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.125s ease-in-out 0s;
    -moz-transition: all 0.125s ease-in-out 0s;
    -ms-transition: all 0.125s ease-in-out 0s;
    -o-transition: all 0.125s ease-in-out 0s;
    transition: all 0.125s ease-in-out 0s;
    font-size: 35px;
    padding: 15px;
    text-align: center;
    color: #fff;
	
	border: 5px solid #DE5044;
    background-color: #DE5044;
}



.wppn_notification_bel.wppn_push_enabled{
	border: 5px solid #17A15E;
    background-color: #17A15E;
}

.wppn_notification_bel.wppn_push_disabled{
	border: 5px solid #DE5044;
    background-color: #DE5044;
}

.wppn_notification_bel.wppn_push_computing{
    border: 5px solid #bb8f17;
    background-color: #bb8f17;
}

.wppn_notification_bel.wppn_push_incompatible{
	border: 5px solid #C0C0C0;
    background-color: #C0C0C0;
}



.wppn_notification_bel:hover{

	-webkit-box-shadow: 2.736px 7.518px 20px 0px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 2.736px 7.518px 20px 0px rgba(0, 0, 0, 0.14);
    -o-box-shadow: 2.736px 7.518px 20px 0px rgba(0, 0, 0, 0.14);
    box-shadow: 2.736px 7.518px 20px 0px rgba(0, 0, 0, 0.14);
    -webkit-transform: translate(0, -5px);
    -moz-transform: translate(0, -5px);
    -ms-transform: translate(0, -5px);
    -o-transform: translate(0, -5px);
    transform: translate(0, -5px);
}


