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

.tecnicItensCard {
    --background-0: rgba(231, 231, 231, 0.6);
    --background-1: #fff;
    width: 80%;
    max-width: 850px;
    height: 145px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: left;
    border-left: solid 1px var(--black);
    border-right: solid 1px var(--black);
    cursor: pointer;
}

.tecnicItensCard:first-child {
    border-top: solid 1px var(--black);
    border-radius: 8px 8px 0px 0px;
}

.tecnicItensCard:last-child {
    border-bottom: solid 1px var(--black);
    border-radius: 0px 0px 8px 8px;
}

.tecnicItensCard:only-child {
    border-top: solid 1px var(--black);
    border-radius: 8px;
}

.tecnicItensCard.itemAlert {
    background: #FFF1F1;
    position: relative;
}

.tecnicItensCard.itemAlert::after {
    content: '';
    width: 25px;
    height: 25px;
    background: red;
    border-radius: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(11px, -9px);
}

.tecnicItensCard.itemAlert .tecnicItensCard__span {
    color: red;
}

.tecnicItensCard__img {
    height: 100%;
    mix-blend-mode: darken;
}

.tecnicItensCard__div {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    width: 100%;
    height: 100%;
}

.tecnicItensCard__p {
    margin: 0px;
    font-size: 24px;
    font-weight: 600;
    max-height: 84px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}

.tecnicItensCard__span {
    margin: 0px;
    font-size: 20px;
    font-weight: 500;
}

@media only screen and (max-width: 500px) {
    .tecnicItensCard {
        width: 100%;
        padding: 10px 20px;
    }

    .tecnicItensCard__img {
        height: 50%;
    }

    .tecnicItensCard__p {
        font-size: 18px;
    }

    .tecnicItensCard__span {
        font-size: 16px;
    }
}