.home__notifications {
    position: absolute;
    left: 0;
    top: 0;
    margin: 40px 0px 0px 120px;
    background: #fff;
    border: none;
    cursor: pointer;
    color: var(--black);
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    padding: 0px;
    box-shadow: 0px 2px 10px #00000079;
    transition: 0.5s;
}

.home__notifications:hover {
    color: var(--green);
}

.home__notifications::after {
    content: "Notificações";
    color: var(--black);
    position: absolute;
    right: 0;
    transform: translateX(110%);
    font-size: 16px;
    font-weight: 500;
    opacity: 0;
    transition: 0.2s;
    transition-delay: 0s;
}

.home__notifications:hover:after {
    opacity: 1;
    transition-delay: 0.5s;
}

.notifications__alert {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f00;
    color: #fff;
    height: 25px;
    width: 25px;
    top: 0;
    right: 0;
    border-radius: 100%;
    font-size: 15px;
    transform: translate(7px, -7px);
}

.blackBackground {
    background: rgba(30, 30, 30, 0.64);
    backdrop-filter: blur(8px);
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
    transition: 0.2s;
}

.blackBackground.active {
    opacity: 1;
}

.notifications__section {
    background: #fff;
    width: 80%;
    height: 80%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.notifications__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-shadow: 0px 2px 10px rgba(30, 30, 30, 0.64);
    z-index: 2;
}
.notifications__h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 0px;
}
.notifications__select {
    border: 0px;
    border-bottom: solid 1px var(--black);
    text-align: center;
    transition: 0.2s;
}
.notifications__select:focus {
    outline-width: 0px;
    border: 0px;
    border-bottom: solid 1px var(--green);
    color: var(--green);
}
.notifications__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    font-size: 35px;
    font-weight: 300;
    background: transparent;
    outline-width: 0px;
    border: 0px;
    cursor: pointer;
    transition: 0.2s;
}

.notifications__button:hover {
    color: var(--green);
}

#notificationsCards {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    overflow: auto;
}

@media only screen and (max-width: 500px) {
    .home__notifications {
        margin: 20px 0px 0px 20px;
        font-size: 18px;
        width: 40px;
        height: 40px;
    }
    .notifications__alert {
        height: 20px;
        width: 20px;
        font-size: 14px;
    }
    .notifications__section {
        width: 100%;
        height: 100%;
        border-radius: 0px;
    }
}