

.infoA{
    min-height: 5vh;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgb(255, 248, 240);
}

.infoA .closeAlerCont{
    width: 100%;
}

.infoA .closeAlerCont .closeAler{
    background: #038dfd;
    cursor: pointer;
    color: #fff;
    border-radius:30px;
    padding: .5rem 1rem;
    font-size: clamp(.8rem, 2vw, 1rem);
    font-weight: 600;
    box-shadow: 0 0 8px #1495ff;
}
.infoA .closeAlerCont .closeAler:hover{
    background:#003cff;
}

.infoA .containerA{
    padding: 1rem;
    border-radius: 1rem;
    height: 100%;
    background: #ffead8;
    box-shadow: 0 8px 15px rgba(46, 41, 37, 0.28);
    display: none;
}

.infoA .containerA.active{
    display: block;
}



.infoA .containerA .icono{
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #d47955;
    margin-bottom: 1rem;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.infoA .containerA .info{
    color: #913e20;
    font-size: clamp(.6rem, 2vw, .8rem);
    margin-bottom: 1rem;
    font-weight: 500;
}

.infoA .containerA .list{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.infoA .containerA .list .item{
    width: 100%;
    display: flex;
    align-items: center;
    height: 2rem;
    gap: 9px;
}

.infoA .containerA .list .item img{
    height: 100%;
}

.infoA .containerA .list .item h5{
    font-size: clamp(.8rem, 3vw, 1rem);
    font-weight: 500;
}