@import url(../index.css);
.notification-full .header-text .title{
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
}
.notification {
    padding: 32px 0px 78px 0px;
    margin: auto;
}
.notification .header-text{
    display: flex;
    padding-bottom: 24px;
}
.notification-full {
    padding: 24px 40px;
    background-color: var(--white);
    border-radius: 12px;
    height: 100%;
    margin-bottom: 24px;
}
.notification .items {
    display: flex;
    gap: 20px;
}
.notification .items .item {
    display: flex;
    gap: 5px;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.notification .notification-list .item .item-content{
    gap: 11px;
}
.notification .items .item p {
    font-weight: 400;
    line-height: 24px;
}

.notification .items .item span {
    font-weight: 700;
    line-height: 24px;
}
.notification-search {
    gap: 8px;
    background-color: var(--color-background-input-search);
    padding: 12px 16px;
    border-radius: 100px;
    height: 48px;
    margin-bottom: 24px;
}
.notification-search input {
    height: 24px;
    line-height: 24px;
    outline: none;
    border: none;
    width: 100%;
    background-color: var(--color-background-input-search);
}
.notification-search .search-input {
    width: 800px;
}
.notification-list .item {
    padding: 16px 20px;
    border-bottom: 1px solid #E2E4E6;
}
.notification-list .item .content-img{
    gap: 2px;
}
.notification-list .item.--color-item{
    background-color: rgba(229, 92, 22, 0.1);
}
.notification-list .item .text {
    width: 100%;
    line-height: 24px;
    word-break: break-word;
    align-items: center;
}
.notification .content-img p {
    width: max-content;
}

.notification .breadcrumbs {
    gap: 4px;
    color: var(--white);
    font-size: 14px;
    line-height: 20px;
    display: none;
}
.notification .breadcrumbs span {
    font-weight: 700;
}
.notification .breadcrumbs .a-tablet {
    display: none;
    color: var(--white);
    text-decoration: none;
}
.breadcrumbs .icon{
    width: 20px;
    height: 20px;
    align-content: center;
    text-align: center;
}
.notification .notification-list .item .text-date {
    gap: 12px;
}

@media screen and (max-width: 540px) {
    .notification-full {
        padding: 16px !important;
        margin-bottom: 28px;
    }
    .notification-full .header-text .title{
        font-size: 20px;
        line-height: 28px;
        margin: unset;
    }
    .notification-list .item .text-date {
        display: block;
    }
    .notification-list .item .text {
        width: unset !important;
    }
    .notification-list .item .image-item {
        display: block;
    }
    .notification .header-text {
        padding-bottom: 16px;
    }
    .notification-search {
        margin-bottom: 16px;
    }

}
@media screen and (max-width: 1024px) {
    .notification-list .item .text {
        font-size: 14px;
        line-height: 20px;
        width: 77%;
    }
    .notification {
        padding: 16px 0px 70px 0px;
    }
    .notification .items .item p {
        font-size: 14px;
        line-height: 20px;
    }
    .notification-full {
        padding: 24px 20px;
    }
    .notification .breadcrumbs .a-tablet {
        display: block;
    }
    .notification .breadcrumbs {
        display: flex;
    }
    .notification .notification-list .item .item-content{
        gap: 16px;
    }

    .notification-list .item .content-img {
        margin-top: 8px;
        font-size: 14px;
        line-height: 20px;
    }
    .notification-list .item .content-img img {
        width: 16px;
        height: 16px;
    }
    .page-number {
        font-size: 14px;
        line-height: 20px;
    }
}
@media screen and (max-width: 540px) {
    .notification {
        padding: 16px 0px 35px 0px;
    }
    .notification-list .item {
        padding: 16px 12px;
    }
}


