#notify-box{
 font-family: var(--e-global-typography-0e7769d-font-family);
    display: none;
  position: absolute;
  top: 40px;
  right: 0;
  width: 320px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-radius: 8px;
  z-index: 999;
  line-height: 1em;
}
.fn-items{
    min-height: 366px;
    max-height: 390px;
    overflow: hidden;
    overflow-y: auto;
}
.fn-avatar{
    background: #0d47a1;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.fn-content, .fn-time, .fn-title{
    letter-spacing: -0.05em;
}
p.fn-content{
    margin: 0;
}
.fn-title{
    background: #2979ff;
    color: white;
    padding: 15px 17px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;   
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#fn-hide{
    padding: 10px 0;
    height: 23px;
    display: flex;
}
.change-cursor-pointer:hover, #fn-hide:hover{
    cursor: pointer;
}
.fn-hide-button{
    display: inline-block;
    width: 20px;
    height: 3px;
    z-index: 99;
    right: 0;
    top: 10px;
    background-color: white;
}
.fn-time{
    display: flex;
    gap: 3px;
    align-items: center;
    font-size: 13px;
}
.fn-icon-time{
    display: inline-block;
    background-image: url('https://blinds3.nuta.io/wp-content/uploads/2025/06/clock.svg');
    width: 13px;
    height: 13px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
}
.fn-item.unread {
  padding-bottom: 17px;
  background-color: #EAF2FD;
  transition: background-color 0.3s ease;
}
.fn-item{
    padding: 17px;
    display: flex;
    gap: 10px;
    align-items: start;
    box-shadow: 0 0 1px 0 rgba(0,0,0,0.25);
}
.fn-item.seen:nth-child(4) {
    padding-bottom: 22px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
}
.fn-item-box-content{
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.span-button-qty{
    display: flex;
    justify-content: center;
    background-color: #A92701;
    border-radius: 100%;
    color: var(--items-indicator-text-color, #fff);
    display: block;
    font-size: 10px;
    height: 1.6em;
    inset-inline-end: -.7em;
    line-height: 1.5em;
    min-width: 1.6em;
    position: absolute;
    text-align: center;
    top: -.7em;
}
@media (max-width: 1024px){
    #notify-box {
        position: fixed !important;
        top: 80px !important;
        width: 100vw !important;
        height: 100vh;
        border-radius: 0 !important;
        z-index: 9999;
        padding-bottom: 30px;
    }
}
@media (max-width: 767px) {
    body.fake-notify-open{
    overflow: hidden;
    height: 100vh;
    }
    #notify-box {
        top: 60px !important;
    }

    .fn-title {
        border-radius: 0 !important;
        font-size: 16px;
        padding: 15px;
    }
    .fn-item {
        padding: 15px;
    }
        .fn-items {
        min-height: 100vh;
        max-height: calc(100vh - 100px);  
    }
}