@charset "utf-8";

.mod .delivery_address .delivery_list{
    
}
    .mod .delivery_address .delivery_list .address_row{
        background-color: silver;
        border-bottom: thin solid #ccc;
        
    }
    .mod .delivery_address .delivery_list .address{
        padding: 5px 10px;
        overflow:hidden;
        white-space: nowrap;
    }
        .mod .delivery_address .delivery_list .address:hover{
            background-color: #ccc;
        }
    .mod .delivery_address .delivery_list .address.selected{
        background-color: red;
        color:white;
    }
    .mod .delivery_address .delivery_list .address.add_new{
        background-color: white;
    }
        .mod .delivery_address .delivery_list .address.add_new:hover{
            background-color: #ccc;
        }
    .mod .delivery_address .delivery_list .address.add_new.selected{
        background-color: red;
        color:white;
    }
    .mod .delivery_address .delivery_list .delete{
        background-color: red;
        color: white;
        padding: 5px 10px;
    }
        .mod .delivery_address .delivery_list .delete:hover{
            background-color: silver;
            color: white;
        }
    
    
.mod .delivery_address .delivery_details{
    
}
    .mod .delivery_address .delivery_details .row{
        padding: 5px;
        border-bottom: thin solid #ccc;
    }
    .mod .delivery_address .delivery_details .row:hover{
        background-color: #efefef;
    }
        .mod .delivery_address .delivery_details .row .label{
            width: 35%;
            float: left;
            padding: 0 5px 0 0;
        }
        .mod .delivery_address .delivery_details .row .input{
            width: 65%;
            float: left;
        }
            
