.account_data_page{   
}

.account_data_page__list{
    margin:20px;
}

.account_data_page__list_item{
    position:relative;
    padding:0 10px;
    display:flex;
    align-items:center;
    height:40px;
}
.account_data_page__list_item:first-child{
    border-top:1px solid #ddd;
}
.account_data_page__list_item:nth-child(2n+1){
    background:#f9f9f9;
}

.account_data_page__list_item_name{
    display:inline-block;
    width:150px;
    flex-shrink:0;
    color:rgb(10,30,150);
    font-size:20px;
}
.account_data_page__list_item_value{
    font-size:20px;
    flex-grow:1;
}


.account_data_page__list_item .button_type{
    width:100px;
    height:34px;
    padding:0;
    border-radius:0;
    flex-shrink:0;
    margin-left:5px;
}

.account_data_page__buttons{
    margin:30px 20px 20px;
    display:flex;
    justify-content:space-between;
}
.account_data_page__buttons .button_type{
    width:200px; 
    height:40px;
}

@media (max-width:768px){
    .account_data_page .button_type{
        font-size:16px;
    }
    .account_data_page__list_item_name, .account_data_page__list_item_value{
        font-size:16px;
    }
    .account_data_page__list{
        margin:0;
    }
    .account_data_page__buttons{
        margin:60px 0 20px;
    }
    .account_data_page__buttons .button_type{
        width:auto;
        flex-grow:1;
        flex:1;
        flex-shrink:0;
        margin:0 5px;
    }
    .account_data_page__list_item{
        flex-direction:column;
        height:auto;
    }
    .account_data_page__list_item .button_type{
        width:100%;
        margin:10px 0;
    }
    .account_data_page__list_item_name,.account_data_page__list_item_value{
        width:100%;
        margin:10px 0;
    }
}