.box_prix{
    width: 100%;
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.box_prix p.alert {
    width: 95%;
    height: 30px;
    color: var(--alert);
    font-size: 16px;
    margin: 20px 0;
    padding: 0 10px;
    border-left: 4px solid var(--alert);
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.box_bulles{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    z-index: 1;
}
.prix {
    width: 30%;
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}
.pbulle{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--scolor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--ngs);
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}

.pbulle p{
    width: 200px;
    position: relative;
    top: -30px;
    left: 50px
}

.sbulle{
    width: 100px;
    min-width: 100px;
    height: 100px;
    min-height: 100px;
    border-radius: 50%;
    background-color: rgb(165, 165, 165);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    top: -40px;
    left: -60px;
    box-shadow: 10px 10px 30px 0 rgba(0, 0, 0, 0.3);
}

@media (max-width: 580px) {
    .box_prix{
        margin-top: 120px;
    }
    .scroll{
        flex-direction: column;
        height: 100%;
    }
    
}