@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;600;800&display=swap');
body{
    margin: 0;
    padding: 0;
    font-family: 'Baloo 2', cursive;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.area_status_price{
    width: 270px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 5px;
}
.title{
    display: flex;
    align-items: center;
}
.area_icon{
    width: 20px;
    height: 20px;
    background-color: #005cd7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}
.area_icon svg{
    fill: #fff;
    height: 10px;
}
.title p{
    margin: 0;
    margin-left: 5px;
    font-weight: 700;
}
.title p span{
    color: #005cd7;
}
.text_price{
    margin-top: 5px;
    font-size: 14px;
}
.text_price span{
    font-weight: 600;
    color: #005cd7;
}
.area_change{
    width: 270px;
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.item_change{
    height: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
}
.baixo{
    background: rgb(214,0,0);
    background: linear-gradient(90deg, rgba(214,0,0,1) 90%, rgba(255,197,0,1) 100%);
}
.bom{
    background: rgb(255,197,0);
    background: linear-gradient(90deg, rgba(255,197,0,1) 90%, rgba(0,207,86,1) 100%);
}
.alto{
    background-color: #00CF56;
}
.active_price::after{
    content: '.';
    height: 10px;
    width: 10px;
    background-color: #fff;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 10px;
}
.area_lista_prices{
    width: 270px;
    padding: 10px;
}
.item{
    margin-bottom: 5px;
    margin-top: 3px;
    margin-left: 10px;
}
.item p{
    margin: 0;
}
.item p span{
    font-weight: 700;
}
.refe{
    padding: 0px 5px;
    border-radius: 5px;
    color: #fff;
    background-color: #005cd7;
    font-size: 13px;
    font-weight: 600;
    margin-right: 5px;
}
.are_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.price_atual{
    padding: 2px 5px;
    border: 1px solid #008236;
    background-color: #11fe7450;
    border-radius: 5px;
}
.area_load{
    display: block;
}
.area_success{
    display: none;
}
.area_load img{
    width: 100px;
}