/* TODO:STYLE DO POPUP DE  ALERTA */
#alert {
    position: fixed;
    top: -10px;
    /* right: 10px;
    left: 10px; */
    background-color: #e0e0e0;
    /* Vermelho */
    color: rgb(247, 247, 247);
    padding: 15px 20px;
    /* border-radius: 5px; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: top 0.5s ease;
    z-index: 1000;
    width: 100%;
    height: 100%;
}

/* Estilos para telas maiores que 480px */
@media (min-width: 481px) {
    #alert {
        position: fixed;
        top: -10px;
        /* right: 10px;
        left: 10px; */
        background-color: #e0e0e0;
        /* Vermelho */
        color: rgb(247, 247, 247);
        padding: 15px 20px;
        /* border-radius: 5px; */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        transition: top 0.5s ease;
        z-index: 1000;
        width: 80%;
        height: 100%;
    }
}



.title{
    display: flex;
    justify-content:space-between;
    align-items: center;
    /* border-bottom: 1px solid #ffff; */
    margin-bottom: 10px;
}
.list_adicional{
    margin-bottom: 20px;
}
.area_list{
    /* background-color: red; */
    height: 470px; /* Altura da div */
    overflow-y: auto; /* Rolagem vertical */
    overflow-x: hidden; /* Esconde a rolagem horizontal */
}
.area_ms{   
    padding: 10px 3px;
    height: 100%;
}

.title span{
    font-size: 16px;
    font-weight: 700;
}

.title button{
    font-size: 16px;
    font-weight: bold;
    border: none; 
    background:transparent;
    color:#FFFFFF;
    background-color:rgb(230, 61, 9) ;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content:safe;
    gap: 30%;

}

#img-prod-ad{  
    width: 60px;
    height: 60px;
    
}


.area_item_selecinado{
    display: flex;
    flex-direction: row;
    justify-content: center;
  
    background-color: #FFFFFF;
    margin-bottom: 10px;
    gap: 10px;
    border-radius:10px ;
}
.area_item_selecinado p{
    color: #363636;

    
}

.area_img{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    margin-bottom: 10px;
    border-radius:10px ;
}

.area_img span{
    margin-left: 5px;
}

.area_item_selecinado img{
    width: 120px;

}

.area_item_selecinado span{
    color: black;
    padding-bottom: 10px;
    font-weight: 700;
}



#alert.hide {
    top: -840px;
    
}

#alert.show {
    top: 0px;
   
   
}
/* TODO: ===================================== */
