
/* notif thêm */
.notif-number-container {
    cursor: pointer;
    position: absolute;
    top: 32px;
    right: 140px;
    color: black;
}
@media screen and (max-width: 1023.98px) {
    .notif-number-container {
        right: 80px;
    }
}
@media screen and (max-width: 767px) {
    .notif-number-container {
        top: 40px;
        right: 140px;
    }
}

.notif-number-container i {
    font-size: 18px;
    font-weight: 500;
}

span.notif-number {
    position: absolute;
    top: -10px;
    margin-left: 10px;
    border-radius: 50%;
    background: rgba(200, 4, 22);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* notif */
.sp_ic_close_notif{
    width: 10%;
    text-align: center;
    color: rgb(69 69 69);
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 30px;
}
.sp_ic_close_notif:hover{
    color: #f21d1d;
}

.notif_public {
    height: 100vh;
    width: 450px;
    position: fixed;
    top: 1px;
    z-index: 100;
    background: #eee;
    right: 1px;
    padding: 0px;
    color: #000;
    border: 1px solid #c7c7c7;
    border-radius: 3px;
    overflow: auto;
    /*padding-bottom: 130px;*/
    display: none;
}
@media screen and (max-width: 767px) {
    .notif_public {
        width: 100%;
        top: 0px;
        right: 0px;
    }
}

.notif_public .header_div {
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: flex-end;
    padding-top: 15px;
    padding-bottom: 10px;
}

.notif_public .header_title {
    font-weight: bold; 
    margin-bottom: 0;
    font-size: 18px;
    padding-bottom: 10px;
}

.notif_public .notif_public_content {
    font-size: 13px;
    padding: 10px 5px;
    overflow-y: scroll;
    max-height: calc(100vh - 70px);
}

.notif_public ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.notif_public ul li {
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    padding: 10px;
    padding-top: 5px;
}

.notif_public ul li.notif_read {
    background-color: #fff;
}

.notif_public ul li.notif_read a {
    color: #444;
}

.notif_public ul li:hover {
    background-color: #ffffff;
}

.notif_public ul li .notif_item_title {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 5px;
}

.notif_public ul li .notif_item_desc {
    text-align: justify;
    color: #484848;
}

.notif_public ul li .notif_item_time {
    color: #4b4b4b;
    font-size: 0.65rem;
    margin-top: 10px;
}

span.no_notif {
    margin: 10px;
}


.sp_btn_1 {
    width: fit-content;
    text-align: right;
    font-size: 12px;
    color: #0c7cad;
    border: 1px solid #0c7cad;
    border-radius: 5px;
    padding: 2px 10px;
    cursor: pointer;
}
.sp_btn_1:hover {
    color: #fff;
    border: 1px solid #0c7cad;
    background-color: #0c7cad;
}

.sp_btn_1 i {
    font-size: 15px;
}

.sp_btn_1_selected {
    color: #fff;
    border: 1px solid #0c7cad;
    background-color: #0c7cad;
}

.ic_notif_shake
{
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}
@keyframes shake {
    10%, 90% {
      transform: translate3d(-1px, 0, 0);
    }
    
    20%, 80% {
      transform: translate3d(2px, 0, 0);
    }
  
    30%, 50%, 70% {
      transform: translate3d(-4px, 0, 0);
    }
  
    40%, 60% {
      transform: translate3d(4px, 0, 0);
    }
}
