.wizi_notifcations_button {
    width: 50px;
    height: 50px;
    background-color: #029398;
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    left: 15px;
    border-radius: 50%;
    z-index: 99999;
    display: flex;
    cursor: pointer;
}

.wizi_notifications_bells {
    display: flex;
    margin: auto;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    /*border: 2px solid white;*/

}

.wizi_notifications_bells i {
    font-size: 21px;
    margin: auto;
    color: white;
}

.wizi_notifcations_list {
    width: 400px;
    height: 250px;
    border-radius: 5px;
    background-color: white;
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    left: 80px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
    overflow: auto;
    padding: 5px;
}

.wizi_notifications_list_one {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #eaeaea;
    display: flex;
    margin-bottom: 5px;
    box-shadow: 2px 2px 0 #eaeaea;
    cursor: pointer;
}

.wizi_notifications_list_one:hover {
    box-shadow: 1px 1px 0 #eaeaea;
    background-color: #fafafa;
}

.wizi_notifications_list_one_icon {
    padding: 5px 10px;
    color: #0D47A1;
    font-size: 15px;
    display: flex;
}

.wizi_notifications_list_one_icon i {
    margin: auto;
}

.wizi_notifications_list_one_text {
    font-size: 16px;
    color: #444;
    font-weight: 300;
    padding: 5px;
}

.wizi_notifications_list_one_text p {
    margin: 0;
}

/* V2 */
.wizi_notifications_alerts {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.wizi_notifications_alerts_outer {
    width: 100%;
    overflow: hidden;
    margin: 10px 0;
}

.wizi_notifications_alerts_outer > div {
    display: flex;
    flex-direction: row;
    width: 100%;
    transform: translateX(0);
    transition: 0.2s transform;
}

.wizi_notifications_alerts_item {
    padding: 10px;
    min-width: 100%;
    max-width: 100%;
    margin: auto 0;
    /*cursor: pointer;*/
    display: flex;
    position: relative;
}

.wizi_notifications_alerts_item_one {
    padding: 20px 20px 20px 0;
    border: 1px solid #eaeaea;
    background-color: #b3e5e5;
    border-radius: 5px;
    width: 100%;
    display: flex;
}

.wizi_notifications_alerts_item_one p {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
}

.wizi_notifications_alerts_item_one_icon {
    padding: 0 20px;
    display: flex;
}

.wizi_notifications_alerts_item_one_icon i {
    margin: auto;
    font-size: 18px;
}

.wizi_notifications_alerts_item_one_container {
    padding: 0 5px;
}

.wizi_notifications_alerts_nav {
    display: flex;
    cursor: pointer;
    padding: 0 10px;
}

.wizi_notifications_alerts_nav > i {
    font-size: 20px;
    margin: auto;
    color: #029398;
}

.wizi_notifications_alerts_item_delete {
    position: absolute;
    top: 15px;
    right: 15px;
    height: 20px;
    width: 20px;
    display: flex;
    border: 1px solid #444;
    border-radius: 5px;
    cursor: pointer;
}

.wizi_notifications_alerts_item_delete i {
    margin: auto;
}

.wizi_notifications_alerts_nav_disabled{
    opacity: 0.2;
}