.notification_container {
    background: #162e49;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .8);
    border-radius: 0 0 10px 10px;
    width: 100%;
    max-width: 458px;
    padding: 1.4rem 2rem 1.6rem;
    position: absolute;
    left: 66%;
    top: 100%;
    z-index: 1;
    display: none
}

body.dont-scroll {
    overflow-y: hidden
}

.header {
    position: relative
}

.notification_text_wrpr {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.notification_text {
    font-style: normal;
    font-weight: var(--f-400);
    font-size: var(--font-14);
    color: var(--whit--color);
    margin-bottom: 1rem
}

.read_all_text {
    font-style: normal;
    font-weight: var(--f-500);
    font-size: var(--font-14);
    color: var(--cricaza-green-light)
}

.notification_content {
    background: #234469;
    border-radius: .5rem;
    padding: 1rem;
    margin-bottom: .4rem
}

.notification_content1 {
    background: rgba(35, 68, 105, 0.5);
    border-radius: .5rem;
    padding: 1rem;
    margin-bottom: .4rem
}

.more_text {
    width: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--cricaza-green-dark)
}

.notification_text1 {
    font-weight: var(--f-400);
    font-size: var(--font-16);
    color: var(--whit--color);
    line-height: 1.5
}

.notification_time_wrpr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: .4rem
}

.notification_time {
    font-weight: var(--f-400);
    font-size: var(--font-12);
    color: #95b9d7
}

.Read_button {
    background: var(--cricaza-green-light);
    border-radius: 2px;
    padding: .4rem 2rem;
    font-weight: var(--f-500);
    font-size: var(--font-14);
    text-transform: uppercase;
    color: var(--whit--color)
}

.greeting_notification_text {
    font-weight: var(--f-500);
    font-size: var(--font-16);
    color: var(--whit--color);
    line-height: 1.5;
    margin-top: .6rem
}

.notification_time.text {
    margin-top: .8rem
}

.greeting_notification_content {
    font-weight: var(--f-400);
    font-size: var(--font-14);
    color: var(--color-white3);
    line-height: 1.5;
    margin: .8rem 0 2rem 0
}

.back_btn {
    background: #14a0ff;
    border-radius: 5px;
    width: 100%;
    padding: 1.3rem 0;
    font-weight: var(--f-500);
    font-size: var(--font-14);
    text-align: center;
    text-transform: uppercase;
    color: var(--whit--color);
    margin-bottom: .4rem
}

.no-notification_text {
    font-weight: var(--f-400);
    font-size: var(--font-14);
    color: var(--whit--color);
    text-align: center;
    margin: 1.6rem 0 1.4rem 0
}

.bell_icon_wrpr {
    width: 3.2rem;
    height: 3.2rem;
    background: var(--search-bg);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: var(--font-18);
    cursor: pointer
}

.notification_img {
    display: none
}

.notification_img img {
    margin: auto
}

.notifiction_wrpr {
    display: block
}

.no-notification_container {
    display: none
}

.greeting_notification_container {
    display: none
}

@media only screen and (max-width:1024px) {
    .notification_container {
        position: fixed;
        height: calc(100vh - 8.3rem);
        left: 0;
        top: 11.6%;
        overflow-y: scroll;
        max-width: unset
    }

    .lft_zero {
        left: 0
    }
}

