#addressList{
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap:10px;
    width: 100%;
    font-family: "iransans";
    overflow: auto;
    margin-bottom: 75px;
}
#addressList .addressItem{
    background: var(--white);
    box-shadow: 0px 2px 8px 0px #0000000F;
    width: 100%;
    height: 93px;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}
#addressList .addressItem .leftBox img{
    width: 60px;
    height: 60px;

}

#addressList .addressItem .rightBox img{
    width: 20px;
    height: 20px;
}
#addressList .addressItem .leftBox .imgBox{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--line);
}
#addressList .addressItem .leftBox .imgBox img{
    width: 24px;
    height: 24px;
}
#addressList .addressItem .leftBox .textBox{
    display: flex;
    flex-direction: column;
    gap: 7px;

}
#addressList .addressItem .rightBox   .textBox img{
    cursor: pointer;
}
#addressList .addressItem .title{
    font-weight: 800;
    color: var(--black);
}
#addressList .addressItem .description{
    color: var(--colorSub);
    text-align: end;
}
.addNewAddress{
    height: 53px;
    border-radius: 35px;
    position: fixed;
    bottom: 25px;
    width: calc(100% - 40px);
    max-width: 560px;
    background-color: var(--dark);
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    border: none;
    font-family: "iransans";
    cursor: pointer;
}
