.top-menu {
    background-color: white;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px;
}

.top-menu .block:last-child {
    display: flex;
}

.top-menu .block .notifications {
    padding-left: 10px;
    margin-top: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.top-menu .block .notification-dot {
    background-color: red;
    width: 7px;
    height: 7px;
    border-radius: 100px;
    position: relative;
    z-index: 998;
    left: 21px;
    top: -29px;
    display: none;
}

.top-menu .block .avatar {
     width: 40px;
    height: 40px;
    border-radius: 100px;
}

.top-menu .block .sub-block {
    padding-left: 15px;
}

.top-menu .block .sub-block p {
    font-size: 18px;
    font-weight: 600;
    color: rgba(34, 34, 34, 1);
}

.top-menu .block .sub-block span {
    color: rgba(107, 114, 128, 1);
    font-size: 12px;
    font-weight: 400;
}


/* Выпадающий список уведомлений */
.top-menu .block .dropdown-notifications {
    position: absolute;
    top: 45px;
    z-index: 999;
    background-color: white;
    border-radius: 0 0 10px 10px;
    padding: 15px 25px;
    margin-left: -15px;
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
    width: 40%;
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        max-height 0.45s ease;

    box-shadow:
        0 8px 16px -6px rgba(0, 0, 0, 0.12),
        0 2px 4px -2px rgba(0, 0, 0, 0.08);
}

.top-menu .block .dropdown-notifications::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.top-menu .block .dropdown-notifications.open {
    opacity: 1;
    transform: translateY(25px);
    pointer-events: auto;
    max-height: 400px;
}

.top-menu .block .dropdown-notifications .dropdown-block-notifications {
    background-color: #E7FDFA;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 15px;
}

.top-menu .block .dropdown-notifications .dropdown-block-notifications:last-child {
    margin-bottom: 0;
}

.top-menu .block .dropdown-notifications .dropdown-block-notifications .text {
    display: flex;
    flex-direction: column;
}

.top-menu .block .dropdown-notifications .dropdown-block-notifications .text .identification-number {
    font-size: 16px;
    font-weight: 450;
    color: #0B8E7A;
    margin-bottom: 10px;
}

.top-menu .block .dropdown-notifications .dropdown-block-notifications .text span {
    font-size: 16px;
    font-weight: 500;
    color: #222222;
}

.top-menu .block .dropdown-notifications .dropdown-block-notifications .time {
    margin-top: -27px;
}

.top-menu .block .dropdown-notifications .dropdown-block-notifications .time {
    color: #626262;
    font-size: 14px;
    font-weight: 550;
}
